OSCAR-code/oscar/logger.h

49 lines
1008 B
C
Raw Normal View History

#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>
2014-06-20 07:05:40 +00:00
#include <QTime>
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; }
2014-06-20 07:05:40 +00:00
virtual ~LogThread() {}
void run();
void append(QString msg);
void appendClean(QString msg);
2014-06-20 07:05:40 +00:00
bool isRunning() { return running; }
void connectionReady();
2014-06-20 07:05:40 +00:00
void quit();
QStringList buffer;
QMutex strlock;
QThreadPool *threadpool;
signals:
void outputLog(QString);
protected:
volatile bool running;
QTime logtime;
bool connected;
2014-06-20 07:05:40 +00:00
};
extern LogThread * logger;
extern QThreadPool * otherThreadPool;
#endif // LOGGER_H