1 | /*
|
---|
2 | * QDebugStream.hpp
|
---|
3 | *
|
---|
4 | * Created on: Jun 19, 2014
|
---|
5 | * Author: heber
|
---|
6 | */
|
---|
7 |
|
---|
8 | #ifndef QDEBUGSTREAM_HPP_
|
---|
9 | #define QDEBUGSTREAM_HPP_
|
---|
10 |
|
---|
11 | // include config.h
|
---|
12 | #ifdef HAVE_CONFIG_H
|
---|
13 | #include <config.h>
|
---|
14 | #endif
|
---|
15 |
|
---|
16 | #include <QTextEdit>
|
---|
17 | #include <QDebug>
|
---|
18 |
|
---|
19 | #include <ostream>
|
---|
20 | #include <streambuf>
|
---|
21 | #include <string>
|
---|
22 |
|
---|
23 | /** This class connects an output stream, such as std::cout, and a QTextEdit.
|
---|
24 | *
|
---|
25 | * It works by overriding certain streambuf functions such as xsputn() and
|
---|
26 | * overflow().
|
---|
27 | *
|
---|
28 | * This code is copied from the questions posted here
|
---|
29 | * http://stackoverflow.com/questions/10308425/redirect-stdcout-to-a-qtextedit
|
---|
30 | * which worked right away.
|
---|
31 | */
|
---|
32 | class QDebugStream : public std::basic_streambuf<char>
|
---|
33 | {
|
---|
34 | public:
|
---|
35 | QDebugStream(std::ostream &stream, QTextEdit* text_edit) : m_stream(stream)
|
---|
36 | {
|
---|
37 | log_window = text_edit;
|
---|
38 | m_old_buf = stream.rdbuf();
|
---|
39 | stream.rdbuf(this);
|
---|
40 | }
|
---|
41 | ~QDebugStream()
|
---|
42 | {
|
---|
43 | // output anything that is left
|
---|
44 | if (!m_string.empty()) {
|
---|
45 | log_window->append(m_string.c_str());
|
---|
46 | qDebug() << m_string.c_str();
|
---|
47 | }
|
---|
48 |
|
---|
49 | m_stream.rdbuf(m_old_buf);
|
---|
50 | }
|
---|
51 |
|
---|
52 | protected:
|
---|
53 | virtual int_type overflow(int_type v)
|
---|
54 | {
|
---|
55 | if (v == '\n') {
|
---|
56 | log_window->append(m_string.c_str());
|
---|
57 | qDebug() << m_string.c_str();
|
---|
58 | m_string.erase(m_string.begin(), m_string.end());
|
---|
59 | } else
|
---|
60 | m_string += v;
|
---|
61 |
|
---|
62 | return v;
|
---|
63 | }
|
---|
64 |
|
---|
65 | virtual std::streamsize xsputn(const char *p, std::streamsize n)
|
---|
66 | {
|
---|
67 | m_string.append(p, p + n);
|
---|
68 |
|
---|
69 | size_t pos = 0;
|
---|
70 | while (pos != std::string::npos) {
|
---|
71 | pos = m_string.find('\n');
|
---|
72 | if (pos != std::string::npos) {
|
---|
73 | std::string tmp(m_string.begin(), m_string.begin() + pos);
|
---|
74 | log_window->append(tmp.c_str());
|
---|
75 | qDebug() << tmp.c_str();
|
---|
76 | m_string.erase(m_string.begin(), m_string.begin() + pos + 1);
|
---|
77 | }
|
---|
78 | }
|
---|
79 |
|
---|
80 | return n;
|
---|
81 | }
|
---|
82 |
|
---|
83 | private:
|
---|
84 | std::ostream &m_stream;
|
---|
85 | std::streambuf *m_old_buf;
|
---|
86 | std::string m_string;
|
---|
87 |
|
---|
88 | QTextEdit* log_window;
|
---|
89 | };
|
---|
90 |
|
---|
91 | #endif /* QDEBUGSTREAM_HPP_ */
|
---|