-
Notifications
You must be signed in to change notification settings - Fork 0
/
qxtbasicstdloggerengine.cpp
242 lines (219 loc) · 6.99 KB
/
qxtbasicstdloggerengine.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
/****************************************************************************
** Copyright (c) 2006 - 2011, the LibQxt project.
** See the Qxt AUTHORS file for a list of authors and copyright holders.
** All rights reserved.
**
** Redistribution and use in source and binary forms, with or without
** modification, are permitted provided that the following conditions are met:
** * Redistributions of source code must retain the above copyright
** notice, this list of conditions and the following disclaimer.
** * Redistributions in binary form must reproduce the above copyright
** notice, this list of conditions and the following disclaimer in the
** documentation and/or other materials provided with the distribution.
** * Neither the name of the LibQxt project nor the
** names of its contributors may be used to endorse or promote products
** derived from this software without specific prior written permission.
**
** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
** ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
** WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
** DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY
** DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
** (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
** LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
** ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
** SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
**
** <http://libqxt.org> <[email protected]>
*****************************************************************************/
#include "qxtbasicstdloggerengine.h"
#include <QTextStream>
#include <QTime>
#define QXT_REQUIRED_LEVELS (QxtLogger::WarningLevel | QxtLogger::ErrorLevel | QxtLogger::CriticalLevel | QxtLogger::FatalLevel)
/*!
\class QxtBasicSTDLoggerEngine
\brief The QxtBasicSTDLoggerEngine class provides a basic STD logger engine.
\inmodule QxtCore
Example basic STD log output:
\code
[22:38:33.159] [Error] Unknown error
[22:51:43.488] [Debug] What's going on?
Hi there!
\endcode
\sa QxtLogger
*/
class QxtBasicSTDLoggerEnginePrivate : public QxtPrivate<QxtBasicSTDLoggerEngine>
{
QXT_DECLARE_PUBLIC(QxtBasicSTDLoggerEngine)
public:
QxtBasicSTDLoggerEnginePrivate();
QTextStream *errstream, *outstream;
};
QxtBasicSTDLoggerEnginePrivate::QxtBasicSTDLoggerEnginePrivate()
{
errstream = new QTextStream(stderr);
outstream = new QTextStream(stdout);
}
/*!
Constructor.
*/
QxtBasicSTDLoggerEngine::QxtBasicSTDLoggerEngine()
{
QXT_INIT_PRIVATE(QxtBasicSTDLoggerEngine);
#ifndef QT_NO_DEBUG
setLogLevelsEnabled(QXT_REQUIRED_LEVELS);
#else
setLogLevelsEnabled(QXT_REQUIRED_LEVELS | QxtLogger::DebugLevel);
#endif
enableLogging();
}
/*!
Destructor.
*/
QxtBasicSTDLoggerEngine::~QxtBasicSTDLoggerEngine()
{
if (qxt_d().errstream)
{
qxt_d().errstream->flush();
delete qxt_d().errstream;
qxt_d().errstream = 0;
}
if (qxt_d().outstream)
{
qxt_d().outstream->flush();
delete qxt_d().outstream;
qxt_d().errstream = 0;
}
}
/*!
\reimp
*/
void QxtBasicSTDLoggerEngine::initLoggerEngine()
{
return; // Should work out of the box!
}
/*!
\reimp
*/
void QxtBasicSTDLoggerEngine::killLoggerEngine()
{
return; // I do nothing.
}
/*!
\reimp
*/
bool QxtBasicSTDLoggerEngine::isInitialized() const
{
return qxt_d().errstream && qxt_d().outstream;
}
/*!
Returns the stderr stream.
*/
QTextStream* QxtBasicSTDLoggerEngine::stdErrStream() const
{
return qxt_d().errstream;
}
/*!
Returns the stdout stream.
*/
QTextStream* QxtBasicSTDLoggerEngine::stdOutStream() const
{
return qxt_d().outstream;
}
/*!
Enables \a level if \a enable is \c true, disables otherwise.
*/
void QxtBasicSTDLoggerEngine::setLogLevelEnabled(QxtLogger::LogLevels level, bool enable)
{
QxtLoggerEngine::setLogLevelsEnabled(level | QXT_REQUIRED_LEVELS, enable);
if (!enable) QxtLoggerEngine::setLogLevelsEnabled(QXT_REQUIRED_LEVELS);
}
/*!
\reimp
*/
void QxtBasicSTDLoggerEngine::writeFormatted(QxtLogger::LogLevel level, const QList<QVariant> &msgs)
{
switch (level)
{
case QxtLogger::ErrorLevel:
writeToStdErr("Error", msgs);
break;
case QxtLogger::WarningLevel:
writeToStdOut("Warning", msgs);
break;
case QxtLogger::CriticalLevel:
writeToStdErr("Critical", msgs);
break;
case QxtLogger::FatalLevel:
writeToStdErr("!!FATAL!!", msgs);
break;
case QxtLogger::TraceLevel:
writeToStdOut("Trace", msgs);
break;
case QxtLogger::DebugLevel:
writeToStdErr("DEBUG", msgs);
break;
case QxtLogger::InfoLevel:
writeToStdOut("INFO", msgs);
break;
default:
writeToStdOut("", msgs);
break;
}
}
/*!
A helper function that actually writes \a msgs to stderr with given \a level.
This function is called by QxtBasicSTDLoggerEngine. Reimplement this function when creating a subclass of QxtBasicSTDLoggerEngine.
*/
void QxtBasicSTDLoggerEngine::writeToStdErr(const QString &level, const QList<QVariant> &msgs)
{
if (msgs.isEmpty()) return;
QString header = '[' + QTime::currentTime().toString("hh:mm:ss.zzz") + "] [" + level + "] ";
QString padding;
QTextStream* errstream = stdErrStream();
Q_ASSERT(errstream);
*errstream << header;
for (int i = 0; i < header.size(); i++) padding.append(" ");
int count = 0;
Q_FOREACH(const QVariant& out, msgs)
{
if (!out.isNull())
{
if (count != 0) *errstream << padding;
*errstream << out.toString() << '\n';
}
count++;
}
*errstream << endl;
}
/*!
A helper function that actually writes \a msgs to stdout with given \a level.
This function is called by QxtBasicSTDLoggerEngine. Reimplement this function when creating a subclass of QxtBasicSTDLoggerEngine.
*/
void QxtBasicSTDLoggerEngine::writeToStdOut(const QString& level, const QList<QVariant> &msgs)
{
/* Message format...
[time] [error level] First message.....
second message
third message
*/
if (msgs.isEmpty()) return;
QString header = '[' + QTime::currentTime().toString("hh:mm:ss.zzz") + "] [" + level + "] ";
QString padding;
QTextStream* outstream = stdOutStream();
Q_ASSERT(outstream);
*outstream << header;
for (int i = 0; i < header.size(); i++) padding.append(' ');
int count = 0;
Q_FOREACH(const QVariant& out, msgs)
{
if (!out.isNull())
{
if (count != 0) *outstream << padding;
*outstream << out.toString() << '\n';
}
count++;
}
*outstream << endl;
}