zutil.h 6.2 KB
Newer Older
M
Mark Adler 已提交
1
/* zutil.h -- internal interface and configuration of the compression library
M
Mark Adler 已提交
2
 * Copyright (C) 1995-2010 Jean-loup Gailly.
M
Mark Adler 已提交
3 4 5 6 7 8 9 10
 * For conditions of distribution and use, see copyright notice in zlib.h
 */

/* WARNING: this file should *not* be used by applications. It is
   part of the implementation of the compression library and is
   subject to change. Applications should only use zlib.h.
 */

M
Mark Adler 已提交
11
/* @(#) $Id$ */
M
Mark Adler 已提交
12

M
Mark Adler 已提交
13 14
#ifndef ZUTIL_H
#define ZUTIL_H
M
Mark Adler 已提交
15

M
Mark Adler 已提交
16 17 18 19 20 21
#if ((__GNUC__-0) * 10 + __GNUC_MINOR__-0 >= 33) && !defined(NO_VIZ)
#  define ZLIB_INTERNAL __attribute__((visibility ("hidden")))
#else
#  define ZLIB_INTERNAL
#endif

M
Mark Adler 已提交
22 23
#include "zlib.h"

M
Mark Adler 已提交
24
#ifdef STDC
M
Mark Adler 已提交
25
#  if !(defined(_WIN32_WCE) && defined(_MSC_VER))
M
Mark Adler 已提交
26 27
#    include <stddef.h>
#  endif
M
Mark Adler 已提交
28
#  include <string.h>
M
Mark Adler 已提交
29
#  include <stdlib.h>
M
Mark Adler 已提交
30
#endif
M
Mark Adler 已提交
31

M
Mark Adler 已提交
32 33 34 35 36 37
#ifndef local
#  define local static
#endif
/* compile with -Dlocal if your debugger can't find static symbols */

typedef unsigned char  uch;
M
Mark Adler 已提交
38
typedef uch FAR uchf;
M
Mark Adler 已提交
39
typedef unsigned short ush;
M
Mark Adler 已提交
40
typedef ush FAR ushf;
M
Mark Adler 已提交
41 42
typedef unsigned long  ulg;

M
Mark Adler 已提交
43
extern const char * const z_errmsg[10]; /* indexed by 2-zlib_error */
M
Mark Adler 已提交
44
/* (size given to avoid silly warnings with Visual C++) */
M
Mark Adler 已提交
45

M
Mark Adler 已提交
46
#define ERR_MSG(err) z_errmsg[Z_NEED_DICT-(err)]
M
Mark Adler 已提交
47 48

#define ERR_RETURN(strm,err) \
M
Mark Adler 已提交
49
  return (strm->msg = (char*)ERR_MSG(err), (err))
M
Mark Adler 已提交
50 51
/* To be used only when the state is known to be valid */

M
Mark Adler 已提交
52
        /* common constants */
M
Mark Adler 已提交
53

M
Mark Adler 已提交
54
#ifndef DEF_WBITS
M
Mark Adler 已提交
55
#  define DEF_WBITS MAX_WBITS
M
Mark Adler 已提交
56
#endif
M
Mark Adler 已提交
57 58 59 60 61 62 63 64
/* default windowBits for decompression. MAX_WBITS is for compression only */

#if MAX_MEM_LEVEL >= 8
#  define DEF_MEM_LEVEL 8
#else
#  define DEF_MEM_LEVEL  MAX_MEM_LEVEL
#endif
/* default memLevel */
M
Mark Adler 已提交
65 66 67 68 69 70 71 72 73 74

#define STORED_BLOCK 0
#define STATIC_TREES 1
#define DYN_TREES    2
/* The three kinds of block type */

#define MIN_MATCH  3
#define MAX_MATCH  258
/* The minimum and maximum match lengths */

M
Mark Adler 已提交
75 76
#define PRESET_DICT 0x20 /* preset dictionary flag in zlib header */

M
Mark Adler 已提交
77
        /* target dependencies */
M
Mark Adler 已提交
78

M
Mark Adler 已提交
79
#if defined(MSDOS) || (defined(WINDOWS) && !defined(WIN32))
M
Mark Adler 已提交
80
#  define OS_CODE  0x00
M
Mark Adler 已提交
81
#  if defined(__TURBOC__) || defined(__BORLANDC__)
M
Mark Adler 已提交
82
#    if (__STDC__ == 1) && (defined(__LARGE__) || defined(__COMPACT__))
M
Mark Adler 已提交
83 84 85 86
       /* Allow compilation with ANSI keywords only enabled */
       void _Cdecl farfree( void *block );
       void *_Cdecl farmalloc( unsigned long nbytes );
