zutil.h 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253
  1. /* zutil.h -- internal interface and configuration of the compression library
  2. * Copyright (C) 1995-2013 Jean-loup Gailly.
  3. * For conditions of distribution and use, see copyright notice in zlib.h
  4. */
  5. /* WARNING: this file should *not* be used by applications. It is
  6. part of the implementation of the compression library and is
  7. subject to change. Applications should only use zlib.h.
  8. */
  9. /* @(#) $Id$ */
  10. #ifndef ZUTIL_H
  11. #define ZUTIL_H
  12. #ifdef HAVE_HIDDEN
  13. # define ZLIB_INTERNAL __attribute__((visibility ("hidden")))
  14. #else
  15. # define ZLIB_INTERNAL
  16. #endif
  17. #include "zlib.h"
  18. #if defined(STDC) && !defined(Z_SOLO)
  19. # if !(defined(_WIN32_WCE) && defined(_MSC_VER))
  20. # include <stddef.h>
  21. # endif
  22. # include <string.h>
  23. # include <stdlib.h>
  24. #endif
  25. #ifdef Z_SOLO
  26. typedef long ptrdiff_t; /* guess -- will be caught if guess is wrong */
  27. #endif
  28. #ifndef local
  29. # define local static
  30. #endif
  31. /* compile with -Dlocal if your debugger can't find static symbols */
  32. typedef unsigned char uch;
  33. typedef uch FAR uchf;
  34. typedef unsigned short ush;
  35. typedef ush FAR ushf;
  36. typedef unsigned long ulg;
  37. extern z_const char * const z_errmsg[10]; /* indexed by 2-zlib_error */
  38. /* (size given to avoid silly warnings with Visual C++) */
  39. #define ERR_MSG(err) z_errmsg[Z_NEED_DICT-(err)]
  40. #define ERR_RETURN(strm,err) \
  41. return (strm->msg = ERR_MSG(err), (err))
  42. /* To be used only when the state is known to be valid */
  43. /* common constants */
  44. #ifndef DEF_WBITS
  45. # define DEF_WBITS MAX_WBITS
  46. #endif
  47. /* default windowBits for decompression. MAX_WBITS is for compression only */
  48. #if MAX_MEM_LEVEL >= 8
  49. # define DEF_MEM_LEVEL 8
  50. #else
  51. # define DEF_MEM_LEVEL MAX_MEM_LEVEL
  52. #endif
  53. /* default memLevel */
  54. #define STORED_BLOCK 0
  55. #define STATIC_TREES 1
  56. #define DYN_TREES 2
  57. /* The three kinds of block type */
  58. #define MIN_MATCH 3
  59. #define MAX_MATCH 258
  60. /* The minimum and maximum match lengths */
  61. #define PRESET_DICT 0x20 /* preset dictionary flag in zlib header */
  62. /* target dependencies */
  63. #if defined(MSDOS) || (defined(WINDOWS) && !defined(WIN32))
  64. # define OS_CODE 0x00
  65. # ifndef Z_SOLO
  66. # if defined(__TURBOC__) || defined(__BORLANDC__)
  67. # if (__STDC__ == 1) && (defined(__LARGE__) || defined(__COMPACT__))
  68. /* Allow compilation with ANSI keywords only enabled */
  69. void _Cdecl farfree( void *block );
  70. void *_Cdecl farmalloc( unsigned long nbytes );
  71. # else
  72. # include <alloc.h>
  73. # endif
  74. # else /* MSC or DJGPP */
  75. # include <malloc.h>
  76. # endif
  77. # endif
  78. #endif
  79. #ifdef AMIGA
  80. # define OS_CODE 0x01
  81. #endif
  82. #if defined(VAXC) || defined(VMS)
  83. # define OS_CODE 0x02
  84. # define F_OPEN(name, mode) \
  85. fopen((name), (mode), "mbc=60", "ctx=stm", "rfm=fix", "mrs=512")
  86. #endif
  87. #if defined(ATARI) || defined(atarist)
  88. # define OS_CODE 0x05
  89. #endif
  90. #ifdef OS2
  91. # define OS_CODE 0x06
  92. # if defined(M_I86) && !defined(Z_SOLO)
  93. # include <malloc.h>
  94. # endif
  95. #endif
  96. #if defined(MACOS) || defined(TARGET_OS_MAC)
  97. # define OS_CODE 0x07
  98. # ifndef Z_SOLO
  99. # if defined(__MWERKS__) && __dest_os != __be_os && __dest_os != __win32_os
  100. # include <unix.h> /* for fdopen */
  101. # else
  102. # ifndef fdopen
  103. # define fdopen(fd,mode) NULL /* No fdopen() */
  104. # endif
  105. # endif
  106. # endif
  107. #endif
  108. #ifdef TOPS20
  109. # define OS_CODE 0x0a
  110. #endif
  111. #ifdef WIN32
  112. # ifndef __CYGWIN__ /* Cygwin is Unix, not Win32 */
  113. # define OS_CODE 0x0b
  114. # endif
  115. #endif
  116. #ifdef __50SERIES /* Prime/PRIMOS */
  117. # define OS_CODE 0x0f
  118. #endif
  119. #if defined(_BEOS_) || defined(RISCOS)
  120. # define fdopen(fd,mode) NULL /* No fdopen() */
  121. #endif
  122. #if (defined(_MSC_VER) && (_MSC_VER > 600)) && !defined __INTERIX
  123. # if defined(_WIN32_WCE)
  124. # define fdopen(fd,mode) NULL /* No fdopen() */
  125. # ifndef _PTRDIFF_T_DEFINED
  126. typedef int ptrdiff_t;
  127. # define _PTRDIFF_T_DEFINED
  128. # endif
  129. # else
  130. # define fdopen(fd,type) _fdopen(fd,type)
  131. # endif
  132. #endif
  133. #if defined(__BORLANDC__) && !defined(MSDOS)
  134. #pragma warn -8004
  135. #pragma warn -8008
  136. #pragma warn -8066
  137. #endif
  138. /* provide prototypes for these when building zlib without LFS */
  139. #if !defined(_WIN32) && \
  140. (!defined(_LARGEFILE64_SOURCE) || _LFS64_LARGEFILE-0 == 0)
  141. ZEXTERN uLong ZEXPORT adler32_combine64 OF((uLong, uLong, z_off_t));
  142. ZEXTERN uLong ZEXPORT crc32_combine64 OF((uLong, uLong, z_off_t));
  143. #endif
  144. /* common defaults */
  145. #ifndef OS_CODE
  146. # define OS_CODE 0x03 /* assume Unix */
  147. #endif
  148. #ifndef F_OPEN
  149. # define F_OPEN(name, mode) fopen((name), (mode))
  150. #endif
  151. /* functions */
  152. #if defined(pyr) || defined(Z_SOLO)
  153. # define NO_MEMCPY
  154. #endif
  155. #if defined(SMALL_MEDIUM) && !defined(_MSC_VER) && !defined(__SC__)
  156. /* Use our own functions for small and medium model with MSC <= 5.0.
  157. * You may have to use the same strategy for Borland C (untested).
  158. * The __SC__ check is for Symantec.
  159. */
  160. # define NO_MEMCPY
  161. #endif
  162. #if defined(STDC) && !defined(HAVE_MEMCPY) && !defined(NO_MEMCPY)
  163. # define HAVE_MEMCPY
  164. #endif
  165. #ifdef HAVE_MEMCPY
  166. # ifdef SMALL_MEDIUM /* MSDOS small or medium model */
  167. # define zmemcpy _fmemcpy
  168. # define zmemcmp _fmemcmp
  169. # define zmemzero(dest, len) _fmemset(dest, 0, len)
  170. # else
  171. # define zmemcpy memcpy
  172. # define zmemcmp memcmp
  173. # define zmemzero(dest, len) memset(dest, 0, len)
  174. # endif
  175. #else
  176. void ZLIB_INTERNAL zmemcpy OF((Bytef* dest, const Bytef* source, uInt len));
  177. int ZLIB_INTERNAL zmemcmp OF((const Bytef* s1, const Bytef* s2, uInt len));
  178. void ZLIB_INTERNAL zmemzero OF((Bytef* dest, uInt len));
  179. #endif
  180. /* Diagnostic functions */
  181. #ifdef DEBUG
  182. # include <stdio.h>
  183. extern int ZLIB_INTERNAL z_verbose;
  184. extern void ZLIB_INTERNAL z_error OF((char *m));
  185. # define Assert(cond,msg) {if(!(cond)) z_error(msg);}
  186. # define Trace(x) {if (z_verbose>=0) fprintf x ;}
  187. # define Tracev(x) {if (z_verbose>0) fprintf x ;}
  188. # define Tracevv(x) {if (z_verbose>1) fprintf x ;}
  189. # define Tracec(c,x) {if (z_verbose>0 && (c)) fprintf x ;}
  190. # define Tracecv(c,x) {if (z_verbose>1 && (c)) fprintf x ;}
  191. #else
  192. # define Assert(cond,msg)
  193. # define Trace(x)
  194. # define Tracev(x)
  195. # define Tracevv(x)
  196. # define Tracec(c,x)
  197. # define Tracecv(c,x)
  198. #endif
  199. #ifndef Z_SOLO
  200. voidpf ZLIB_INTERNAL zcalloc OF((voidpf opaque, unsigned items,
  201. unsigned size));
  202. void ZLIB_INTERNAL zcfree OF((voidpf opaque, voidpf ptr));
  203. #endif
  204. #define ZALLOC(strm, items, size) \
  205. (*((strm)->zalloc))((strm)->opaque, (items), (size))
  206. #define ZFREE(strm, addr) (*((strm)->zfree))((strm)->opaque, (voidpf)(addr))
  207. #define TRY_FREE(s, p) {if (p) ZFREE(s, p);}
  208. /* Reverse the bytes in a 32-bit value */
  209. #define ZSWAP32(q) ((((q) >> 24) & 0xff) + (((q) >> 8) & 0xff00) + \
  210. (((q) & 0xff00) << 8) + (((q) & 0xff) << 24))
  211. #endif /* ZUTIL_H */