OSCAR-code/oscar/logger.h

64 lines
1.5 KiB
C
Raw Permalink Normal View History

/* 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. */
#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>
#include <QWaitCondition>
2014-06-20 07:05:40 +00:00
#include <QTime>
#include <QElapsedTimer>
2014-06-20 07:05:40 +00:00
void initializeLogger();
void shutdownLogger();
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:
explicit LogThread() : QRunnable() { running = false; logtime.start(); connected = false; m_logFile = nullptr; m_logStream = nullptr; }
virtual ~LogThread();
2014-06-20 07:05:40 +00:00
void run();
void append(QString msg);
void appendClean(QString msg);
2014-06-20 07:05:40 +00:00
bool isRunning() { return running; }
void connectionReady();
bool logToFile();
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;
QElapsedTimer logtime;
bool connected;
class QFile* m_logFile;
class QTextStream* m_logStream;
QWaitCondition logTrigger;
2014-06-20 07:05:40 +00:00
};
extern LogThread * logger;
extern QThreadPool * otherThreadPool;
#endif // LOGGER_H