#    else
M
Mark Adler 已提交
87
#      include <alloc.h>
M
Mark Adler 已提交
88
#    endif
M
Mark Adler 已提交
89
#  else /* MSC or DJGPP */
M
Mark Adler 已提交
90 91 92 93
#    include <malloc.h>
#  endif
#endif

M
Mark Adler 已提交
94 95
#ifdef AMIGA
#  define OS_CODE  0x01
M
Mark Adler 已提交
96 97 98 99
#endif

#if defined(VAXC) || defined(VMS)
#  define OS_CODE  0x02
M
Mark Adler 已提交
100
#  define F_OPEN(name, mode) \
M
Mark Adler 已提交
101 102 103 104 105 106 107
     fopen((name), (mode), "mbc=60", "ctx=stm", "rfm=fix", "mrs=512")
#endif

#if defined(ATARI) || defined(atarist)
#  define OS_CODE  0x05
#endif

M
Mark Adler 已提交
108 109
#ifdef OS2
#  define OS_CODE  0x06
M
Mark Adler 已提交
110
#  ifdef M_I86
M
Mark Adler 已提交
111
#    include <malloc.h>
M
Mark Adler 已提交
112
#  endif
M
Mark Adler 已提交
113 114
#endif

M
Mark Adler 已提交
115
#if defined(MACOS) || defined(TARGET_OS_MAC)
M
Mark Adler 已提交
116
#  define OS_CODE  0x07
M
Mark Adler 已提交
117 118 119 120 121 122
#  if defined(__MWERKS__) && __dest_os != __be_os && __dest_os != __win32_os
#    include <unix.h> /* for fdopen */
#  else
#    ifndef fdopen
#      define fdopen(fd,mode) NULL /* No fdopen() */
#    endif
M
Mark Adler 已提交
123
#  endif
M
Mark Adler 已提交
124 125 126 127
#endif

#ifdef TOPS20
#  define OS_CODE  0x0a
M
Mark Adler 已提交
128 129
#endif

M
Mark Adler 已提交
130 131 132 133 134 135 136 137 138 139
#ifdef WIN32
#  ifndef __CYGWIN__  /* Cygwin is Unix, not Win32 */
#    define OS_CODE  0x0b
#  endif
#endif

#ifdef __50SERIES /* Prime/PRIMOS */
#  define OS_CODE  0x0f
#endif

M
Mark Adler 已提交
140
#if defined(_BEOS_) || defined(RISCOS)
M
Mark Adler 已提交
141
#  define fdopen(fd,mode) NULL /* No fdopen() */
M
Mark Adler 已提交
142 143
#endif

M
Mark Adler 已提交
144
#if (defined(_MSC_VER) && (_MSC_VER > 600)) && !defined __INTERIX
M
Mark Adler 已提交
145 146
#  if defined(_WIN32_WCE)
#    define fdopen(fd,mode) NULL /* No fdopen() */
M
Mark Adler 已提交
147 148 149 150
#    ifndef _PTRDIFF_T_DEFINED
       typedef int ptrdiff_t;
#      define _PTRDIFF_T_DEFINED
#    endif
M
Mark Adler 已提交
151 152 153
#  else
#    define fdopen(fd,type)  _fdopen(fd,type)
#  endif
M
Mark Adler 已提交
154 155 156
#endif

#if defined(__BORLANDC__)
M
Mark Adler 已提交
157 158 159
  #pragma warn -8004
  #pragma warn -8008
  #pragma warn -8066
M
Mark Adler 已提交
160 161
#endif

M
Mark Adler 已提交
162
/* provide prototypes for these when building zlib without LFS */
163
#if !defined(_WIN32) && (!defined(_LARGEFILE64_SOURCE) || _LFS64_LARGEFILE-0 == 0)
M
Mark Adler 已提交
164 165
    ZEXTERN uLong ZEXPORT adler32_combine64 OF((uLong, uLong, z_off_t));
    ZEXTERN uLong ZEXPORT crc32_combine64 OF((uLong, uLong, z_off_t));
M
Mark Adler 已提交
166 167
#endif

M
Mark Adler 已提交
168
        /* common defaults */
