我想使用Mr-Edd's iostreams article中的这个片段在某处打印std :: clog。
#include <iostream>
#include <iomanip>
#include <string>
#include <sstream>
int main()
{
std::ostringstream oss;
// Make clog use the buffer from oss
std::streambuf *former_buff =
std::clog.rdbuf(oss.rdbuf());
std::clog << "This will appear in oss!" << std::flush;
std::cout << oss.str() << '\\n';
// Give clog back its previous buffer
std::clog.rdbuf(former_buff);
return 0;
}
所以,在主循环中,我会做类似
的事情while (! oss.eof())
{
//add to window text somewhere
}
这是ostringstream docs,但我无法理解这样做的最佳方法。我有一个显示文本的方法,我只想用ostringstream中的任何数据调用它。
将发送到std :: clog的任何内容重定向到我选择的方法的最简单/最好的方法是什么?它是如上所述,并填写while!eof部分(不确定如何),或者是否有更好的方法,比如通过在调用我的方法的地方重载一些'commit'运算符?我喜欢快速简单,我真的不想开始定义接收器,如文章那样使用boost iostreams - 这些东西已经超出我的想象。
答案 0 :(得分:11)
我鼓励你看看Boost.IOStreams
。它似乎很适合您的用例,使用它非常简单:
#include <boost/iostreams/concepts.hpp>
#include <boost/iostreams/stream_buffer.hpp>
#include <iostream>
namespace bio = boost::iostreams;
class MySink : public bio::sink
{
public:
std::streamsize write(const char* s, std::streamsize n)
{
//Do whatever you want with s
//...
return n;
}
};
int main()
{
bio::stream_buffer<MySink> sb;
sb.open(MySink());
std::streambuf * oldbuf = std::clog.rdbuf(&sb);
std::clog << "hello, world" << std::endl;
std::clog.rdbuf(oldbuf);
return 0;
}
答案 1 :(得分:7)
我想想你想从ostream中取出文本,而不是空的。你可以这样做:
std::string s = oss.str();
if(!s.empty()) {
// output s here
oss.str(""); // set oss to contain the empty string
}
如果这不是您想要的,请告诉我。
当然,更好的解决方案是移除中间人并在真正想要它的地方有一个新的streambuf,无需稍后进行探测。这样的事情(请注意,这适用于每个char,但streambufs中还有很多缓冲选项):
class outbuf : public std::streambuf {
public:
outbuf() {
// no buffering, overflow on every char
setp(0, 0);
}
virtual int_type overflow(int_type c = traits_type::eof()) {
// add the char to wherever you want it, for example:
// DebugConsole.setText(DebugControl.text() + c);
return c;
}
};
int main() {
// set std::cout to use my custom streambuf
outbuf ob;
std::streambuf *sb = std::cout.rdbuf(&ob);
// do some work here
// make sure to restore the original so we don't get a crash on close!
std::cout.rdbuf(sb);
return 0;
}
答案 2 :(得分:4)
我需要从第三方库中获取std :: cout和std :: cerr的输出,并使用log4cxx记录它们,并保留原始输出。
这就是我想出的。这很简单:
我用自己的类替换了ostream的旧缓冲区(比如std :: cout),以便我可以访问写入它的内容。
我还使用旧缓冲区创建一个新的std :: ostream对象,这样我就可以继续将输出发送到我的控制台,除了将其发送到我的记录器。我觉得它很方便。
代码:
class intercept_stream : public std::streambuf{
public:
intercept_stream(std::ostream& stream, char const* logger):
_logger(log4cxx::Logger::getLogger(logger)),
_orgstream(stream),
_newstream(NULL)
{
//Swap the the old buffer in ostream with this buffer.
_orgbuf=_orgstream.rdbuf(this);
//Create a new ostream that we set the old buffer in
boost::scoped_ptr<std::ostream> os(new std::ostream(_orgbuf));
_newstream.swap(os);
}
~intercept_stream(){
_orgstream.rdbuf(_orgbuf);//Restore old buffer
}
protected:
virtual streamsize xsputn(const char *msg, streamsize count){
//Output to new stream with old buffer (to e.g. screen [std::cout])
_newstream->write(msg, count);
//Output to log4cxx logger
std::string s(msg,count);
if (_logger->isInfoEnabled()) {
_logger->forcedLog(::log4cxx::Level::getInfo(), s, LOG4CXX_LOCATION);
}
return count;
}
private:
log4cxx::LoggerPtr _logger;
std::streambuf* _orgbuf;
std::ostream& _orgstream;
boost::scoped_ptr<std::ostream> _newstream;
};
然后使用它:
std::cout << "This will just go to my console"<<std::endl;
intercept_stream* intercepter = new intercept_stream(std::cout, "cout");
std::cout << "This will end up in both console and my log4cxx logfile, yay!" << std::endl;
答案 3 :(得分:1)
对于log4cxx示例,您必须覆盖overflow()和sync(),否则在收到第一个流后始终设置badbit。
InterceptStream::int_type InterceptStream::overflow(int_type c)
{
if(!traits_type::eq_int_type(c, traits_type::eof()))
{
char_type const t = traits_type::to_char_type(c);
this->xsputn(&t, 1);
}
return !traits_type::eof();
}
int InterceptStream::sync()
{
return 0;
}
答案 4 :(得分:0)
如果您只想获取ostringstream的内容,请使用其str()成员。例如:
string s = oss.str();