home *** CD-ROM | disk | FTP | other *** search
/ PSION CD 2 / PsionCDVol2.iso / Programs / 720 / PDF090B4-SorceCode / pdf / gzip.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-09-30  |  5.7 KB  |  184 lines

  1. /* gzip.h -- common declarations for all gzip modules
  2.  * Copyright (C) 1992-1993 Jean-loup Gailly.
  3.  * This is free software; you can redistribute it and/or modify it under the
  4.  * terms of the GNU General Public License, see the file COPYING.
  5.  */
  6.  
  7.  /*
  8.  * Ported to EPOC by Sander van der Wal
  9.  *
  10.  * $Id: gzip.h 1.1 2000-09-17 13:39:38+02 svdwal Exp svdwal $
  11.  */
  12.  
  13. typedef void *voidp;
  14.  
  15. /* I don't like nested includes, but the string and io functions are used
  16.  * too often
  17.  */
  18. #include <stdio.h>
  19. #include <string.h>
  20. #define memzero(s, n)     memset ((voidp)(s), 0, (n))
  21.  
  22. typedef unsigned char  uch;
  23. typedef unsigned short ush;
  24. typedef unsigned long  ulg;
  25.  
  26. /* Return codes from gzip */
  27. #define OK      0
  28. #define ERROR   1
  29. #define WARNING 2
  30.  
  31. /* Compression methods (see algorithm.doc) */
  32. #define STORED      0
  33. #define COMPRESSED  1
  34. #define PACKED      2
  35. #define LZHED       3
  36. /* methods 4 to 7 reserved */
  37. #define DEFLATED    8
  38. #define MAX_METHODS 9
  39.  
  40.  
  41. /* To save memory for 16 bit systems, some arrays are overlaid between
  42.  * the various modules:
  43.  * deflate:  prev+head   window      d_buf  l_buf  outbuf
  44.  * unlzw:    tab_prefix  tab_suffix  stack  inbuf  outbuf
  45.  * inflate:              window             inbuf
  46.  * unpack:               window             inbuf  prefix_len
  47.  * unlzh:    left+right  window      c_table inbuf c_len
  48.  * For compression, input is done in window[]. For decompression, output
  49.  * is done in window except for unlzw.
  50.  */
  51.  
  52. #ifndef    INBUFSIZ
  53. #  ifdef SMALL_MEM
  54. #    define INBUFSIZ  0x2000  /* input buffer size */
  55. #  else
  56. #    define INBUFSIZ  0x8000  /* input buffer size */
  57. #  endif
  58. #endif
  59. #define INBUF_EXTRA  64     /* required by unlzw() */
  60.  
  61. #ifndef    OUTBUFSIZ
  62. #  ifdef SMALL_MEM
  63. #    define OUTBUFSIZ   8192  /* output buffer size */
  64. #  else
  65. #    define OUTBUFSIZ  16384  /* output buffer size */
  66. #  endif
  67. #endif
  68. #define OUTBUF_EXTRA 2048   /* required by unlzw() */
  69.  
  70. #ifndef DIST_BUFSIZE
  71. #  ifdef SMALL_MEM
  72. #    define DIST_BUFSIZE 0x2000 /* buffer for distances, see trees.c */
  73. #  else
  74. #    define DIST_BUFSIZE 0x8000 /* buffer for distances, see trees.c */
  75. #  endif
  76. #endif
  77.  
  78.  
  79. #define tab_suffix window
  80. #define tab_prefix prev    /* hash link (see deflate.c) */
  81. #define head (prev+WSIZE)  /* hash head (see deflate.c) */
  82.  
  83.  
  84. #define    PACK_MAGIC     "\037\036" /* Magic header for packed files */
  85. #define    GZIP_MAGIC     "\037\213" /* Magic header for gzip files, 1F 8B */
  86. #define    OLD_GZIP_MAGIC "\037\236" /* Magic header for gzip 0.5 = freeze 1.x */
  87. #define    LZH_MAGIC      "\037\240" /* Magic header for SCO LZH Compress files*/
  88. #define PKZIP_MAGIC    "\120\113\003\004" /* Magic header for pkzip files */
  89.  
  90. /* gzip flag byte */
  91. #define ASCII_FLAG   0x01 /* bit 0 set: file probably ascii text */
  92. #define CONTINUATION 0x02 /* bit 1 set: continuation of multi-part gzip file */
  93. #define EXTRA_FIELD  0x04 /* bit 2 set: extra field present */
  94. #define ORIG_NAME    0x08 /* bit 3 set: original file name present */
  95. #define COMMENT      0x10 /* bit 4 set: file comment present */
  96. #define ENCRYPTED    0x20 /* bit 5 set: file is encrypted */
  97. #define RESERVED     0xC0 /* bit 6,7:   reserved */
  98.  
  99. /* internal file attribute */
  100. #define UNKNOWN 0xffff
  101. #define BINARY  0
  102. #define ASCII   1
  103.  
  104. #ifndef WSIZE
  105. #  define WSIZE 0x8000     /* window size--must be a power of two, and */
  106. #endif                     /*  at least 32K for zip's deflate method */
  107.  
  108. #define MIN_MATCH  3
  109. #define MAX_MATCH  258
  110. /* The minimum and maximum match lengths */
  111.  
  112. #define MIN_LOOKAHEAD (MAX_MATCH+MIN_MATCH+1)
  113. /* Minimum amount of lookahead, except at the end of the input file.
  114.  * See deflate.c for comments about the MIN_MATCH+1.
  115.  */
  116.  
  117. #define MAX_DIST  (WSIZE-MIN_LOOKAHEAD)
  118. /* In order to simplify the code, particularly on 16 bit machines, match
  119.  * distances are limited to MAX_DIST instead of WSIZE.
  120.  */
  121.  
  122. #define try_byte(ifd)  (inptr < insize ? inbuf[inptr++] : fill_inbuf(ifd, 1, inbuf, &insize))
  123.  
  124. /* put_byte is used for the compressed output, put_ubyte for the
  125.  * uncompressed output. However unlzw() uses window for its
  126.  * suffix table instead of its output buffer, so it does not use put_ubyte
  127.  * (to be cleaned up).
  128.  */
  129. #define put_byte(c) {outbuf[outcnt++]=(uch)(c); if (outcnt==OUTBUFSIZ)\
  130.    flush_outbuf();}
  131. #define put_ubyte(c) {window[outcnt++]=(uch)(c); if (outcnt==WSIZE)\
  132.    flush_window();}
  133.  
  134. /* Output a 16 bit value, lsb first */
  135. #define put_short(w) \
  136. { if (outcnt < OUTBUFSIZ-2) { \
  137.     outbuf[outcnt++] = (uch) ((w) & 0xff); \
  138.     outbuf[outcnt++] = (uch) ((ush)(w) >> 8); \
  139.   } else { \
  140.     put_byte((uch)((w) & 0xff)); \
  141.     put_byte((uch)((ush)(w) >> 8)); \
  142.   } \
  143. }
  144.  
  145. /* Output a 32 bit value to the bit stream, lsb first */
  146. #define put_long(n) { \
  147.     put_short((n) & 0xffff); \
  148.     put_short(((ulg)(n)) >> 16); \
  149. }
  150.  
  151. #define seekable()    0  /* force sequential output */
  152. #define translate_eol 0  /* no option -a yet */
  153.  
  154. #define tolow(c)  (isupper(c) ? (c)-'A'+'a' : (c))    /* force to lower case */
  155.  
  156. /* Macros for getting two-byte and four-byte header values */
  157. #define SH(p) ((ush)(uch)((p)[0]) | ((ush)(uch)((p)[1]) << 8))
  158. #define LG(p) ((ulg)(SH(p)) | ((ulg)(SH((p)+2)) << 16))
  159.  
  160. /* Diagnostic functions */
  161. #ifdef DEBUG
  162. #  define Assert(cond,msg) {if(!(cond)) error(msg);}
  163. #  define Trace(x) fprintf x
  164. #  define Tracev(x) {if (verbose) fprintf x ;}
  165. #  define Tracevv(x) {if (verbose>1) fprintf x ;}
  166. #  define Tracec(c,x) {if (verbose && (c)) fprintf x ;}
  167. #  define Tracecv(c,x) {if (verbose>1 && (c)) fprintf x ;}
  168. #else
  169. #  define Assert(cond,msg)
  170. #  define Trace(x)
  171. #  define Tracev(x)
  172. #  define Tracevv(x)
  173. #  define Tracec(c,x)
  174. #  define Tracecv(c,x)
  175. #endif
  176.  
  177. #ifdef __cplusplus
  178. extern "C" {
  179. #endif
  180.  
  181.  
  182. #ifdef __cplusplus
  183. };
  184. #endif