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
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
|
unit general;
interface
uses
Windows, Messages, SysUtils, IniFiles,
m_api,
ImportT,
ImportTU;
var
cp: cardinal;
var
AppPath: array [0 .. MAX_PATH] of Char;
TxtPatterns: array of RTxtPattern;
Protocols: array of TDestProto;
ProtoCount: integer;
CheckForDuplicates: boolean;
ShowDuplicates: boolean;
const
BIN_PROCEDURE_COUNT = 6; // êîëè÷åñòâî ðåàëèçîâàíûõ ïðîöåäóð áèíàðíîãî èìïîðòà
const
{$EXTERNALSYM PBM_SETRANGE}
PBM_SETRANGE = WM_USER + 1;
{$EXTERNALSYM PBM_SETPOS}
PBM_SETPOS = WM_USER + 2;
const
IMPORT_TXT_MODULE = 'ImportTXT';
IMPORT_TXT_SERVICE = IMPORT_TXT_MODULE + '/Import';
IMPORT_WIZ_SERVICE = IMPORT_TXT_MODULE + '/Wizard';
// keys
IMPORT_TXT_AS = 'AutoStart';
IMPORT_TXT_LP = 'LastPattern';
type
TOnAccountListChange = procedure();
var
OnAccountListChange: TOnAccountListChange;
procedure ReadPatterns;
procedure ExtractFilePath(fName: PAnsiChar);
function GetContactProto(hContact: THandle): AnsiString;
function GetContactByUID(const proto: AnsiString; const id: AnsiString): THandle;
function GetContactByNick(const proto: AnsiString; const Nick: WideString): THandle;
procedure EnumProtocols;
function GetContactID(hContact: THandle; proto: AnsiString = ''; Contact: boolean = false): WideString;
function GetContactNick(hContact: THandle; proto: AnsiString = ''; Contact: boolean = false): WideString;
function DBReadByte(hContact: THandle; szModule: PAnsiChar; szSetting: PAnsiChar; default: byte = 0): byte;
function DBWriteByte(hContact: THandle; szModule: PAnsiChar; szSetting: PAnsiChar; val: byte): integer;
procedure SetLastPattern(lp: byte);
function GetLastPattern: byte;
function TimeStampToWStr(ts: DWORD): WideString;
function StrToTimeStamp(STime: PAnsiChar; len: integer): DWORD;
function RLWord(adr: integer): word;
function RLInteger(adr: integer): integer;
implementation
procedure ExtractFilePath(fName: PAnsiChar);
var
p: PAnsiChar;
begin
p := fName;
if p <> nil then
begin
while p^ <> #0 do
inc(p);
while p^ <> '\' do
dec(p);
inc(p);
p^ := #0;
end;
end;
function ReadPattern(const FileName: String): boolean;
var
TI: TIniFile;
tempstr: String;
pattern:pRTxtPattern;
begin
TI := TIniFile.Create(FileName);
try
if not TI.SectionExists('General') then
exit;
pattern:=@TxtPatterns[High(TxtPatterns)];
// if "General" exists
if TI.ValueExists('General', 'Name') then
pattern^.Name := TI.ReadString('General', 'Name', '')
else
exit;
if TI.ValueExists('General', 'Type') then
pattern^.IType := TI.ReadInteger('General', 'Type', 1)
else
exit;
case pattern^.IType of
1:
begin
if TI.ValueExists('General', 'Charset') then
begin
tempstr := TI.ReadString('General', 'Charset', 'UTF8');
if tempstr = 'ANSI' then
pattern^.Charset := inANSI
else if tempstr = 'UTF8' then
pattern^.Charset := inUTF8
else if tempstr = 'UCS2' then
pattern^.Charset := inUCS2
else
exit;
end
else
exit;
if pattern^.Charset = inANSI then
begin
pattern^.Codepage := TI.ReadInteger('General', 'Codepage', 0);
if not IsValidCodePage(pattern^.Codepage) then
pattern^.Codepage := 0;
end;
pattern^.UseHeader := TI.ReadInteger('General', 'UseHeader', 0);
pattern^.UsePreMsg := TI.ReadBool('General', 'UsePreMsg', false);
// Read message section
if TI.SectionExists('Message') then
begin
if TI.ValueExists('Message', 'Pattern') then
pattern^.Msg.Pattern := TI.ReadString('Message', 'Pattern', '')
else
exit;
pattern^.Msg.Incoming := TI.ReadString('Message', 'In', '');
pattern^.Msg.Outgoing := TI.ReadString('Message', 'Out', '');
if TI.ValueExists('Message', 'Direction') then
pattern^.Msg.Direction := TI.ReadInteger('Message', 'Direction', 0)
else
exit;
if TI.ValueExists('Message', 'Day') then
pattern^.Msg.Day := TI.ReadInteger('Message', 'Day', 0)
else
exit;
if TI.ValueExists('Message', 'Month') then
pattern^.Msg.Month := TI.ReadInteger('Message', 'Month', 0)
else
exit;
if TI.ValueExists('Message', 'Year') then
pattern^.Msg.Year := TI.ReadInteger('Message', 'Year', 0)
else
exit;
if TI.ValueExists('Message', 'Hours') then
pattern^.Msg.Hours := TI.ReadInteger('Message', 'Hours', 0)
else
exit;
if TI.ValueExists('Message', 'Minutes') then
pattern^.Msg.Minutes := TI.ReadInteger('Message', 'Minutes', 0)
else
exit;
pattern^.Msg.Seconds := TI.ReadInteger('Message', 'Seconds', 0)
end
else
exit;
// if need read header section
if (pattern^.UseHeader > 0) then
if TI.SectionExists('Header') then
begin
if TI.ValueExists('Header', 'Pattern') then
pattern^.Header.Pattern := TI.ReadString('Header', 'Pattern', '')
else
exit;
if (not TI.ValueExists('Header', 'In')) and
((pattern^.UseHeader and 1) = 1) then
exit;
pattern^.Header.Incoming := TI.ReadInteger('Header', 'In', 0);
pattern^.Header.Outgoing := TI.ReadInteger('Header', 'Out', 0);
pattern^.Header.InNick := TI.ReadInteger('Header', 'InNick', 0);
pattern^.Header.OutNick := TI.ReadInteger('Header', 'OutNick', 0);
pattern^.Header.InUID := TI.ReadInteger('Header', 'InUID', 0);
pattern^.Header.OutUID := TI.ReadInteger('Header', 'OutUID', 0);
if ((pattern^.UseHeader and 2) = 2) then
if (pattern^.Header.InNick = 0) and
(pattern^.Header.InUID = 0) then
exit;
end
else
exit;
// if nead read PreMessage section
if pattern^.UsePreMsg then
if TI.SectionExists('PreMessage') then
begin
pattern^.PreMsg.PreRN := TI.ReadInteger('PreMessage', 'PreRN', -1);
pattern^.PreMsg.AfterRN := TI.ReadInteger('PreMessage', 'AfterRN', -1);
pattern^.PreMsg.PreSP := TI.ReadInteger('PreMessage', 'PreSP', 0);
pattern^.PreMsg.AfterSP := TI.ReadInteger('PreMessage', 'AfterSP', 0);
end
else
exit;
end; // 1
2:
begin
pattern^.BinProc := TI.ReadInteger('General', 'BinProcedure', 0);
if (pattern^.BinProc > BIN_PROCEDURE_COUNT) then
exit;
end;
end; // case
pattern^.DefExtension := TI.ReadString('General', 'DefaultExtension', 'txt');
pattern^.UseFileName := TI.ReadBool('General', 'UseFileName', false);
// if nead read FileName section
if pattern^.UseFileName then
if TI.SectionExists('FileName') then
begin
if TI.ValueExists('FileName', 'Pattern') then
pattern^.fName.Pattern := TI.ReadString('FileName', 'Pattern', '')
else
exit;
pattern^.fName.InNick := TI.ReadInteger('FileName', 'InNick', 0);
pattern^.fName.InUID := TI.ReadInteger('FileName', 'InUID', 0);
if (pattern^.fName.InNick = 0) and (pattern^.fName.InUID = 0) then
exit;
pattern^.fName.OutNick := TI.ReadInteger('FileName', 'OutNick', 0);
pattern^.fName.OutUID := TI.ReadInteger('FileName', 'OutUID', 0);
end
else
exit;
finally
TI.Free;
result := true;
end;
result := false;
end;
procedure ReadPatterns;
var
SR: TSearchRec;
FileAttrs: integer;
i: integer;
begin
FileAttrs := faAnyFile;
i := 0;
if FindFirst(AppPath + '\importtxt\*.ini', FileAttrs, SR) = 0 then
begin
repeat
SetLength(TxtPatterns, i+1);
if not ReadPattern(AppPath + '\importtxt\' + SR.Name) then
inc(i);
until FindNext(SR) <> 0;
FindClose(SR);
end;
// cut unneded
SetLength(TxtPatterns, i);
end;
function GetContactByUID(const proto: AnsiString; const id: AnsiString): THandle;
var
Contact: THandle;
otherproto: AnsiString;
ci: TCONTACTINFO;
idnum: integer;
tempwstr: PWideChar;
ws: WideString;
begin
if not TryStrToInt(id, idnum) then
idnum := 0;
tempwstr := UTF8ToWide(PAnsiChar(id), tempwstr);
ws := tempwstr;
FreeMem(tempwstr);
Contact := CallService(MS_DB_CONTACT_FINDFIRST, 0, 0);
while (Contact <> 0) do
begin
otherproto := PAnsiChar(CallService(MS_PROTO_GETCONTACTBASEPROTO, Contact, 0));
if otherproto = proto then
begin
ci.cbSize := SizeOf(ci);
ci.dwFlag := CNF_UNIQUEID or CNF_UNICODE;
ci.hContact := Contact;
ci.szProto := PAnsiChar(otherproto);
if CallService(MS_CONTACT_GETCONTACTINFO, 0, lparam(@ci)) = 0 then
begin
case (ci._type) of
CNFT_BYTE: if ci.retval.bVal = idnum then break;
CNFT_WORD: if ci.retval.wVal = idnum then break;
CNFT_DWORD: if ci.retval.dVal = DWORD(idnum) then break;
CNFT_ASCIIZ: if ws = ci.retval.szVal.w then break;
end; // case
end; // if
end; // if
Contact := CallService(MS_DB_CONTACT_FINDNEXT, Contact, 0);
end; // while
if Contact=0 then
result := INVALID_HANDLE_VALUE
else
result := Contact;
end;
function GetContactByNick(const proto: AnsiString; const Nick: WideString): THandle;
var
Contact: THandle;
otherproto: AnsiString;
ci: TCONTACTINFO;
begin
result := INVALID_HANDLE_VALUE;
Contact := CallService(MS_DB_CONTACT_FINDFIRST, 0, 0);
while (Contact <> 0) do
begin
otherproto := PAnsiChar(CallService(MS_PROTO_GETCONTACTBASEPROTO, Contact, 0));
if otherproto = proto then
begin
ci.cbSize := SizeOf(ci);
ci.dwFlag := CNF_NICK;
ci.dwFlag := ci.dwFlag or CNF_UNICODE;
ci.hContact := Contact;
ci.szProto := PAnsiChar(otherproto);
if CallService(MS_CONTACT_GETCONTACTINFO, 0, lparam(@ci)) = 0 then
begin
if Nick = ci.retval.szVal.w then
begin
result := Contact;
break;
end;
end; // if
end; // if
Contact := CallService(MS_DB_CONTACT_FINDNEXT, Contact, 0);
end; // while
end;
procedure EnumProtocols;
var
i, iProtoCount: integer;
ppAccounts: ^PPROTOACCOUNT;
temps: WideString;
begin
ProtoCount := 0;
SetLength(Protocols, 30);
CallService(MS_PROTO_ENUMACCOUNTS, int(@iProtoCount), int(@ppAccounts));
for i := 1 to iProtoCount do
begin
temps := GetContactID(0, ppAccounts^^.szModuleName, false);
if temps <> '' then
begin
Protocols[ProtoCount].ProtoName := ppAccounts^^.szModuleName;
Protocols[ProtoCount].ProtoUID := temps;
Protocols[ProtoCount].ProtoNick := GetContactNick(0, ppAccounts^^.szModuleName, false);
inc(ProtoCount);
end;
inc(ppAccounts);
end;
SetLength(Protocols, ProtoCount);
end;
function GetContactProto(hContact: THandle): AnsiString;
begin
result := PAnsiChar(CallService(MS_PROTO_GETCONTACTBASEPROTO, hContact, 0));
end;
function DBFreeVariant(dbv: PDBVARIANT): integer;
begin
result := CallService(MS_DB_CONTACT_FREEVARIANT, 0, lParam(dbv));
end;
function GetContactID(hContact: THandle; proto: AnsiString = '';
Contact: boolean = false): WideString;
var
uid: PAnsiChar;
dbv: TDBVARIANT;
cgs: TDBCONTACTGETSETTING;
tempstr: PWideChar;
begin
result := '';
if not((hContact = 0) and Contact) then
begin
if proto = '' then
proto := GetContactProto(hContact);
uid := PAnsiChar(CallProtoService(PAnsiChar(proto), PS_GETCAPS, PFLAG_UNIQUEIDSETTING, 0));
if (uint_ptr(uid) <> CALLSERVICE_NOTFOUND) and (uid <> nil) then
begin
cgs.szModule := PAnsiChar(proto);
cgs.szSetting := uid;
cgs.pValue := @dbv;
if CallService(MS_DB_CONTACT_GETSETTING, hContact, lParam(@cgs)) = 0 then
begin
case dbv._type of
DBVT_BYTE:
result := intToStr(dbv.bVal);
DBVT_WORD:
result := intToStr(dbv.wVal);
DBVT_DWORD:
result := intToStr(dbv.dVal);
DBVT_ASCIIZ:
begin
tempstr := ANSIToWide(dbv.szVal.a, tempstr, cp);
result := tempstr;
FreeMem(tempstr);
end;
DBVT_UTF8:
begin
tempstr := UTF8ToWide(dbv.szVal.a, tempstr);
result := tempstr;
FreeMem(tempstr);
end;
DBVT_WCHAR:
result := dbv.szVal.w;
end;
// free variant
DBFreeVariant(@dbv);
end;
end;
end;
end;
function GetContactNick(hContact: THandle; proto: AnsiString = '';
Contact: boolean = false): WideString;
var
dbv: TDBVARIANT;
cgs: TDBCONTACTGETSETTING;
tempstr: PWideChar;
begin
result := '';
if not((hContact = 0) and Contact) then
begin
if proto = '' then
proto := GetContactProto(hContact);
cgs.szModule := PAnsiChar(proto);
cgs.szSetting := 'Nick';
cgs.pValue := @dbv;
if CallService(MS_DB_CONTACT_GETSETTING, hContact, lParam(@cgs)) = 0 then
begin
case dbv._type of
DBVT_BYTE:
result := intToStr(dbv.bVal);
DBVT_WORD:
result := intToStr(dbv.wVal);
DBVT_DWORD:
result := intToStr(dbv.dVal);
DBVT_ASCIIZ:
begin
tempstr := ANSIToWide(dbv.szVal.a, tempstr, cp);
result := tempstr;
FreeMem(tempstr);
end;
DBVT_UTF8:
begin
tempstr := UTF8ToWide(dbv.szVal.a, tempstr);
result := tempstr;
FreeMem(tempstr);
end;
DBVT_WCHAR:
result := dbv.szVal.w;
end;
// free variant
DBFreeVariant(@dbv);
end;
end;
end;
function DBReadByte(hContact: THandle; szModule: PAnsiChar;
szSetting: PAnsiChar; default: byte = 0): byte;
var
dbv: TDBVARIANT;
cgs: TDBCONTACTGETSETTING;
begin
cgs.szModule := szModule;
cgs.szSetting := szSetting;
cgs.pValue := @dbv;
If CallService(MS_DB_CONTACT_GETSETTING, hContact, lParam(@cgs)) <> 0 then
result := default
else
result := dbv.bVal;
end;
function DBWriteByte(hContact: THandle; szModule: PAnsiChar; szSetting: PAnsiChar; val: byte): integer;
var
cws: TDBCONTACTWRITESETTING;
begin
cws.szModule := szModule;
cws.szSetting := szSetting;
cws.value._type := DBVT_BYTE;
cws.value.bVal := val;
result := CallService(MS_DB_CONTACT_WRITESETTING, hContact, lParam(@cws));
end;
procedure SetLastPattern(lp: byte);
begin
DBWriteByte(0, IMPORT_TXT_MODULE, IMPORT_TXT_LP, lp);
end;
function GetLastPattern: byte;
begin
result := DBReadByte(0, IMPORT_TXT_MODULE, IMPORT_TXT_LP, 0);
if result >= Length(TxtPatterns) then
result := 0;
end;
function TimeStampToWStr(ts: DWORD): WideString;
var
dbtts: TDBTIMETOSTRING;
s: WideString;
begin
SetLength(s, 20);
dbtts.szFormat.w := 'd s';
dbtts.szDest.w := PWideChar(s);
dbtts.cbDest := 20;
CallService(MS_DB_TIME_TIMESTAMPTOSTRINGT, ts, int(@dbtts));
result := s;
end;
function StrToTimeStamp(STime: PAnsiChar; len: integer): DWORD;
var
hour, min, sec, Day, Month, Year: integer;
begin
sec := 0;
Day := (ord(STime[0]) - $30) * 10 + (ord(STime[1]) - $30);
Month := (ord(STime[3]) - $30) * 10 + (ord(STime[4]) - $30);
Year := (ord(STime[6]) - $30) * 1000 + (ord(STime[7]) - $30) * 100 +
(ord(STime[8]) - $30) * 10 + (ord(STime[9]) - $30);
hour := (ord(STime[11]) - $30) * 10 + (ord(STime[12]) - $30);
min := (ord(STime[14]) - $30) * 10 + (ord(STime[15]) - $30);
if len > 15 then
sec := (ord(STime[17]) - $30) * 10 + (ord(STime[18]) - $30);
result := Timestamp(Year, Month, Day, hour, min, sec);
end;
function RLWord(adr: integer): word;
begin
result := PByte(adr + 1)^ + (PByte(adr)^ * $100);
end;
function RLInteger(adr: integer): integer;
begin
result := PByte(adr + 3)^ + (PByte(adr + 2)^ * $100) +
(PByte(adr + 1)^ * $10000) + (PByte(adr)^ * $1000000);
end;
begin
GetModuleFileName(hInstance, @AppPath[0], MAX_PATH);
ExtractFilePath(@AppPath);
ReadPatterns;
end.
|