compress.c
上传用户:lyxiangda
上传日期:2007-01-12
资源大小:3042k
文件大小:2k
源码类别:

CA认证

开发平台:

WINDOWS

  1. /* compress.c -- compress a memory buffer
  2.  * Copyright (C) 1995-1996 Jean-loup Gailly.
  3.  * For conditions of distribution and use, see copyright notice in zlib.h 
  4.  */
  5. /* This file was modified since it was taken from the zlib distribution */
  6. /* $Id: compress.c,v 1.1 2000/03/31 20:13:08 relyea%netscape.com Exp $ */
  7. #include "zlib.h"
  8. /* ===========================================================================
  9.      Compresses the source buffer into the destination buffer.  sourceLen is
  10.    the byte length of the source buffer. Upon entry, destLen is the total
  11.    size of the destination buffer, which must be at least 0.1% larger than
  12.    sourceLen plus 8 bytes. Upon exit, destLen is the actual size of the
  13.    compressed buffer.
  14.      This function can be used to compress a whole file at once if the
  15.    input file is mmap'ed.
  16.      compress returns Z_OK if success, Z_MEM_ERROR if there was not
  17.    enough memory, Z_BUF_ERROR if there was not enough room in the output
  18.    buffer.
  19. */
  20. PR_PUBLIC_API(int) compress (dest, destLen, source, sourceLen)
  21.     Bytef *dest;
  22.     uLongf *destLen;
  23.     const Bytef *source;
  24.     uLong sourceLen;
  25. {
  26.     z_stream stream;
  27.     int err;
  28.     stream.next_in = (Bytef*)source;
  29.     stream.avail_in = (uInt)sourceLen;
  30. #ifdef MAXSEG_64K
  31.     /* Check for source > 64K on 16-bit machine: */
  32.     if ((uLong)stream.avail_in != sourceLen) return Z_BUF_ERROR;
  33. #endif
  34.     stream.next_out = dest;
  35.     stream.avail_out = (uInt)*destLen;
  36.     if ((uLong)stream.avail_out != *destLen) return Z_BUF_ERROR;
  37.     stream.zalloc = (alloc_func)0;
  38.     stream.zfree = (free_func)0;
  39.     stream.opaque = (voidpf)0;
  40.     err = deflateInit(&stream, Z_DEFAULT_COMPRESSION);
  41.     if (err != Z_OK) return err;
  42.     err = deflate(&stream, Z_FINISH);
  43.     if (err != Z_STREAM_END) {
  44.         deflateEnd(&stream);
  45.         return err == Z_OK ? Z_BUF_ERROR : err;
  46.     }
  47.     *destLen = stream.total_out;
  48.     err = deflateEnd(&stream);
  49.     return err;
  50. }