-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathLogging.c
141 lines (112 loc) · 3.71 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
#include <Windows.h>
#include <stdio.h>
#include <time.h>
#include "APE.h"
#include "Logging.h"
char *gLogPriority[] = { "OFF", "DEBUG", "INFO", "LOW", "MEDIUM", "HIGH", "ERROR", "FATAL" };
char *logMutexName = "logging.mtx2";
HANDLE loggingMutex = INVALID_HANDLE_VALUE;
HANDLE fileHandle = INVALID_HANDLE_VALUE;
BOOLEAN InitLogging()
{
if ((loggingMutex = CreateMutex(NULL, FALSE, logMutexName) == NULL) ||
loggingMutex == ERROR_ACCESS_DENIED)
{
printf("InitLogging(): Creating Logging mutex failed: Error no=%d\r\n", GetLastError());
return FALSE;
}
if (fileHandle = CreateFile(DBG_LOGFILE, GENERIC_READ | GENERIC_WRITE, 0, 0, OPEN_ALWAYS, FILE_ATTRIBUTE_NORMAL, 0) == INVALID_HANDLE_VALUE)
{
printf("InitLogging(): Creating file handle failed: Error no=%d\r\n", GetLastError());
return FALSE;
}
printf("InitLogging(): Mutex handle (%s/%d) and logfile handle (%d) created successfully\r\n", logMutexName, (int)loggingMutex, (int)fileHandle);
return TRUE;
}
void StopLogging()
{
if (loggingMutex != INVALID_HANDLE_VALUE)
{
CloseHandle(loggingMutex);
}
if (fileHandle != INVALID_HANDLE_VALUE)
{
CloseHandle(fileHandle);
}
}
void LogMsg(int priorityParam, char *logMessageParam, ...)
{
va_list args;
char tempBuffer[MAX_BUF_SIZE + 1];
char logMessage[MAX_BUF_SIZE + 1];
DWORD waitResult = -1;
char time[MAX_BUF_SIZE + 1];
if (priorityParam < DEBUG_LEVEL || DEBUG_LEVEL == DBG_OFF)
{
goto END;
}
ZeroMemory(tempBuffer, sizeof(tempBuffer));
ZeroMemory(logMessage, sizeof(logMessage));
va_start(args, logMessageParam);
vsprintf(tempBuffer, logMessageParam, args);
va_end(args);
// snprintf(logMessage, sizeof(logMessage) - 1, "%s %-7s: %s\r\n", time, gLogPriority[priorityParam], tempBuffer);
snprintf(logMessage, sizeof(logMessage) - 1, "%-7s: %s\r\n", gLogPriority[priorityParam], tempBuffer);
WriteToLogfile(logMessage);
return;
// For what reason ever the Mutex approach
// does not work! Must be fixed later. Any help
// is appreciated!
waitResult = WaitForSingleObject(loggingMutex, 1000);
switch (waitResult)
{
case WAIT_FAILED:
printf("LogMsg(): Error! Opening logging mutex (%d) failed with error no. %d\r\n", (int)loggingMutex, GetLastError());
break;
case WAIT_TIMEOUT:
printf("LogMsg(): Error! Waiting for mutex ended in timeout\r\n");
break;
case WAIT_OBJECT_0:
__try
{
ZeroMemory(tempBuffer, sizeof(tempBuffer));
ZeroMemory(logMessage, sizeof(logMessage));
va_start(args, logMessageParam);
vsprintf(tempBuffer, logMessageParam, args);
va_end(args);
snprintf(logMessage, sizeof(logMessage) - 1, "%s %-7s: %s\r\n", time, gLogPriority[priorityParam], tempBuffer);
WriteToLogfile(logMessage);
}
__finally
{
if (ReleaseMutex(loggingMutex) == FALSE)
{
printf("LogMsg(): Error! Releasing Mutex failed with error no. %d\r\n", GetLastError());
}
}
break;
default:
printf("LogMsg(): Error! OMG BUG!\r\n");
break;
}
END:
return;
}
void WriteToLogfile(char *logMessage)
{
char dateStamp[MAX_BUF_SIZE + 1];
char timeStamp[MAX_BUF_SIZE + 1];
char time[MAX_BUF_SIZE + 1];
DWORD bytesWritten = 0;
ZeroMemory(time, sizeof(time));
ZeroMemory(timeStamp, sizeof(timeStamp));
ZeroMemory(dateStamp, sizeof(dateStamp));
// Create timestamp
_strtime(timeStamp);
_strdate(dateStamp);
snprintf(time, sizeof(time) - 1, "%s %s", dateStamp, timeStamp);
printf(logMessage);
// Write message to the logfile.
SetFilePointer(fileHandle, 0, NULL, FILE_END);
WriteFile(fileHandle, logMessage, strnlen(logMessage, sizeof(logMessage) - 1), &bytesWritten, NULL);
}