zutil.h
上传用户:yhdzpy8989
上传日期:2007-06-13
资源大小:13604k
文件大小:6k
源码类别:

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: zutil.h,v $
  4.  * PRODUCTION Revision 1000.0  2003/10/29 15:34:46  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.4
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /* zutil.h -- internal interface and configuration of the compression library
  10.  * Copyright (C) 1995-2002 Jean-loup Gailly.
  11.  * For conditions of distribution and use, see copyright notice in zlib.h
  12.  */
  13. /* WARNING: this file should *not* be used by applications. It is
  14.    part of the implementation of the compression library and is
  15.    subject to change. Applications should only use zlib.h.
  16.  */
  17. /* @(#) $Id: zutil.h,v 1000.0 2003/10/29 15:34:46 gouriano Exp $ */
  18. #ifndef _Z_UTIL_H
  19. #define _Z_UTIL_H
  20. #include "zlib.h"
  21. #ifdef STDC
  22. #  include <stddef.h>
  23. #  include <string.h>
  24. #  include <stdlib.h>
  25. #endif
  26. #ifdef NO_ERRNO_H
  27.     extern int errno;
  28. #else
  29. #   include <errno.h>
  30. #endif
  31. #ifndef local
  32. #  define local static
  33. #endif
  34. /* compile with -Dlocal if your debugger can't find static symbols */
  35. typedef unsigned char  uch;
  36. typedef uch FAR uchf;
  37. typedef unsigned short ush;
  38. typedef ush FAR ushf;
  39. typedef unsigned long  ulg;
  40. extern const char *z_errmsg[10]; /* indexed by 2-zlib_error */
  41. /* (size given to avoid silly warnings with Visual C++) */
  42. #define ERR_MSG(err) z_errmsg[Z_NEED_DICT-(err)]
  43. #define ERR_RETURN(strm,err) 
  44.   return (strm->msg = (char*)ERR_MSG(err), (err))
  45. /* To be used only when the state is known to be valid */
  46.         /* common constants */
  47. #ifndef DEF_WBITS
  48. #  define DEF_WBITS MAX_WBITS
  49. #endif
  50. /* default windowBits for decompression. MAX_WBITS is for compression only */
  51. #if MAX_MEM_LEVEL >= 8
  52. #  define DEF_MEM_LEVEL 8
  53. #else
  54. #  define DEF_MEM_LEVEL  MAX_MEM_LEVEL
  55. #endif
  56. /* default memLevel */
  57. #define STORED_BLOCK 0
  58. #define STATIC_TREES 1
  59. #define DYN_TREES    2
  60. /* The three kinds of block type */
  61. #define MIN_MATCH  3
  62. #define MAX_MATCH  258
  63. /* The minimum and maximum match lengths */
  64. #define PRESET_DICT 0x20 /* preset dictionary flag in zlib header */
  65.         /* target dependencies */
  66. #ifdef MSDOS
  67. #  define OS_CODE  0x00
  68. #  if defined(__TURBOC__) || defined(__BORLANDC__)
  69. #    if(__STDC__ == 1) && (defined(__LARGE__) || defined(__COMPACT__))
  70.        /* Allow compilation with ANSI keywords only enabled */
  71.        void _Cdecl farfree( void *block );
  72.        void *_Cdecl farmalloc( unsigned long nbytes );
  73. #    else
  74. #     include <alloc.h>
  75. #    endif
  76. #  else /* MSC or DJGPP */
  77. #    include <malloc.h>
  78. #  endif
  79. #endif
  80. #ifdef OS2
  81. #  define OS_CODE  0x06
  82. #endif
  83. #ifdef WIN32 /* Window 95 & Windows NT */
  84. #  define OS_CODE  0x0b
  85. #endif
  86. #if defined(VAXC) || defined(VMS)
  87. #  define OS_CODE  0x02
  88. #  define F_OPEN(name, mode) 
  89.      fopen((name), (mode), "mbc=60", "ctx=stm", "rfm=fix", "mrs=512")
  90. #endif
  91. #ifdef AMIGA
  92. #  define OS_CODE  0x01
  93. #endif
  94. #if defined(ATARI) || defined(atarist)
  95. #  define OS_CODE  0x05
  96. #endif
  97. #if defined(MACOS) /* this is not Mac OSX.  unix.h not needed there. */
  98. #  define OS_CODE  0x07
  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. #ifdef __50SERIES /* Prime/PRIMOS */
  108. #  define OS_CODE  0x0F
  109. #endif
  110. #ifdef TOPS20
  111. #  define OS_CODE  0x0a
  112. #endif
  113. #if defined(_BEOS_) || defined(RISCOS)
  114. #  define fdopen(fd,mode) NULL /* No fdopen() */
  115. #endif
  116. #if (defined(_MSC_VER) && (_MSC_VER > 600))
  117. #  define fdopen(fd,type)  _fdopen(fd,type)
  118. #endif
  119.         /* Common defaults */
  120. #ifndef OS_CODE
  121. #  define OS_CODE  0x03  /* assume Unix */
  122. #endif
  123. #ifndef F_OPEN
  124. #  define F_OPEN(name, mode) fopen((name), (mode))
  125. #endif
  126.          /* functions */
  127. #ifdef HAVE_STRERROR
  128.    extern char *strerror OF((int));
  129. #  define zstrerror(errnum) strerror(errnum)
  130. #else
  131. #  define zstrerror(errnum) ""
  132. #endif
  133. #if defined(pyr)
  134. #  define NO_MEMCPY
  135. #endif
  136. #if defined(SMALL_MEDIUM) && !defined(_MSC_VER) && !defined(__SC__)
  137.  /* Use our own functions for small and medium model with MSC <= 5.0.
  138.   * You may have to use the same strategy for Borland C (untested).
  139.   * The __SC__ check is for Symantec.
  140.   */
  141. #  define NO_MEMCPY
  142. #endif
  143. #if defined(STDC) && !defined(HAVE_MEMCPY) && !defined(NO_MEMCPY)
  144. #  define HAVE_MEMCPY
  145. #endif
  146. #ifdef HAVE_MEMCPY
  147. #  ifdef SMALL_MEDIUM /* MSDOS small or medium model */
  148. #    define zmemcpy _fmemcpy
  149. #    define zmemcmp _fmemcmp
  150. #    define zmemzero(dest, len) _fmemset(dest, 0, len)
  151. #  else
  152. #    define zmemcpy memcpy
  153. #    define zmemcmp memcmp
  154. #    define zmemzero(dest, len) memset(dest, 0, len)
  155. #  endif
  156. #else
  157.    extern void zmemcpy  OF((Bytef* dest, const Bytef* source, uInt len));
  158.    extern int  zmemcmp  OF((const Bytef* s1, const Bytef* s2, uInt len));
  159.    extern void zmemzero OF((Bytef* dest, uInt len));
  160. #endif
  161. /* Diagnostic functions */
  162. #ifdef DEBUG
  163. #  include <stdio.h>
  164.    extern int z_verbose;
  165.    extern void z_error    OF((char *m));
  166. #  define Assert(cond,msg) {if(!(cond)) z_error(msg);}
  167. #  define Trace(x) {if (z_verbose>=0) fprintf x ;}
  168. #  define Tracev(x) {if (z_verbose>0) fprintf x ;}
  169. #  define Tracevv(x) {if (z_verbose>1) fprintf x ;}
  170. #  define Tracec(c,x) {if (z_verbose>0 && (c)) fprintf x ;}
  171. #  define Tracecv(c,x) {if (z_verbose>1 && (c)) fprintf x ;}
  172. #else
  173. #  define Assert(cond,msg)
  174. #  define Trace(x)
  175. #  define Tracev(x)
  176. #  define Tracevv(x)
  177. #  define Tracec(c,x)
  178. #  define Tracecv(c,x)
  179. #endif
  180. typedef uLong (ZEXPORT *check_func) OF((uLong check, const Bytef *buf,
  181.        uInt len));
  182. voidpf zcalloc OF((voidpf opaque, unsigned items, unsigned size));
  183. void   zcfree  OF((voidpf opaque, voidpf ptr));
  184. #define ZALLOC(strm, items, size) 
  185.            (*((strm)->zalloc))((strm)->opaque, (items), (size))
  186. #define ZFREE(strm, addr)  (*((strm)->zfree))((strm)->opaque, (voidpf)(addr))
  187. #define TRY_FREE(s, p) {if (p) ZFREE(s, p);}
  188. #endif /* _Z_UTIL_H */