-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlogger.cpp
78 lines (70 loc) · 1.59 KB
/
logger.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
#include <QDateTime>
#include "globals.h"
#include "logger.h"
// LOG_EMERG | LOG_ALERT | LOG_CRITICAL | LOG_ERROR | LOG_WARNING | LOG_NOTICE | LOG_INFO | LOG_DEBUG;
unsigned int Logger::LogSettings=LOG_EMERG | LOG_ALERT | LOG_CRITICAL | LOG_ERROR | LOG_WARNING | LOG_NOTICE | LOG_INFO | LOG_DEBUG;
bool Logger::LogFileEnabled=true;
bool Logger::pIsBusy=false;
Logger::Logger()
{
pLogFilePath=new char[256];
sprintf(pLogFilePath, "%.255s.log", PROGRAM_NAME);
pLogFile=fopen(pLogFilePath, "a");
}
Logger::~Logger()
{
if(pLogFile)
{
fclose(pLogFile);
}
}
void Logger::SetLogFilePath(const char *newPath)
{
if(strlen(newPath))
{
pIsBusy=true;
sprintf(pLogFilePath, "%.255s", newPath);
if(pLogFile)
{
fclose(pLogFile);
}
pLogFile=fopen(pLogFilePath, "a");
pIsBusy=false;
}
}
void Logger::SetLogFilePath(QString newPath)
{
if(!newPath.isEmpty())
{
SetLogFilePath(newPath.toStdString().data());
}
}
void Logger::Log(const char *message, unsigned int level)
{
if(!(level&LogSettings))
{
return;
}
while(pIsBusy)
{
QCoreApplication::processEvents();
}
pIsBusy=true;
pCurrDTstring=QDateTime::currentDateTime().toString("dd.MM.yyyy | hh:mm:ss");
if(pLogFile && LogFileEnabled)
{
fprintf(pLogFile, "%s %s\n", pCurrDTstring.toStdString().data(), message);
fflush(pLogFile);
}
fprintf(stdout, "%s %s\n", pCurrDTstring.toStdString().data(), message);
fflush(stdout);
pIsBusy=false;
}
void Logger::Log(QByteArray *message, unsigned int level)
{
Log(message->data(), level);
}
void Logger::Log(QString message, unsigned int level)
{
Log(message.toStdString().data(), level);
}