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.
这篇关于如何将木屐重新定义为原始木屐和日志文件?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何将木屐重新定义为原始木屐和日志文件?
基础教程推荐
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- 使用从字符串中提取的参数调用函数 2022-01-01
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- Windows Media Foundation 录制音频 2021-01-01
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- 从 std::cin 读取密码 2021-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01