This repository was archived by the owner on Mar 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapplogger.cpp
More file actions
214 lines (181 loc) · 5.33 KB
/
applogger.cpp
File metadata and controls
214 lines (181 loc) · 5.33 KB
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
//
// SmartServer
// Copyright (C) 2021 АО "Нефтеавтоматика"
//
// Разработчик
// Ананьев А.А. <Ananev-AA@nefteavtomatika.ru>
//
#include <QDir>
#include <QSysInfo>
#include <QDateTime>
#include "applogger.h"
std::mutex AppLogger::mutex;
///
/// \brief AppLogger::AppLogger
///
AppLogger::AppLogger()
{
qInstallMessageHandler(AppLogger::defaultHandler);
}
///
/// \brief AppLogger::~AppLogger
///
AppLogger::~AppLogger()
{
if(_logFile.isOpen())
{
_logFile.close();
}
}
///
/// \brief AppLogger::setup
/// \param app
/// \param filename
///
void AppLogger::setup(const QApplication& app, const QString filename)
{
QString appDir = app.applicationDirPath();
if(filename.isEmpty())
{
_logFile.setFileName(appDir + QDir::separator() + app.applicationName() + ".log");
}
else
{
_logFile.setFileName(filename);
}
if(_logFile.open(QIODevice::WriteOnly | QIODevice::Append))
{
fputs(qPrintable(QString("Установлено логирование в файл %1").arg(_logFile.fileName())), stdout);
qInstallMessageHandler(AppLogger::fileHandler);
hello(app);
}
else
{
qCritical() << "Не удалось открыть (создать) файл лога" << _logFile.fileName();
}
}
///
/// \brief AppLogger::setup
/// \param app
/// \param listWidget
///
void AppLogger::setup(const QApplication& app, QListWidget* listWidget, int maxRows)
{
_maxRows = maxRows;
_listWidget = listWidget;
qInstallMessageHandler(AppLogger::listWidgetHandler);
hello(app);
}
///
/// \brief AppLogger::hello
/// \param app
///
void AppLogger::hello(const QApplication& app) const
{
qInfo().noquote() << app.applicationName() << app.applicationVersion() << QSysInfo::currentCpuArchitecture();
}
///
/// \brief AppLogger::defaultHandler
/// \param type
/// \param msg
///
void AppLogger::defaultHandler(QtMsgType type, const QMessageLogContext& ctx, const QString& msg)
{
std::lock_guard<std::mutex> lock(AppLogger::mutex);
{
auto now = QDateTime::currentDateTime().toString("dd.MM.yyyy HH:mm:ss.zzz");
QString category = ctx.category;
QString text = (category == "default") ? msg : QString("[%1] %2").arg(ctx.category, msg);
switch (type)
{
case QtDebugMsg:
qDebug().noquote() << QString("[%1] Debug: %2").arg(now, text);
break;
case QtInfoMsg:
qInfo().noquote() << QString("[%1] Info: %2").arg(now, text);
break;
case QtWarningMsg:
qWarning().noquote() << QString("[%1] Warning: %2").arg(now, text);
break;
case QtCriticalMsg:
qCritical().noquote() << QString("[%1] Critical: %2").arg(now, text);
break;
case QtFatalMsg:
qFatal("[%s] Fatal: %s", now.data(), text.data());
}
}
}
///
/// \brief AppLogger::fileHandler
/// \param type
/// \param msg
///
void AppLogger::fileHandler(QtMsgType type, const QMessageLogContext& ctx, const QString& msg)
{
auto now = QDateTime::currentDateTime().toString("dd.MM.yyyy HH:mm:ss.zzz");
QString category = ctx.category;
QString text = (category == "default") ? msg : QString("[%1] %2").arg(ctx.category, msg);
switch (type)
{
case QtDebugMsg:
text = QString("[%1] Debug: %2").arg(now, text);
break;
case QtInfoMsg:
text = QString("[%1] Info: %2").arg(now, text);
break;
case QtWarningMsg:
text = QString("[%1] Warning: %2").arg(now, text);
break;
case QtCriticalMsg:
text = QString("[%1] Critical: %2").arg(now, text);
break;
case QtFatalMsg:
text = QString("[%1] Fatal: %2").arg(now, text);
break;
}
std::lock_guard<std::mutex> lock(AppLogger::mutex);
{
auto&& logFile = AppLogger::getInstance()._logFile;
if(logFile.isOpen())
{
QTextStream ts(&logFile);
ts << text << "\n";
}
}
}
///
/// \brief AppLogger::listWidgetHandler
/// \param type
/// \param msg
///
void AppLogger::listWidgetHandler(QtMsgType type, const QMessageLogContext& ctx, const QString& msg)
{
auto now = QDateTime::currentDateTime().toString("dd.MM.yyyy HH:mm:ss.zzz");
QString category = ctx.category;
QString text = (category == "default") ? msg : QString("[%1] %2").arg(ctx.category, msg);
switch (type)
{
case QtDebugMsg:
text = QString("[%1] Debug: %2").arg(now, text);
break;
case QtInfoMsg:
text = QString("[%1] Info: %2").arg(now, text);
break;
case QtWarningMsg:
text = QString("[%1] Warning: %2").arg(now, text);
break;
case QtCriticalMsg:
text = QString("[%1] Critical: %2").arg(now, text);
break;
case QtFatalMsg:
text = QString("[%1] Fatal: %2").arg(now, text);
break;
}
AppLogger::getInstance()._listWidget->addItem(text);
if(AppLogger::getInstance()._listWidget->count() > AppLogger::getInstance()._maxRows)
{
auto item = AppLogger::getInstance()._listWidget->takeItem(0);
delete item;
}
AppLogger::getInstance()._listWidget->scrollToBottom();
}