M
Mark Adler 已提交
169 170 171 172 173

#ifndef OS_CODE
#  define OS_CODE  0x03  /* assume Unix */
#endif

M
Mark Adler 已提交
174 175
#ifndef F_OPEN
#  define F_OPEN(name, mode) fopen((name), (mode))
M
Mark Adler 已提交
176 177 178 179
#endif

         /* functions */

M
Mark Adler 已提交
180 181 182
#if defined(pyr)
#  define NO_MEMCPY
#endif
M
Mark Adler 已提交
183
#if defined(SMALL_MEDIUM) && !defined(_MSC_VER) && !defined(__SC__)
M
Mark Adler 已提交
184 185
 /* Use our own functions for small and medium model with MSC <= 5.0.
  * You may have to use the same strategy for Borland C (untested).
M
Mark Adler 已提交
186
  * The __SC__ check is for Symantec.
M
Mark Adler 已提交
187
  */
M
Mark Adler 已提交
188 189 190
#  define NO_MEMCPY
#endif
#if defined(STDC) && !defined(HAVE_MEMCPY) && !defined(NO_MEMCPY)
M
Mark Adler 已提交
191 192 193
#  define HAVE_MEMCPY
#endif
#ifdef HAVE_MEMCPY
M
Mark Adler 已提交
194
#  ifdef SMALL_MEDIUM /* MSDOS small or medium model */
M
Mark Adler 已提交
195
#    define zmemcpy _fmemcpy
M
Mark Adler 已提交
196
#    define zmemcmp _fmemcmp
M
Mark Adler 已提交
197
#    define zmemzero(dest, len) _fmemset(dest, 0, len)
M
Mark Adler 已提交
198
#  else
M
Mark Adler 已提交
199
#    define zmemcpy memcpy
M
Mark Adler 已提交
200
#    define zmemcmp memcmp
M
Mark Adler 已提交
201 202
#    define zmemzero(dest, len) memset(dest, 0, len)
#  endif
M
Mark Adler 已提交
203
#else
M
Mark Adler 已提交
204 205 206
   void ZLIB_INTERNAL zmemcpy OF((Bytef* dest, const Bytef* source, uInt len));
   int ZLIB_INTERNAL zmemcmp OF((const Bytef* s1, const Bytef* s2, uInt len));
   void ZLIB_INTERNAL zmemzero OF((Bytef* dest, uInt len));
M
Mark Adler 已提交
207 208 209 210 211
#endif

/* Diagnostic functions */
#ifdef DEBUG
#  include <stdio.h>
M
Mark Adler 已提交
212 213
   extern int ZLIB_INTERNAL z_verbose;
   extern void ZLIB_INTERNAL z_error OF((char *m));
M
Mark Adler 已提交
214
#  define Assert(cond,msg) {if(!(cond)) z_error(msg);}
M
Mark Adler 已提交
215 216 217 218 219
#  define Trace(x) {if (z_verbose>=0) fprintf x ;}
#  define Tracev(x) {if (z_verbose>0) fprintf x ;}
#  define Tracevv(x) {if (z_verbose>1) fprintf x ;}
#  define Tracec(c,x) {if (z_verbose>0 && (c)) fprintf x ;}
#  define Tracecv(c,x) {if (z_verbose>1 && (c)) fprintf x ;}
M
Mark Adler 已提交
220 221 222 223 224 225 226 227 228 229
#else
#  define Assert(cond,msg)
#  define Trace(x)
#  define Tracev(x)
#  define Tracevv(x)
#  define Tracec(c,x)
#  define Tracecv(c,x)
#endif


M
Mark Adler 已提交
230 231 232
voidpf ZLIB_INTERNAL zcalloc OF((voidpf opaque, unsigned items,
                        unsigned size));
void ZLIB_INTERNAL zcfree  OF((voidpf opaque, voidpf ptr));
M
Mark Adler 已提交
233

M
Mark Adler 已提交
234 235
#define ZALLOC(strm, items, size) \
           (*((strm)->zalloc))((strm)->opaque, (items), (size))
M
Mark Adler 已提交
236
#define ZFREE(strm, addr)  (*((strm)->zfree))((strm)->opaque, (voidpf)(addr))
M
Mark Adler 已提交
237 238
#define TRY_FREE(s, p) {if (p) ZFREE(s, p);}

M
Mark Adler 已提交
239
#endif /* ZUTIL_H */