Ok, so I have to display information from data being written by another process in a log file, in real time. I didn't find any library that would do that off the bat. I am wondering what strategy would you recommend :
1. Creating an object keeping a cursor to the last read line, reloading the file, and checking for new lines.
2. Using a nice little library I don't know about.
3. Doing all the parsing and stuff in another process/language and sending that over UPD/TCP to the processing program.