2024-01-13 20:10:17 +00:00
|
|
|
/* Overview GUI Headers
|
|
|
|
*
|
|
|
|
* Copyright (c) 2023-2024 The OSCAR Team
|
|
|
|
*
|
|
|
|
* This file is subject to the terms and conditions of the GNU General Public
|
|
|
|
* License. See the file COPYING in the main directory of the source code
|
|
|
|
* for more details. */
|
|
|
|
|
2020-01-18 16:41:09 +00:00
|
|
|
#ifndef LOGGER_H
|
2014-06-20 07:05:40 +00:00
|
|
|
#define LOGGER_H
|
|
|
|
|
|
|
|
#include <QDebug>
|
|
|
|
#include <QRunnable>
|
|
|
|
#include <QThreadPool>
|
2014-06-23 06:24:37 +00:00
|
|
|
#include <QMutex>
|
2020-07-20 01:34:08 +00:00
|
|
|
#include <QWaitCondition>
|
2014-06-20 07:05:40 +00:00
|
|
|
#include <QTime>
|
2023-02-12 01:50:02 +00:00
|
|
|
#include <QElapsedTimer>
|
2014-06-20 07:05:40 +00:00
|
|
|
|
|
|
|
void initializeLogger();
|
|
|
|
void shutdownLogger();
|
|
|
|
|
2020-07-19 01:44:05 +00:00
|
|
|
QString GetLogDir();
|
|
|
|
void rotateLogs(const QString & filePath, int maxPrevious=-1);
|
|
|
|
|
|
|
|
|
2014-06-20 07:05:40 +00:00
|
|
|
void MyOutputHandler(QtMsgType type, const QMessageLogContext &context, const QString &msgtxt);
|
|
|
|
|
|
|
|
class LogThread:public QObject, public QRunnable
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2020-07-19 20:36:22 +00:00
|
|
|
explicit LogThread() : QRunnable() { running = false; logtime.start(); connected = false; m_logFile = nullptr; m_logStream = nullptr; }
|
2020-07-20 23:12:46 +00:00
|
|
|
virtual ~LogThread();
|
2014-06-20 07:05:40 +00:00
|
|
|
|
|
|
|
void run();
|
|
|
|
void append(QString msg);
|
2014-07-21 16:14:07 +00:00
|
|
|
void appendClean(QString msg);
|
2014-06-20 07:05:40 +00:00
|
|
|
bool isRunning() { return running; }
|
2020-01-18 16:41:09 +00:00
|
|
|
void connectionReady();
|
2020-08-16 19:46:36 +00:00
|
|
|
bool logToFile();
|
2020-07-20 01:34:08 +00:00
|
|
|
QString logFileName();
|
2014-06-20 07:05:40 +00:00
|
|
|
|
|
|
|
void quit();
|
|
|
|
|
|
|
|
QStringList buffer;
|
|
|
|
QMutex strlock;
|
|
|
|
QThreadPool *threadpool;
|
|
|
|
signals:
|
|
|
|
void outputLog(QString);
|
|
|
|
protected:
|
|
|
|
volatile bool running;
|
2023-02-12 01:50:02 +00:00
|
|
|
QElapsedTimer logtime;
|
2020-01-18 16:41:09 +00:00
|
|
|
bool connected;
|
2020-07-19 20:36:22 +00:00
|
|
|
class QFile* m_logFile;
|
|
|
|
class QTextStream* m_logStream;
|
2020-07-20 01:34:08 +00:00
|
|
|
QWaitCondition logTrigger;
|
2014-06-20 07:05:40 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
extern LogThread * logger;
|
|
|
|
extern QThreadPool * otherThreadPool;
|
|
|
|
|
|
|
|
#endif // LOGGER_H
|