forked from synopse/mORMot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SynLizard.pas
624 lines (541 loc) · 23.3 KB
/
SynLizard.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
/// Lizard (LZ5) compression routines (statically linked for FPC)
// - licensed under a MPL/GPL/LGPL tri-license; original Lizard is BSD 2-Clause
unit SynLizard;
{
This file is part of Synopse Lizard Compression.
Synopse Lizard Compression. Copyright (C) 2019 Arnaud Bouchez
Synopse Informatique - https://synopse.info
*** BEGIN LICENSE BLOCK *****
Version: MPL 1.1/GPL 2.0/LGPL 2.1
The contents of this file are subject to the Mozilla Public License Version
1.1 (the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.mozilla.org/MPL
Software distributed under the License is distributed on an "AS IS" basis,
WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
for the specific language governing rights and limitations under the License.
The Original Code is Synopse Lizard Compression.
The Initial Developer of the Original Code is Arnaud Bouchez.
Portions created by the Initial Developer are Copyright (C) 2019
the Initial Developer. All Rights Reserved.
Contributor(s):
Alternatively, the contents of this file may be used under the terms of
either the GNU General Public License Version 2 or later (the "GPL"), or
the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
in which case the provisions of the GPL or the LGPL are applicable instead
of those above. If you wish to allow use of your version of this file only
under the terms of either the GPL or the LGPL, and not to allow others to
use your version of this file under the terms of the MPL, indicate your
decision by deleting the provisions above and replace them with the notice
and other provisions required by the GPL or the LGPL. If you do not delete
the provisions above, a recipient may use your version of this file under
the terms of any one of the MPL, the GPL or the LGPL.
***** END LICENSE BLOCK *****
*** BEGIN ORIGINAL LICENSE BLOCK *****
Version: BSD 2-Clause License
Lizard Library
Copyright (C) 2011-2016, Yann Collet.
Copyright (C) 2016-2017, Przemyslaw Skibinski <inikep@gmail.com>
All rights reserved.
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice, this
list of conditions and the following disclaimer in the documentation and/or
other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
You can contact the author at :
- Lizard source repository : https://github.com/inikep/lizard
***** END ORIGINAL LICENSE BLOCK *****
Revision history
Version 1.18
- first release, associated with the main Synopse mORMot framework
Some numbers, for a 53MB log file (taken from a production server):
FPC Win32
TAlgoSynLz 53 MB->5 MB: comp 563.7 MB/s decomp 815.3 MB/s
TAlgoLizard 53 MB->3.9 MB: comp 54.6 MB/s decomp 1.1 GB/s
TAlgoLizardFast 53 MB->6.9 MB: comp 493.8 MB/s decomp 1 GB/s
TAlgoDeflate 53 MB->4.8 MB: comp 28.2 MB/s decomp 212 MB/s
TAlgoDeflateFast 53 MB->7 MB: comp 58.6 MB/s decomp 182.5 MB/s
FPC Win64
TAlgoSynLz 53 MB->5 MB: comp 635.4 MB/s decomp 923.5 MB/s
TAlgoLizard 53 MB->3.9 MB: comp 61 MB/s decomp 1.8 GB/s
TAlgoLizardFast 53 MB->6.8 MB: comp 674.2 MB/s decomp 1.6 GB/s
TAlgoDeflate 53 MB->4.8 MB: comp 40.2 MB/s decomp 255.1 MB/s
TAlgoDeflateFast 53 MB->7 MB: comp 81.2 MB/s decomp 219.9 MB/s
FPC Linux32
TAlgoSynLz 53 MB->5 MB: comp 533.4 MB/s decomp 472.5 MB/s
TAlgoLizard 53 MB->3.9 MB: comp 44.8 MB/s decomp 1.2 GB/s
TAlgoLizardFast 53 MB->6.9 MB: comp 515.5 MB/s decomp 1 GB/s
TAlgoDeflate 53 MB->4.8 MB: comp 60.2 MB/s decomp 413.3 MB/s
TAlgoDeflateFast 53 MB->7 MB: comp 121.8 MB/s decomp 336.7 MB/s
FPC Linux64
TAlgoSynLz 53 MB->5 MB: comp 626.4 MB/s decomp 906.8 MB/s
TAlgoLizard 53 MB->3.9 MB: comp 53.6 MB/s decomp 1.8 GB/s
TAlgoLizardFast 53 MB->6.8 MB: comp 700.3 MB/s decomp 1.6 GB/s
TAlgoDeflate 53 MB->4.8 MB: comp 70.5 MB/s decomp 544.5 MB/s
TAlgoDeflateFast 53 MB->7 MB: comp 141.4 MB/s decomp 420.2 MB/s
Conclusion: SynLZ has the best compression ratio for its compression speed,
but Lizard is much faster at decompression, when working with big log filesiles.
For small files (<MB), SynLZ is always faster, and uses less memory than Lizard.
NOTE:
- FOR DELPHI PLEASE DOWNLOAD external Lizard1-32.dll / Lizard1-64.dll
from https://synopse.info/files/SynLizardLibs.7z
}
interface
{$I Synopse.inc}
{.$define LIZARD_EXTERNALONLY}
// will force to use an external Lizard1-32.dll/Lizard1-64.dll/liblizard.so.1
// as available from https://synopse.info/files/SynLizardLibs.7z
{$ifdef FPC}
{$ifdef CPUINTEL}
{$ifdef BSD}
{$define LIZARD_EXTERNALONLY} // no static .o outside Windows/Linux yet
{$endif BSD}
{$else}
{$define LIZARD_EXTERNALONLY} // no static .o outside Intel x86/x64 yet
{$endif CPUINTEL}
{$else}
{$define LIZARD_EXTERNALONLY} // no static .obj for Delphi Win32/Win64 yet
{$endif FPC}
{.$define LIZARD_STANDALONE}
// used only with lizard.dpr
// if not defined (by default), register Lizard as TAlgoCompress.AlgoID=4/5/6
{$ifndef LIZARD_STANDALONE}
uses
SynCommons,
{$ifdef MSWINDOWS}
Windows,
{$endif}
{$ifdef FPC}
{$ifdef BSDNOTDARWIN}
dl,
{$else}
DynLibs,
{$endif BSDNOTDARWIN}
{$endif FPC}
SysUtils;
{$endif LIZARD_STANDALONE}
const
/// default compression level for TSynLizard.compress
// - 0 value will let the library use level 17 - slow but efficient - method
// - as used by AlgoLizard global TSynCompress instance
LIZARD_DEFAULT_CLEVEL = 0;
/// minimum compression level for TSynLizard.compress
// - as used by AlgoLizardFast global TSynCompress instance
LIZARD_MIN_CLEVEL = 10;
/// fast huffman compression level for TSynLizard.compress
// - better compression ratio than LIZARD_DEFAULT_CLEVEL, better compression
// speed, but slower decompression
LIZARD_HUFFMAN_CLEVEL = 41;
/// maximum compression level for TSynLizard.compress
LIZARD_MAX_CLEVEL = 49;
{$ifdef LIZARD_STANDALONE}
function Lizard_versionNumber: integer; cdecl;
function Lizard_compressBound(inputSize: integer): integer; cdecl;
function Lizard_compress(src, dst: pointer; srcSize, maxDstSize, compressionLevel: integer): integer; cdecl;
function Lizard_sizeofState(compressionLevel: integer): integer; cdecl;
function Lizard_compress_extState(state: pointer;
src, dst: pointer; srcSize, maxDstSize, compressionLevel: integer): integer; cdecl;
function Lizard_decompress_safe(src, dst: pointer; srcSize, maxDstSize: integer): integer; cdecl;
function Lizard_decompress_safe_partial(src, dst: pointer; srcSize, targetDstSize, maxDstSize: integer): integer; cdecl;
{$else LIZARD_STANDALONE}
const
{$ifdef Win32}
/// default TSynLizardDynamic file name
// - mainly for Delphi, since FPC will use static linked .o files under
// Windows and Linux Intel 32/64 bits
// - to be downloaded from from https://synopse.info/files/SynLizardLibs.7z
LIZARD_LIB_NAME = 'Lizard1-32.dll';
{$endif Win32}
{$ifdef Win64}
LIZARD_LIB_NAME = 'Lizard1-64.dll';
{$endif Win64}
{$ifdef Linux}
LIZARD_LIB_NAME = 'liblizard.so.1';
{$endif Linux}
type
/// Lizard (formerly LZ5) lossless compression algorithm
// - provides efficient compression with very fast decompression
// - this class implements direct low-level access to the Lizard API - consider
// using AlgoLizard/AlgoLizardFast global instances for easier use
TSynLizard = class
public
//// will initialize the library
constructor Create; virtual;
public
/// version number of the linked Lizard library
versionNumber: function: integer; cdecl;
/// maximum size that Lizard compression may output in a "worst case" scenario
compressBound: function(inputSize: integer): integer; cdecl;
/// compresses srcSize bytes from src into already allocated dst buffer of
// size maxDstSize - which should be >= Lizard_compressBound(srcSize)
// - returns number of bytes written into dst (necessarily <= maxDstSize),
// or 0 if compression fails due to too small maxDstSize, <0 on other failure
// - compressionLevel is from LIZARD_MIN_CLEVEL (10) to LIZARD_MAX_CLEVEL(49),
// any value <10 (e.g. 0) will use 17, and value >49 will use 49
// $ Lev Comp Decomp CompSize Ratio
// $ 7332 MB/s 8719 MB/s 211947520 100.00 (move)
// $ 10 346 MB/s 2610 MB/s 103402971 48.79
// $ 12 103 MB/s 2458 MB/s 86232422 40.69
// $ 15 50 MB/s 2552 MB/s 81187330 38.31
// $ 19 3.04 MB/s 2497 MB/s 77416400 36.53
// $ 21 157 MB/s 1795 MB/s 89239174 42.10
// $ 23 30 MB/s 1778 MB/s 81097176 38.26
// $ 26 6.63 MB/s 1734 MB/s 74503695 35.15
// $ 29 1.37 MB/s 1634 MB/s 68694227 32.41
// $ 30 246 MB/s 909 MB/s 85727429 40.45
// $ 32 94 MB/s 1244 MB/s 76929454 36.30
// $ 35 47 MB/s 1435 MB/s 73850400 34.84
// $ 39 2.94 MB/s 1502 MB/s 69807522 32.94
// $ 41 126 MB/s 961 MB/s 76100661 35.91
// $ 43 28 MB/s 1101 MB/s 70955653 33.48
// $ 46 6.25 MB/s 1073 MB/s 65413061 30.86
// $ 49 1.27 MB/s 1064 MB/s 60679215 28.63
compress: function(src, dst: pointer; srcSize, maxDstSize, compressionLevel: integer): integer; cdecl;
/// how much memory must be allocated for compress_extState()
sizeofState: function(compressionLevel: integer): integer; cdecl;
/// compresses using an external pre-allocated state buffer
compress_extState: function(state: pointer;
src, dst: pointer; srcSize, maxDstSize, compressionLevel: integer): integer; cdecl;
/// decompresses srcSize bytes from src into already allocated dst buffer
// - returns number of bytes written to dst (<= maxDstSize), or <=0 on failure
// - this function is protected against buffer overflow exploits
decompress_safe: function(src, dst: pointer; srcSize, maxDstSize: integer): integer; cdecl;
/// partial decompression srcSize bytes from src into already allocated dst buffer
// - returns number of bytes written to dst (<= maxDstSize), or <=0 on failure
// - number can be <targetDstSize should the compressed block to decode be smaller
// - this function is protected against buffer overflow exploits
decompress_safe_partial: function(src, dst: pointer; srcSize, targetDstSize, maxDstSize: integer): integer; cdecl;
end;
var
/// direct access to the low-level Lizard (LZ5) library
// - is defined by default if Lizard was statically linked (under FPC)
// - otherwise, you should execute explictly:
// ! if Lizard = nil then
// ! Lizard := TSynLizardDynamic.Create;
Lizard: TSynLizard;
type
/// try to load Lizard as an external library
// - static linking is currently available only on FPC Win32/64 and Linux32/64
// - this class is expected to access Lizard1-32.dll/Lizard1-64.dll files for
// Delphi, e.g. as such:
// ! TSynLizardDynamic.AlgoRegister;
TSynLizardDynamic = class(TSynLizard)
protected
{$ifdef FPC}
fHandle: TLibHandle;
{$else}
fHandle: THandle;
{$endif}
fLibraryName: TFileName;
fLoaded: boolean;
public
/// will first search in the executable folder, then within the system path
// - raise an Exception if the library file is not found, or not valid -
// unless aRaiseNoException is set to true
constructor Create(const aLibraryFile: TFileName = ''; aRaiseNoException: boolean = false); reintroduce;
/// unload the external library
destructor Destroy; override;
/// ensure Lizard compression is available
// - returns TRUE if Lizard compression is available
// - if there is a local Lizard1-32.dll/Lizard1-64.dll file, try to load it
class function AlgoRegister: boolean;
/// set to TRUE if Create successed
// - may be used if aRaiseNoException parameter has been defined
property Loaded: boolean read fLoaded;
/// the loaded library file name
property LibraryName: TFileName read fLibraryName;
end;
var
/// implement Lizard compression in level 17 (LIZARD_DEFAULT_CLEVEL) as AlgoID=4
// - is set by TSynLizard.Create, so available e.g. if library is statically
// linked, or once TSynLizardDynamic.Create has been successfully called
AlgoLizard: TAlgoCompress;
/// implement Lizard compression in level 10 (LIZARD_MIN_CLEVEL) as AlgoID=5
// - is set by TSynLizard.Create, so available e.g. if library is statically
// linked, or once TSynLizardDynamic.Create has been successfully called
AlgoLizardFast: TAlgoCompress;
/// implement Lizard compression in level 41 (LIZARD_HUFFMAN_CLEVEL) as AlgoID=6
// - is set by TSynLizard.Create, so available e.g. if library is statically
// linked, or once TSynLizardDynamic.Create has been successfully called
AlgoLizardHuffman: TAlgoCompress;
{$endif LIZARD_STANDALONE}
implementation
{$ifndef LIZARD_EXTERNALONLY}
function Lizard_versionNumber: integer; cdecl; external;
function Lizard_compressBound(inputSize: integer): integer; cdecl; external;
function Lizard_compress(src, dst: pointer; srcSize, maxDstSize, compressionLevel: integer): integer; cdecl; external;
function Lizard_sizeofState(compressionLevel: integer): integer; cdecl; external;
function Lizard_compress_extState(state: pointer;
src, dst: pointer; srcSize, maxDstSize, compressionLevel: integer): integer; cdecl; external;
{
function Lizard_createStream(compressionLevel: integer): pointer; cdecl; external;
function Lizard_freeStream(streamPtr: pointer): integer; cdecl; external;
function Lizard_resetStream(streamPtr: pointer; compressionLevel: integer): pointer; cdecl; external;
function Lizard_loadDict(streamPtr, dictionary: pointer; dictSize: integer): integer; cdecl; external;
function Lizard_compress_continue(streamPtr: pointer; src, dst: pointer; srcSize, maxDstSize: integer): integer; cdecl; external;
function Lizard_saveDict(streamPtr, safeBuffer: pointer; dictSize: integer): integer; cdecl; external;
}
function Lizard_decompress_safe(src, dst: pointer; srcSize, maxDstSize: integer): integer; cdecl; external;
function Lizard_decompress_safe_partial(src, dst: pointer; srcSize, targetDstSize, maxDstSize: integer): integer; cdecl; external;
{
function Lizard_createStreamDecode: pointer; cdecl; external;
function Lizard_freeStreamDecode(streamDec: pointer): integer; cdecl; external;
function Lizard_setStreamDecode(streamDec: pointer; dict: pointer; dictSize: integer): integer; cdecl; external;
function Lizard_decompress_safe_continue(streamDec, src, dst: pointer; srcSize, maxDstSize: integer): integer; cdecl; external;
function Lizard_decompress_safe_usingDict(src, dst: pointer; srcSize, maxDstSize: integer;
dict: pointer; dictSize: integer): integer; cdecl; external;
}
{$ifdef CPUX64}
{$ifdef FPC} // .o files don't work under Win64 for Delphi :(
{$ifdef MSWINDOWS}
{$L static\x86_64-win64\lizard_compress.o}
{$L static\x86_64-win64\lizard_decompress.o}
{$L static\x86_64-win64\huf_compress.o}
{$L static\x86_64-win64\huf_decompress.o}
{$L static\x86_64-win64\fse_compress.o}
{$L static\x86_64-win64\fse_decompress.o}
{$L static\x86_64-win64\entropy_common.o}
{$linklib static\x86_64-win64\libgcc.a}
{$linklib static\x86_64-win64\libmsvcrt.a}
{$else MSWINDOWS}
{$L static/x86_64-linux/lizard_compress.o}
{$L static/x86_64-linux/lizard_decompress.o}
{$L static/x86_64-linux/huf_compress.o}
{$L static/x86_64-linux/huf_decompress.o}
{$L static/x86_64-linux/fse_compress.o}
{$L static/x86_64-linux/fse_decompress.o}
{$L static/x86_64-linux/entropy_common.o}
{$endif MSWINDOWS}
{$endif FPC}
{$endif CPUX64}
{$ifdef CPUX86}
{$ifdef FPC}
{$ifdef MSWINDOWS}
{$L static\i386-win32\lizard_compress.o}
{$L static\i386-win32\lizard_decompress.o}
{$L static\i386-win32\huf_compress.o}
{$L static\i386-win32\huf_decompress.o}
{$L static\i386-win32\fse_compress.o}
{$L static\i386-win32\fse_decompress.o}
{$L static\i386-win32\entropy_common.o}
{$linklib static\i386-win32\libgcc.a}
{$linklib static\i386-win32\libmsvcrt.a}
{$else MSWINDOWS}
{$L static/i386-linux/lizard_compress.o}
{$L static/i386-linux/lizard_decompress.o}
{$L static/i386-linux/huf_compress.o}
{$L static/i386-linux/huf_decompress.o}
{$L static/i386-linux/fse_compress.o}
{$L static/i386-linux/fse_decompress.o}
{$L static/i386-linux/entropy_common.o}
{$linklib static/i386-linux\libgcc.a}
{$endif MSWINDOWS}
{$endif FPC}
{$endif CPUX86}
{$ifndef LIZARD_STANDALONE}
{ TSynLizardStatic }
type
TSynLizardStatic = class(TSynLizard)
public
constructor Create; override;
end;
constructor TSynLizardStatic.Create;
begin
versionNumber := Lizard_versionNumber;
compressbound := Lizard_compressbound;
compress := Lizard_compress;
sizeofState := Lizard_sizeofState;
compress_extState := Lizard_compress_extState;
decompress_safe := Lizard_decompress_safe;
decompress_safe_partial := Lizard_decompress_safe_partial;
inherited Create; // register AlgoLizard/AlgoLizardFast/AlgoLizardHuff
end;
{$endif LIZARD_STANDALONE}
{$endif LIZARD_EXTERNALONLY}
{$ifndef LIZARD_STANDALONE}
type
TAlgoLizard = class(TAlgoCompressWithNoDestLen)
protected
fCompressionLevel: integer;
function RawProcess(src,dst: pointer; srcLen,dstLen,dstMax: integer;
process: TAlgoCompressWithNoDestLenProcess): integer; override;
public
constructor Create; override;
function AlgoID: byte; override;
function AlgoCompressDestLen(PlainLen: integer): integer; override;
end;
TAlgoLizardFast = class(TAlgoLizard)
public
constructor Create; override;
function AlgoID: byte; override;
end;
TAlgoLizardHuffman = class(TAlgoLizard)
public
constructor Create; override;
function AlgoID: byte; override;
end;
{ TAlgoLizard }
function TAlgoLizard.AlgoID: byte;
begin
result := 4;
end;
constructor TAlgoLizard.Create;
begin
inherited Create;
fCompressionLevel := LIZARD_DEFAULT_CLEVEL;
end;
function TAlgoLizard.AlgoCompressDestLen(PlainLen: integer): integer;
begin
if Lizard = nil then
result := 0
else
result := Lizard.compressBound(PlainLen);
end;
function TAlgoLizard.RawProcess(src, dst: pointer; srcLen, dstLen, dstMax: integer;
process: TAlgoCompressWithNoDestLenProcess): integer;
begin
if Lizard = nil then
result := 0
else
case process of
doCompress:
result := Lizard.compress(src,dst,srcLen,dstLen,fCompressionLevel);
doUnCompress:
result := Lizard.decompress_safe(src,dst,srcLen,dstLen);
doUncompressPartial:
result := Lizard.decompress_safe_partial(src,dst,srcLen,dstLen,dstMax);
else
result := 0;
end;
end;
{ TAlgoLizardFast }
constructor TAlgoLizardFast.Create;
begin
inherited Create;
fCompressionLevel := LIZARD_MIN_CLEVEL;
end;
function TAlgoLizardFast.AlgoID: byte;
begin
result := 5;
end;
{ TAlgoLizardHuffman }
constructor TAlgoLizardHuffman.Create;
begin
inherited Create;
fCompressionLevel := LIZARD_HUFFMAN_CLEVEL;
end;
function TAlgoLizardHuffman.AlgoID: byte;
begin
result := 6;
end;
{ TSynLizard }
constructor TSynLizard.Create;
begin
{$ifndef LIZARD_STANDALONE}
if AlgoLizard = nil then
AlgoLizard := TAlgoLizard.Create;
if AlgoLizardFast = nil then
AlgoLizardFast := TAlgoLizardFast.Create;
if AlgoLizardHuffman = nil then
AlgoLizardHuffman := TAlgoLizardHuffman.Create;
{$endif LIZARD_STANDALONE}
end;
{ TSynLizardDynamic }
const
LIZARD_ENTRIES: array[0..6] of TFileName =
('versionNumber', 'compressBound', 'compress', 'sizeofState',
'compress_extState', 'decompress_safe', 'decompress_safe_partial');
constructor TSynLizardDynamic.Create(const aLibraryFile: TFileName;
aRaiseNoException: boolean);
var P: PPointerArray;
i: integer;
begin
fLibraryName := aLibraryFile;
if fLibraryName = '' then begin
fLibraryName := ExtractFilePath(ParamStr(0)) + LIZARD_LIB_NAME;
if not FileExists(fLibraryName) then
fLibraryName := LIZARD_LIB_NAME;
end;
{$ifdef MSWINDOWS}
fHandle := SafeLoadLibrary(fLibraryName);
if fHandle=0 then
{$else}
{$ifdef BSDNOTDARWIN}
fHandle := TLibHandle(dlopen(PChar(fLibraryName),0));
if fHandle=TLibHandle(nil) then
{$else}
fHandle := LoadLibrary({$ifndef FPC}pointer{$endif}(fLibraryName));
if fHandle=0 then
{$endif}
{$endif MSWINDOWS}
if aRaiseNoException then
exit
else
raise Exception.CreateFmt('Unable to load %s - %s/'#13#10 +
'Please download from https://synopse.info/files/SynLizardLibs.7z',
[fLibraryName, {$ifdef MSWINDOWS}SysErrorMessage(GetLastError){$else}''{$endif}]);
P := @@versionNumber;
for i := 0 to High(LIZARD_ENTRIES) do begin
P^[i] := {$ifdef BSDNOTDARWIN}dlsym{$else}GetProcAddress{$endif}(
fHandle,PChar('Lizard_'+LIZARD_ENTRIES[i]));
if not Assigned(P^[i]) then
if aRaiseNoException then
exit
else
raise Exception.CreateFmt('Unable to load %s - Missing Lizard_%s',
[fLibraryName,LIZARD_ENTRIES[i]]);
end;
if versionNumber div 10000<>1 then
if aRaiseNoException then
exit
else
raise Exception.CreateFmt('%s has unexpected versionNumber=%d',
[fLibraryName, versionNumber]);
inherited Create; // register AlgoLizard/AlgoLizardFast/AlgoLizardHuffman
fLoaded := true;
end;
destructor TSynLizardDynamic.Destroy;
begin
{$ifdef BSDNOTDARWIN}
if fHandle<>TLibHandle(nil) then
dlclose(fHandle);
{$else}
if fHandle<>0 then
FreeLibrary(fHandle);
{$endif}
inherited;
end;
class function TSynLizardDynamic.AlgoRegister: boolean;
var
lib: TSynLizardDynamic;
begin
result := Lizard <> nil;
if result then
exit; // already registered (maybe as TSynLizardStatic)
lib := TSynLizardDynamic.Create('', true);
result := lib.Loaded;
if result then
Lizard := lib
else
lib.Free;
end;
initialization
{$ifndef LIZARD_EXTERNALONLY}
Lizard := TSynLizardStatic.Create;
{$endif LIZARD_EXTERNALONLY}
finalization
Lizard.Free;
{$endif LIZARD_STANDALONE}
end.