-
Notifications
You must be signed in to change notification settings - Fork 0
/
Recorder.c
257 lines (224 loc) · 5.42 KB
/
Recorder.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
////////////////////////////////////////////////////////////////////////////////
//
// Global including files.
//
// Including the files for the system.
//
// These including files are generally used in different operation system.
//
////////////////////////////////////////////////////////////////////////////////
#include "Global.h"
////////////////////////////////////////////////////////////////////////////////
//
// Initialize recorder.
//
////////////////////////////////////////////////////////////////////////////////
void InitializeRecorder(SimpleRecorder* pRecorder)
{
#ifdef _DEBUG
assert(pRecorder != NULL);
#endif
//Clear log.
memset(pRecorder,0,sizeof(SimpleRecorder));
//Set trace id.
pRecorder->nTraceID = 0;
//Set locked.
pRecorder->bLocked = _FALSE;
//Initialize open time.
InitializeTime(&pRecorder->timeOpen);
//Set directory.
strcpy(pRecorder->strDirectory,"");
//Set file name.
strcpy(pRecorder->strFileName,"");
//Set file.
pRecorder->lpFile = NULL;
}
////////////////////////////////////////////////////////////////////////////////
//
// Uninitialize recorder.
//
////////////////////////////////////////////////////////////////////////////////
void UninitializeRecorder(SimpleRecorder* pRecorder)
{
#ifdef _DEBUG
assert(pRecorder != NULL);
#endif
//Check file.
if(pRecorder->lpFile != NULL)
{
//Close file.
fclose(pRecorder->lpFile);
//Set NULL.
pRecorder->lpFile = NULL;
}
}
////////////////////////////////////////////////////////////////////////////////
//
// Get recorder file name.
//
////////////////////////////////////////////////////////////////////////////////
void GetRecorderFileName(SimpleRecorder* pRecorder,_STRING strFileName)
{
#ifdef _DEBUG
assert(pRecorder != NULL);
#endif
//Check trace id.
if(pRecorder->nTraceID > 0)
{
//Get file name.
sprintf(strFileName,"%s%s%08x.evt",
pRecorder->strDirectory,GetFileDirectorySplitter(),pRecorder->nTraceID);
}
else
{
//Get file name.
sprintf(strFileName,"%s%s%s.log",
pRecorder->strDirectory,GetFileDirectorySplitter(),FormatDate(&pRecorder->timeOpen,""));
}
}
////////////////////////////////////////////////////////////////////////////////
//
// Open recorder.
//
////////////////////////////////////////////////////////////////////////////////
_BOOL OpenRecorder(SimpleRecorder* pRecorder)
{
#ifdef _DEBUG
assert(pRecorder != NULL);
#endif
//Check file.
if(pRecorder->lpFile != NULL)
{
#ifdef _DEBUG
PrintLine(stderr,"Recorder::OpenRecorder : file has already been opened !");
#endif
return _FALSE;
}
//Initialize open time.
if(!InitializeTime(&pRecorder->timeOpen))
{
#ifdef _DEBUG
PrintLine(stderr,"Recorder::OpenRecorder : fail to initialize open time !");
#endif
return _FALSE;
}
//Get recorder file name.
GetRecorderFileName(pRecorder,pRecorder->strFileName);
//Try to open a log file.
pRecorder->lpFile = fopen(pRecorder->strFileName,"a+");
//Check result.
if(pRecorder->lpFile == NULL)
{
#ifdef _DEBUG
PrintLine(stderr,"Recorder::OpenRecorder : fail to open file !");
#endif
return _FALSE;
}
//Return true.
return _TRUE;
}
////////////////////////////////////////////////////////////////////////////////
//
// Close recorder.
//
////////////////////////////////////////////////////////////////////////////////
_BOOL CloseRecorder(SimpleRecorder* pRecorder)
{
#ifdef _DEBUG
assert(pRecorder != NULL);
#endif
//Check log and file.
if(pRecorder->lpFile == NULL)
{
#ifdef _DEBUG
PrintLine(stderr,"Recorder::CloseRecorder : null log file !");
#endif
return _FALSE;
}
//Close a log file.
if(fclose(pRecorder->lpFile) != 0)
{
#ifdef _DEBUG
PrintLine(stderr,"Recorder::CloseRecorder : fail to close file !");
#endif
return _FALSE;
}
//Set NULL.
pRecorder->lpFile = NULL;
//Return true.
return _TRUE;
}
////////////////////////////////////////////////////////////////////////////////
//
// Record event.
//
////////////////////////////////////////////////////////////////////////////////
_BOOL RecordEvent(SimpleRecorder* pRecorder,_STRING lpstrEvent)
{
//Current time.
SimpleTime timeCurrent;
#ifdef _DEBUG
assert(pRecorder != NULL && lpstrEvent != NULL);
#endif
//Check event.
if(strlen(lpstrEvent) <= 0)
{
#ifdef _DEBUG
PrintLine(stderr,"Recorder::RecordEvent : empty event !");
#endif
return _TRUE;
}
//Check file pionter.
if(pRecorder->lpFile == NULL)
{
#ifdef _DEBUG
PrintLine(stderr,"Recorder::RecordEvent : null file pointer !");
#endif
return _FALSE;
}
//Initialize current time.
if(!InitializeTime(&timeCurrent))
{
#ifdef _DEBUG
PrintLine(stderr,"Recorder::RecordEvent : fail to initialize current time !");
#endif
return _FALSE;
}
//Check date.
if(timeCurrent.nDateValues[2] != pRecorder->timeOpen.nDateValues[2])
{
//Close recorder.
if(!CloseRecorder(pRecorder))
{
#ifdef _DEBUG
PrintLine(stderr,"Recorder::RecordEvent : fail to close recorder !");
#endif
return _FALSE;
}
//Open recorder.
if(!OpenRecorder(pRecorder))
{
#ifdef _DEBUG
PrintLine(stderr,"Recorder::RecordEvent : fail to open recorder !");
#endif
return _FALSE;
}
}
//Write event time.
if(PrintLine(pRecorder->lpFile,"%s",GetRecorderFormat(&timeCurrent)) <= 0)
{
#ifdef _DEBUG
PrintLine(stderr,"Recorder::RecordEvent : fail to write event time !");
#endif
return _FALSE;
}
if(PrintLine(pRecorder->lpFile,"%s",lpstrEvent) <= 0)
{
#ifdef _DEBUG
PrintLine(stderr,"Recorder::RecordEvent : fail to write event with new line !");
#endif
return _FALSE;
}
//Return true.
return _TRUE;
}