-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlogging.c
72 lines (61 loc) · 1.44 KB
/
logging.c
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
#include "ffrunner.h"
CRITICAL_SECTION cs;
HANDLE logFile;
bool logVerbose;
bool initialized = false;
void
init_logging(const char *logPath, bool verbose)
{
InitializeCriticalSection(&cs);
if (logPath != NULL) {
logFile = CreateFileA(logPath, GENERIC_WRITE, FILE_SHARE_READ, NULL,
CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL);
} else {
logFile = INVALID_HANDLE_VALUE;
}
initialized = true;
logVerbose = verbose;
}
void
dbglogmsg(const char *fmt, ...)
{
va_list args;
char buf[4028];
int len;
DWORD written;
if (!initialized) {
printf("Log called before initialization\n");
exit(1);
}
if (!logVerbose) {
return;
}
va_start(args, fmt);
len = vsnprintf(buf, ARRLEN(buf), fmt, args);
va_end(args);
EnterCriticalSection(&cs);
if (logFile != INVALID_HANDLE_VALUE) {
WriteFile(logFile, buf, len, &written, NULL);
}
LeaveCriticalSection(&cs);
}
void
logmsg(const char *fmt, ...)
{
va_list args;
char buf[4028];
int len;
DWORD written;
if (!initialized) {
printf("Log called before initialization\n");
exit(1);
}
va_start(args, fmt);
len = vsnprintf(buf, ARRLEN(buf), fmt, args);
va_end(args);
EnterCriticalSection(&cs);
if (logFile != INVALID_HANDLE_VALUE) {
WriteFile(logFile, buf, len, &written, NULL);
}
LeaveCriticalSection(&cs);
}