-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathlogutils.cpp
151 lines (125 loc) · 4.03 KB
/
logutils.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
#include "logutils.h"
#include <QDebug>
#include <QDir>
#include <QFile>
#include <QFileInfo>
#include <QFileInfoList>
#include <QSettings>
#include <QStandardPaths>
#include <QTime>
#include <iostream>
namespace LogUtils {
static QString logFileName;
static QString logFolderName;
static QFile* logFile;
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");
// 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
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();
}
}
QString levelText;
switch (type) {
case QtDebugMsg:
levelText = "Debug";
break;
case QtInfoMsg:
levelText = "Info";
break;
case QtWarningMsg:
levelText = "Warning";
break;
case QtCriticalMsg:
levelText = "Critical";
break;
case QtFatalMsg:
levelText = "Fatal";
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;
}
} // namespace LogUtils