-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathLogging.bas
More file actions
418 lines (336 loc) · 29.8 KB
/
Logging.bas
File metadata and controls
418 lines (336 loc) · 29.8 KB
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
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
#include "Logging.bi"
#include "DateTimeToString.bi"
#include once "CharConstants.bi"
Const XmlStart = "<?xml version=""1.0"" encoding=""utf-8"" ?><!DOCTYPE ircChannelLogs [<!ELEMENT ircChannelLogs (privmsgEntry | joinEntry | quitEntry | partEntry | nickEntry | topicEntry | kickEntry)*><!ELEMENT privmsgEntry (channel, nick, message)><!ATTLIST privmsgEntry httpDate CDATA #REQUIRED><!ELEMENT joinEntry (channel, nick)><!ATTLIST joinEntry httpDate CDATA #REQUIRED><!ELEMENT quitEntry (nick, message)><!ATTLIST quitEntry httpDate CDATA #REQUIRED><!ELEMENT partEntry (channel, nick, message)><!ATTLIST partEntry httpDate CDATA #REQUIRED><!ELEMENT topicEntry (channel, nick, message)><!ATTLIST topicEntry httpDate CDATA #REQUIRED><!ELEMENT kickEntry (channel, admin, kickedNick)><!ATTLIST kickEntry httpDate CDATA #REQUIRED><!ELEMENT nickEntry (oldNick, newNick)><!ATTLIST nickEntry httpDate CDATA #REQUIRED><!ELEMENT channel (#PCDATA)><!ELEMENT nick (#PCDATA)><!ELEMENT message (#PCDATA)><!ELEMENT oldNick (#PCDATA)><!ELEMENT newNick (#PCDATA)><!ELEMENT admin (#PCDATA)><!ELEMENT kickedNick (#PCDATA)>]><ircChannelLogs>"
Const XmlEnd = "</ircChannelLogs>"
Function GetHtmlSafeString( _
ByVal Buffer As WString Ptr, _
ByVal BufferLength As Integer, _
ByVal HtmlSafe As WString Ptr, _
ByVal pHtmlSafeLength As Integer Ptr _
)As Boolean
Const MaxQuotationMarkSafeStringLength As Integer = 6
Const MaxAmpersandSafeStringLength As Integer = 5
Const MaxApostropheSafeStringLength As Integer = 6
Const MaxLessThanSignSafeStringLength As Integer = 4
Const MaxGreaterThanSignSafeStringLength As Integer = 4
Dim SafeLength As Integer = Any
' Посчитать размер буфера
Scope
Dim cbNeedenBufferLength As Integer = 0
Dim i As Integer = 0
Do While HtmlSafe[i] <> 0
Dim Number As Integer = HtmlSafe[i]
Select Case Number
Case QuotationMarkChar
cbNeedenBufferLength += MaxQuotationMarkSafeStringLength
Case AmpersandChar
cbNeedenBufferLength += MaxAmpersandSafeStringLength
Case ApostropheChar
cbNeedenBufferLength += MaxApostropheSafeStringLength
Case LessThanSignChar
cbNeedenBufferLength += MaxLessThanSignSafeStringLength
Case GreaterThanSign
cbNeedenBufferLength += MaxGreaterThanSignSafeStringLength
Case Else
cbNeedenBufferLength += 1
End Select
i += 1
Loop
SafeLength = i
*pHtmlSafeLength = cbNeedenBufferLength
If Buffer = 0 Then
SetLastError(ERROR_SUCCESS)
Return True
End If
If BufferLength < cbNeedenBufferLength Then
SetLastError(ERROR_INSUFFICIENT_BUFFER)
Return False
End If
End Scope
Scope
Dim BufferIndex As Integer = 0
For OriginalIndex As Integer = 0 To SafeLength - 1
Dim Number As Integer = HtmlSafe[OriginalIndex]
Select Case Number
Case Is < 32
Case QuotationMarkChar
' Заменить на "
Buffer[BufferIndex + 0] = AmpersandChar ' &
Buffer[BufferIndex + 1] = &h71 ' q
Buffer[BufferIndex + 2] = &h75 ' u
Buffer[BufferIndex + 3] = &h6f ' o
Buffer[BufferIndex + 4] = &h74 ' t
Buffer[BufferIndex + 5] = SemicolonChar ' ;
BufferIndex += MaxQuotationMarkSafeStringLength
Case AmpersandChar
' Заменить на &
Buffer[BufferIndex + 0] = AmpersandChar ' &
Buffer[BufferIndex + 1] = &h61 ' a
Buffer[BufferIndex + 2] = &h6d ' m
Buffer[BufferIndex + 3] = &h70 ' p
Buffer[BufferIndex + 4] = SemicolonChar ' ;
BufferIndex += MaxAmpersandSafeStringLength
Case ApostropheChar
' Заменить на '
Buffer[BufferIndex + 0] = AmpersandChar ' &
Buffer[BufferIndex + 1] = &h61 ' a
Buffer[BufferIndex + 2] = &h70 ' p
Buffer[BufferIndex + 3] = &h6f ' o
Buffer[BufferIndex + 4] = &h73 ' s
Buffer[BufferIndex + 5] = SemicolonChar ' ;
BufferIndex += MaxApostropheSafeStringLength
Case LessThanSignChar
' Заменить на <
Buffer[BufferIndex + 0] = AmpersandChar ' &
Buffer[BufferIndex + 1] = &h6c ' l
Buffer[BufferIndex + 2] = &h74 ' t
Buffer[BufferIndex + 3] = SemicolonChar ' ;
BufferIndex += MaxLessThanSignSafeStringLength
Case GreaterThanSign
' Заменить на >
Buffer[BufferIndex + 0] = AmpersandChar ' &
Buffer[BufferIndex + 1] = &h67 ' g
Buffer[BufferIndex + 2] = &h74 ' t
Buffer[BufferIndex + 3] = SemicolonChar ' ;
BufferIndex += MaxGreaterThanSignSafeStringLength
Case Else
Buffer[BufferIndex] = Number
BufferIndex += 1
End Select
Next
' Завершающий нулевой символ
Buffer[BufferIndex] = 0
SetLastError(ERROR_SUCCESS)
Return True
End Scope
End Function
Function OpenOrCreateLog( _
ByVal FileName As WString Ptr _
)As Handle
Dim hFile As Handle = CreateFile(FileName, GENERIC_WRITE, 0, NULL, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL)
If hFile <> INVALID_HANDLE_VALUE Then
Dim liDistanceToMove As LARGE_INTEGER = Any
liDistanceToMove.QuadPart = -17
SetFilePointerEx(hFile, liDistanceToMove, 0, FILE_END)
Else
hFile = CreateFile(FileName, GENERIC_WRITE, 0, NULL, CREATE_NEW, FILE_ATTRIBUTE_NORMAL, NULL)
If hFile <> INVALID_HANDLE_VALUE Then
Dim NumberOfBytesWritten As DWORD = Any
Dim Utf8 As ZString * 4096 = Any
Utf8[0] = 239
Utf8[1] = 187
Utf8[2] = 191
WriteFile(hFile, @Utf8, 3, @NumberOfBytesWritten, 0)
Dim Utf8Length As Integer = WideCharToMultiByte(CP_UTF8, 0, @XmlStart, -1, @Utf8, 4096 - 1, 0, 0) - 1
WriteFile(hFile, @Utf8, Utf8Length, @NumberOfBytesWritten, 0)
End If
' hFile = INVALID_HANDLE_VALUE
End If
Return hFile
End Function
Sub CloseXmlLog(ByVal hFile As Handle)
Dim NumberOfBytesWritten As DWORD = Any
Dim Utf8 As ZString * 4096 = Any
Dim Utf8Length As Integer = WideCharToMultiByte(CP_UTF8, 0, @XmlEnd, -1, @Utf8, 4096 - 1, 0, 0) - 1
WriteFile(hFile, @Utf8, Utf8Length, @NumberOfBytesWritten, 0)
CloseHandle(hFile)
End Sub
Sub LogIrcMessage( _
ByVal pBot As IrcBot Ptr, _
ByVal Channel As WString Ptr, _
ByVal UserName As WString Ptr, _
ByVal MessageText As WString Ptr _
)
Dim hLogFile As Handle = OpenOrCreateLog(@pBot->ChannelLogsFileName)
If hLogFile <> INVALID_HANDLE_VALUE Then
' <privmsgEntry httpDate="дата">
' <channel></channel>
' <nick></nick>
' <message></message>
' </privmsgEntry>
Dim HttpDate As WString * (MaxHttpDateBufferLength + 1) = Any
GetHttpDate(@HttpDate)
Dim ChannelSafe As WString * (IrcClient.MaxBytesCount * 6 + 1) = Any
Dim ChannelSafeLength As Integer = Any
GetHtmlSafeString(ChannelSafe, IrcClient.MaxBytesCount * 6, Channel, @ChannelSafeLength)
Dim UserNameSafe As WString * (IrcClient.MaxBytesCount * 6 + 1) = Any
Dim UserNameSafeLength As Integer = Any
GetHtmlSafeString(UserNameSafe, IrcClient.MaxBytesCount * 6, UserName, @UserNameSafeLength)
Dim MessageTextSafe As WString * (IrcClient.MaxBytesCount * 6 + 1) = Any
Dim MessageTextSafeLength As Integer = Any
GetHtmlSafeString(MessageTextSafe, IrcClient.MaxBytesCount * 6, MessageText, @MessageTextSafeLength)
Dim ResultXml As WString * (IrcClient.MaxBytesCount * 20 + 1) = Any
lstrcpy(@ResultXml, "<privmsgEntry httpDate=""")
lstrcat(@ResultXml, @HttpDate)
lstrcat(@ResultXml, @"""><channel>")
lstrcat(@ResultXml, @ChannelSafe)
lstrcat(@ResultXml, @"</channel><nick>")
lstrcat(@ResultXml, @UserNameSafe)
lstrcat(@ResultXml, @"</nick><message>")
lstrcat(@ResultXml, @MessageTextSafe)
lstrcat(@ResultXml, @"</message></privmsgEntry>")
Dim NumberOfBytesWritten As DWORD = Any
Dim Utf8 As ZString * (IrcClient.MaxBytesCount * 40 + 1) = Any
Dim Utf8Length As Integer = WideCharToMultiByte(CP_UTF8, 0, @ResultXml, -1, @Utf8, IrcClient.MaxBytesCount * 40, 0, 0) - 1
WriteFile(hLogFile, @Utf8, Utf8Length, @NumberOfBytesWritten, 0)
CloseXmlLog(hLogFile)
End If
End Sub
Sub LogUserJoined( _
ByVal pBot As IrcBot Ptr, _
ByVal Channel As WString Ptr, _
ByVal UserName As WString Ptr _
)
Dim hLogFile As Handle = OpenOrCreateLog(@pBot->ChannelLogsFileName)
If hLogFile <> INVALID_HANDLE_VALUE Then
' <joinEntry httpDate="дата">
' <channel></channel>
' <nick></nick>
' </joinEntry>
Dim HttpDate As WString * (MaxHttpDateBufferLength + 1) = Any
GetHttpDate(@HttpDate)
Dim ChannelSafe As WString * (IrcClient.MaxBytesCount * 6 + 1) = Any
Dim ChannelSafeLength As Integer = Any
GetHtmlSafeString(ChannelSafe, IrcClient.MaxBytesCount * 6, Channel, @ChannelSafeLength)
Dim UserNameSafe As WString * (IrcClient.MaxBytesCount * 6 + 1) = Any
Dim UserNameSafeLength As Integer = Any
GetHtmlSafeString(UserNameSafe, IrcClient.MaxBytesCount * 6, UserName, @UserNameSafeLength)
Dim ResultXml As WString * (IrcClient.MaxBytesCount * 20 + 1) = Any
lstrcpy(@ResultXml, "<joinEntry httpDate=""")
lstrcat(@ResultXml, @HttpDate)
lstrcat(@ResultXml, @"""><channel>")
lstrcat(@ResultXml, @ChannelSafe)
lstrcat(@ResultXml, @"</channel><nick>")
lstrcat(@ResultXml, @UserNameSafe)
lstrcat(@ResultXml, @"</nick></joinEntry>")
Dim NumberOfBytesWritten As DWORD = Any
Dim Utf8 As ZString * (IrcClient.MaxBytesCount * 40 + 1) = Any
Dim Utf8Length As Integer = WideCharToMultiByte(CP_UTF8, 0, @ResultXml, -1, @Utf8, IrcClient.MaxBytesCount * 40, 0, 0) - 1
WriteFile(hLogFile, @Utf8, Utf8Length, @NumberOfBytesWritten, 0)
CloseXmlLog(hLogFile)
End If
End Sub
Sub LogUserQuit( _
ByVal pBot As IrcBot Ptr, _
ByVal UserName As WString Ptr, _
ByVal MessageText As WString Ptr _
)
Dim hLogFile As Handle = OpenOrCreateLog(@pBot->ChannelLogsFileName)
If hLogFile <> INVALID_HANDLE_VALUE Then
' <quitEntry httpDate="дата">
' <nick></nick>
' <message></message>
' </quitEntry>
Dim HttpDate As WString * (MaxHttpDateBufferLength + 1) = Any
GetHttpDate(@HttpDate)
Dim UserNameSafe As WString * (IrcClient.MaxBytesCount * 6 + 1) = Any
Dim UserNameSafeLength As Integer = Any
GetHtmlSafeString(UserNameSafe, IrcClient.MaxBytesCount * 6, UserName, @UserNameSafeLength)
Dim MessageTextSafe As WString * (IrcClient.MaxBytesCount * 6 + 1) = Any
Dim MessageTextSafeLength As Integer = Any
GetHtmlSafeString(MessageTextSafe, IrcClient.MaxBytesCount * 6, MessageText, @MessageTextSafeLength)
Dim ResultXml As WString * (IrcClient.MaxBytesCount * 20 + 1) = Any
lstrcpy(@ResultXml, "<quitEntry httpDate=""")
lstrcat(@ResultXml, @HttpDate)
lstrcat(@ResultXml, @"""><nick>")
lstrcat(@ResultXml, @UserNameSafe)
lstrcat(@ResultXml, @"</nick><message>")
lstrcat(@ResultXml, @MessageTextSafe)
lstrcat(@ResultXml, @"</message></quitEntry>")
Dim NumberOfBytesWritten As DWORD = Any
Dim Utf8 As ZString * (IrcClient.MaxBytesCount * 40 + 1) = Any
Dim Utf8Length As Integer = WideCharToMultiByte(CP_UTF8, 0, @ResultXml, -1, @Utf8, IrcClient.MaxBytesCount * 40, 0, 0) - 1
WriteFile(hLogFile, @Utf8, Utf8Length, @NumberOfBytesWritten, 0)
CloseXmlLog(hLogFile)
End If
End Sub
Sub LogPartChannel( _
ByVal pBot As IrcBot Ptr, _
ByVal Channel As WString Ptr, _
ByVal UserName As WString Ptr, _
ByVal MessageText As WString Ptr _
)
Dim hLogFile As Handle = OpenOrCreateLog(@pBot->ChannelLogsFileName)
If hLogFile <> INVALID_HANDLE_VALUE Then
' <partEntry httpDate="дата">
' <channel></channel>
' <nick></nick>
' <message></message>
' </partEntry>
Dim HttpDate As WString * (MaxHttpDateBufferLength + 1) = Any
GetHttpDate(@HttpDate)
Dim ChannelSafe As WString * (IrcClient.MaxBytesCount * 6 + 1) = Any
Dim ChannelSafeLength As Integer = Any
GetHtmlSafeString(ChannelSafe, IrcClient.MaxBytesCount * 6, Channel, @ChannelSafeLength)
Dim UserNameSafe As WString * (IrcClient.MaxBytesCount * 6 + 1) = Any
Dim UserNameSafeLength As Integer = Any
GetHtmlSafeString(UserNameSafe, IrcClient.MaxBytesCount * 6, UserName, @UserNameSafeLength)
Dim MessageTextSafe As WString * (IrcClient.MaxBytesCount * 6 + 1) = Any
Dim MessageTextSafeLength As Integer = Any
GetHtmlSafeString(MessageTextSafe, IrcClient.MaxBytesCount * 6, MessageText, @MessageTextSafeLength)
Dim ResultXml As WString * (IrcClient.MaxBytesCount * 20 + 1) = Any
lstrcpy(@ResultXml, "<partEntry httpDate=""")
lstrcat(@ResultXml, @HttpDate)
lstrcat(@ResultXml, @"""><channel>")
lstrcat(@ResultXml, @ChannelSafe)
lstrcat(@ResultXml, @"</channel><nick>")
lstrcat(@ResultXml, @UserNameSafe)
lstrcat(@ResultXml, @"</nick><message>")
lstrcat(@ResultXml, @MessageTextSafe)
lstrcat(@ResultXml, @"</message></partEntry>")
Dim NumberOfBytesWritten As DWORD = Any
Dim Utf8 As ZString * (IrcClient.MaxBytesCount * 40 + 1) = Any
Dim Utf8Length As Integer = WideCharToMultiByte(CP_UTF8, 0, @ResultXml, -1, @Utf8, IrcClient.MaxBytesCount * 40, 0, 0) - 1
WriteFile(hLogFile, @Utf8, Utf8Length, @NumberOfBytesWritten, 0)
CloseXmlLog(hLogFile)
End If
End Sub
Sub LogNickChanged( _
ByVal pBot As IrcBot Ptr, _
ByVal OldNick As WString Ptr, _
ByVal NewNick As WString Ptr _
)
Dim hLogFile As Handle = OpenOrCreateLog(@pBot->ChannelLogsFileName)
If hLogFile <> INVALID_HANDLE_VALUE Then
' <nickEntry httpDate="дата">
' <oldNick></oldNick>
' <newNick></newNick>
' </nickEntry>
Dim HttpDate As WString * (MaxHttpDateBufferLength + 1) = Any
GetHttpDate(@HttpDate)
Dim OldNickSafe As WString * (IrcClient.MaxBytesCount * 6 + 1) = Any
Dim OldNickSafeLength As Integer = Any
GetHtmlSafeString(OldNickSafe, IrcClient.MaxBytesCount * 6, OldNick, @OldNickSafeLength)
Dim NewNickSafe As WString * (IrcClient.MaxBytesCount * 6 + 1) = Any
Dim NewNickSafeLength As Integer = Any
GetHtmlSafeString(NewNickSafe, IrcClient.MaxBytesCount * 6, NewNick, @NewNickSafeLength)
Dim ResultXml As WString * (IrcClient.MaxBytesCount * 20 + 1) = Any
lstrcpy(@ResultXml, "<nickEntry httpDate=""")
lstrcat(@ResultXml, @HttpDate)
lstrcat(@ResultXml, @"""><oldNick>")
lstrcat(@ResultXml, @OldNickSafe)
lstrcat(@ResultXml, @"</oldNick><newNick>")
lstrcat(@ResultXml, @NewNickSafe)
lstrcat(@ResultXml, @"</newNick></nickEntry>")
Dim NumberOfBytesWritten As DWORD = Any
Dim Utf8 As ZString * (IrcClient.MaxBytesCount * 40 + 1) = Any
Dim Utf8Length As Integer = WideCharToMultiByte(CP_UTF8, 0, @ResultXml, -1, @Utf8, IrcClient.MaxBytesCount * 40, 0, 0) - 1
WriteFile(hLogFile, @Utf8, Utf8Length, @NumberOfBytesWritten, 0)
CloseXmlLog(hLogFile)
End If
End Sub
Sub LogTopic( _
ByVal pBot As IrcBot Ptr, _
ByVal Channel As WString Ptr, _
ByVal UserName As WString Ptr, _
ByVal TopicText As WString Ptr _
)
End Sub
Sub LogKick( _
ByVal pBot As IrcBot Ptr, _
ByVal AdminName As WString Ptr, _
ByVal Channel As WString Ptr, _
ByVal KickedUser As WString Ptr _
)
End Sub