sl@0
|
1 |
/* Portions Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
* All rights reserved.
|
sl@0
|
3 |
*/
|
sl@0
|
4 |
|
sl@0
|
5 |
/* zutil.h -- internal interface and configuration of the compression library
|
sl@0
|
6 |
* Copyright (C) 1995-2005 Jean-loup Gailly.
|
sl@0
|
7 |
* For conditions of distribution and use, see copyright notice in zlib.h
|
sl@0
|
8 |
*/
|
sl@0
|
9 |
|
sl@0
|
10 |
/* WARNING: this file should *not* be used by applications. It is
|
sl@0
|
11 |
part of the implementation of the compression library and is
|
sl@0
|
12 |
subject to change. Applications should only use zlib.h.
|
sl@0
|
13 |
*/
|
sl@0
|
14 |
|
sl@0
|
15 |
#ifndef ZUTIL_H
|
sl@0
|
16 |
#define ZUTIL_H
|
sl@0
|
17 |
|
sl@0
|
18 |
#define ZLIB_INTERNAL
|
sl@0
|
19 |
#include "libzcore.h"
|
sl@0
|
20 |
|
sl@0
|
21 |
#if defined(SYMBIAN_EZLIB_DEVICE) && !defined(LIBZGZIO_H)
|
sl@0
|
22 |
#include <e32std.h>
|
sl@0
|
23 |
#endif
|
sl@0
|
24 |
|
sl@0
|
25 |
#if !defined(SYMBIAN_EZLIB_DEVICE) || defined(LIBZGZIO_H)
|
sl@0
|
26 |
|
sl@0
|
27 |
#ifdef STDC
|
sl@0
|
28 |
# ifndef _WIN32_WCE
|
sl@0
|
29 |
# include <stddef.h>
|
sl@0
|
30 |
# endif
|
sl@0
|
31 |
# include <string.h>
|
sl@0
|
32 |
# include <stdlib.h>
|
sl@0
|
33 |
#endif
|
sl@0
|
34 |
#ifdef NO_ERRNO_H
|
sl@0
|
35 |
# ifdef _WIN32_WCE
|
sl@0
|
36 |
/* The Microsoft C Run-Time Library for Windows CE doesn't have
|
sl@0
|
37 |
* errno. We define it as a global variable to simplify porting.
|
sl@0
|
38 |
* Its value is always 0 and should not be used. We rename it to
|
sl@0
|
39 |
* avoid conflict with other libraries that use the same workaround.
|
sl@0
|
40 |
*/
|
sl@0
|
41 |
# define errno z_errno
|
sl@0
|
42 |
# endif
|
sl@0
|
43 |
extern int errno;
|
sl@0
|
44 |
#else
|
sl@0
|
45 |
# ifndef _WIN32_WCE
|
sl@0
|
46 |
# include <errno.h>
|
sl@0
|
47 |
# endif
|
sl@0
|
48 |
#endif
|
sl@0
|
49 |
|
sl@0
|
50 |
#endif //SYMBIAN_EZLIB_DEVICE
|
sl@0
|
51 |
|
sl@0
|
52 |
#ifndef local
|
sl@0
|
53 |
# define local static
|
sl@0
|
54 |
#endif
|
sl@0
|
55 |
/* compile with -Dlocal if your debugger can't find static symbols */
|
sl@0
|
56 |
|
sl@0
|
57 |
typedef unsigned char uch;
|
sl@0
|
58 |
typedef uch FAR uchf;
|
sl@0
|
59 |
typedef unsigned short ush;
|
sl@0
|
60 |
typedef ush FAR ushf;
|
sl@0
|
61 |
typedef unsigned long ulg;
|
sl@0
|
62 |
|
sl@0
|
63 |
extern const char * const z_errmsg[10]; /* indexed by 2-zlib_error */
|
sl@0
|
64 |
/* (size given to avoid silly warnings with Visual C++) */
|
sl@0
|
65 |
|
sl@0
|
66 |
|
sl@0
|
67 |
|
sl@0
|
68 |
#define ERR_MSG(err) z_errmsg[Z_NEED_DICT-(err)]
|
sl@0
|
69 |
|
sl@0
|
70 |
#define ERR_RETURN(strm,err) \
|
sl@0
|
71 |
return (strm->msg = (char*)ERR_MSG(err), (err))
|
sl@0
|
72 |
/* To be used only when the state is known to be valid */
|
sl@0
|
73 |
|
sl@0
|
74 |
/* common constants */
|
sl@0
|
75 |
|
sl@0
|
76 |
#ifndef DEF_WBITS
|
sl@0
|
77 |
# define DEF_WBITS MAX_WBITS
|
sl@0
|
78 |
#endif
|
sl@0
|
79 |
/* default windowBits for decompression. MAX_WBITS is for compression only */
|
sl@0
|
80 |
|
sl@0
|
81 |
#if MAX_MEM_LEVEL >= 8
|
sl@0
|
82 |
#define DEF_MEM_LEVEL 8
|
sl@0
|
83 |
#else
|
sl@0
|
84 |
#define DEF_MEM_LEVEL MAX_MEM_LEVEL
|
sl@0
|
85 |
#endif
|
sl@0
|
86 |
|
sl@0
|
87 |
/* default memLevel */
|
sl@0
|
88 |
|
sl@0
|
89 |
#define STORED_BLOCK 0
|
sl@0
|
90 |
#define STATIC_TREES 1
|
sl@0
|
91 |
#define DYN_TREES 2
|
sl@0
|
92 |
/* The three kinds of block type */
|
sl@0
|
93 |
|
sl@0
|
94 |
#define MIN_MATCH 3
|
sl@0
|
95 |
#define MAX_MATCH 258
|
sl@0
|
96 |
/* The minimum and maximum match lengths */
|
sl@0
|
97 |
|
sl@0
|
98 |
#define PRESET_DICT 0x20 /* preset dictionary flag in zlib header */
|
sl@0
|
99 |
|
sl@0
|
100 |
/* target dependencies */
|
sl@0
|
101 |
|
sl@0
|
102 |
|
sl@0
|
103 |
#if defined(MSDOS) || (defined(WINDOWS) && !defined(WIN32))
|
sl@0
|
104 |
# define OS_CODE 0x00
|
sl@0
|
105 |
# if defined(__TURBOC__) || defined(__BORLANDC__)
|
sl@0
|
106 |
# if(__STDC__ == 1) && (defined(__LARGE__) || defined(__COMPACT__))
|
sl@0
|
107 |
/* Allow compilation with ANSI keywords only enabled */
|
sl@0
|
108 |
void _Cdecl farfree( void *block );
|
sl@0
|
109 |
void *_Cdecl farmalloc( unsigned long nbytes );
|
sl@0
|
110 |
# else
|
sl@0
|
111 |
# include <alloc.h>
|
sl@0
|
112 |
# endif
|
sl@0
|
113 |
# else /* MSC or DJGPP */
|
sl@0
|
114 |
# include <malloc.h>
|
sl@0
|
115 |
# endif
|
sl@0
|
116 |
#endif
|
sl@0
|
117 |
|
sl@0
|
118 |
#ifdef AMIGA
|
sl@0
|
119 |
# define OS_CODE 0x01
|
sl@0
|
120 |
#endif
|
sl@0
|
121 |
|
sl@0
|
122 |
#if defined(VAXC) || defined(VMS)
|
sl@0
|
123 |
# define OS_CODE 0x02
|
sl@0
|
124 |
# define F_OPEN(name, mode) \
|
sl@0
|
125 |
fopen((name), (mode), "mbc=60", "ctx=stm", "rfm=fix", "mrs=512")
|
sl@0
|
126 |
#endif
|
sl@0
|
127 |
|
sl@0
|
128 |
#if defined(ATARI) || defined(atarist)
|
sl@0
|
129 |
# define OS_CODE 0x05
|
sl@0
|
130 |
#endif
|
sl@0
|
131 |
|
sl@0
|
132 |
#ifdef OS2
|
sl@0
|
133 |
# define OS_CODE 0x06
|
sl@0
|
134 |
# ifdef M_I86
|
sl@0
|
135 |
#include <malloc.h>
|
sl@0
|
136 |
# endif
|
sl@0
|
137 |
#endif
|
sl@0
|
138 |
|
sl@0
|
139 |
#if defined(MACOS) || defined(TARGET_OS_MAC)
|
sl@0
|
140 |
# define OS_CODE 0x07
|
sl@0
|
141 |
# if defined(__MWERKS__) && __dest_os != __be_os && __dest_os != __win32_os
|
sl@0
|
142 |
# include <unix.h> /* for fdopen */
|
sl@0
|
143 |
# else
|
sl@0
|
144 |
# ifndef fdopen
|
sl@0
|
145 |
# define fdopen(fd,mode) NULL /* No fdopen() */
|
sl@0
|
146 |
# endif
|
sl@0
|
147 |
# endif
|
sl@0
|
148 |
#endif
|
sl@0
|
149 |
|
sl@0
|
150 |
#ifdef TOPS20
|
sl@0
|
151 |
# define OS_CODE 0x0a
|
sl@0
|
152 |
#endif
|
sl@0
|
153 |
|
sl@0
|
154 |
#ifdef WIN32
|
sl@0
|
155 |
# ifndef __CYGWIN__ /* Cygwin is Unix, not Win32 */
|
sl@0
|
156 |
# define OS_CODE 0x0b
|
sl@0
|
157 |
# endif
|
sl@0
|
158 |
#endif
|
sl@0
|
159 |
|
sl@0
|
160 |
#ifdef __50SERIES /* Prime/PRIMOS */
|
sl@0
|
161 |
# define OS_CODE 0x0f
|
sl@0
|
162 |
#endif
|
sl@0
|
163 |
|
sl@0
|
164 |
#if defined(_BEOS_) || defined(RISCOS)
|
sl@0
|
165 |
# define fdopen(fd,mode) NULL /* No fdopen() */
|
sl@0
|
166 |
#endif
|
sl@0
|
167 |
|
sl@0
|
168 |
#if (defined(_MSC_VER) && (_MSC_VER > 600))
|
sl@0
|
169 |
# if defined(_WIN32_WCE)
|
sl@0
|
170 |
# define fdopen(fd,mode) NULL /* No fdopen() */
|
sl@0
|
171 |
# ifndef _PTRDIFF_T_DEFINED
|
sl@0
|
172 |
typedef int ptrdiff_t;
|
sl@0
|
173 |
# define _PTRDIFF_T_DEFINED
|
sl@0
|
174 |
# endif
|
sl@0
|
175 |
# else
|
sl@0
|
176 |
# define fdopen(fd,type) _fdopen(fd,type)
|
sl@0
|
177 |
# endif
|
sl@0
|
178 |
#endif
|
sl@0
|
179 |
|
sl@0
|
180 |
/* common defaults */
|
sl@0
|
181 |
|
sl@0
|
182 |
#ifndef OS_CODE
|
sl@0
|
183 |
# define OS_CODE 0x03 /* assume Unix */
|
sl@0
|
184 |
#endif
|
sl@0
|
185 |
|
sl@0
|
186 |
#if !defined(SYMBIAN_EZLIB_DEVICE) || defined(LIBZGZIO_H)
|
sl@0
|
187 |
#ifndef F_OPEN
|
sl@0
|
188 |
# define F_OPEN(name, mode) fopen((name), (mode))
|
sl@0
|
189 |
#endif
|
sl@0
|
190 |
|
sl@0
|
191 |
/* functions */
|
sl@0
|
192 |
|
sl@0
|
193 |
#if defined(STDC99) || (defined(__TURBOC__) && __TURBOC__ >= 0x550)
|
sl@0
|
194 |
# ifndef HAVE_VSNPRINTF
|
sl@0
|
195 |
# define HAVE_VSNPRINTF
|
sl@0
|
196 |
# endif
|
sl@0
|
197 |
#endif
|
sl@0
|
198 |
#if defined(__CYGWIN__)
|
sl@0
|
199 |
# ifndef HAVE_VSNPRINTF
|
sl@0
|
200 |
# define HAVE_VSNPRINTF
|
sl@0
|
201 |
# endif
|
sl@0
|
202 |
#endif
|
sl@0
|
203 |
#ifndef HAVE_VSNPRINTF
|
sl@0
|
204 |
# ifdef MSDOS
|
sl@0
|
205 |
/* vsnprintf may exist on some MS-DOS compilers (DJGPP?),
|
sl@0
|
206 |
but for now we just assume it doesn't. */
|
sl@0
|
207 |
# define NO_vsnprintf
|
sl@0
|
208 |
# endif
|
sl@0
|
209 |
# ifdef __TURBOC__
|
sl@0
|
210 |
# define NO_vsnprintf
|
sl@0
|
211 |
# endif
|
sl@0
|
212 |
# ifdef WIN32
|
sl@0
|
213 |
/* In Win32, vsnprintf is available as the "non-ANSI" _vsnprintf. */
|
sl@0
|
214 |
# if !defined(vsnprintf) && !defined(NO_vsnprintf)
|
sl@0
|
215 |
#ifndef SYMBIAN_EZLIB_DEVICE
|
sl@0
|
216 |
# define vsnprintf _vsnprintf
|
sl@0
|
217 |
# endif //SYMBIAN_EZLIB_DEVICE
|
sl@0
|
218 |
# endif
|
sl@0
|
219 |
# endif
|
sl@0
|
220 |
# ifdef __SASC
|
sl@0
|
221 |
# define NO_vsnprintf
|
sl@0
|
222 |
# endif
|
sl@0
|
223 |
#endif
|
sl@0
|
224 |
#ifdef VMS
|
sl@0
|
225 |
# define NO_vsnprintf
|
sl@0
|
226 |
#endif
|
sl@0
|
227 |
|
sl@0
|
228 |
#endif // !SYMBIAN_EZLIB_DEVICE || LIBZGZIO_H
|
sl@0
|
229 |
|
sl@0
|
230 |
#if defined(pyr)
|
sl@0
|
231 |
# define NO_MEMCPY
|
sl@0
|
232 |
#endif
|
sl@0
|
233 |
#if defined(SMALL_MEDIUM) && !defined(_MSC_VER) && !defined(__SC__)
|
sl@0
|
234 |
/* Use our own functions for small and medium model with MSC <= 5.0.
|
sl@0
|
235 |
* You may have to use the same strategy for Borland C (untested).
|
sl@0
|
236 |
* The __SC__ check is for Symantec.
|
sl@0
|
237 |
*/
|
sl@0
|
238 |
# define NO_MEMCPY
|
sl@0
|
239 |
#endif
|
sl@0
|
240 |
#if defined(STDC) && !defined(HAVE_MEMCPY) && !defined(NO_MEMCPY)
|
sl@0
|
241 |
# define HAVE_MEMCPY
|
sl@0
|
242 |
#endif
|
sl@0
|
243 |
#ifdef HAVE_MEMCPY
|
sl@0
|
244 |
# ifdef SMALL_MEDIUM /* MSDOS small or medium model */
|
sl@0
|
245 |
# define zmemcpy _fmemcpy
|
sl@0
|
246 |
# define zmemcmp _fmemcmp
|
sl@0
|
247 |
# define zmemzero(dest, len) _fmemset(dest, 0, len)
|
sl@0
|
248 |
# else
|
sl@0
|
249 |
# define zmemcpy memcpy
|
sl@0
|
250 |
# define zmemcmp memcmp
|
sl@0
|
251 |
# define zmemzero(dest, len) memset(dest, 0, len)
|
sl@0
|
252 |
# endif
|
sl@0
|
253 |
#else
|
sl@0
|
254 |
extern void zmemcpy OF((Bytef* dest, const Bytef* source, uInt len));
|
sl@0
|
255 |
extern int zmemcmp OF((const Bytef* s1, const Bytef* s2, uInt len));
|
sl@0
|
256 |
extern void zmemzero OF((Bytef* dest, uInt len));
|
sl@0
|
257 |
#endif
|
sl@0
|
258 |
|
sl@0
|
259 |
// Native Symbian Memory Functions Symbian
|
sl@0
|
260 |
#if defined(SYMBIAN_EZLIB_DEVICE) && !defined(LIBZGZIO_H)
|
sl@0
|
261 |
#define HAVE_MEMCPY
|
sl@0
|
262 |
#undef zmemcpy
|
sl@0
|
263 |
#undef zmemcmp
|
sl@0
|
264 |
#undef zmemzero
|
sl@0
|
265 |
#define zmemcpy Mem::Copy
|
sl@0
|
266 |
#define zmemcmp(s1,s2,len) Mem::Compare(s1,len,s2,len)
|
sl@0
|
267 |
#define zmemzero(dest, len) Mem::FillZ(dest, len)
|
sl@0
|
268 |
#endif //SYMBIAN_EZLIB_DEVICE && !LIBZGZIO_H
|
sl@0
|
269 |
|
sl@0
|
270 |
/* Diagnostic functions */
|
sl@0
|
271 |
#ifdef DEBUG
|
sl@0
|
272 |
# include <stdio.h>
|
sl@0
|
273 |
extern int z_verbose;
|
sl@0
|
274 |
extern void z_error OF((char *m));
|
sl@0
|
275 |
# define Assert(cond,msg) {if(!(cond)) z_error(msg);}
|
sl@0
|
276 |
# define Trace(x) {if (z_verbose>=0) fprintf x ;}
|
sl@0
|
277 |
# define Tracev(x) {if (z_verbose>0) fprintf x ;}
|
sl@0
|
278 |
# define Tracevv(x) {if (z_verbose>1) fprintf x ;}
|
sl@0
|
279 |
# define Tracec(c,x) {if (z_verbose>0 && (c)) fprintf x ;}
|
sl@0
|
280 |
# define Tracecv(c,x) {if (z_verbose>1 && (c)) fprintf x ;}
|
sl@0
|
281 |
#else
|
sl@0
|
282 |
# define Assert(cond,msg)
|
sl@0
|
283 |
# define Trace(x)
|
sl@0
|
284 |
# define Tracev(x)
|
sl@0
|
285 |
# define Tracevv(x)
|
sl@0
|
286 |
# define Tracec(c,x)
|
sl@0
|
287 |
# define Tracecv(c,x)
|
sl@0
|
288 |
#endif
|
sl@0
|
289 |
|
sl@0
|
290 |
|
sl@0
|
291 |
voidpf zcalloc OF((voidpf opaque, unsigned items, unsigned size));
|
sl@0
|
292 |
void zcfree OF((voidpf opaque, voidpf ptr));
|
sl@0
|
293 |
|
sl@0
|
294 |
#define ZALLOC(strm, items, size) \
|
sl@0
|
295 |
(*((strm)->zalloc))((strm)->opaque, (items), (size))
|
sl@0
|
296 |
#define ZFREE(strm, addr) (*((strm)->zfree))((strm)->opaque, (voidpf)(addr))
|
sl@0
|
297 |
#define TRY_FREE(s, p) {if (p) ZFREE(s, p);}
|
sl@0
|
298 |
|
sl@0
|
299 |
#endif /* ZUTIL_H */
|