| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508 |
- {*******************************************************}
- { }
- { Delphi Supplemental Components }
- { ZLIB Data Compression Interface Unit }
- { }
- { Copyright (c) 1997 Borland International }
- { Copyright (c) 1998 Jacques Nomssi Nzali }
- { }
- {*******************************************************}
- {
- Modified for
- Vampyre Imaging Library
- by Marek Mauder ([email protected])
- http://imaginglib.sourceforge.net
- You can choose which pascal zlib implementation will be
- used. IMPASZLIB and FPCPASZLIB are translations of zlib
- to pascal so they don't need any *.obj files.
- The others are interfaces to *.obj files (Windows) or
- *.so libraries (Linux).
- Default implementation is IMPASZLIB because it can be compiled
- by all supported compilers and works on all supported platforms.
- I usually use implementation with the fastest decompression
- when building release Win32 binaries.
- FPCPASZLIB is useful for Lazarus applications. FPC's zlib is linked
- to exe by default so there is no need to link additional (and almost identical)
- IMPASZLIB.
- There is a small speed comparison table of some of the
- supported implementations (TGA image 28 311 570 bytes, compression level = 6,
- Delphi 9, Win32, Athlon XP 1900).
- ZLib version Decompression Compression Comp. Size
- IMPASZLIB | 1.1.2 | 824 ms | 4 280 ms | 18 760 133 B
- ZLIBEX | 1.2.2 | 710 ms | 1 590 ms* | 19 056 621 B
- DELPHIZLIB | 1.0.4 | 976 ms | 9 190 ms | 18 365 562 B
- ZLIBPAS | 1.2.3 | 680 ms | 3 790 ms | 18 365 387 B
- * obj files are compiled with compression level hardcoded to 1 (fastest)
- }
- unit dzlib;
- interface
- {$DEFINE IMPASZLIB}
- { $DEFINE FPCPASZLIB}
- { $DEFINE ZLIBEX}
- { $DEFINE DELPHIZLIB}
- { $DEFINE ZLIBPAS}
- uses
- {$IFDEF IMPASZLIB}
- { use paszlib modified by me for Delphi and FPC }
- imzdeflate, imzinflate, impaszlib,
- {$ENDIF}
- {$IFDEF FPCPASZLIB}
- { use FPC's paszlib }
- zbase, paszlib,
- {$ENDIF}
- {$IFDEF ZLIBEX}
- ZLibEx,
- {$ENDIF}
- {$IFDEF DELPHIZLIB}
- { use ZLib unit shipped with Delphi }
- ZLib,
- {$ENDIF}
- {$IFDEF ZLIBPAS}
- { pascal interface to ZLib shipped with ZLib C source }
- zlibpas,
- {$ENDIF}
- SysUtils, Classes;
- {$IF Defined(IMPASZLIB) or Defined(FPCPASZLIB) or Defined(ZLIBPAS)}
- type
- TZStreamRec = z_stream;
- {$IFEND}
- {$IFDEF ZLIBEX}
- const
- Z_NO_FLUSH = 0;
- Z_PARTIAL_FLUSH = 1;
- Z_SYNC_FLUSH = 2;
- Z_FULL_FLUSH = 3;
- Z_FINISH = 4;
- Z_OK = 0;
- Z_STREAM_END = 1;
- Z_NEED_DICT = 2;
- Z_ERRNO = -1;
- Z_STREAM_ERROR = -2;
- Z_DATA_ERROR = -3;
- Z_MEM_ERROR = -4;
- Z_BUF_ERROR = -5;
- Z_VERSION_ERROR = -6;
- Z_NO_COMPRESSION = 0;
- Z_BEST_SPEED = 1;
- Z_BEST_COMPRESSION = 9;
- Z_DEFAULT_COMPRESSION = -1;
- Z_FILTERED = 1;
- Z_HUFFMAN_ONLY = 2;
- Z_RLE = 3;
- Z_DEFAULT_STRATEGY = 0;
- Z_BINARY = 0;
- Z_ASCII = 1;
- Z_UNKNOWN = 2;
- Z_DEFLATED = 8;
- {$ENDIF}
- type
- { Abstract ancestor class }
- TCustomZlibStream = class(TStream)
- private
- FStrm: TStream;
- FStrmPos: Integer;
- FOnProgress: TNotifyEvent;
- FZRec: TZStreamRec;
- FBuffer: array [Word] of Char;
- protected
- procedure Progress(Sender: TObject); dynamic;
- property OnProgress: TNotifyEvent read FOnProgress write FOnProgress;
- constructor Create(Strm: TStream);
- end;
- { TCompressionStream compresses data on the fly as data is written to it, and
- stores the compressed data to another stream.
- TCompressionStream is write-only and strictly sequential. Reading from the
- stream will raise an exception. Using Seek to move the stream pointer
- will raise an exception.
- Output data is cached internally, written to the output stream only when
- the internal output buffer is full. All pending output data is flushed
- when the stream is destroyed.
- The Position property returns the number of uncompressed bytes of
- data that have been written to the stream so far.
- CompressionRate returns the on-the-fly percentage by which the original
- data has been compressed: (1 - (CompressedBytes / UncompressedBytes)) * 100
- If raw data size = 100 and compressed data size = 25, the CompressionRate
- is 75%
- The OnProgress event is called each time the output buffer is filled and
- written to the output stream. This is useful for updating a progress
- indicator when you are writing a large chunk of data to the compression
- stream in a single call.}
- TCompressionLevel = (clNone, clFastest, clDefault, clMax);
- TCompressionStream = class(TCustomZlibStream)
- private
- function GetCompressionRate: Single;
- public
- constructor Create(CompressionLevel: TCompressionLevel; Dest: TStream);
- destructor Destroy; override;
- function Read(var Buffer; Count: Longint): Longint; override;
- function Write(const Buffer; Count: Longint): Longint; override;
- function Seek(Offset: Longint; Origin: Word): Longint; override;
- property CompressionRate: Single read GetCompressionRate;
- property OnProgress;
- end;
- { TDecompressionStream decompresses data on the fly as data is read from it.
- Compressed data comes from a separate source stream. TDecompressionStream
- is read-only and unidirectional; you can seek forward in the stream, but not
- backwards. The special case of setting the stream position to zero is
- allowed. Seeking forward decompresses data until the requested position in
- the uncompressed data has been reached. Seeking backwards, seeking relative
- to the end of the stream, requesting the size of the stream, and writing to
- the stream will raise an exception.
- The Position property returns the number of bytes of uncompressed data that
- have been read from the stream so far.
- The OnProgress event is called each time the internal input buffer of
- compressed data is exhausted and the next block is read from the input stream.
- This is useful for updating a progress indicator when you are reading a
- large chunk of data from the decompression stream in a single call.}
- TDecompressionStream = class(TCustomZlibStream)
- public
- constructor Create(Source: TStream);
- destructor Destroy; override;
- function Read(var Buffer; Count: Longint): Longint; override;
- function Write(const Buffer; Count: Longint): Longint; override;
- function Seek(Offset: Longint; Origin: Word): Longint; override;
- property OnProgress;
- end;
- { CompressBuf compresses data, buffer to buffer, in one call.
- In: InBuf = ptr to compressed data
- InBytes = number of bytes in InBuf
- Out: OutBuf = ptr to newly allocated buffer containing decompressed data
- OutBytes = number of bytes in OutBuf }
- procedure CompressBuf(const InBuf: Pointer; InBytes: Integer;
- var OutBuf: Pointer; var OutBytes: Integer;
- CompressLevel: Integer = Z_DEFAULT_COMPRESSION);
- { DecompressBuf decompresses data, buffer to buffer, in one call.
- In: InBuf = ptr to compressed data
- InBytes = number of bytes in InBuf
- OutEstimate = zero, or est. size of the decompressed data
- Out: OutBuf = ptr to newly allocated buffer containing decompressed data
- OutBytes = number of bytes in OutBuf }
- procedure DecompressBuf(const InBuf: Pointer; InBytes: Integer;
- OutEstimate: Integer; var OutBuf: Pointer; var OutBytes: Integer);
- type
- EZlibError = class(Exception);
- ECompressionError = class(EZlibError);
- EDecompressionError = class(EZlibError);
- implementation
- const
- ZErrorMessages: array[0..9] of PChar = (
- 'need dictionary', // Z_NEED_DICT (2)
- 'stream end', // Z_STREAM_END (1)
- '', // Z_OK (0)
- 'file error', // Z_ERRNO (-1)
- 'stream error', // Z_STREAM_ERROR (-2)
- 'data error', // Z_DATA_ERROR (-3)
- 'insufficient memory', // Z_MEM_ERROR (-4)
- 'buffer error', // Z_BUF_ERROR (-5)
- 'incompatible version', // Z_VERSION_ERROR (-6)
- '');
- function zlibAllocMem(AppData: Pointer; Items, Size: Cardinal): Pointer;
- begin
- GetMem(Result, Items*Size);
- end;
- procedure zlibFreeMem(AppData, Block: Pointer);
- begin
- FreeMem(Block);
- end;
- function CCheck(code: Integer): Integer;
- begin
- Result := code;
- if code < 0 then
- raise ECompressionError.Create('zlib: ' + ZErrorMessages[2 - code]);
- end;
- function DCheck(code: Integer): Integer;
- begin
- Result := code;
- if code < 0 then
- raise EDecompressionError.Create('zlib: ' + ZErrorMessages[2 - code]);
- end;
- procedure CompressBuf(const InBuf: Pointer; InBytes: Integer;
- var OutBuf: Pointer; var OutBytes: Integer;
- CompressLevel: Integer);
- var
- strm: TZStreamRec;
- P: Pointer;
- begin
- FillChar(strm, sizeof(strm), 0);
- strm.zalloc := @zlibAllocMem;
- strm.zfree := @zlibFreeMem;
- OutBytes := ((InBytes + (InBytes div 10) + 12) + 255) and not 255;
- GetMem(OutBuf, OutBytes);
- try
- strm.next_in := InBuf;
- strm.avail_in := InBytes;
- strm.next_out := OutBuf;
- strm.avail_out := OutBytes;
- CCheck(deflateInit_(strm, CompressLevel, zlib_version, sizeof(strm)));
- try
- while CCheck(deflate(strm, Z_FINISH)) <> Z_STREAM_END do
- begin
- P := OutBuf;
- Inc(OutBytes, 256);
- ReallocMem(OutBuf, OutBytes);
- strm.next_out := Pointer(Integer(OutBuf) + (Integer(strm.next_out) - Integer(P)));
- strm.avail_out := 256;
- end;
- finally
- CCheck(deflateEnd(strm));
- end;
- ReallocMem(OutBuf, strm.total_out);
- OutBytes := strm.total_out;
- except
- zlibFreeMem(nil, OutBuf);
- raise
- end;
- end;
- procedure DecompressBuf(const InBuf: Pointer; InBytes: Integer;
- OutEstimate: Integer; var OutBuf: Pointer; var OutBytes: Integer);
- var
- strm: TZStreamRec;
- P: Pointer;
- BufInc: Integer;
- begin
- FillChar(strm, sizeof(strm), 0);
- strm.zalloc := @zlibAllocMem;
- strm.zfree := @zlibFreeMem;
- BufInc := (InBytes + 255) and not 255;
- if OutEstimate = 0 then
- OutBytes := BufInc
- else
- OutBytes := OutEstimate;
- GetMem(OutBuf, OutBytes);
- try
- strm.next_in := InBuf;
- strm.avail_in := InBytes;
- strm.next_out := OutBuf;
- strm.avail_out := OutBytes;
- DCheck(inflateInit_(strm, zlib_version, sizeof(strm)));
- try
- while DCheck(inflate(strm, Z_NO_FLUSH)) <> Z_STREAM_END do
- begin
- P := OutBuf;
- Inc(OutBytes, BufInc);
- ReallocMem(OutBuf, OutBytes);
- strm.next_out := Pointer(Integer(OutBuf) + (Integer(strm.next_out) - Integer(P)));
- strm.avail_out := BufInc;
- end;
- finally
- DCheck(inflateEnd(strm));
- end;
- ReallocMem(OutBuf, strm.total_out);
- OutBytes := strm.total_out;
- except
- zlibFreeMem(nil, OutBuf);
- raise
- end;
- end;
- { TCustomZlibStream }
- constructor TCustomZLibStream.Create(Strm: TStream);
- begin
- inherited Create;
- FStrm := Strm;
- FStrmPos := Strm.Position;
- FZRec.zalloc := @zlibAllocMem;
- FZRec.zfree := @zlibFreeMem;
- end;
- procedure TCustomZLibStream.Progress(Sender: TObject);
- begin
- if Assigned(FOnProgress) then FOnProgress(Sender);
- end;
- { TCompressionStream }
- constructor TCompressionStream.Create(CompressionLevel: TCompressionLevel;
- Dest: TStream);
- const
- Levels: array [TCompressionLevel] of ShortInt =
- (Z_NO_COMPRESSION, Z_BEST_SPEED, Z_DEFAULT_COMPRESSION, Z_BEST_COMPRESSION);
- begin
- inherited Create(Dest);
- FZRec.next_out := @FBuffer;
- FZRec.avail_out := sizeof(FBuffer);
- CCheck(deflateInit_(FZRec, Levels[CompressionLevel], zlib_version, sizeof(FZRec)));
- end;
- destructor TCompressionStream.Destroy;
- begin
- FZRec.next_in := nil;
- FZRec.avail_in := 0;
- try
- if FStrm.Position <> FStrmPos then FStrm.Position := FStrmPos;
- while (CCheck(deflate(FZRec, Z_FINISH)) <> Z_STREAM_END)
- and (FZRec.avail_out = 0) do
- begin
- FStrm.WriteBuffer(FBuffer, sizeof(FBuffer));
- FZRec.next_out := @FBuffer;
- FZRec.avail_out := sizeof(FBuffer);
- end;
- if FZRec.avail_out < sizeof(FBuffer) then
- FStrm.WriteBuffer(FBuffer, sizeof(FBuffer) - FZRec.avail_out);
- finally
- deflateEnd(FZRec);
- end;
- inherited Destroy;
- end;
- function TCompressionStream.Read(var Buffer; Count: Longint): Longint;
- begin
- raise ECompressionError.Create('Invalid stream operation');
- end;
- function TCompressionStream.Write(const Buffer; Count: Longint): Longint;
- begin
- FZRec.next_in := @Buffer;
- FZRec.avail_in := Count;
- if FStrm.Position <> FStrmPos then FStrm.Position := FStrmPos;
- while (FZRec.avail_in > 0) do
- begin
- CCheck(deflate(FZRec, 0));
- if FZRec.avail_out = 0 then
- begin
- FStrm.WriteBuffer(FBuffer, sizeof(FBuffer));
- FZRec.next_out := @FBuffer;
- FZRec.avail_out := sizeof(FBuffer);
- FStrmPos := FStrm.Position;
- Progress(Self);
- end;
- end;
- Result := Count;
- end;
- function TCompressionStream.Seek(Offset: Longint; Origin: Word): Longint;
- begin
- if (Offset = 0) and (Origin = soFromCurrent) then
- Result := FZRec.total_in
- else
- raise ECompressionError.Create('Invalid stream operation');
- end;
- function TCompressionStream.GetCompressionRate: Single;
- begin
- if FZRec.total_in = 0 then
- Result := 0
- else
- Result := (1.0 - (FZRec.total_out / FZRec.total_in)) * 100.0;
- end;
- { TDecompressionStream }
- constructor TDecompressionStream.Create(Source: TStream);
- begin
- inherited Create(Source);
- FZRec.next_in := @FBuffer;
- FZRec.avail_in := 0;
- DCheck(inflateInit_(FZRec, zlib_version, sizeof(FZRec)));
- end;
- destructor TDecompressionStream.Destroy;
- begin
- inflateEnd(FZRec);
- inherited Destroy;
- end;
- function TDecompressionStream.Read(var Buffer; Count: Longint): Longint;
- begin
- FZRec.next_out := @Buffer;
- FZRec.avail_out := Count;
- if FStrm.Position <> FStrmPos then FStrm.Position := FStrmPos;
- while (FZRec.avail_out > 0) do
- begin
- if FZRec.avail_in = 0 then
- begin
- FZRec.avail_in := FStrm.Read(FBuffer, sizeof(FBuffer));
- if FZRec.avail_in = 0 then
- begin
- Result := Count - Integer(FZRec.avail_out);
- Exit;
- end;
- FZRec.next_in := @FBuffer;
- FStrmPos := FStrm.Position;
- Progress(Self);
- end;
- CCheck(inflate(FZRec, 0));
- end;
- Result := Count;
- end;
- function TDecompressionStream.Write(const Buffer; Count: Longint): Longint;
- begin
- raise EDecompressionError.Create('Invalid stream operation');
- end;
- function TDecompressionStream.Seek(Offset: Longint; Origin: Word): Longint;
- var
- I: Integer;
- Buf: array [0..4095] of Char;
- begin
- if (Offset = 0) and (Origin = soFromBeginning) then
- begin
- DCheck(inflateReset(FZRec));
- FZRec.next_in := @FBuffer;
- FZRec.avail_in := 0;
- FStrm.Position := 0;
- FStrmPos := 0;
- end
- else if ( (Offset >= 0) and (Origin = soFromCurrent)) or
- ( ((Offset - Integer(FZRec.total_out)) > 0) and (Origin = soFromBeginning)) then
- begin
- if Origin = soFromBeginning then Dec(Offset, FZRec.total_out);
- if Offset > 0 then
- begin
- for I := 1 to Offset div sizeof(Buf) do
- ReadBuffer(Buf, sizeof(Buf));
- ReadBuffer(Buf, Offset mod sizeof(Buf));
- end;
- end
- else
- raise EDecompressionError.Create('Invalid stream operation');
- Result := FZRec.total_out;
- end;
- end.
|