-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
SimpleCompress.pas
824 lines (666 loc) · 34.9 KB
/
SimpleCompress.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
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
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
{-------------------------------------------------------------------------------
This Source Code Form is subject to the terms of the Mozilla Public
License, v. 2.0. If a copy of the MPL was not distributed with this
file, You can obtain one at http://mozilla.org/MPL/2.0/.
-------------------------------------------------------------------------------}
{===============================================================================
Simple Compress
Set of functions designed to ease compression and decompression of memory
buffers, streams and files. Actual compression is done using zlib library.
Version 1.4.1 (2021-12-12)
Last change 2024-10-15
©2015-2024 František Milt
Contacts:
František Milt: [email protected]
Support:
If you find this code useful, please consider supporting its author(s) by
making a small donation using the following link(s):
https://www.paypal.me/FMilt
Changelog:
For detailed changelog and history please refer to this git repository:
github.com/TheLazyTomcat/Lib.SimpleCompress
Dependencies:
AuxClasses - github.com/TheLazyTomcat/Lib.AuxClasses
AuxTypes - github.com/TheLazyTomcat/Lib.AuxTypes
MemoryBuffer - github.com/TheLazyTomcat/Lib.MemoryBuffer
StrRect - github.com/TheLazyTomcat/Lib.StrRect
WinFileInfo - github.com/TheLazyTomcat/Lib.WinFileInfo
ZLibUtils - github.com/TheLazyTomcat/Lib.ZLibUtils
Indirect dependencies:
AuxExceptions - github.com/TheLazyTomcat/Lib.AuxExceptions
DynLibUtils - github.com/TheLazyTomcat/Lib.DynLibUtils
InterlockedOps - github.com/TheLazyTomcat/Lib.InterlockedOps
SimpleCPUID - github.com/TheLazyTomcat/Lib.SimpleCPUID
UInt64Utils - github.com/TheLazyTomcat/Lib.UInt64Utils
WindowsVersion - github.com/TheLazyTomcat/Lib.WindowsVersion
ZLib - github.com/TheLazyTomcat/Bnd.ZLib
===============================================================================}
unit SimpleCompress;
{$IFDEF FPC}
{$MODE ObjFPC}
{$ENDIF}
{$H+}
interface
uses
Classes,
AuxTypes, AuxClasses, ZLibUtils;
{===============================================================================
--------------------------------------------------------------------------------
Compression
--------------------------------------------------------------------------------
===============================================================================}
{
ZCompressBuffer
Compresses content of given memory into a new memory buffer and returns
pointer to this buffer along with its size.
The buffer is allocated using standard memory management functions, so the
memory can be freed by those functions as well (eg. FreeMemory).
Sender in callbacks is of type TZCompressionBuffer and user data are stored in
its UserPtrData property.
}
Function ZCompressBuffer(InBuff: Pointer; InSize: TMemSize; out OutBuff: Pointer; out OutSize: TMemSize; StreamType: TZStreamType = zstDefault): Boolean; overload;
Function ZCompressBuffer(InBuff: Pointer; InSize: TMemSize; out OutBuff: Pointer; out OutSize: TMemSize; ProgressEvent: TFloatEvent; UserData: Pointer = nil; StreamType: TZStreamType = zstDefault): Boolean; overload;
Function ZCompressBuffer(InBuff: Pointer; InSize: TMemSize; out OutBuff: Pointer; out OutSize: TMemSize; ProgressCallback: TFloatCallback; UserData: Pointer = nil; StreamType: TZStreamType = zstDefault): Boolean; overload;
{
ZCompressStream
Compresses data provided in input stream and stores result in output stream.
Position in both input and output streams are set to beginning before the
compression, meaning entire input stream is compressed, irrespective of
current position.
Size of output stream is altered after compression so it matches amount of
compressed data.
Position of both streams after return from this function is undefined.
Sender in callbacks is of type TZCompressionStream and user data are stored in
its UserPtrData property.
}
Function ZCompressStream(InStream, OutStream: TStream; StreamType: TZStreamType = zstDefault): Boolean; overload;
Function ZCompressStream(InStream, OutStream: TStream; ProgressEvent: TFloatEvent; UserData: Pointer = nil; StreamType: TZStreamType = zstDefault): Boolean; overload;
Function ZCompressStream(InStream, OutStream: TStream; ProgressCallback: TFloatCallback; UserData: Pointer = nil; StreamType: TZStreamType = zstDefault): Boolean; overload;
{
ZCompressStream
Compresses data from the provided stream and stores result back into the same
stream.
Position of the input stream is set to beginning before processing, so the
entire stream is compressed.
After the compression, the result is stored back at the start of the stream
and size of the stream is altered to match an amount of compressed data.
During the processing, the compressed data are temporarily stored in their
entirity in memory buffer - this might pose a problem for large streams, so
be carefull with this function.
Sender in callbacks is of type TZCompressionStream and user data are stored in
its UserPtrData property.
}
Function ZCompressStream(Stream: TStream; StreamType: TZStreamType = zstDefault): Boolean; overload;
Function ZCompressStream(Stream: TStream; ProgressEvent: TFloatEvent; UserData: Pointer = nil; StreamType: TZStreamType = zstDefault): Boolean; overload;
Function ZCompressStream(Stream: TStream; ProgressCallback: TFloatCallback; UserData: Pointer = nil; StreamType: TZStreamType = zstDefault): Boolean; overload;
{
ZCompressFile
Compresses data from input file and stores the result in output file.
If the output file already exists, it will be rewritten.
Sender in callbacks is of type TZCompressionStream and user data are stored in
its UserPtrData property.
}
Function ZCompressFile(const InFileName, OutFileName: String; StreamType: TZStreamType = zstDefault): Boolean; overload;
Function ZCompressFile(const InFileName, OutFileName: String; ProgressEvent: TFloatEvent; UserData: Pointer = nil; StreamType: TZStreamType = zstDefault): Boolean; overload;
Function ZCompressFile(const InFileName, OutFileName: String; ProgressCallback: TFloatCallback; UserData: Pointer = nil; StreamType: TZStreamType = zstDefault): Boolean; overload;
{
ZCompressFile
Compresses data from provided file and stores the result back to the same
file, rewriting it.
Size of the file is altered to match the amount of compressed data.
All compressed data are temporarily stored in memory before they are stored
back to the file - this might be problematic for massive files, as the data
might not fit into memory. If this problem occurs, use function
ZCompressFileTemp instead.
Sender in callbacks is of type TZCompressionStream and user data are stored in
its UserPtrData property.
}
Function ZCompressFile(const FileName: String; StreamType: TZStreamType = zstDefault): Boolean; overload;
Function ZCompressFile(const FileName: String; ProgressEvent: TFloatEvent; UserData: Pointer = nil; StreamType: TZStreamType = zstDefault): Boolean; overload;
Function ZCompressFile(const FileName: String; ProgressCallback: TFloatCallback; UserData: Pointer = nil; StreamType: TZStreamType = zstDefault): Boolean; overload;
{
Compresses selected file to a temporary file (in the same folder), then
deletes original file and renames the temporary file to the original input
file name.
Sender in callbacks is of type TZCompressionStream and user data are stored in
its UserPtrData property.
}
Function ZCompressFileTemp(const FileName: String; StreamType: TZStreamType = zstDefault): Boolean; overload;
Function ZCompressFileTemp(const FileName: String; ProgressEvent: TFloatEvent; UserData: Pointer = nil; StreamType: TZStreamType = zstDefault): Boolean; overload;
Function ZCompressFileTemp(const FileName: String; ProgressCallback: TFloatCallback; UserData: Pointer = nil; StreamType: TZStreamType = zstDefault): Boolean; overload;
{===============================================================================
--------------------------------------------------------------------------------
Decompression
--------------------------------------------------------------------------------
===============================================================================}
{
Decompression functions work exactly the same as their respective compression
counterparts - so refer to them for details.
}
Function ZDecompressBuffer(InBuff: Pointer; InSize: TMemSize; out OutBuff: Pointer; out OutSize: TMemSize; StreamType: TZStreamType = zstDefault): Boolean; overload;
Function ZDecompressBuffer(InBuff: Pointer; InSize: TMemSize; out OutBuff: Pointer; out OutSize: TMemSize; ProgressEvent: TFloatEvent; UserData: Pointer = nil; StreamType: TZStreamType = zstDefault): Boolean; overload;
Function ZDecompressBuffer(InBuff: Pointer; InSize: TMemSize; out OutBuff: Pointer; out OutSize: TMemSize; ProgressCallback: TFloatCallback; UserData: Pointer = nil; StreamType: TZStreamType = zstDefault): Boolean; overload;
Function ZDecompressStream(InStream, OutStream: TStream; StreamType: TZStreamType = zstDefault): Boolean; overload;
Function ZDecompressStream(InStream, OutStream: TStream; ProgressEvent: TFloatEvent; UserData: Pointer = nil; StreamType: TZStreamType = zstDefault): Boolean; overload;
Function ZDecompressStream(InStream, OutStream: TStream; ProgressCallback: TFloatCallback; UserData: Pointer = nil; StreamType: TZStreamType = zstDefault): Boolean; overload;
Function ZDecompressStream(Stream: TStream; StreamType: TZStreamType = zstDefault): Boolean; overload;
Function ZDecompressStream(Stream: TStream; ProgressEvent: TFloatEvent; UserData: Pointer = nil; StreamType: TZStreamType = zstDefault): Boolean; overload;
Function ZDecompressStream(Stream: TStream; ProgressCallback: TFloatCallback; UserData: Pointer = nil; StreamType: TZStreamType = zstDefault): Boolean; overload;
Function ZDecompressFile(const InFileName, OutFileName: String; StreamType: TZStreamType = zstDefault): Boolean; overload;
Function ZDecompressFile(const InFileName, OutFileName: String; ProgressEvent: TFloatEvent; UserData: Pointer = nil; StreamType: TZStreamType = zstDefault): Boolean; overload;
Function ZDecompressFile(const InFileName, OutFileName: String; ProgressCallback: TFloatCallback; UserData: Pointer = nil; StreamType: TZStreamType = zstDefault): Boolean; overload;
Function ZDecompressFile(const FileName: String; StreamType: TZStreamType = zstDefault): Boolean; overload;
Function ZDecompressFile(const FileName: String; ProgressEvent: TFloatEvent; UserData: Pointer = nil; StreamType: TZStreamType = zstDefault): Boolean; overload;
Function ZDecompressFile(const FileName: String; ProgressCallback: TFloatCallback; UserData: Pointer = nil; StreamType: TZStreamType = zstDefault): Boolean; overload;
Function ZDecompressFileTemp(const FileName: String; StreamType: TZStreamType = zstDefault): Boolean; overload;
Function ZDecompressFileTemp(const FileName: String; ProgressEvent: TFloatEvent; UserData: Pointer = nil; StreamType: TZStreamType = zstDefault): Boolean; overload;
Function ZDecompressFileTemp(const FileName: String; ProgressCallback: TFloatCallback; UserData: Pointer = nil; StreamType: TZStreamType = zstDefault): Boolean; overload;
implementation
uses
{$IFNDEF FPC}Windows,{$ENDIF} SysUtils,
MemoryBuffer, StrRect, WinFileInfo;
{===============================================================================
Auxiliary functions
===============================================================================}
procedure CopyStream(Src,Dest: TStream);
const
COPY_BUFFER_SIZE = 1024 * 1024 {1MiB};
var
Buffer: Pointer;
BytesRead: Integer;
begin
GetMem(Buffer,COPY_BUFFER_SIZE);
try
repeat
BytesRead := Src.Read(Buffer^,COPY_BUFFER_SIZE);
Dest.WriteBuffer(Buffer^,BytesRead);
until TMemSize(BytesRead) < COPY_BUFFER_SIZE;
finally
FreeMem(Buffer);
end;
end;
{===============================================================================
--------------------------------------------------------------------------------
Compression
--------------------------------------------------------------------------------
===============================================================================}
{===============================================================================
Internal compression functions
===============================================================================}
Function ZCompressBuffer2(InBuff: Pointer; InSize: TMemSize; out OutBuff: Pointer; out OutSize: TMemSize; ProgressEvent: TFloatEvent; ProgressCallback: TFloatCallback; UserData: Pointer; StreamType: TZStreamType): Boolean;
var
Compressor: TZCompressionBuffer;
begin
try
Compressor := TZCompressionBuffer.Create(InBuff,InSize,zclDefault,StreamType);
try
Compressor.FreeResult := False;
Compressor.OnProgressEvent := ProgressEvent;
Compressor.OnProgressCallback := ProgressCallback;
Compressor.UserPtrData := UserData;
Compressor.Process;
OutBuff := BufferMemory(Compressor.Result);
OutSize := BufferSize(Compressor.Result);
Result := True;
finally
Compressor.Free;
end;
except
Result := False;
end;
end;
//------------------------------------------------------------------------------
Function ZCompressStream1(Stream: TStream; ProgressEvent: TFloatEvent; ProgressCallback: TFloatCallback; UserData: Pointer; StreamType: TZStreamType): Boolean; forward;
{
forward declaration, implemented later
}
//------------------------------------------------------------------------------
Function ZCompressStream2(InStream, OutStream: TStream; ProgressEvent: TFloatEvent; ProgressCallback: TFloatCallback; UserData: Pointer; StreamType: TZStreamType): Boolean;
var
Compressor: TZCompressionStream;
begin
try
If InStream <> OutStream then
begin
Compressor := TZCompressionStream.Create(OutStream,zclDefault,StreamType);
try
Compressor.OnProgressEvent := ProgressEvent;
Compressor.OnProgressCallback := ProgressCallback;
Compressor.UserPtrData := UserData;
InStream.Seek(0,soBeginning);
OutStream.Seek(0,soBeginning);
Compressor.CompressFrom(InStream);
OutStream.Size := OutStream.Position;
Result := True;
finally
Compressor.Free;
end;
end
else Result := ZCompressStream1(InStream,ProgressEvent,ProgressCallback,UserData,StreamType);
except
Result := False;
end;
end;
//------------------------------------------------------------------------------
Function ZCompressStream1(Stream: TStream; ProgressEvent: TFloatEvent; ProgressCallback: TFloatCallback; UserData: Pointer; StreamType: TZStreamType): Boolean;
var
TempStream: TMemoryStream;
begin
TempStream := TMemoryStream.Create;
try
TempStream.Size := Stream.Size; // preallocate
TempStream.Seek(0,soBeginning);
Stream.Seek(0,soBeginning);
Result := ZCompressStream2(Stream,TempStream,ProgressEvent,ProgressCallback,UserData,StreamType);
If Result then
begin
TempStream.Seek(0,soBeginning);
Stream.Seek(0,soBeginning);
CopyStream(TempStream,Stream);
Stream.Size := Stream.Position;
end;
finally
TempStream.Free;
end;
end;
//------------------------------------------------------------------------------
Function ZCompressFile1(const FileName: String; ProgressEvent: TFloatEvent; ProgressCallback: TFloatCallback; UserData: Pointer; StreamType: TZStreamType): Boolean; forward;
{
forward declaration, implemented later
}
//------------------------------------------------------------------------------
Function ZCompressFile2(const InFileName, OutFileName: String; ProgressEvent: TFloatEvent; ProgressCallback: TFloatCallback; UserData: Pointer; StreamType: TZStreamType): Boolean;
var
IsSameFile: Boolean;
InFileStream: TFileStream;
OutFileStream: TFileStream;
begin
If FileExists(OutFileName) then
IsSameFile := SameFile(InFileName,OutFileName)
else
IsSameFile := False;
If not IsSameFile then
begin
InFileStream := TFileStream.Create(StrToRTL(InFileName),fmOpenRead or fmShareDenyWrite);
try
OutFileStream := TFileStream.Create(StrToRTL(OutFileName),fmCreate or fmShareExclusive);
try
Result := ZCompressStream2(InFileStream,OutFileStream,ProgressEvent,ProgressCallback,UserData,StreamType);
finally
OutFileStream.Free;
end;
finally
InFileStream.Free;
end;
end
else Result := ZCompressFile1(InFileName,ProgressEvent,ProgressCallback,UserData,StreamType);
end;
//------------------------------------------------------------------------------
Function ZCompressFile1(const FileName: String; ProgressEvent: TFloatEvent; ProgressCallback: TFloatCallback; UserData: Pointer; StreamType: TZStreamType): Boolean;
var
FileStream: TFileStream;
begin
try
FileStream := TFileStream.Create(StrToRTL(FileName),fmOpenReadWrite or fmShareExclusive);
try
Result := ZCompressStream1(FileStream,ProgressEvent,ProgressCallback,UserData,StreamType);
finally
FileStream.Free;
end;
except
Result := False;
end;
end;
//------------------------------------------------------------------------------
Function ZCompressFileTemp1(const FileName: String; ProgressEvent: TFloatEvent; ProgressCallback: TFloatCallback; UserData: Pointer; StreamType: TZStreamType): Boolean;
var
TempFileName: String;
begin
TempFileName := FileName;
repeat
TempFileName := TempFileName + '.tmp';
until not FileExists(StrToRTL(TempFileName));
If ZCompressFile2(FileName,TempFileName,ProgressEvent,ProgressCallback,UserData,StreamType) then
begin
If DeleteFile(FileName) then
Result := RenameFile(TempFileName,FileName)
else
Result := False;
end
else Result := False;
end;
{===============================================================================
Public compression functions
===============================================================================}
Function ZCompressBuffer(InBuff: Pointer; InSize: TMemSize; out OutBuff: Pointer; out OutSize: TMemSize; StreamType: TZStreamType = zstDefault): Boolean;
begin
Result := ZCompressBuffer2(InBuff,InSize,OutBuff,OutSize,nil,nil,nil,StreamType);
end;
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Function ZCompressBuffer(InBuff: Pointer; InSize: TMemSize; out OutBuff: Pointer; out OutSize: TMemSize; ProgressEvent: TFloatEvent; UserData: Pointer = nil; StreamType: TZStreamType = zstDefault): Boolean;
begin
Result := ZCompressBuffer2(InBuff,InSize,OutBuff,OutSize,ProgressEvent,nil,UserData,StreamType);
end;
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Function ZCompressBuffer(InBuff: Pointer; InSize: TMemSize; out OutBuff: Pointer; out OutSize: TMemSize; ProgressCallback: TFloatCallback; UserData: Pointer = nil; StreamType: TZStreamType = zstDefault): Boolean;
begin
Result := ZCompressBuffer2(InBuff,InSize,OutBuff,OutSize,nil,ProgressCallback,UserData,StreamType);
end;
//==============================================================================
Function ZCompressStream(InStream, OutStream: TStream; StreamType: TZStreamType = zstDefault): Boolean;
begin
Result := ZCompressStream2(InStream,OutStream,nil,nil,nil,StreamType);
end;
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Function ZCompressStream(InStream, OutStream: TStream; ProgressEvent: TFloatEvent; UserData: Pointer = nil; StreamType: TZStreamType = zstDefault): Boolean;
begin
Result := ZCompressStream2(InStream,OutStream,ProgressEvent,nil,UserData,StreamType);
end;
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Function ZCompressStream(InStream, OutStream: TStream; ProgressCallback: TFloatCallback; UserData: Pointer = nil; StreamType: TZStreamType = zstDefault): Boolean;
begin
Result := ZCompressStream2(InStream,OutStream,nil,ProgressCallback,UserData,StreamType);
end;
//------------------------------------------------------------------------------
Function ZCompressStream(Stream: TStream; StreamType: TZStreamType = zstDefault): Boolean;
begin
Result := ZCompressStream1(Stream,nil,nil,nil,StreamType);
end;
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Function ZCompressStream(Stream: TStream; ProgressEvent: TFloatEvent; UserData: Pointer = nil; StreamType: TZStreamType = zstDefault): Boolean;
begin
Result := ZCompressStream1(Stream,ProgressEvent,nil,UserData,StreamType);
end;
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Function ZCompressStream(Stream: TStream; ProgressCallback: TFloatCallback; UserData: Pointer = nil; StreamType: TZStreamType = zstDefault): Boolean;
begin
Result := ZCompressStream1(Stream,nil,ProgressCallback,UserData,StreamType);
end;
//==============================================================================
Function ZCompressFile(const InFileName, OutFileName: String; StreamType: TZStreamType = zstDefault): Boolean;
begin
Result := ZCompressFile2(InFileName,OutFileName,nil,nil,nil,StreamType);
end;
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Function ZCompressFile(const InFileName, OutFileName: String; ProgressEvent: TFloatEvent; UserData: Pointer = nil; StreamType: TZStreamType = zstDefault): Boolean;
begin
Result := ZCompressFile2(InFileName,OutFileName,ProgressEvent,nil,UserData,StreamType);
end;
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Function ZCompressFile(const InFileName, OutFileName: String; ProgressCallback: TFloatCallback; UserData: Pointer = nil; StreamType: TZStreamType = zstDefault): Boolean;
begin
Result := ZCompressFile2(InFileName,OutFileName,nil,ProgressCallback,UserData,StreamType);
end;
//------------------------------------------------------------------------------
Function ZCompressFile(const FileName: String; StreamType: TZStreamType = zstDefault): Boolean;
begin
Result := ZCompressFile1(FileName,nil,nil,nil,StreamType);
end;
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Function ZCompressFile(const FileName: String; ProgressEvent: TFloatEvent; UserData: Pointer = nil; StreamType: TZStreamType = zstDefault): Boolean;
begin
Result := ZCompressFile1(FileName,ProgressEvent,nil,UserData,StreamType);
end;
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Function ZCompressFile(const FileName: String; ProgressCallback: TFloatCallback; UserData: Pointer = nil; StreamType: TZStreamType = zstDefault): Boolean;
begin
Result := ZCompressFile1(FileName,nil,ProgressCallback,UserData,StreamType);
end;
//------------------------------------------------------------------------------
Function ZCompressFileTemp(const FileName: String; StreamType: TZStreamType = zstDefault): Boolean;
begin
Result := ZCompressFileTemp1(FileName,nil,nil,nil,StreamType);
end;
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Function ZCompressFileTemp(const FileName: String; ProgressEvent: TFloatEvent; UserData: Pointer = nil; StreamType: TZStreamType = zstDefault): Boolean;
begin
Result := ZCompressFileTemp1(FileName,ProgressEvent,nil,UserData,StreamType);
end;
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Function ZCompressFileTemp(const FileName: String; ProgressCallback: TFloatCallback; UserData: Pointer = nil; StreamType: TZStreamType = zstDefault): Boolean;
begin
Result := ZCompressFileTemp1(FileName,nil,ProgressCallback,UserData,StreamType);
end;
{===============================================================================
--------------------------------------------------------------------------------
Decompression
--------------------------------------------------------------------------------
===============================================================================}
{===============================================================================
Internal decompression functions
===============================================================================}
Function ZDecompressBuffer2(InBuff: Pointer; InSize: TMemSize; out OutBuff: Pointer; out OutSize: TMemSize; ProgressEvent: TFloatEvent; ProgressCallback: TFloatCallback; UserData: Pointer; StreamType: TZStreamType): Boolean;
var
Decompressor: TZDecompressionBuffer;
begin
try
Decompressor := TZDecompressionBuffer.Create(InBuff,InSize,StreamType);
try
Decompressor.FreeResult := False;
Decompressor.OnProgressEvent := ProgressEvent;
Decompressor.OnProgressCallback := ProgressCallback;
Decompressor.UserPtrData := UserData;
Decompressor.Process;
OutBuff := BufferMemory(Decompressor.Result);
OutSize := BufferSize(Decompressor.Result);
Result := True;
finally
Decompressor.Free;
end;
except
Result := False;
end;
end;
//------------------------------------------------------------------------------
Function ZDecompressStream1(Stream: TStream; ProgressEvent: TFloatEvent; ProgressCallback: TFloatCallback; UserData: Pointer; StreamType: TZStreamType): Boolean; forward;
{
forward declaration, implemented later
}
//------------------------------------------------------------------------------
Function ZDecompressStream2(InStream, OutStream: TStream; ProgressEvent: TFloatEvent; ProgressCallback: TFloatCallback; UserData: Pointer; StreamType: TZStreamType): Boolean;
var
Decompressor: TZDecompressionStream;
begin
try
If InStream <> OutStream then
begin
Decompressor := TZDecompressionStream.Create(InStream,StreamType);
try
Decompressor.OnProgressEvent := ProgressEvent;
Decompressor.OnProgressCallback := ProgressCallback;
Decompressor.UserPtrData := UserData;
InStream.Seek(0,soBeginning);
OutStream.Seek(0,soBeginning);
Decompressor.DecompressTo(OutStream);
OutStream.Size := OutStream.Position;
Result := True;
finally
Decompressor.Free;
end;
end
else Result := ZDecompressStream1(InStream,ProgressEvent,ProgressCallback,UserData,StreamType);
except
Result := False;
end;
end;
//------------------------------------------------------------------------------
Function ZDecompressStream1(Stream: TStream; ProgressEvent: TFloatEvent; ProgressCallback: TFloatCallback; UserData: Pointer; StreamType: TZStreamType): Boolean;
var
TempStream: TMemoryStream;
begin
TempStream := TMemoryStream.Create;
try
TempStream.Size := Stream.Size; // preallocate
TempStream.Seek(0,soBeginning);
Stream.Seek(0,soBeginning);
Result := ZDecompressStream2(Stream,TempStream,ProgressEvent,ProgressCallback,UserData,StreamType);
If Result then
begin
TempStream.Seek(0,soBeginning);
Stream.Seek(0,soBeginning);
CopyStream(TempStream,Stream);
Stream.Size := Stream.Position;
end;
finally
TempStream.Free;
end;
end;
//------------------------------------------------------------------------------
Function ZDecompressFile1(const FileName: String; ProgressEvent: TFloatEvent; ProgressCallback: TFloatCallback; UserData: Pointer; StreamType: TZStreamType): Boolean; forward;
{
forward declaration, implemented later
}
//------------------------------------------------------------------------------
Function ZDecompressFile2(const InFileName, OutFileName: String; ProgressEvent: TFloatEvent; ProgressCallback: TFloatCallback; UserData: Pointer; StreamType: TZStreamType): Boolean;
var
IsSameFile: Boolean;
InFileStream: TFileStream;
OutFileStream: TFileStream;
begin
If FileExists(OutFileName) then
IsSameFile := SameFile(InFileName,OutFileName)
else
IsSameFile := False;
If not IsSameFile then
begin
InFileStream := TFileStream.Create(StrToRTL(InFileName),fmOpenRead or fmShareDenyWrite);
try
OutFileStream := TFileStream.Create(StrToRTL(OutFileName),fmCreate or fmShareExclusive);
try
Result := ZDecompressStream2(InFileStream,OutFileStream,ProgressEvent,ProgressCallback,UserData,StreamType);
finally
OutFileStream.Free;
end;
finally
InFileStream.Free;
end;
end
else Result := ZCompressFile1(InFileName,ProgressEvent,ProgressCallback,UserData,StreamType);
end;
//------------------------------------------------------------------------------
Function ZDecompressFile1(const FileName: String; ProgressEvent: TFloatEvent; ProgressCallback: TFloatCallback; UserData: Pointer; StreamType: TZStreamType): Boolean;
var
FileStream: TFileStream;
begin
try
FileStream := TFileStream.Create(StrToRTL(FileName),fmOpenReadWrite or fmShareExclusive);
try
Result := ZDecompressStream1(FileStream,ProgressEvent,ProgressCallback,UserData,StreamType);
finally
FileStream.Free;
end;
except
Result := False;
end;
end;
//------------------------------------------------------------------------------
Function ZDecompressFileTemp1(const FileName: String; ProgressEvent: TFloatEvent; ProgressCallback: TFloatCallback; UserData: Pointer; StreamType: TZStreamType): Boolean;
var
TempFileName: String;
begin
TempFileName := FileName;
repeat
TempFileName := TempFileName + '.tmp';
until not FileExists(StrToRTL(TempFileName));
If ZDecompressFile2(FileName,TempFileName,ProgressEvent,ProgressCallback,UserData,StreamType) then
begin
If DeleteFile(FileName) then
Result := RenameFile(TempFileName,FileName)
else
Result := False;
end
else Result := False;
end;
{===============================================================================
Public decompression functions
===============================================================================}
Function ZDecompressBuffer(InBuff: Pointer; InSize: TMemSize; out OutBuff: Pointer; out OutSize: TMemSize; StreamType: TZStreamType = zstDefault): Boolean;
begin
Result := ZDecompressBuffer2(InBuff,InSize,OutBuff,OutSize,nil,nil,nil,StreamType);
end;
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Function ZDecompressBuffer(InBuff: Pointer; InSize: TMemSize; out OutBuff: Pointer; out OutSize: TMemSize; ProgressEvent: TFloatEvent; UserData: Pointer = nil; StreamType: TZStreamType = zstDefault): Boolean;
begin
Result := ZDecompressBuffer2(InBuff,InSize,OutBuff,OutSize,ProgressEvent,nil,UserData,StreamType);
end;
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Function ZDecompressBuffer(InBuff: Pointer; InSize: TMemSize; out OutBuff: Pointer; out OutSize: TMemSize; ProgressCallback: TFloatCallback; UserData: Pointer = nil; StreamType: TZStreamType = zstDefault): Boolean;
begin
Result := ZDecompressBuffer2(InBuff,InSize,OutBuff,OutSize,nil,ProgressCallback,UserData,StreamType);
end;
//==============================================================================
Function ZDecompressStream(InStream, OutStream: TStream; StreamType: TZStreamType = zstDefault): Boolean;
begin
Result := ZDecompressStream2(InStream,OutStream,nil,nil,nil,StreamType);
end;
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Function ZDecompressStream(InStream, OutStream: TStream; ProgressEvent: TFloatEvent; UserData: Pointer = nil; StreamType: TZStreamType = zstDefault): Boolean;
begin
Result := ZDecompressStream2(InStream,OutStream,ProgressEvent,nil,UserData,StreamType);
end;
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Function ZDecompressStream(InStream, OutStream: TStream; ProgressCallback: TFloatCallback; UserData: Pointer = nil; StreamType: TZStreamType = zstDefault): Boolean;
begin
Result := ZDecompressStream2(InStream,OutStream,nil,ProgressCallback,UserData,StreamType);
end;
//------------------------------------------------------------------------------
Function ZDecompressStream(Stream: TStream; StreamType: TZStreamType = zstDefault): Boolean;
begin
Result := ZDecompressStream1(Stream,nil,nil,nil,StreamType);
end;
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Function ZDecompressStream(Stream: TStream; ProgressEvent: TFloatEvent; UserData: Pointer = nil; StreamType: TZStreamType = zstDefault): Boolean;
begin
Result := ZDecompressStream1(Stream,ProgressEvent,nil,UserData,StreamType);
end;
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Function ZDecompressStream(Stream: TStream; ProgressCallback: TFloatCallback; UserData: Pointer = nil; StreamType: TZStreamType = zstDefault): Boolean;
begin
Result := ZDecompressStream1(Stream,nil,ProgressCallback,UserData,StreamType);
end;
//==============================================================================
Function ZDecompressFile(const InFileName, OutFileName: String; StreamType: TZStreamType = zstDefault): Boolean;
begin
Result := ZDecompressFile2(InFileName,OutFileName,nil,nil,nil,StreamType);
end;
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Function ZDecompressFile(const InFileName, OutFileName: String; ProgressEvent: TFloatEvent; UserData: Pointer = nil; StreamType: TZStreamType = zstDefault): Boolean;
begin
Result := ZDecompressFile2(InFileName,OutFileName,ProgressEvent,nil,UserData,StreamType);
end;
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Function ZDecompressFile(const InFileName, OutFileName: String; ProgressCallback: TFloatCallback; UserData: Pointer = nil; StreamType: TZStreamType = zstDefault): Boolean;
begin
Result := ZDecompressFile2(InFileName,OutFileName,nil,ProgressCallback,UserData,StreamType);
end;
//------------------------------------------------------------------------------
Function ZDecompressFile(const FileName: String; StreamType: TZStreamType = zstDefault): Boolean;
begin
Result := ZDecompressFile1(FileName,nil,nil,nil,StreamType);
end;
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Function ZDecompressFile(const FileName: String; ProgressEvent: TFloatEvent; UserData: Pointer = nil; StreamType: TZStreamType = zstDefault): Boolean;
begin
Result := ZDecompressFile1(FileName,ProgressEvent,nil,UserData,StreamType);
end;
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Function ZDecompressFile(const FileName: String; ProgressCallback: TFloatCallback; UserData: Pointer = nil; StreamType: TZStreamType = zstDefault): Boolean;
begin
Result := ZDecompressFile1(FileName,nil,ProgressCallback,UserData,StreamType);
end;
//------------------------------------------------------------------------------
Function ZDecompressFileTemp(const FileName: String; StreamType: TZStreamType = zstDefault): Boolean;
begin
Result := ZDecompressFileTemp1(FileName,nil,nil,nil,StreamType);
end;
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Function ZDecompressFileTemp(const FileName: String; ProgressEvent: TFloatEvent; UserData: Pointer = nil; StreamType: TZStreamType = zstDefault): Boolean;
begin
Result := ZDecompressFileTemp1(FileName,ProgressEvent,nil,UserData,StreamType);
end;
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Function ZDecompressFileTemp(const FileName: String; ProgressCallback: TFloatCallback; UserData: Pointer = nil; StreamType: TZStreamType = zstDefault): Boolean;
begin
Result := ZDecompressFileTemp1(FileName,nil,ProgressCallback,UserData,StreamType);
end;
end.