Internal "Tee" setup

Posted by RadlyEel on Stack Overflow See other posts from Stack Overflow or by RadlyEel
Published on 2010-06-08T15:48:28Z Indexed on 2010/06/08 15:52 UTC
Read the original article Hit count: 308

Filed under:
|

I have inherited some really old VC6.0 code that I am upgrading to VS2008 for building a 64-bit app. One required feature that was implemented long, long ago is overriding std::cout so its output goes simultaneously to a console window and to a file. The implementation depended on the then-current VC98 library implementation of ostream and, of course, is now irretrievably broken with VS2008. It would be reasonable to accumulate all the output until program termination time and then dump it to a file. I got part of the way home by using freopen(), setvbuf(), and ios::sync_with_stdio(), but to my dismay, the internal library does not treat its buffer as a ring buffer; instead when it flushes to the output device it restarts at the beginning, so every flush wipes out all my accumulated output. Converting to a more standard logging function is not desirable, as there are over 1600 usages of "std::cout << " scattered throughout almost 60 files. I have considered overriding ostream's operator<< function, but I'm not sure if that will cover me, since there are global operator<< functions that can't be overridden. (Or can they?)

Any ideas on how to accomplish this?

© Stack Overflow or respective owner

Related posts about c++

Related posts about vs2008