zlib.pas
上传用户:zhongxx05
上传日期:2007-06-06
资源大小:33641k
文件大小:16k
源码类别:

Symbian

开发平台:

C/C++

  1. {*******************************************************}
  2. {                                                       }
  3. {       Delphi Supplemental Components                  }
  4. {       ZLIB Data Compression Interface Unit            }
  5. {                                                       }
  6. {       Copyright (c) 1997 Borland International        }
  7. {                                                       }
  8. {*******************************************************}
  9. { Modified for zlib 1.1.3 by Davide Moretti <dave@rimini.com }
  10. unit zlib;
  11. interface
  12. uses Sysutils, Classes;
  13. type
  14.   TAlloc = function (AppData: Pointer; Items, Size: Integer): Pointer;
  15.   TFree = procedure (AppData, Block: Pointer);
  16.   // Internal structure.  Ignore.
  17.   TZStreamRec = packed record
  18.     next_in: PChar;       // next input byte
  19.     avail_in: Integer;    // number of bytes available at next_in
  20.     total_in: Integer;    // total nb of input bytes read so far
  21.     next_out: PChar;      // next output byte should be put here
  22.     avail_out: Integer;   // remaining free space at next_out
  23.     total_out: Integer;   // total nb of bytes output so far
  24.     msg: PChar;           // last error message, NULL if no error
  25.     internal: Pointer;    // not visible by applications
  26.     zalloc: TAlloc;       // used to allocate the internal state
  27.     zfree: TFree;         // used to free the internal state
  28.     AppData: Pointer;     // private data object passed to zalloc and zfree
  29.     data_type: Integer;   //  best guess about the data type: ascii or binary
  30.     adler: Integer;       // adler32 value of the uncompressed data
  31.     reserved: Integer;    // reserved for future use
  32.   end;
  33.   // Abstract ancestor class
  34.   TCustomZlibStream = class(TStream)
  35.   private
  36.     FStrm: TStream;
  37.     FStrmPos: Integer;
  38.     FOnProgress: TNotifyEvent;
  39.     FZRec: TZStreamRec;
  40.     FBuffer: array [Word] of Char;
  41.   protected
  42.     procedure Progress(Sender: TObject); dynamic;
  43.     property OnProgress: TNotifyEvent read FOnProgress write FOnProgress;
  44.     constructor Create(Strm: TStream);
  45.   end;
  46. { TCompressionStream compresses data on the fly as data is written to it, and
  47.   stores the compressed data to another stream.
  48.   TCompressionStream is write-only and strictly sequential. Reading from the
  49.   stream will raise an exception. Using Seek to move the stream pointer
  50.   will raise an exception.
  51.   Output data is cached internally, written to the output stream only when
  52.   the internal output buffer is full.  All pending output data is flushed
  53.   when the stream is destroyed.
  54.   The Position property returns the number of uncompressed bytes of
  55.   data that have been written to the stream so far.
  56.   CompressionRate returns the on-the-fly percentage by which the original
  57.   data has been compressed:  (1 - (CompressedBytes / UncompressedBytes)) * 100
  58.   If raw data size = 100 and compressed data size = 25, the CompressionRate
  59.   is 75%
  60.   The OnProgress event is called each time the output buffer is filled and
  61.   written to the output stream.  This is useful for updating a progress
  62.   indicator when you are writing a large chunk of data to the compression
  63.   stream in a single call.}
  64.   TCompressionLevel = (clNone, clFastest, clDefault, clMax);
  65.   TCompressionStream = class(TCustomZlibStream)
  66.   private
  67.     function GetCompressionRate: Single;
  68.   public
  69.     constructor Create(CompressionLevel: TCompressionLevel; Dest: TStream);
  70.     destructor Destroy; override;
  71.     function Read(var Buffer; Count: Longint): Longint; override;
  72.     function Write(const Buffer; Count: Longint): Longint; override;
  73.     function Seek(Offset: Longint; Origin: Word): Longint; override;
  74.     property CompressionRate: Single read GetCompressionRate;
  75.     property OnProgress;
  76.   end;
  77. { TDecompressionStream decompresses data on the fly as data is read from it.
  78.   Compressed data comes from a separate source stream.  TDecompressionStream
  79.   is read-only and unidirectional; you can seek forward in the stream, but not
  80.   backwards.  The special case of setting the stream position to zero is
  81.   allowed.  Seeking forward decompresses data until the requested position in
  82.   the uncompressed data has been reached.  Seeking backwards, seeking relative
  83.   to the end of the stream, requesting the size of the stream, and writing to
  84.   the stream will raise an exception.
  85.   The Position property returns the number of bytes of uncompressed data that
  86.   have been read from the stream so far.
  87.   The OnProgress event is called each time the internal input buffer of
  88.   compressed data is exhausted and the next block is read from the input stream.
  89.   This is useful for updating a progress indicator when you are reading a
  90.   large chunk of data from the decompression stream in a single call.}
  91.   TDecompressionStream = class(TCustomZlibStream)
  92.   public
  93.     constructor Create(Source: TStream);
  94.     destructor Destroy; override;
  95.     function Read(var Buffer; Count: Longint): Longint; override;
  96.     function Write(const Buffer; Count: Longint): Longint; override;
  97.     function Seek(Offset: Longint; Origin: Word): Longint; override;
  98.     property OnProgress;
  99.   end;
  100. { CompressBuf compresses data, buffer to buffer, in one call.
  101.    In: InBuf = ptr to compressed data
  102.        InBytes = number of bytes in InBuf
  103.   Out: OutBuf = ptr to newly allocated buffer containing decompressed data
  104.        OutBytes = number of bytes in OutBuf   }
  105. procedure CompressBuf(const InBuf: Pointer; InBytes: Integer;
  106.                       out OutBuf: Pointer; out OutBytes: Integer);
  107. { DecompressBuf decompresses data, buffer to buffer, in one call.
  108.    In: InBuf = ptr to compressed data
  109.        InBytes = number of bytes in InBuf
  110.        OutEstimate = zero, or est. size of the decompressed data
  111.   Out: OutBuf = ptr to newly allocated buffer containing decompressed data
  112.        OutBytes = number of bytes in OutBuf   }
  113. procedure DecompressBuf(const InBuf: Pointer; InBytes: Integer;
  114.  OutEstimate: Integer; out OutBuf: Pointer; out OutBytes: Integer);
  115. const
  116.   zlib_version = '1.1.3';
  117. type
  118.   EZlibError = class(Exception);
  119.   ECompressionError = class(EZlibError);
  120.   EDecompressionError = class(EZlibError);
  121. function adler32(adler: Integer; buf: PChar; len: Integer): Integer;
  122. implementation
  123. const
  124.   Z_NO_FLUSH      = 0;
  125.   Z_PARTIAL_FLUSH = 1;
  126.   Z_SYNC_FLUSH    = 2;
  127.   Z_FULL_FLUSH    = 3;
  128.   Z_FINISH        = 4;
  129.   Z_OK            = 0;
  130.   Z_STREAM_END    = 1;
  131.   Z_NEED_DICT     = 2;
  132.   Z_ERRNO         = (-1);
  133.   Z_STREAM_ERROR  = (-2);
  134.   Z_DATA_ERROR    = (-3);
  135.   Z_MEM_ERROR     = (-4);
  136.   Z_BUF_ERROR     = (-5);
  137.   Z_VERSION_ERROR = (-6);
  138.   Z_NO_COMPRESSION       =   0;
  139.   Z_BEST_SPEED           =   1;
  140.   Z_BEST_COMPRESSION     =   9;
  141.   Z_DEFAULT_COMPRESSION  = (-1);
  142.   Z_FILTERED            = 1;
  143.   Z_HUFFMAN_ONLY        = 2;
  144.   Z_DEFAULT_STRATEGY    = 0;
  145.   Z_BINARY   = 0;
  146.   Z_ASCII    = 1;
  147.   Z_UNKNOWN  = 2;
  148.   Z_DEFLATED = 8;
  149.   _z_errmsg: array[0..9] of PChar = (
  150.     'need dictionary',      // Z_NEED_DICT      (2)
  151.     'stream end',           // Z_STREAM_END     (1)
  152.     '',                     // Z_OK             (0)
  153.     'file error',           // Z_ERRNO          (-1)
  154.     'stream error',         // Z_STREAM_ERROR   (-2)
  155.     'data error',           // Z_DATA_ERROR     (-3)
  156.     'insufficient memory',  // Z_MEM_ERROR      (-4)
  157.     'buffer error',         // Z_BUF_ERROR      (-5)
  158.     'incompatible version', // Z_VERSION_ERROR  (-6)
  159.     ''
  160.   );
  161. {$L deflate.obj}
  162. {$L inflate.obj}
  163. {$L inftrees.obj}
  164. {$L trees.obj}
  165. {$L adler32.obj}
  166. {$L infblock.obj}
  167. {$L infcodes.obj}
  168. {$L infutil.obj}
  169. {$L inffast.obj}
  170. procedure _tr_init; external;
  171. procedure _tr_tally; external;
  172. procedure _tr_flush_block; external;
  173. procedure _tr_align; external;
  174. procedure _tr_stored_block; external;
  175. function adler32; external;
  176. procedure inflate_blocks_new; external;
  177. procedure inflate_blocks; external;
  178. procedure inflate_blocks_reset; external;
  179. procedure inflate_blocks_free; external;
  180. procedure inflate_set_dictionary; external;
  181. procedure inflate_trees_bits; external;
  182. procedure inflate_trees_dynamic; external;
  183. procedure inflate_trees_fixed; external;
  184. procedure inflate_codes_new; external;
  185. procedure inflate_codes; external;
  186. procedure inflate_codes_free; external;
  187. procedure _inflate_mask; external;
  188. procedure inflate_flush; external;
  189. procedure inflate_fast; external;
  190. procedure _memset(P: Pointer; B: Byte; count: Integer);cdecl;
  191. begin
  192.   FillChar(P^, count, B);
  193. end;
  194. procedure _memcpy(dest, source: Pointer; count: Integer);cdecl;
  195. begin
  196.   Move(source^, dest^, count);
  197. end;
  198. // deflate compresses data
  199. function deflateInit_(var strm: TZStreamRec; level: Integer; version: PChar;
  200.   recsize: Integer): Integer; external;
  201. function deflate(var strm: TZStreamRec; flush: Integer): Integer; external;
  202. function deflateEnd(var strm: TZStreamRec): Integer; external;
  203. // inflate decompresses data
  204. function inflateInit_(var strm: TZStreamRec; version: PChar;
  205.   recsize: Integer): Integer; external;
  206. function inflate(var strm: TZStreamRec; flush: Integer): Integer; external;
  207. function inflateEnd(var strm: TZStreamRec): Integer; external;
  208. function inflateReset(var strm: TZStreamRec): Integer; external;
  209. function zcalloc(AppData: Pointer; Items, Size: Integer): Pointer;
  210. begin
  211.   GetMem(Result, Items*Size);
  212. end;
  213. procedure zcfree(AppData, Block: Pointer);
  214. begin
  215.   FreeMem(Block);
  216. end;
  217. function zlibCheck(code: Integer): Integer;
  218. begin
  219.   Result := code;
  220.   if code < 0 then
  221.     raise EZlibError.Create('error');    //!!
  222. end;
  223. function CCheck(code: Integer): Integer;
  224. begin
  225.   Result := code;
  226.   if code < 0 then
  227.     raise ECompressionError.Create('error'); //!!
  228. end;
  229. function DCheck(code: Integer): Integer;
  230. begin
  231.   Result := code;
  232.   if code < 0 then
  233.     raise EDecompressionError.Create('error');  //!!
  234. end;
  235. procedure CompressBuf(const InBuf: Pointer; InBytes: Integer;
  236.                       out OutBuf: Pointer; out OutBytes: Integer);
  237. var
  238.   strm: TZStreamRec;
  239.   P: Pointer;
  240. begin
  241.   FillChar(strm, sizeof(strm), 0);
  242.   OutBytes := ((InBytes + (InBytes div 10) + 12) + 255) and not 255;
  243.   GetMem(OutBuf, OutBytes);
  244.   try
  245.     strm.next_in := InBuf;
  246.     strm.avail_in := InBytes;
  247.     strm.next_out := OutBuf;
  248.     strm.avail_out := OutBytes;
  249.     CCheck(deflateInit_(strm, Z_BEST_COMPRESSION, zlib_version, sizeof(strm)));
  250.     try
  251.       while CCheck(deflate(strm, Z_FINISH)) <> Z_STREAM_END do
  252.       begin
  253.         P := OutBuf;
  254.         Inc(OutBytes, 256);
  255.         ReallocMem(OutBuf, OutBytes);
  256.         strm.next_out := PChar(Integer(OutBuf) + (Integer(strm.next_out) - Integer(P)));
  257.         strm.avail_out := 256;
  258.       end;
  259.     finally
  260.       CCheck(deflateEnd(strm));
  261.     end;
  262.     ReallocMem(OutBuf, strm.total_out);
  263.     OutBytes := strm.total_out;
  264.   except
  265.     FreeMem(OutBuf);
  266.     raise
  267.   end;
  268. end;
  269. procedure DecompressBuf(const InBuf: Pointer; InBytes: Integer;
  270.   OutEstimate: Integer; out OutBuf: Pointer; out OutBytes: Integer);
  271. var
  272.   strm: TZStreamRec;
  273.   P: Pointer;
  274.   BufInc: Integer;
  275. begin
  276.   FillChar(strm, sizeof(strm), 0);
  277.   BufInc := (InBytes + 255) and not 255;
  278.   if OutEstimate = 0 then
  279.     OutBytes := BufInc
  280.   else
  281.     OutBytes := OutEstimate;
  282.   GetMem(OutBuf, OutBytes);
  283.   try
  284.     strm.next_in := InBuf;
  285.     strm.avail_in := InBytes;
  286.     strm.next_out := OutBuf;
  287.     strm.avail_out := OutBytes;
  288.     DCheck(inflateInit_(strm, zlib_version, sizeof(strm)));
  289.     try
  290.       while DCheck(inflate(strm, Z_FINISH)) <> Z_STREAM_END do
  291.       begin
  292.         P := OutBuf;
  293.         Inc(OutBytes, BufInc);
  294.         ReallocMem(OutBuf, OutBytes);
  295.         strm.next_out := PChar(Integer(OutBuf) + (Integer(strm.next_out) - Integer(P)));
  296.         strm.avail_out := BufInc;
  297.       end;
  298.     finally
  299.       DCheck(inflateEnd(strm));
  300.     end;
  301.     ReallocMem(OutBuf, strm.total_out);
  302.     OutBytes := strm.total_out;
  303.   except
  304.     FreeMem(OutBuf);
  305.     raise
  306.   end;
  307. end;
  308. // TCustomZlibStream
  309. constructor TCustomZLibStream.Create(Strm: TStream);
  310. begin
  311.   inherited Create;
  312.   FStrm := Strm;
  313.   FStrmPos := Strm.Position;
  314. end;
  315. procedure TCustomZLibStream.Progress(Sender: TObject);
  316. begin
  317.   if Assigned(FOnProgress) then FOnProgress(Sender);
  318. end;
  319. // TCompressionStream
  320. constructor TCompressionStream.Create(CompressionLevel: TCompressionLevel;
  321.   Dest: TStream);
  322. const
  323.   Levels: array [TCompressionLevel] of ShortInt =
  324.     (Z_NO_COMPRESSION, Z_BEST_SPEED, Z_DEFAULT_COMPRESSION, Z_BEST_COMPRESSION);
  325. begin
  326.   inherited Create(Dest);
  327.   FZRec.next_out := FBuffer;
  328.   FZRec.avail_out := sizeof(FBuffer);
  329.   CCheck(deflateInit_(FZRec, Levels[CompressionLevel], zlib_version, sizeof(FZRec)));
  330. end;
  331. destructor TCompressionStream.Destroy;
  332. begin
  333.   FZRec.next_in := nil;
  334.   FZRec.avail_in := 0;
  335.   try
  336.     if FStrm.Position <> FStrmPos then FStrm.Position := FStrmPos;
  337.     while (CCheck(deflate(FZRec, Z_FINISH)) <> Z_STREAM_END)
  338.       and (FZRec.avail_out = 0) do
  339.     begin
  340.       FStrm.WriteBuffer(FBuffer, sizeof(FBuffer));
  341.       FZRec.next_out := FBuffer;
  342.       FZRec.avail_out := sizeof(FBuffer);
  343.     end;
  344.     if FZRec.avail_out < sizeof(FBuffer) then
  345.       FStrm.WriteBuffer(FBuffer, sizeof(FBuffer) - FZRec.avail_out);
  346.   finally
  347.     deflateEnd(FZRec);
  348.   end;
  349.   inherited Destroy;
  350. end;
  351. function TCompressionStream.Read(var Buffer; Count: Longint): Longint;
  352. begin
  353.   raise ECompressionError.Create('Invalid stream operation');
  354. end;
  355. function TCompressionStream.Write(const Buffer; Count: Longint): Longint;
  356. begin
  357.   FZRec.next_in := @Buffer;
  358.   FZRec.avail_in := Count;
  359.   if FStrm.Position <> FStrmPos then FStrm.Position := FStrmPos;
  360.   while (FZRec.avail_in > 0) do
  361.   begin
  362.     CCheck(deflate(FZRec, 0));
  363.     if FZRec.avail_out = 0 then
  364.     begin
  365.       FStrm.WriteBuffer(FBuffer, sizeof(FBuffer));
  366.       FZRec.next_out := FBuffer;
  367.       FZRec.avail_out := sizeof(FBuffer);
  368.       FStrmPos := FStrm.Position;
  369.       Progress(Self);
  370.     end;
  371.   end;
  372.   Result := Count;
  373. end;
  374. function TCompressionStream.Seek(Offset: Longint; Origin: Word): Longint;
  375. begin
  376.   if (Offset = 0) and (Origin = soFromCurrent) then
  377.     Result := FZRec.total_in
  378.   else
  379.     raise ECompressionError.Create('Invalid stream operation');
  380. end;
  381. function TCompressionStream.GetCompressionRate: Single;
  382. begin
  383.   if FZRec.total_in = 0 then
  384.     Result := 0
  385.   else
  386.     Result := (1.0 - (FZRec.total_out / FZRec.total_in)) * 100.0;
  387. end;
  388. // TDecompressionStream
  389. constructor TDecompressionStream.Create(Source: TStream);
  390. begin
  391.   inherited Create(Source);
  392.   FZRec.next_in := FBuffer;
  393.   FZRec.avail_in := 0;
  394.   DCheck(inflateInit_(FZRec, zlib_version, sizeof(FZRec)));
  395. end;
  396. destructor TDecompressionStream.Destroy;
  397. begin
  398.   inflateEnd(FZRec);
  399.   inherited Destroy;
  400. end;
  401. function TDecompressionStream.Read(var Buffer; Count: Longint): Longint;
  402. begin
  403.   FZRec.next_out := @Buffer;
  404.   FZRec.avail_out := Count;
  405.   if FStrm.Position <> FStrmPos then FStrm.Position := FStrmPos;
  406.   while (FZRec.avail_out > 0) do
  407.   begin
  408.     if FZRec.avail_in = 0 then
  409.     begin
  410.       FZRec.avail_in := FStrm.Read(FBuffer, sizeof(FBuffer));
  411.       if FZRec.avail_in = 0 then
  412.         begin
  413.           Result := Count - FZRec.avail_out;
  414.           Exit;
  415.         end;
  416.       FZRec.next_in := FBuffer;
  417.       FStrmPos := FStrm.Position;
  418.       Progress(Self);
  419.     end;
  420.     DCheck(inflate(FZRec, 0));
  421.   end;
  422.   Result := Count;
  423. end;
  424. function TDecompressionStream.Write(const Buffer; Count: Longint): Longint;
  425. begin
  426.   raise EDecompressionError.Create('Invalid stream operation');
  427. end;
  428. function TDecompressionStream.Seek(Offset: Longint; Origin: Word): Longint;
  429. var
  430.   I: Integer;
  431.   Buf: array [0..4095] of Char;
  432. begin
  433.   if (Offset = 0) and (Origin = soFromBeginning) then
  434.   begin
  435.     DCheck(inflateReset(FZRec));
  436.     FZRec.next_in := FBuffer;
  437.     FZRec.avail_in := 0;
  438.     FStrm.Position := 0;
  439.     FStrmPos := 0;
  440.   end
  441.   else if ( (Offset >= 0) and (Origin = soFromCurrent)) or
  442.           ( ((Offset - FZRec.total_out) > 0) and (Origin = soFromBeginning)) then
  443.   begin
  444.     if Origin = soFromBeginning then Dec(Offset, FZRec.total_out);
  445.     if Offset > 0 then
  446.     begin
  447.       for I := 1 to Offset div sizeof(Buf) do
  448.         ReadBuffer(Buf, sizeof(Buf));
  449.       ReadBuffer(Buf, Offset mod sizeof(Buf));
  450.     end;
  451.   end
  452.   else
  453.     raise EDecompressionError.Create('Invalid stream operation');
  454.   Result := FZRec.total_out;
  455. end;
  456. end.