OSCAR-code/oscar/logger.h
sawinglogz 6a658b3be0 Enable serial device recording in the main application.
This is transparent to the user and is recorded into a log directory within
the OSCAR_Data directory.

Also add log rotation so that these logs don't grow forever.
2020-07-21 13:25:16 -04:00

49 lines
1008 B
C++

#ifndef LOGGER_H
#define LOGGER_H
#include <QDebug>
#include <QRunnable>
#include <QThreadPool>
#include <QMutex>
#include <QTime>
void initializeLogger();
void shutdownLogger();
QString GetLogDir();
void rotateLogs(const QString & filePath, int maxPrevious=-1);
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