OSCAR-code/oscar/logger.h
sawinglogz 127a3e1964 Fix logger thread so that it doesn't lose messages at startup.
This was particularly noticeable when running for the first time and
selecting OSCAR's data location.
2020-01-18 11:41:09 -05:00

45 lines
922 B
C++

#ifndef LOGGER_H
#define LOGGER_H
#include <QDebug>
#include <QRunnable>
#include <QThreadPool>
#include <QMutex>
#include <QTime>
void initializeLogger();
void shutdownLogger();
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; }
virtual ~LogThread() {}
void run();
void append(QString msg);
void appendClean(QString msg);
bool isRunning() { return running; }
void connectionReady();
void quit();
QStringList buffer;
QMutex strlock;
QThreadPool *threadpool;
signals:
void outputLog(QString);
protected:
volatile bool running;
QTime logtime;
bool connected;
};
extern LogThread * logger;
extern QThreadPool * otherThreadPool;
#endif // LOGGER_H