Avoid newest test when no destination was specified.
[rsync/rsync.git] / zlib / zutil.h
CommitLineData
d4286ec4 1/* zutil.h -- internal interface and configuration of the compression library
1e1cf689 2 * Copyright (C) 1995-2003 Jean-loup Gailly.
d4286ec4
PM
3 * For conditions of distribution and use, see copyright notice in zlib.h
4 */
5
6/* WARNING: this file should *not* be used by applications. It is
7 part of the implementation of the compression library and is
8 subject to change. Applications should only use zlib.h.
9 */
10
11/* @(#) $Id$ */
12
1e1cf689
WD
13#ifndef ZUTIL_H
14#define ZUTIL_H
d4286ec4 15
1e1cf689 16#define ZLIB_INTERNAL
5914bf15 17#include "../rsync.h"
d4286ec4
PM
18#include "zlib.h"
19
5914bf15 20#if 0
d4286ec4
PM
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
5914bf15 31#endif
d4286ec4
PM
32
33#ifndef local
34# define local static
35#endif
36/* compile with -Dlocal if your debugger can't find static symbols */
37
38typedef unsigned char uch;
39typedef uch FAR uchf;
40typedef unsigned short ush;
41typedef ush FAR ushf;
42typedef unsigned long ulg;
43
1e1cf689 44extern const char * const z_errmsg[10]; /* indexed by 2-zlib_error */
d4286ec4
PM
45/* (size given to avoid silly warnings with Visual C++) */
46
47#define ERR_MSG(err) z_errmsg[Z_NEED_DICT-(err)]
48
49#define ERR_RETURN(strm,err) \
50 return (strm->msg = (char*)ERR_MSG(err), (err))
51/* To be used only when the state is known to be valid */
52
53 /* common constants */
54
55#ifndef DEF_WBITS
56# define DEF_WBITS MAX_WBITS
57#endif
58/* default windowBits for decompression. MAX_WBITS is for compression only */
59
60#if MAX_MEM_LEVEL >= 8
61# define DEF_MEM_LEVEL 8
62#else
63# define DEF_MEM_LEVEL MAX_MEM_LEVEL
64#endif
65/* default memLevel */
66
67#define STORED_BLOCK 0
68#define STATIC_TREES 1
69#define DYN_TREES 2
70/* The three kinds of block type */
71
72#define MIN_MATCH 3
73#define MAX_MATCH 258
74/* The minimum and maximum match lengths */
75
76#define PRESET_DICT 0x20 /* preset dictionary flag in zlib header */
77
78 /* target dependencies */
79
1e1cf689 80#if defined(MSDOS) || (defined(WINDOWS) && !defined(WIN32))
d4286ec4 81# define OS_CODE 0x00
06b91d8e 82# if defined(__TURBOC__) || defined(__BORLANDC__)
d4286ec4
PM
83# if(__STDC__ == 1) && (defined(__LARGE__) || defined(__COMPACT__))
84 /* Allow compilation with ANSI keywords only enabled */
85 void _Cdecl farfree( void *block );
86 void *_Cdecl farmalloc( unsigned long nbytes );
87# else
1e1cf689 88# include <alloc.h>
d4286ec4
PM
89# endif
90# else /* MSC or DJGPP */
91# include <malloc.h>
92# endif
93#endif
94
1e1cf689
WD
95#ifdef AMIGA
96# define OS_CODE 0x01
d4286ec4
PM
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
d4286ec4
PM
105#if defined(ATARI) || defined(atarist)
106# define OS_CODE 0x05
107#endif
108
1e1cf689
WD
109#ifdef OS2
110# define OS_CODE 0x06
111#endif
112
d4286ec4
PM
113#if defined(MACOS) || defined(TARGET_OS_MAC)
114# define OS_CODE 0x07
06b91d8e
MP
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
d4286ec4
PM
121# endif
122#endif
123
d4286ec4
PM
124#ifdef TOPS20
125# define OS_CODE 0x0a
126#endif
127
1e1cf689
WD
128#ifdef WIN32
129# ifndef __CYGWIN__ /* Cygwin is Unix, not Win32 */
130# define OS_CODE 0x0b
131# endif
132#endif
133
134#ifdef __50SERIES /* Prime/PRIMOS */
135# define OS_CODE 0x0f
136#endif
137
d4286ec4
PM
138#if defined(_BEOS_) || defined(RISCOS)
139# define fdopen(fd,mode) NULL /* No fdopen() */
140#endif
141
06b91d8e 142#if (defined(_MSC_VER) && (_MSC_VER > 600))
1e1cf689
WD
143# if defined(_WIN32_WCE)
144# define fdopen(fd,mode) NULL /* No fdopen() */
145# ifndef _PTRDIFF_T_DEFINED
146 typedef int ptrdiff_t;
147# define _PTRDIFF_T_DEFINED
148# endif
149# else
150# define fdopen(fd,type) _fdopen(fd,type)
151# endif
d4286ec4
PM
152#endif
153
1e1cf689 154 /* common defaults */
d4286ec4
PM
155
156#ifndef OS_CODE
157# define OS_CODE 0x03 /* assume Unix */
158#endif
159
160#ifndef F_OPEN
161# define F_OPEN(name, mode) fopen((name), (mode))
162#endif
163
164 /* functions */
165
1e1cf689
WD
166#if defined(STDC99) || (defined(__TURBOC__) && __TURBOC__ >= 0x550)
167# ifndef HAVE_VSNPRINTF
168# define HAVE_VSNPRINTF
169# endif
170#endif
171#if defined(__CYGWIN__)
172# ifndef HAVE_VSNPRINTF
173# define HAVE_VSNPRINTF
174# endif
175#endif
176#ifndef HAVE_VSNPRINTF
177# ifdef MSDOS
178 /* vsnprintf may exist on some MS-DOS compilers (DJGPP?),
179 but for now we just assume it doesn't. */
180# define NO_vsnprintf
181# endif
182# ifdef __TURBOC__
183# define NO_vsnprintf
184# endif
185# ifdef WIN32
186 /* In Win32, vsnprintf is available as the "non-ANSI" _vsnprintf. */
187# if !defined(vsnprintf) && !defined(NO_vsnprintf)
188# define vsnprintf _vsnprintf
189# endif
190# endif
191# ifdef __SASC
192# define NO_vsnprintf
193# endif
194#endif
195#ifdef VMS
196# define NO_vsnprintf
197#endif
198
d4286ec4 199#ifdef HAVE_STRERROR
1e1cf689
WD
200# ifndef VMS
201 extern char *strerror OF((int));
202# endif
d4286ec4
PM
203# define zstrerror(errnum) strerror(errnum)
204#else
205# define zstrerror(errnum) ""
206#endif
207
208#if defined(pyr)
209# define NO_MEMCPY
210#endif
211#if defined(SMALL_MEDIUM) && !defined(_MSC_VER) && !defined(__SC__)
212 /* Use our own functions for small and medium model with MSC <= 5.0.
213 * You may have to use the same strategy for Borland C (untested).
214 * The __SC__ check is for Symantec.
215 */
216# define NO_MEMCPY
217#endif
218#if defined(STDC) && !defined(HAVE_MEMCPY) && !defined(NO_MEMCPY)
219# define HAVE_MEMCPY
220#endif
221#ifdef HAVE_MEMCPY
222# ifdef SMALL_MEDIUM /* MSDOS small or medium model */
223# define zmemcpy _fmemcpy
224# define zmemcmp _fmemcmp
225# define zmemzero(dest, len) _fmemset(dest, 0, len)
226# else
227# define zmemcpy memcpy
228# define zmemcmp memcmp
229# define zmemzero(dest, len) memset(dest, 0, len)
230# endif
231#else
06b91d8e
MP
232 extern void zmemcpy OF((Bytef* dest, const Bytef* source, uInt len));
233 extern int zmemcmp OF((const Bytef* s1, const Bytef* s2, uInt len));
d4286ec4
PM
234 extern void zmemzero OF((Bytef* dest, uInt len));
235#endif
236
237/* Diagnostic functions */
238#ifdef DEBUG
239# include <stdio.h>
240 extern int z_verbose;
241 extern void z_error OF((char *m));
242# define Assert(cond,msg) {if(!(cond)) z_error(msg);}
243# define Trace(x) {if (z_verbose>=0) fprintf x ;}
244# define Tracev(x) {if (z_verbose>0) fprintf x ;}
245# define Tracevv(x) {if (z_verbose>1) fprintf x ;}
246# define Tracec(c,x) {if (z_verbose>0 && (c)) fprintf x ;}
247# define Tracecv(c,x) {if (z_verbose>1 && (c)) fprintf x ;}
248#else
249# define Assert(cond,msg)
250# define Trace(x)
251# define Tracev(x)
252# define Tracevv(x)
253# define Tracec(c,x)
254# define Tracecv(c,x)
255#endif
256
257
d4286ec4
PM
258voidpf zcalloc OF((voidpf opaque, unsigned items, unsigned size));
259void zcfree OF((voidpf opaque, voidpf ptr));
260
261#define ZALLOC(strm, items, size) \
262 (*((strm)->zalloc))((strm)->opaque, (items), (size))
0bc46751 263#define ZFREE(strm, addr) (*((strm)->zfree))((strm)->opaque, (voidpf)(addr))
d4286ec4
PM
264#define TRY_FREE(s, p) {if (p) ZFREE(s, p);}
265
1e1cf689 266#endif /* ZUTIL_H */