-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLog.c
344 lines (300 loc) · 7.39 KB
/
Log.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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
////////////////////////////////////////////////////////////////////////////////
//
// Global including files.
//
// Including the files for the system.
//
// These including files are generally used in different operation system.
//
////////////////////////////////////////////////////////////////////////////////
#include "Global.h"
//ANSI C standard.
#include <stdarg.h>
////////////////////////////////////////////////////////////////////////////////
//
// Internal definitions.
//
// These definitions are generally used internally.
//
////////////////////////////////////////////////////////////////////////////////
//Global log.
static SimpleLog theLog;
////////////////////////////////////////////////////////////////////////////////
//
// Get event trace id.
//
////////////////////////////////////////////////////////////////////////////////
_BOOL GetEventTraceID(_INT32* lpTraceID)
{
//Open lock.
if(!OpenLock(&theLog.lock))
{
#ifdef _DEBUG
PrintLine(stderr,"Log::GetEventTraceID : fail to open lock !");
#endif
return _FALSE;
}
//Get unique trace id.
*lpTraceID = theLog.nSequence;
//Add sequence.
theLog.nSequence = (theLog.nSequence ++) & 0x7FFFFFFF;
//Close lock.
if(!CloseLock(&theLog.lock))
{
#ifdef _DEBUG
PrintLine(stderr,"Log::GetEventTraceID : fail to close lock !");
#endif
return _FALSE;
}
//Return true.
return _TRUE;
}
////////////////////////////////////////////////////////////////////////////////
//
// Trace event.
//
////////////////////////////////////////////////////////////////////////////////
_BOOL TraceEvent(_INT32 nTraceID,_STRING lpstrEvent)
{
_PASCALSTRING strName;
FILE* pFile;
//Current time.
SimpleTime timeCurrent;
#ifdef _DEBUG
assert(lpstrEvent != NULL);
#endif
//Get file name.
sprintf(strName,"%s%s%08x.evt",
theLog.recorder.strDirectory,GetFileDirectorySplitter(),nTraceID);
//Open file.
pFile = fopen(strName,"a");
//Check result.
if(pFile != NULL)
{
//Initialize current time.
if(!InitializeTime(&timeCurrent))
{
#ifdef _DEBUG
PrintLine(stderr,"Log::TraceEvent : fail to initialize time !");
#endif
}
//Write event time.
if(PrintLine(pFile,"%s",GetRecorderFormat(&timeCurrent)) <= 0)
{
#ifdef _DEBUG
PrintLine(stderr,"Log::TraceEvent : fail to write event time !");
#endif
}
//Print a new line.
if(PrintLine(pFile,lpstrEvent) <= 0)
{
#ifdef _DEBUG
PrintLine(stderr,"Log::TraceEvent : fail to write event !");
#endif
}
//Close file.
fclose(pFile);
//Return true.
return _TRUE;
}
#ifdef _DEBUG
PrintLine(stderr,"Log::TraceEvent : fail to open file !");
#endif
//Return false.
return _FALSE;
}
////////////////////////////////////////////////////////////////////////////////
//
// Combinate event.
//
////////////////////////////////////////////////////////////////////////////////
_BOOL CombinateEvent(_INT32 nHeadTraceID,_INT32 nTailTraceID)
{
_PASCALSTRING strHeadFile;
_PASCALSTRING strTailFile;
#ifdef _DEBUG
assert(nHeadTraceID > 0 && nTailTraceID > 0);
assert(nHeadTraceID != nTailTraceID);
#endif
//Get head file name.
sprintf(strHeadFile,"%s%s%08x.evt",
theLog.recorder.strDirectory,GetFileDirectorySplitter(),nHeadTraceID);
//Get tail file name.
sprintf(strTailFile,"%s%s%08x.evt",
theLog.recorder.strDirectory,GetFileDirectorySplitter(),nTailTraceID);
//Combinate event file.
if(!CombinateFile(strHeadFile,strTailFile))
{
#ifdef _DEBUG
PrintLine(stderr,"Log::CombinateEvent : fail to append event file !");
#endif
return _FALSE;
}
//Remove packet file.
if(!RemoveFile(strTailFile))
{
#ifdef _DEBUG
PrintLine(stderr,"Log::CombinateEvent : fail to remove tail event file !");
#endif
return _FALSE;
}
//Return true.
return _TRUE;
}
////////////////////////////////////////////////////////////////////////////////
//
// Initialize log.
//
////////////////////////////////////////////////////////////////////////////////
_BOOL InitializeLog(_STRING lpstrDirectory,_UINT32 nRequests)
{
#ifdef _DEBUG
assert(lpstrDirectory != NULL && strlen(lpstrDirectory) > 0);
#endif
//Check directory.
if(!IsFileDirectoryExist(lpstrDirectory))
{
//Create directory.
if(!CreateFileDirectory(lpstrDirectory))
{
#ifdef _DEBUG
PrintLine(stderr,"Log::InitializeLog : fail to create directory !");
#endif
return _FALSE;
}
}
//Clear log.
memset(&theLog,0,sizeof(SimpleLog));
//Set requests.
theLog.nRequests = nRequests;
//Initialize lock.
if(!InitializeLock(&theLog.lock))
{
#ifdef _DEBUG
PrintLine(stderr,"Log::InitializeLog : fail to initialize lock !");
#endif
return _FALSE;
}
//Initialize recorder.
InitializeRecorder(&theLog.recorder);
//Set directory.
strcpy(theLog.recorder.strDirectory,lpstrDirectory);
//Open recorder.
if(!OpenRecorder(&theLog.recorder))
{
#ifdef _DEBUG
PrintLine(stderr,"Log::InitializeLog : fail to open recorder !");
#endif
return _FALSE;
}
//Set sequence.
theLog.nSequence = 1;
//Return true.
return _TRUE;
}
////////////////////////////////////////////////////////////////////////////////
//
// Uninitialize log.
//
////////////////////////////////////////////////////////////////////////////////
_BOOL UninitializeLog()
{
//Close recorder.
if(!CloseRecorder(&theLog.recorder))
{
#ifdef _DEBUG
PrintLine(stderr,"Log::UninitializeLog : fail to close recorder !");
#endif
}
//Uninitialize recorder.
UninitializeRecorder(&theLog.recorder);
//Uninitialize lock.
if(!UninitializeLock(&theLog.lock))
{
#ifdef _DEBUG
PrintLine(stderr,"Log::UninitializeLog : fail to uninitialize lock !");
#endif
return _FALSE;
}
//Return false.
return _TRUE;
}
////////////////////////////////////////////////////////////////////////////////
//
// Is log requested.
//
////////////////////////////////////////////////////////////////////////////////
_BOOL IsLogRequested(_UINT32 nRequests)
{
//Check requests.
if(theLog.nRequests & nRequests)
{
//Return true.
return _TRUE;
}
//Return false.
return _FALSE;
}
////////////////////////////////////////////////////////////////////////////////
//
// Log requested event.
//
////////////////////////////////////////////////////////////////////////////////
_BOOL LogRequestedEvent(_STRING lpstrEvent,_UINT32 nRequests)
{
_BOOL bResult = _TRUE;
#ifdef _DEBUG
assert(lpstrEvent != NULL);
#endif
//Check requests.
if(IsLogRequested(nRequests))
{
//Print event to screen.
printf("%s\r\n",lpstrEvent);
//Open Lock.
if(!OpenLock(&theLog.lock))
{
#ifdef _DEBUG
PrintLine(stderr,"Log::LogRequestedEvent : fail to open lock !");
#endif
return _FALSE;
}
//Recorder event.
bResult = RecordEvent(&theLog.recorder,lpstrEvent);
//Close Lock.
if(!CloseLock(&theLog.lock))
{
#ifdef _DEBUG
PrintLine(stderr,"Log::LogRequestedEvent : fail to close lock !");
#endif
return _FALSE;
}
}
//Return result.
return bResult;
}
////////////////////////////////////////////////////////////////////////////////
//
// Log requested format event.
//
////////////////////////////////////////////////////////////////////////////////
_BOOL LogRequestedFormat(_UINT32 nRequests,_STRING lpstrEvent,...)
{
//Format block.
_BLOCK blockFormated;
//Parameter list.
va_list argp;
#ifdef _DEBUG
assert(lpstrEvent != NULL);
#endif
//Clear block.
memset(blockFormated,0,BLOCK_SIZE);
//Initialize variable arguments.
va_start(argp,lpstrEvent);
//Print variable arguments.
vsprintf(blockFormated,lpstrEvent,argp);
//Reset variable arguments.
va_end(argp);
//Return result.
return LogRequestedEvent((_STRING)blockFormated,nRequests);
}