tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

zutil.h (6759B)


      1 /* zutil.h -- internal interface and configuration of the compression library
      2 * Copyright (C) 1995-2024 Jean-loup Gailly, Mark Adler
      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 
     13 #ifndef ZUTIL_H
     14 #define ZUTIL_H
     15 
     16 #ifdef HAVE_HIDDEN
     17 #  define ZLIB_INTERNAL __attribute__((visibility ("hidden")))
     18 #else
     19 #  define ZLIB_INTERNAL
     20 #endif
     21 
     22 #include "zlib.h"
     23 
     24 #if defined(STDC) && !defined(Z_SOLO)
     25 #  if !(defined(_WIN32_WCE) && defined(_MSC_VER))
     26 #    include <stddef.h>
     27 #  endif
     28 #  include <string.h>
     29 #  include <stdlib.h>
     30 #endif
     31 
     32 #ifndef local
     33 #  define local static
     34 #endif
     35 /* since "static" is used to mean two completely different things in C, we
     36   define "local" for the non-static meaning of "static", for readability
     37   (compile with -Dlocal if your debugger can't find static symbols) */
     38 
     39 typedef unsigned char  uch;
     40 typedef uch FAR uchf;
     41 typedef unsigned short ush;
     42 typedef ush FAR ushf;
     43 typedef unsigned long  ulg;
     44 
     45 #if !defined(Z_U8) && !defined(Z_SOLO) && defined(STDC)
     46 #  include <limits.h>
     47 #  if (ULONG_MAX == 0xffffffffffffffff)
     48 #    define Z_U8 unsigned long
     49 #  elif (ULLONG_MAX == 0xffffffffffffffff)
     50 #    define Z_U8 unsigned long long
     51 #  elif (UINT_MAX == 0xffffffffffffffff)
     52 #    define Z_U8 unsigned
     53 #  endif
     54 #endif
     55 
     56 #ifndef Z_FREETYPE
     57 extern z_const char * const z_errmsg[10]; /* indexed by 2-zlib_error */
     58 /* (size given to avoid silly warnings with Visual C++) */
     59 #endif
     60 
     61 #define ERR_MSG(err) z_errmsg[(err) < -6 || (err) > 2 ? 9 : 2 - (err)]
     62 
     63 #define ERR_RETURN(strm,err) \
     64  return (strm->msg = ERR_MSG(err), (err))
     65 /* To be used only when the state is known to be valid */
     66 
     67        /* common constants */
     68 
     69 #ifndef DEF_WBITS
     70 #  define DEF_WBITS MAX_WBITS
     71 #endif
     72 /* default windowBits for decompression. MAX_WBITS is for compression only */
     73 
     74 #if MAX_MEM_LEVEL >= 8
     75 #  define DEF_MEM_LEVEL 8
     76 #else
     77 #  define DEF_MEM_LEVEL  MAX_MEM_LEVEL
     78 #endif
     79 /* default memLevel */
     80 
     81 #define STORED_BLOCK 0
     82 #define STATIC_TREES 1
     83 #define DYN_TREES    2
     84 /* The three kinds of block type */
     85 
     86 #define MIN_MATCH  3
     87 #define MAX_MATCH  258
     88 /* The minimum and maximum match lengths */
     89 
     90 #define PRESET_DICT 0x20 /* preset dictionary flag in zlib header */
     91 
     92        /* target dependencies */
     93 
     94 #if defined(MSDOS) || (defined(WINDOWS) && !defined(WIN32))
     95 #  define OS_CODE  0x00
     96 #  ifndef Z_SOLO
     97 #    if defined(__TURBOC__) || defined(__BORLANDC__)
     98 #      if (__STDC__ == 1) && (defined(__LARGE__) || defined(__COMPACT__))
     99         /* Allow compilation with ANSI keywords only enabled */
    100         void _Cdecl farfree( void *block );
    101         void *_Cdecl farmalloc( unsigned long nbytes );
    102 #      else
    103 #        include <alloc.h>
    104 #      endif
    105 #    else /* MSC or DJGPP */
    106 #      include <malloc.h>
    107 #    endif
    108 #  endif
    109 #endif
    110 
    111 #ifdef AMIGA
    112 #  define OS_CODE  1
    113 #endif
    114 
    115 #if defined(VAXC) || defined(VMS)
    116 #  define OS_CODE  2
    117 #  define F_OPEN(name, mode) \
    118     fopen((name), (mode), "mbc=60", "ctx=stm", "rfm=fix", "mrs=512")
    119 #endif
    120 
    121 #ifdef __370__
    122 #  if __TARGET_LIB__ < 0x20000000
    123 #    define OS_CODE 4
    124 #  elif __TARGET_LIB__ < 0x40000000
    125 #    define OS_CODE 11
    126 #  else
    127 #    define OS_CODE 8
    128 #  endif
    129 #endif
    130 
    131 #if defined(ATARI) || defined(atarist)
    132 #  define OS_CODE  5
    133 #endif
    134 
    135 #ifdef OS2
    136 #  define OS_CODE  6
    137 #  if defined(M_I86) && !defined(Z_SOLO)
    138 #    include <malloc.h>
    139 #  endif
    140 #endif
    141 
    142 #if defined(MACOS)
    143 #  define OS_CODE  7
    144 #endif
    145 
    146 #ifdef __acorn
    147 #  define OS_CODE 13
    148 #endif
    149 
    150 #if defined(WIN32) && !defined(__CYGWIN__)
    151 #  define OS_CODE  10
    152 #endif
    153 
    154 #ifdef _BEOS_
    155 #  define OS_CODE  16
    156 #endif
    157 
    158 #ifdef __TOS_OS400__
    159 #  define OS_CODE 18
    160 #endif
    161 
    162 #ifdef __APPLE__
    163 #  define OS_CODE 19
    164 #endif
    165 
    166 #if defined(__BORLANDC__) && !defined(MSDOS)
    167  #pragma warn -8004
    168  #pragma warn -8008
    169  #pragma warn -8066
    170 #endif
    171 
    172 #ifndef Z_FREETYPE
    173 
    174 /* provide prototypes for these when building zlib without LFS */
    175 #if !defined(_WIN32) && \
    176    (!defined(_LARGEFILE64_SOURCE) || _LFS64_LARGEFILE-0 == 0)
    177    ZEXTERN uLong ZEXPORT adler32_combine64(uLong, uLong, z_off_t);
    178    ZEXTERN uLong ZEXPORT crc32_combine64(uLong, uLong, z_off_t);
    179    ZEXTERN uLong ZEXPORT crc32_combine_gen64(z_off_t);
    180 #endif
    181 
    182 #endif  /* !Z_FREETYPE */
    183 
    184        /* common defaults */
    185 
    186 #ifndef OS_CODE
    187 #  define OS_CODE  3     /* assume Unix */
    188 #endif
    189 
    190 #ifndef F_OPEN
    191 #  define F_OPEN(name, mode) fopen((name), (mode))
    192 #endif
    193 
    194         /* functions */
    195 
    196 #if defined(pyr) || defined(Z_SOLO)
    197 #  define NO_MEMCPY
    198 #endif
    199 #if defined(SMALL_MEDIUM) && !defined(_MSC_VER) && !defined(__SC__)
    200 /* Use our own functions for small and medium model with MSC <= 5.0.
    201  * You may have to use the same strategy for Borland C (untested).
    202  * The __SC__ check is for Symantec.
    203  */
    204 #  define NO_MEMCPY
    205 #endif
    206 #if defined(STDC) && !defined(HAVE_MEMCPY) && !defined(NO_MEMCPY)
    207 #  define HAVE_MEMCPY
    208 #endif
    209 #ifdef HAVE_MEMCPY
    210 #  ifdef SMALL_MEDIUM /* MSDOS small or medium model */
    211 #    define zmemcpy _fmemcpy
    212 #    define zmemcmp _fmemcmp
    213 #    define zmemzero(dest, len) _fmemset(dest, 0, len)
    214 #  else
    215 #    define zmemcpy ft_memcpy
    216 #    define zmemcmp ft_memcmp
    217 #    define zmemzero(dest, len) ft_memset(dest, 0, len)
    218 #  endif
    219 #else
    220   void ZLIB_INTERNAL zmemcpy(Bytef* dest, const Bytef* source, uInt len);
    221   int ZLIB_INTERNAL zmemcmp(const Bytef* s1, const Bytef* s2, uInt len);
    222   void ZLIB_INTERNAL zmemzero(Bytef* dest, uInt len);
    223 #endif
    224 
    225 /* Diagnostic functions */
    226 #ifdef ZLIB_DEBUG
    227 #  include <stdio.h>
    228   extern int ZLIB_INTERNAL z_verbose;
    229   extern void ZLIB_INTERNAL z_error(char *m);
    230 #  define Assert(cond,msg) {if(!(cond)) z_error(msg);}
    231 #  define Trace(x) {if (z_verbose>=0) fprintf x ;}
    232 #  define Tracev(x) {if (z_verbose>0) fprintf x ;}
    233 #  define Tracevv(x) {if (z_verbose>1) fprintf x ;}
    234 #  define Tracec(c,x) {if (z_verbose>0 && (c)) fprintf x ;}
    235 #  define Tracecv(c,x) {if (z_verbose>1 && (c)) fprintf x ;}
    236 #else
    237 #  define Assert(cond,msg)
    238 #  define Trace(x)
    239 #  define Tracev(x)
    240 #  define Tracevv(x)
    241 #  define Tracec(c,x)
    242 #  define Tracecv(c,x)
    243 #endif
    244 
    245 #ifndef Z_SOLO
    246   voidpf ZLIB_INTERNAL zcalloc(voidpf opaque, unsigned items,
    247                                unsigned size);
    248   void ZLIB_INTERNAL zcfree(voidpf opaque, voidpf ptr);
    249 #endif
    250 
    251 #define ZALLOC(strm, items, size) \
    252           (*((strm)->zalloc))((strm)->opaque, (items), (size))
    253 #define ZFREE(strm, addr)  (*((strm)->zfree))((strm)->opaque, (voidpf)(addr))
    254 #define TRY_FREE(s, p) {if (p) ZFREE(s, p);}
    255 
    256 /* Reverse the bytes in a 32-bit value */
    257 #define ZSWAP32(q) ((((q) >> 24) & 0xff) + (((q) >> 8) & 0xff00) + \
    258                    (((q) & 0xff00) << 8) + (((q) & 0xff) << 24))
    259 
    260 #endif /* ZUTIL_H */