How to redefine clog to tee to original clog and a log file?(如何将木屐重新定义为原始木屐和日志文件?)
问题描述
我在这里看到了一个有用的开始:
I saw a useful start here:
http://www.cs.technion.ac.il/~imaman/programs/teestream.html
制作一个新的流,它可以同时进入堵塞和日志文件.
And it works great to make a new stream which goes to both clog and a log file.
但是,如果我尝试将 clog 重新定义为新流,它将不起作用,因为新流与 clog 具有相同的 rdbuf(),因此以下内容无效:
However, if I try to redefine clog to be the new stream it does not work because the new stream has the same rdbuf() as clog so the following has no effect:
clog.rdbuf(myTee.rdbuf());
那么如何修改 tee 类以拥有自己的 rdbuf(),然后它可以成为 clog 的目标?
So how can I modify the tee class to have its own rdbuf() which can then be the target of clog?
谢谢.
-威廉
推荐答案
如果你真的想继续为 tee 使用 std::clog 而不是将输出发送到不同的流,你需要工作低一级:而不是源自ostream,源自streambuf.然后你可以这样做:
If you really want to keep using std::clog for the tee instead of sending output to a different stream, you need to work one level lower: Instead of deriving from ostream, derive from streambuf. Then you can do this:
fstream logFile(...);
TeeBuf tbuf(logFile.rdbuf(), clog.rdbuf());
clog.rdbuf(&tbuf);
有关如何派生自己的 streambuf 类的更多信息,请参阅 此处.
For more information on how to derive your own streambuf class, see here.
这篇关于如何将木屐重新定义为原始木屐和日志文件?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何将木屐重新定义为原始木屐和日志文件?
- STL 中有 dereference_iterator 吗? 2022-01-01
- 近似搜索的工作原理 2021-01-01
- 从python回调到c++的选项 2022-11-16
- C++ 协变模板 2021-01-01
- 静态初始化顺序失败 2022-01-01
- Stroustrup 的 Simple_window.h 2022-01-01
- 与 int by int 相比,为什么执行 float by float 矩阵乘法更快? 2021-01-01
- 一起使用 MPI 和 OpenCV 时出现分段错误 2022-01-01
- 如何对自定义类的向量使用std::find()? 2022-11-07
- 使用/clr 时出现 LNK2022 错误 2022-01-01