-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathlogutils.cpp
More file actions
281 lines (231 loc) · 7.1 KB
/
Copy pathlogutils.cpp
File metadata and controls
281 lines (231 loc) · 7.1 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
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
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
#include "logutils.h"
#include <QDebug>
#include <QDir>
#include <QFile>
#include <QFileInfo>
#include <QFileInfoList>
#include <QSettings>
#include <QStandardPaths>
#include <QTime>
#include <iostream>
#include "syslog.h"
#include "utils.h"
namespace LogUtils {
static QString logFileName;
static QString logFolderName;
static QFile* logFile;
static LogUtils::LogLevel currentLogLevel = LogUtils::DebugLevel;
static Syslog *syslog;
LogUtils::LogLevel logLevel()
{
return currentLogLevel;
}
void initLogFileName() {
qDebug("ENTER LogUtils::iniLogFileName");
// Check environment variable for logs directory
QString path = qgetenv("LIBKI_LOGS_DIR");
qDebug() << "LOGS ENV VAR: " << path;
// Next, check the user level registry ( on Windows )
if ( path.isEmpty() ) {
QSettings settings("HKEY_CURRENT_USER\\Software\\Libki", QSettings::NativeFormat);
path = settings.value("logs_dir").toString();
qDebug() << "HKCU LOGS DIR: " << path;
}
// Next, check the machine level registry ( on Windows )
if ( path.isEmpty() ) {
QSettings settings("HKEY_LOCAL_MACHINE\\Software\\Libki", QSettings::NativeFormat);
path = settings.value("logs_dir").toString();
qDebug() << "HKLM LOGS DIR: " << path;
}
// Finally, default to AppDataLocation
if ( path.isEmpty() ) {
path = QStandardPaths::writableLocation(QStandardPaths::AppDataLocation);
qDebug() << "LOGS APP DATA LOCATION: " << path;
}
if (path.isEmpty()) qFatal("Cannot determine settings storage location");
QDir d = QDir(path);
QString appDataPath = d.absolutePath();
logFolderName = appDataPath + "/logs";
logFileName = QString(logFolderName + "/Log_%1__%2.txt")
.arg(QDate::currentDate().toString("yyyy_MM_dd"))
.arg(QTime::currentTime().toString("hh_mm_ss_zzz"));
qDebug() << "LOG DIR NAME: " << logFolderName;
qDebug() << "LOG FILE NAME: " << logFileName;
d.mkpath(logFolderName);
qDebug() << "LOG DIR EXISTS: " << QDir(logFolderName).exists();
qDebug("LEAVE LogUtils::iniLogFileName");
}
void deleteOldLogs() {
qDebug("ENTER LogUtils::deleteOldLogs");
QDir dir;
dir.setFilter(QDir::Files | QDir::Hidden | QDir::NoSymLinks);
dir.setSorting(QDir::Time | QDir::Reversed);
dir.setPath(logFolderName);
QFileInfoList list = dir.entryInfoList();
if (list.size() <= LOGFILES) {
return; // no files to delete
} else {
for (int i = 0; i < (list.size() - LOGFILES); i++) {
QString path = list.at(i).absoluteFilePath();
QFile file(path);
file.remove();
}
}
qDebug("LEAVE LogUtils::deleteOldLogs");
}
bool initLogging() {
qDebug("ENTER LogUtils::initLogging");
QSettings settings;
QString level =
settings.value("logging/level", "debug")
.toString()
.trimmed()
.toLower();
if (level == "debug")
currentLogLevel = DebugLevel;
else if (level == "warning")
currentLogLevel = WarningLevel;
else if (level == "error")
currentLogLevel = ErrorLevel;
else if (level == "off")
currentLogLevel = OffLevel;
else
currentLogLevel = DebugLevel;
fprintf(stderr,
"Configured log level = %d\n",
(int)currentLogLevel);
// Create folder for logfiles if not exists
if (!QDir(logFolderName).exists()) {
qDebug() << "Creating directory " << logFolderName;
QDir().mkdir(logFolderName);
}
deleteOldLogs(); // delete old log files
initLogFileName(); // create the logfile name
QString enable_syslog =
settings.value("logging/enable_syslog")
.toString()
.trimmed()
.toLower();
qDebug() << "ENABLE SYSLOG: " << enable_syslog;
if (enable_syslog == "yes") {
qDebug("Enabling syslog.");
QString syslog_server =
settings.value("logging/syslog_server", "localhost")
.toString()
.trimmed()
.toLower();
qDebug() << "SYSLOG SERVER: " << syslog_server;
bool okay = false;
quint16 syslog_port =
settings.value("logging/syslog_port", "514")
.toUInt(&okay);
qDebug() << "SYSLOG PORT: " << syslog_port;
QString syslog_facility =
settings.value("logging/syslog_facility", "local0")
.toString()
.trimmed()
.toLower();
qDebug() << "SYSLOG FACILITY: " << syslog_facility;
QString syslog_hostname =
settings.value("logging/syslog_hostname", getClientName())
.toString()
.trimmed()
.toLower();
qDebug() << "SYSLOG HOSTNAME: " << syslog_hostname;
QString syslog_appname =
settings.value("logging/syslog_appname", "libkiclient")
.toString()
.trimmed()
.toLower();
qDebug() << "SYSLOG APPNAME: " << syslog_appname;
if (!okay) {
qWarning("Couldn't parse syslog port.");
} else {
syslog = new Syslog(syslog_server, syslog_port, QStringToFacility(syslog_facility), syslog_hostname, syslog_appname, QCoreApplication::applicationPid());
}
} else {
syslog = NULL;
}
logFile = new QFile(logFileName);
if (logFile->open(QIODevice::WriteOnly | QIODevice::Append)) {
qInstallMessageHandler(LogUtils::myMessageHandler);
qDebug("LEAVE LogUtils::initLogging - Return true");
return true;
} else {
qDebug("LEAVE LogUtils::initLogging - Return false");
return false;
}
}
void myMessageHandler(QtMsgType type, const QMessageLogContext& context,
const QString& message) {
// check file size and if needed create new log!
{
if (logFile->size() > LOGSIZE) // check current log size
{
deleteOldLogs();
initLogFileName();
}
}
switch (type) {
case QtDebugMsg:
if (currentLogLevel > DebugLevel)
return;
break;
case QtWarningMsg:
if (currentLogLevel > WarningLevel)
return;
break;
case QtCriticalMsg:
if (currentLogLevel > ErrorLevel)
return;
break;
case QtFatalMsg:
break;
#if QT_VERSION >= QT_VERSION_CHECK(5, 5, 0)
case QtInfoMsg:
if (currentLogLevel > DebugLevel)
return;
break;
#endif
}
Severity syslog_severity = Debug;
QString levelText;
switch (type) {
case QtDebugMsg:
levelText = "Debug";
break;
case QtInfoMsg:
levelText = "Info";
syslog_severity = Informational;
break;
case QtWarningMsg:
levelText = "Warning";
syslog_severity = Warning;
break;
case QtCriticalMsg:
levelText = "Critical";
syslog_severity = Critical;
break;
case QtFatalMsg:
levelText = "Fatal";
syslog_severity = Critical;
break;
}
QString text = QString("%3 [%1] %2")
.arg(levelText)
.arg(message)
.arg(QDateTime::currentDateTime().toString(Qt::ISODate));
// Output to console
QTextStream(stdout) << text << endl;
// Output to log file
QTextStream ts(logFile);
ts << text << endl;
//Output to syslog, if enabled
if (syslog != NULL) {
if (syslog->sendSyslog(syslog_severity, message)) {
QTextStream(stdout) << "Failed to write to syslog." << endl;
ts << "Failed to write to syslog." << endl;
}
}
}
} // namespace LogUtils