-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathlogutils.cpp
More file actions
128 lines (110 loc) · 3.12 KB
/
logutils.cpp
File metadata and controls
128 lines (110 loc) · 3.12 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
#include "logutils.h"
#include <iostream>
#include <QTime>
#include <QFile>
#include <QFileInfo>
#include <QDebug>
#include <QDir>
#include <QFileInfoList>
#include <QStandardPaths>
namespace LogUtils
{
static QString logFileName;
static QString logFolderName;
static QFile* logFile;
void initLogFileName()
{
QString path = QStandardPaths::writableLocation(QStandardPaths::AppDataLocation);
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();
}
void 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();
}
}
}
bool initLogging()
{
qDebug() << "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);
return true;
}
else
{
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;
}
}