zutil.h revision 42471
194742Sobrien/* zutil.h -- internal interface and configuration of the compression library
294742Sobrien * Copyright (C) 1995-1998 Jean-loup Gailly.
394742Sobrien * For conditions of distribution and use, see copyright notice in zlib.h
494742Sobrien */
594742Sobrien
694772Simp/* WARNING: this file should *not* be used by applications. It is
794772Simp   part of the implementation of the compression library and is
894772Simp   subject to change. Applications should only use zlib.h.
994844Srwatson */
1094854Ssos
1194917Simp/* @(#) $Id: zutil.h,v 1.1.1.3 1999/01/10 09:46:59 peter Exp $ */
1294917Simp
1394917Simp#ifndef _Z_UTIL_H
1494917Simp#define _Z_UTIL_H
1594845Smarkm
1694845Smarkm#include "zlib.h"
1794845Smarkm
1894845Smarkm#ifdef STDC
1994845Smarkm#  include <stddef.h>
2094847Sjhb#  include <string.h>
2194847Sjhb#  include <stdlib.h>
2294847Sjhb#endif
2394847Sjhb#ifdef NO_ERRNO_H
2494847Sjhb    extern int errno;
2594849Sphk#else
2694849Sphk#   include <errno.h>
2794849Sphk#endif
2894849Sphk
2994849Sphk#ifndef local
3094849Sphk#  define local static
3194849Sphk#endif
3294849Sphk/* compile with -Dlocal if your debugger can't find static symbols */
3394855Sscottl
3494855Sscottltypedef unsigned char  uch;
3594902Sbennotypedef uch FAR uchf;
3694915Skentypedef unsigned short ush;
3794915Skentypedef ush FAR ushf;
3894920Smjacobtypedef unsigned long  ulg;
3994915Sken
4094915Skenextern const char *z_errmsg[10]; /* indexed by 2-zlib_error */
4194915Sken/* (size given to avoid silly warnings with Visual C++) */
4294915Sken
4394915Sken#define ERR_MSG(err) z_errmsg[Z_NEED_DICT-(err)]
4494915Sken
4594915Sken#define ERR_RETURN(strm,err) \
4694915Sken  return (strm->msg = (char*)ERR_MSG(err), (err))
4794920Smjacob/* To be used only when the state is known to be valid */
4894920Smjacob
4994920Smjacob        /* common constants */
5094918Sgshapiro
5194918Sgshapiro#ifndef DEF_WBITS
5294918Sgshapiro#  define DEF_WBITS MAX_WBITS
5394918Sgshapiro#endif
5494918Sgshapiro/* default windowBits for decompression. MAX_WBITS is for compression only */
5594919Sjake
56#if MAX_MEM_LEVEL >= 8
57#  define DEF_MEM_LEVEL 8
58#else
59#  define DEF_MEM_LEVEL  MAX_MEM_LEVEL
60#endif
61/* default memLevel */
62
63#define STORED_BLOCK 0
64#define STATIC_TREES 1
65#define DYN_TREES    2
66/* The three kinds of block type */
67
68#define MIN_MATCH  3
69#define MAX_MATCH  258
70/* The minimum and maximum match lengths */
71
72#define PRESET_DICT 0x20 /* preset dictionary flag in zlib header */
73
74        /* target dependencies */
75
76#ifdef MSDOS
77#  define OS_CODE  0x00
78#  if defined(__TURBOC__) || defined(__BORLANDC__)
79#    if(__STDC__ == 1) && (defined(__LARGE__) || defined(__COMPACT__))
80       /* Allow compilation with ANSI keywords only enabled */
81       void _Cdecl farfree( void *block );
82       void *_Cdecl farmalloc( unsigned long nbytes );
83#    else
84#     include <alloc.h>
85#    endif
86#  else /* MSC or DJGPP */
87#    include <malloc.h>
88#  endif
89#endif
90
91#ifdef OS2
92#  define OS_CODE  0x06
93#endif
94
95#ifdef WIN32 /* Window 95 & Windows NT */
96#  define OS_CODE  0x0b
97#endif
98
99#if defined(VAXC) || defined(VMS)
100#  define OS_CODE  0x02
101#  define F_OPEN(name, mode) \
102     fopen((name), (mode), "mbc=60", "ctx=stm", "rfm=fix", "mrs=512")
103#endif
104
105#ifdef AMIGA
106#  define OS_CODE  0x01
107#endif
108
109#if defined(ATARI) || defined(atarist)
110#  define OS_CODE  0x05
111#endif
112
113#if defined(MACOS) || defined(TARGET_OS_MAC)
114#  define OS_CODE  0x07
115#  if defined(__MWERKS__) && __dest_os != __be_os && __dest_os != __win32_os
116#    include <unix.h> /* for fdopen */
117#  else
118#    ifndef fdopen
119#      define fdopen(fd,mode) NULL /* No fdopen() */
120#    endif
121#  endif
122#endif
123
124#ifdef __50SERIES /* Prime/PRIMOS */
125#  define OS_CODE  0x0F
126#endif
127
128#ifdef TOPS20
129#  define OS_CODE  0x0a
130#endif
131
132#if defined(_BEOS_) || defined(RISCOS)
133#  define fdopen(fd,mode) NULL /* No fdopen() */
134#endif
135
136#if (defined(_MSC_VER) && (_MSC_VER > 600))
137#  define fdopen(fd,type)  _fdopen(fd,type)
138#endif
139
140
141        /* Common defaults */
142
143#ifndef OS_CODE
144#  define OS_CODE  0x03  /* assume Unix */
145#endif
146
147#ifndef F_OPEN
148#  define F_OPEN(name, mode) fopen((name), (mode))
149#endif
150
151         /* functions */
152
153#ifdef HAVE_STRERROR
154   extern char *strerror OF((int));
155#  define zstrerror(errnum) strerror(errnum)
156#else
157#  define zstrerror(errnum) ""
158#endif
159
160#if defined(pyr)
161#  define NO_MEMCPY
162#endif
163#if defined(SMALL_MEDIUM) && !defined(_MSC_VER) && !defined(__SC__)
164 /* Use our own functions for small and medium model with MSC <= 5.0.
165  * You may have to use the same strategy for Borland C (untested).
166  * The __SC__ check is for Symantec.
167  */
168#  define NO_MEMCPY
169#endif
170#if defined(STDC) && !defined(HAVE_MEMCPY) && !defined(NO_MEMCPY)
171#  define HAVE_MEMCPY
172#endif
173#ifdef HAVE_MEMCPY
174#  ifdef SMALL_MEDIUM /* MSDOS small or medium model */
175#    define zmemcpy _fmemcpy
176#    define zmemcmp _fmemcmp
177#    define zmemzero(dest, len) _fmemset(dest, 0, len)
178#  else
179#    define zmemcpy memcpy
180#    define zmemcmp memcmp
181#    define zmemzero(dest, len) memset(dest, 0, len)
182#  endif
183#else
184   extern void zmemcpy  OF((Bytef* dest, const Bytef* source, uInt len));
185   extern int  zmemcmp  OF((const Bytef* s1, const Bytef* s2, uInt len));
186   extern void zmemzero OF((Bytef* dest, uInt len));
187#endif
188
189/* Diagnostic functions */
190#ifdef DEBUG
191#  include <stdio.h>
192   extern int z_verbose;
193   extern void z_error    OF((char *m));
194#  define Assert(cond,msg) {if(!(cond)) z_error(msg);}
195#  define Trace(x) {if (z_verbose>=0) fprintf x ;}
196#  define Tracev(x) {if (z_verbose>0) fprintf x ;}
197#  define Tracevv(x) {if (z_verbose>1) fprintf x ;}
198#  define Tracec(c,x) {if (z_verbose>0 && (c)) fprintf x ;}
199#  define Tracecv(c,x) {if (z_verbose>1 && (c)) fprintf x ;}
200#else
201#  define Assert(cond,msg)
202#  define Trace(x)
203#  define Tracev(x)
204#  define Tracevv(x)
205#  define Tracec(c,x)
206#  define Tracecv(c,x)
207#endif
208
209
210typedef uLong (ZEXPORT *check_func) OF((uLong check, const Bytef *buf,
211				       uInt len));
212voidpf zcalloc OF((voidpf opaque, unsigned items, unsigned size));
213void   zcfree  OF((voidpf opaque, voidpf ptr));
214
215#define ZALLOC(strm, items, size) \
216           (*((strm)->zalloc))((strm)->opaque, (items), (size))
217#define ZFREE(strm, addr)  (*((strm)->zfree))((strm)->opaque, (voidpf)(addr))
218#define TRY_FREE(s, p) {if (p) ZFREE(s, p);}
219
220#endif /* _Z_UTIL_H */
221