forked from krojew/evernus
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathChainableFileLogger.cpp
More file actions
141 lines (110 loc) · 4.12 KB
/
Copy pathChainableFileLogger.cpp
File metadata and controls
141 lines (110 loc) · 4.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
129
130
131
132
133
134
135
136
137
138
139
140
141
/**
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include <algorithm>
#include <boost/range/adaptor/reversed.hpp>
#include <QtDebug>
#include <QStandardPaths>
#include <QCollator>
#include <QDir>
#include "ChainableFileLogger.h"
namespace Evernus
{
ChainableFileLogger *ChainableFileLogger::instance = nullptr;
const QString ChainableFileLogger::fileNameBase = "main.log";
ChainableFileLogger::ChainableFileLogger(std::size_t maxLogSize, uint maxLogFiles)
: mMaxLogSize{maxLogSize}
, mMaxLogFiles{maxLogFiles}
, mLogFile{getLogDir() + fileNameBase}
{
QDir{}.mkpath(getLogDir());
if (!openLog())
qWarning() << "Error opening main.log file at:" << getLogDir();
else
mPrevHandler = qInstallMessageHandler(&ChainableFileLogger::handleMessage);
}
ChainableFileLogger::~ChainableFileLogger()
{
qInstallMessageHandler(mPrevHandler);
}
void ChainableFileLogger::initialize(std::size_t maxLogSize, uint maxLogFiles)
{
Q_ASSERT(instance == nullptr);
static ChainableFileLogger instance{maxLogSize, maxLogFiles};
ChainableFileLogger::instance = &instance;
}
void ChainableFileLogger::writeMessage(QtMsgType type, const QMessageLogContext &context, const QString &msg)
{
if (mPrevHandler != nullptr)
mPrevHandler(type, context, msg);
const auto log = qFormatLogMessage(type, context, msg);
if (Q_LIKELY(!log.isEmpty()))
{
std::lock_guard<std::mutex> lock{mStreamMutex};
if (Q_UNLIKELY(mCurrentLogCheckCount == 0))
{
if (Q_UNLIKELY(static_cast<std::size_t>(mLogFile.size()) > mMaxLogSize))
rotateLogs();
mCurrentLogCheckCount = logCheckCount;
}
else
{
--mCurrentLogCheckCount;
}
mStream << log << '\n';
mStream.flush();
}
}
void ChainableFileLogger::rotateLogs()
{
mLogFile.close();
QDir dir{getLogDir()};
auto logFiles = dir.entryList({ fileNameBase + ".*" }, QDir::Files);
QCollator collator;
collator.setNumericMode(true);
std::sort(std::begin(logFiles), std::end(logFiles), collator);
for (const auto &file : logFiles | boost::adaptors::reversed)
{
auto ok = false;
auto number = file.mid(file.lastIndexOf('.') + 1).toUInt(&ok);
if (Q_UNLIKELY(!ok))
continue;
++number;
if (number >= mMaxLogFiles && number >= mRotationCount)
dir.remove(file);
else
dir.rename(file, QStringLiteral("%1.%2").arg(fileNameBase).arg(number));
}
dir.rename(fileNameBase, fileNameBase + ".0");
++mRotationCount;
if (!openLog())
{
qWarning() << "Error re-opening main.log file at:" << getLogDir();
qInstallMessageHandler(mPrevHandler);
}
}
bool ChainableFileLogger::openLog()
{
return mLogFile.open(QIODevice::Append | QIODevice::Text);
}
void ChainableFileLogger::handleMessage(QtMsgType type, const QMessageLogContext &context, const QString &msg)
{
Q_ASSERT(instance != nullptr);
instance->writeMessage(type, context, msg);
}
QString ChainableFileLogger::getLogDir()
{
return QStandardPaths::writableLocation(QStandardPaths::AppLocalDataLocation) + QStringLiteral("/log/");
}
}