Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How to read the content of file while the same file is writing the log entry in thread. I wanna to develop log viewer for my tool (like tail.exe)

share|improve this question
Have you tried it? - and did you have a problem? – Dipstick Dec 22 '09 at 7:17

3 Answers

You shouldn't have any problems, certainly on Linux type systems. The writer opens the file for writing. The reader opens the file for reading. The OS should make sure that all operations are atomic.

For a logging application it is probably better to use raw file i/o (open/read/write etc rather than fpen/fread etc) as the buffering doesn't help; at least make sure that the writer flushes the output so that it is written straightaway.

share|improve this answer

You should not both read and write from/to the same file at the same time, you should use mutex to avoid race conditions. You can declare a global mutex variable and lock/unlock mutex while reading and writing respectevly. This is well known Producer-consumer Problem (Aka. Reader/Writer Problem).

share|improve this answer
It simply isn't true that you cannot read and write from/to the same file at the same time. There are many streaming applications that use shared open files - e.g pause live tv - where video is being recorded and played at the same time with, possibly, a short delay. The writer does not even need to know that somebody is reading. – Dipstick Dec 22 '09 at 7:43

I tried using fstream in thread. It is able to read by while second writing unable to read that updated content in the file

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.