2018-05-03 09:59:31 +00:00
|
|
|
|
/* SleepyHead Logger module implementation
|
2014-08-17 12:56:05 +00:00
|
|
|
|
*
|
2018-03-28 07:10:52 +00:00
|
|
|
|
* Copyright (c) 2011-2018 Mark Watkins <mark@jedimark.net>
|
2014-08-17 12:56:05 +00:00
|
|
|
|
*
|
|
|
|
|
* This file is subject to the terms and conditions of the GNU General Public
|
2018-06-04 20:48:38 +00:00
|
|
|
|
* License. See the file COPYING in the main directory of the source code
|
|
|
|
|
* for more details. */
|
2014-08-17 12:56:05 +00:00
|
|
|
|
|
2014-06-20 07:05:40 +00:00
|
|
|
|
#include "logger.h"
|
|
|
|
|
|
2018-05-05 07:14:44 +00:00
|
|
|
|
#define ASSERTS_SUCK
|
|
|
|
|
|
2014-06-20 07:05:40 +00:00
|
|
|
|
QThreadPool * otherThreadPool = NULL;
|
|
|
|
|
|
|
|
|
|
void MyOutputHandler(QtMsgType type, const QMessageLogContext &context, const QString &msgtxt)
|
|
|
|
|
{
|
|
|
|
|
Q_UNUSED(context)
|
|
|
|
|
|
|
|
|
|
if (!logger) {
|
|
|
|
|
fprintf(stderr, "Pre/Post: %s\n", msgtxt.toLocal8Bit().constData());
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString msg, typestr;
|
|
|
|
|
|
|
|
|
|
switch (type) {
|
|
|
|
|
case QtWarningMsg:
|
|
|
|
|
typestr = QString("Warning: ");
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case QtFatalMsg:
|
|
|
|
|
typestr = QString("Fatal: ");
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case QtCriticalMsg:
|
|
|
|
|
typestr = QString("Critical: ");
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
typestr = QString("Debug: ");
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2018-05-03 09:59:31 +00:00
|
|
|
|
msg = typestr + msgtxt; //+QString(" (%1:%2, %3)").arg(context.file).arg(context.line).arg(context.function);
|
|
|
|
|
|
2014-06-20 07:05:40 +00:00
|
|
|
|
|
|
|
|
|
if (logger && logger->isRunning()) {
|
|
|
|
|
logger->append(msg);
|
|
|
|
|
}
|
2018-05-05 07:14:44 +00:00
|
|
|
|
#ifdef ASSERTS_SUCK
|
|
|
|
|
// else {
|
2018-05-03 09:59:31 +00:00
|
|
|
|
fprintf(stderr, "%s\n", msg.toLocal8Bit().data());
|
2018-05-05 07:14:44 +00:00
|
|
|
|
// }
|
|
|
|
|
#endif
|
2014-06-20 07:05:40 +00:00
|
|
|
|
|
|
|
|
|
if (type == QtFatalMsg) {
|
|
|
|
|
abort();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void initializeLogger()
|
|
|
|
|
{
|
|
|
|
|
logger = new LogThread();
|
|
|
|
|
otherThreadPool = new QThreadPool();
|
|
|
|
|
bool b = otherThreadPool->tryStart(logger);
|
|
|
|
|
qInstallMessageHandler(MyOutputHandler);
|
|
|
|
|
if (b) {
|
2018-05-06 07:55:02 +00:00
|
|
|
|
qDebug() << "Started logging thread";
|
2014-06-20 07:05:40 +00:00
|
|
|
|
} else {
|
|
|
|
|
qWarning() << "Logging thread did not start correctly";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void shutdownLogger()
|
|
|
|
|
{
|
|
|
|
|
if (logger) {
|
|
|
|
|
logger->quit();
|
|
|
|
|
otherThreadPool->waitForDone(-1);
|
|
|
|
|
logger = NULL;
|
|
|
|
|
}
|
|
|
|
|
delete otherThreadPool;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
LogThread * logger = NULL;
|
|
|
|
|
|
|
|
|
|
void LogThread::append(QString msg)
|
|
|
|
|
{
|
|
|
|
|
QString tmp = QString("%1: %2").arg(logtime.elapsed(), 5, 10, QChar('0')).arg(msg);
|
|
|
|
|
//QStringList appears not to be threadsafe
|
|
|
|
|
strlock.lock();
|
|
|
|
|
buffer.append(tmp);
|
|
|
|
|
strlock.unlock();
|
|
|
|
|
}
|
|
|
|
|
|
2014-07-21 16:14:07 +00:00
|
|
|
|
void LogThread::appendClean(QString msg)
|
|
|
|
|
{
|
|
|
|
|
strlock.lock();
|
|
|
|
|
buffer.append(msg);
|
|
|
|
|
strlock.unlock();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2014-06-20 07:05:40 +00:00
|
|
|
|
void LogThread::quit() {
|
|
|
|
|
qDebug() << "Shutting down logging thread";
|
|
|
|
|
running = false;
|
|
|
|
|
strlock.lock();
|
|
|
|
|
while (!buffer.isEmpty()) {
|
|
|
|
|
QString msg = buffer.takeFirst();
|
|
|
|
|
fprintf(stderr, "%s\n", msg.toLocal8Bit().constData());
|
|
|
|
|
}
|
|
|
|
|
strlock.unlock();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void LogThread::run()
|
|
|
|
|
{
|
|
|
|
|
running = true;
|
|
|
|
|
do {
|
|
|
|
|
strlock.lock();
|
2014-06-22 15:14:46 +00:00
|
|
|
|
//int r = receivers(SIGNAL(outputLog(QString())));
|
2014-06-20 07:05:40 +00:00
|
|
|
|
while (!buffer.isEmpty()) {
|
|
|
|
|
QString msg = buffer.takeFirst();
|
|
|
|
|
fprintf(stderr, "%s\n", msg.toLocal8Bit().data());
|
|
|
|
|
emit outputLog(msg);
|
|
|
|
|
}
|
|
|
|
|
strlock.unlock();
|
|
|
|
|
QThread::msleep(1000);
|
|
|
|
|
} while (running);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|