A massively spiffy yet delicately unobtrusive compression library. (grpc依赖)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

204 lines
4.7 KiB

13 years ago
/* zutil.h -- internal interface and configuration of the compression library
13 years ago
* Copyright (C) 1995-1996 Jean-loup Gailly.
13 years ago
* 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.
*/
13 years ago
/* $Id: zutil.h,v 1.14 1996/05/22 11:52:40 me Exp $ */
13 years ago
#ifndef _Z_UTIL_H
#define _Z_UTIL_H
#include "zlib.h"
13 years ago
#if defined(MSDOS) || defined(VMS) || defined(CRAY) || defined(WIN32)
13 years ago
# include <stddef.h>
13 years ago
# include <errno.h>
13 years ago
#else
extern int errno;
#endif
13 years ago
#ifdef STDC
13 years ago
# include <string.h>
13 years ago
# include <stdlib.h>
13 years ago
#endif
13 years ago
#ifndef local
# define local static
#endif
/* compile with -Dlocal if your debugger can't find static symbols */
typedef unsigned char uch;
13 years ago
typedef uch FAR uchf;
13 years ago
typedef unsigned short ush;
13 years ago
typedef ush FAR ushf;
13 years ago
typedef unsigned long ulg;
13 years ago
extern const char *z_errmsg[10]; /* indexed by 2-zlib_error */
/* (size given to avoid silly warnings with Visual C++) */
13 years ago
13 years ago
#define ERR_MSG(err) (char*)z_errmsg[Z_NEED_DICT-(err)]
#define ERR_RETURN(strm,err) \
return (strm->msg = ERR_MSG(err), (err))
13 years ago
/* To be used only when the state is known to be valid */
13 years ago
/* common constants */
13 years ago
13 years ago
#ifndef DEF_WBITS
13 years ago
# define DEF_WBITS MAX_WBITS
13 years ago
#endif
13 years ago
/* 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 */
13 years ago
#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 */
13 years ago
#define PRESET_DICT 0x20 /* preset dictionary flag in zlib header */
13 years ago
/* target dependencies */
13 years ago
#ifdef MSDOS
# define OS_CODE 0x00
# ifdef __TURBOC__
# include <alloc.h>
13 years ago
# else /* MSC or DJGPP */
13 years ago
# include <malloc.h>
# endif
#endif
#ifdef OS2
# define OS_CODE 0x06
#endif
13 years ago
#ifdef WIN32 /* Window 95 & Windows NT */
13 years ago
# define OS_CODE 0x0b
#endif
#if defined(VAXC) || defined(VMS)
# define OS_CODE 0x02
# define FOPEN(name, mode) \
fopen((name), (mode), "mbc=60", "ctx=stm", "rfm=fix", "mrs=512")
#endif
#ifdef AMIGA
# define OS_CODE 0x01
#endif
#if defined(ATARI) || defined(atarist)
# define OS_CODE 0x05
#endif
#ifdef MACOS
# define OS_CODE 0x07
#endif
#ifdef __50SERIES /* Prime/PRIMOS */
# define OS_CODE 0x0F
#endif
#ifdef TOPS20
# define OS_CODE 0x0a
13 years ago
#endif
#ifdef _BEOS_
# define fdopen(fd,mode) NULL /* No fdopen() */
13 years ago
#endif
13 years ago
/* Common defaults */
13 years ago
#ifndef OS_CODE
# define OS_CODE 0x03 /* assume Unix */
#endif
#ifndef FOPEN
# define FOPEN(name, mode) fopen((name), (mode))
#endif
/* functions */
#ifdef HAVE_STRERROR
13 years ago
extern char *strerror OF((int));
13 years ago
# define zstrerror(errnum) strerror(errnum)
#else
# define zstrerror(errnum) ""
#endif
13 years ago
#if defined(pyr)
# define NO_MEMCPY
#endif
#if (defined(M_I86SM) || defined(M_I86MM)) && !defined(_MSC_VER)
/* 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).
*/
13 years ago
# define NO_MEMCPY
#endif
#if defined(STDC) && !defined(HAVE_MEMCPY) && !defined(NO_MEMCPY)
13 years ago
# define HAVE_MEMCPY
#endif
#ifdef HAVE_MEMCPY
13 years ago
# ifdef SMALL_MEDIUM /* MSDOS small or medium model */
13 years ago
# define zmemcpy _fmemcpy
13 years ago
# define zmemcmp _fmemcmp
13 years ago
# define zmemzero(dest, len) _fmemset(dest, 0, len)
13 years ago
# else
13 years ago
# define zmemcpy memcpy
13 years ago
# define zmemcmp memcmp
13 years ago
# define zmemzero(dest, len) memset(dest, 0, len)
# endif
13 years ago
#else
13 years ago
extern void zmemcpy OF((Bytef* dest, Bytef* source, uInt len));
extern void zmemzero OF((Bytef* dest, uInt len));
13 years ago
#endif
/* Diagnostic functions */
#ifdef DEBUG
# include <stdio.h>
# ifndef verbose
# define verbose 0
# endif
# define Assert(cond,msg) {if(!(cond)) z_error(msg);}
# define Trace(x) fprintf x
# define Tracev(x) {if (verbose) fprintf x ;}
# define Tracevv(x) {if (verbose>1) fprintf x ;}
# define Tracec(c,x) {if (verbose && (c)) fprintf x ;}
# define Tracecv(c,x) {if (verbose>1 && (c)) fprintf x ;}
#else
# define Assert(cond,msg)
# define Trace(x)
# define Tracev(x)
# define Tracevv(x)
# define Tracec(c,x)
# define Tracecv(c,x)
#endif
13 years ago
typedef uLong (*check_func) OF((uLong check, const Bytef *buf, uInt len));
13 years ago
13 years ago
extern void z_error OF((char *m));
13 years ago
13 years ago
voidpf zcalloc OF((voidpf opaque, unsigned items, unsigned size));
void zcfree OF((voidpf opaque, voidpf ptr));
13 years ago
13 years ago
#define ZALLOC(strm, items, size) \
(*((strm)->zalloc))((strm)->opaque, (items), (size))
13 years ago
#define ZFREE(strm, addr) (*((strm)->zfree))((strm)->opaque, (voidpf)(addr))
13 years ago
#define TRY_FREE(s, p) {if (p) ZFREE(s, p);}
#endif /* _Z_UTIL_H */