forked from Stikriz/unCalc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUnUDBFunctions.pas
503 lines (463 loc) · 12.1 KB
/
UnUDBFunctions.pas
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
//--------------------------------------------//
// Óíèâåðñàëüíàÿ Áàçà Äàííèõ. //
// Ïåðåä ïðî÷òåíèåì ñæå÷ü ! //
// Copiryght@ 1996-2000. //
// Programmer Bannikov N.A. //
// Universal Database Server 5.0 //
// STIKRIZ Tchnology. //
// //
//--------------------------------------------//
unit UnUDBFunctions;
interface
uses UnConstants,
db, classes,
//UnZLib,
//CodeClasses,
Sysutils, Variants;
type
TReadWriteStreamEvent = procedure of object;
TCompressionLevel = Integer;
TTypeValue = Integer;
procedure SaveValue(const DataSet: TDataSet; const Count: Integer;
const TypeValue: TTypeValue; const Field: TField; const Str: TStream;
const isFirst, isSaveBlob: boolean; const SaveEvent: TReadWriteStreamEvent = nil);
procedure SaveInt(const Value: Integer; const Str: TStream);
procedure LoadInt(var Value: Integer; const Str: TStream);
procedure SaveFloat(const Value: Extended; const Str: TStream);
procedure LoadFloat(var Value: Extended; const Str: TStream);
procedure SaveDateTime(const Value: TDateTime; const Str: TStream);
procedure LoadDateTime(var Value: TDateTime; const Str: TStream);
procedure SaveString(const Value: string; const Str: TStream);
procedure LoadString(var Value: string; const Str: TStream);
procedure SaveBool(const Value: boolean; const Str: TStream);
procedure LoadBool(var Value: boolean; const Str: TStream);
procedure SaveBlob(const Value: string; const Str: TStream);
procedure LoadBlob(var Value: string; const Str: TStream);
procedure SaveByte(const Value: Byte; const Str: TStream);
procedure LoadByte(var Value: Byte; const Str: TStream);
procedure SaveStream(const ValSTR: TStream; const Str: TStream);
procedure LoadStream(var ValSTR: TStream; const Str: TStream);
function CopyStrToVariant(const Str: TStream): Variant;
procedure CopyVariantToStr(const Value: Variant; const Str: TStream);
procedure PackStream(const Str: TStream; CompressionLevel: TCompressionLevel);
procedure UnPackStream(const Str: TStream);
procedure CryptStream(const Str: TStream; const Password: string);
procedure DeCryptStream(const Str: TStream; const Password: string);
function ConvertString(const Val: string; Ofset: Integer = 1): string;
function DeconvertString(const Val: string; Ofset: Integer = 1): string;
function CheckErrorMessage(const Value: string): string;
procedure DeleteFiles(const StartPath: string);
implementation
procedure DeleteFiles(const StartPath: string);
var sr: TSearchRec;
begin
if FindFirst(StartPath+'*.*', faAnyFile, sr) = 0 then
begin
if sr.Name[1] <> '.' then
begin
if (sr.Attr and faDirectory) = faDirectory then
DeleteFiles(StartPath+sr.Name+'\')
else
DeleteFile(StartPath+sr.Name)
end;
while FindNext(sr) = 0 do
begin
if sr.Name[1] <> '.' then
begin
if (sr.Attr and faDirectory) = faDirectory then
DeleteFiles(StartPath+sr.Name+'\')
else
DeleteFile(StartPath+sr.Name)
end;
end;
FindClose(sr);
RemoveDir(StartPath);
end;
end;
procedure SaveValue(const DataSet: TDataSet; const Count: Integer;
const TypeValue: TTypeValue; const Field: TField; const Str: TStream;
const isFirst, isSaveBlob: boolean; const SaveEvent: TReadWriteStreamEvent = nil);
var I: Integer;
IsEvent: boolean;
TempText: TStringList;
begin
if isFirst then
DataSet.First;
IsEvent:=Assigned(SaveEvent);
case TypeValue of
unt_Integer, unt_Pointer: begin
for I:=0 to Count-1 do
begin
SaveInt(Field.AsInteger, Str);
if IsEvent then
SaveEvent;
if Count > 1 then
DataSet.Next;
end;
end;
unt_Float, unt_Money: Begin
for I:=0 to Count-1 do
begin
SaveFloat(Field.AsFloat, Str);
if IsEvent then
SaveEvent;
if Count > 1 then
DataSet.Next;
end;
end;
unt_Date, unt_Time, unt_DateTime: begin
for I:=0 to Count-1 do
begin
SaveDateTime(Field.AsDateTime, Str);
if IsEvent then
SaveEvent;
if Count > 1 then
DataSet.Next;
end;
end;
unt_String: begin
for I:=0 to Count-1 do
begin
SaveString(Field.AsString, Str);
if IsEvent then
SaveEvent;
if Count > 1 then
DataSet.Next;
end;
end;
unt_Boolean: begin
for I:=0 to Count-1 do
begin
SaveBool(Field.AsBoolean, Str);
if IsEvent then
SaveEvent;
if Count > 1 then
DataSet.Next;
end;
end;
unt_Blob, unt_Text, unt_FText, unt_Picture, unt_OLE, unt_HTML: begin
if isSaveBlob then
begin
TempText:=TStringList.Create;
try
for I:=0 to Count-1 do
begin
TempText.Clear;
TempText.Assign(Field);
SaveBlob(TempText.Text, Str);
if IsEvent then
SaveEvent;
DataSet.Next;
if Count > 1 then
DataSet.Next;
end;
finally
TempText.Free;
end;
end;
end;
end;
end;
procedure SaveInt(const Value: Integer; const Str: TStream);
//var Buffer: Integer;
begin
// Buffer:=Value;
// Str.Write(Buffer, Sizeof(Integer));
Str.Write(Value, Sizeof(Integer));
end;
procedure LoadInt(var Value: Integer; const Str: TStream);
//var Buffer: Integer;
begin
Str.Read(Value, Sizeof(Integer));
//Str.Read(Buffer, Sizeof(Integer));
//Value:=Buffer;
end;
procedure SaveFloat(const Value: Extended; const Str: TStream);
//var Buffer: Extended;
begin
// Buffer:=Value;
//Str.Write(Buffer, Sizeof(Extended));
Str.Write(Value, Sizeof(Extended));
end;
procedure LoadFloat(var Value: Extended; const Str: TStream);
//var Buffer: Extended;
begin
Str.Read(Value, Sizeof(Extended));
// Str.Read(Buffer, Sizeof(Extended));
// Value:=Buffer;
end;
procedure SaveDateTime(const Value: TDateTime; const Str: TStream);
//var Buffer: TDateTime;
begin
// Buffer:=Value;
// Str.Write(Buffer, Sizeof(TDateTime));
Str.Write(Value, Sizeof(TDateTime));
end;
procedure LoadDateTime(var Value: TDateTime; const Str: TStream);
//var Buffer: TDateTime;
begin
Str.Read(Value, Sizeof(TDateTime));
// Str.Read(Buffer, Sizeof(TDateTime));
// Value:=Buffer;
end;
procedure SaveString(const Value: string; const Str: TStream);
var //Buffer: string;
Count: Integer;
begin
// Buffer:=Value;
Count:=Length(Value);
Str.Write(Count, Sizeof(Integer));
Str.Write(Value[1], Count);
// Str.Write(Buffer[1], Count);
end;
procedure LoadString(var Value: string; const Str: TStream);
var //Buffer: string;
Count: Integer;
begin
Str.Read(Count, Sizeof(Integer));
//SetLength(Buffer, Count);
SetLength(Value, Count);
Str.Read(Value[1], Count);
// Value:=Buffer;
end;
procedure SaveBool(const Value: boolean; const Str: TStream);
//var Buffer: boolean;
begin
// Buffer:=Value;
// Str.Write(Buffer, Sizeof(boolean));
Str.Write(Value, Sizeof(boolean));
end;
procedure LoadBool(var Value: boolean; const Str: TStream);
//var Buffer: boolean;
begin
Str.Read(Value, Sizeof(boolean));
// Str.Read(Buffer, Sizeof(boolean));
// Value:=Buffer;
end;
procedure SaveBlob(const Value: string; const Str: TStream);
var //Buffer: string;
Count: Integer;
begin
//Buffer:=Value;
Count:=Length(Value);
Str.Write(Count, Sizeof(Integer));
//Str.Write(Buffer[1], Count);
Str.Write(Value[1], Count);
end;
procedure LoadBlob(var Value: string; const Str: TStream);
var //Buffer: PChar;
Count: Integer;
begin
Str.Read(Count, Sizeof(Integer));
//Buffer:=StrAlloc(Count);
//try
// Str.Read(Buffer, Count);
SetLength(Value, Count);
Str.Read(Value[1], Count);
// Value:=StrPas(Buffer);
// finally
// StrDispose(Buffer);
// end;
end;
procedure SaveByte(const Value: Byte; const Str: TStream);
//var Buffer: Byte;
begin
// Buffer:=Value;
// Str.Write(Buffer, Sizeof(Byte));
Str.Write(Value, Sizeof(Byte));
end;
procedure LoadByte(var Value: Byte; const Str: TStream);
//var Buffer: Byte;
begin
Str.Read(Value, Sizeof(Byte));
// Str.Read(Buffer, Sizeof(Byte));
// Value:=Buffer;
end;
function CopyStrToVariant(const Str: TStream): Variant;
var Buffer: PChar;
begin
Result:=VarArrayCreate([0, Str.Size], varByte);
Buffer:=VarArrayLock(Result);
try
Str.Position:=0;
Str.Read(Buffer^, Str.Size);
finally
VarArrayUnlock(Result);
end;
end;
procedure CopyVariantToStr(const Value: Variant; const Str: TStream);
var Buffer: PChar;
Count: Integer;
begin
Count:=VarArrayHighBound(Value, 1);
Buffer:=VarArrayLock(Value);
try
Str.Size:=0;
Str.Write(Buffer^, Count);
finally
VarArrayUnlock(Value);
end;
end;
procedure PackStream(const Str: TStream; CompressionLevel: TCompressionLevel);
var TempStr: TMemoryStream;
// Comp: TCompressionStream;
begin
{
if Str.Size = 0 then
exit;
TempStr:=TMemoryStream.Create;
try
Comp:=TCompressionStream.Create(CompressionLevel, TempStr);
try
Str.Position:=0;
Comp.CopyFrom(Str, Str.Size);
finally
Comp.Free;
end;
Str.Size:=0;
TempStr.Position:=0;
Str.CopyFrom(TempStr, TempStr.Size);
finally
TempStr.Free;
end;
}
end;
procedure UnPackStream(const Str: TStream);
var TempStr: TMemoryStream;
// Comp: TDecompressionStream;
Count: Integer;
begin
{
if Str.Size = 0 then
exit;
TempStr:=TMemoryStream.Create;
try
Str.Position:=0;
Comp:=TDecompressionStream.Create(Str);
try
Count:=0;
while Comp.Seek(256, soFromCurrent) > Count do
begin
Count:=Comp.Position;
end;
Count:=Comp.Position;
Comp.Seek(0, soFromBeginning);
TempStr.CopyFrom(Comp, Count);
finally
Comp.Free;
end;
Str.Size:=0;
TempStr.Position:=0;
Str.CopyFrom(TempStr, TempStr.Size);
finally
TempStr.Free;
end;
}
end;
procedure CryptStream(const Str: TStream; const Password: string);
var
// Crpt: TStreamCrypt;
TempStr: TMemoryStream;
begin
{
Crpt:=TStreamCrypt.Create;
try
TempStr:=TMemoryStream.Create;
try
Str.Position:=0;
Crpt.InputStream:=Str;
Crpt.OutputStream:=TempStr;
Crpt.Password:=Password;
Crpt.ExecuteCrypt;
Str.Size:=0;
TempStr.Position:=0;
Str.CopyFrom(TempStr, TempStr.Size);
finally
TempStr.Free;
end;
finally
Crpt.Free;
end;
}
end;
procedure DeCryptStream(const Str: TStream; const Password: string);
var
// Crpt: TStreamCrypt;
TempStr: TMemoryStream;
begin
{
Crpt:=TStreamCrypt.Create;
try
TempStr:=TMemoryStream.Create;
try
Str.Position:=0;
Crpt.InputStream:=Str;
Crpt.OutputStream:=TempStr;
Crpt.Password:=Password;
Crpt.ExecuteDeCrypt;
Str.Size:=0;
TempStr.Position:=0;
Str.CopyFrom(TempStr, TempStr.Size);
finally
TempStr.Free;
end;
finally
Crpt.Free;
end;
}
end;
procedure SaveStream(const ValSTR: TStream; const Str: TStream);
begin
SaveInt(ValSTR.Size, Str);
if ValSTR.Size > 0 then
begin
ValSTR.Position:=0;
Str.CopyFrom(ValSTR, ValSTR.Size);
end;
end;
procedure LoadStream(var ValSTR: TStream; const Str: TStream);
var TempInt: Integer;
begin
LoadInt(TempInt, Str);
ValSTR.Size:=0;
if TempInt > 0 then
begin
ValSTR.CopyFrom(Str, TempInt);
ValSTR.Position:=0;
end;
end;
function ConvertString(const Val: string; Ofset: Integer = 1): string;
var I, Len: Integer;
begin
Result:='';
Len:=Length(Val);
for I:=Ofset to Len do
begin
Result:=Result+IntToStr(Ord(Val[I]))+'\';
end;
end;
function DeconvertString(const Val: string; Ofset: Integer = 1): string;
var I, Len: Integer;
Tmp: string;
begin
Result:='';
Tmp:='';
Len:=Length(Val);
for I:=Ofset to Len do
begin
if Val[I] = '\' then
begin
Result:=Result+Chr(StrToInt(Tmp));
Tmp:='';
end
else
Tmp:=Tmp+Val[I];
end;
end;
function CheckErrorMessage(const Value: string): string;
begin
Result:=Trim(Value);
if Result[Length(Result)] = '\' then
Result:=DeconvertString(Result);
end;
end.