zutil.c
上传用户:lyxiangda
上传日期:2007-01-12
资源大小:3042k
文件大小:5k
源码类别:

CA认证

开发平台:

WINDOWS

  1. /* zutil.c -- target dependent utility functions for the compression library
  2.  * Copyright (C) 1995-1996 Jean-loup Gailly.
  3.  * For conditions of distribution and use, see copyright notice in zlib.h 
  4.  */
  5. /* This file was modified since it was taken from the zlib distribution */
  6. /* $Id: zutil.c,v 1.1 2000/03/31 20:13:18 relyea%netscape.com Exp $ */
  7. #include <stdio.h>
  8. #include "zutil.h"
  9. #ifdef MOZILLA_CLIENT
  10. #include "prtypes.h"
  11. #include "prlog.h"
  12. #endif
  13. struct internal_state      {int dummy;}; /* for buggy compilers */
  14. #ifndef STDC
  15. extern void exit OF((int));
  16. #endif
  17. const char *z_errmsg[10] = {
  18. "need dictionary",     /* Z_NEED_DICT       2  */
  19. "stream end",          /* Z_STREAM_END      1  */
  20. "",                    /* Z_OK              0  */
  21. "file error",          /* Z_ERRNO         (-1) */
  22. "stream error",        /* Z_STREAM_ERROR  (-2) */
  23. "data error",          /* Z_DATA_ERROR    (-3) */
  24. "insufficient memory", /* Z_MEM_ERROR     (-4) */
  25. "buffer error",        /* Z_BUF_ERROR     (-5) */
  26. "incompatible version",/* Z_VERSION_ERROR (-6) */
  27. ""};
  28. PR_PUBLIC_API(const char *) zlibVersion()
  29. {
  30.     return ZLIB_VERSION;
  31. }
  32. #if defined(DEBUG) && defined(MOZILLA_CLIENT)
  33. void z_error (m)
  34.     char *m;
  35. {
  36.     PR_ASSERT(0);   
  37. }
  38. #endif
  39. #ifndef HAVE_MEMCPY
  40. void zmemcpy(dest, source, len)
  41.     Bytef* dest;
  42.     Bytef* source;
  43.     uInt  len;
  44. {
  45.     if (len == 0) return;
  46.     do {
  47.         *dest++ = *source++; /* ??? to be unrolled */
  48.     } while (--len != 0);
  49. }
  50. int zmemcmp(s1, s2, len)
  51.     Bytef* s1;
  52.     Bytef* s2;
  53.     uInt  len;
  54. {
  55.     uInt j;
  56.     for (j = 0; j < len; j++) {
  57.         if (s1[j] != s2[j]) return 2*(s1[j] > s2[j])-1;
  58.     }
  59.     return 0;
  60. }
  61. void zmemzero(dest, len)
  62.     Bytef* dest;
  63.     uInt  len;
  64. {
  65.     if (len == 0) return;
  66.     do {
  67.         *dest++ = 0;  /* ??? to be unrolled */
  68.     } while (--len != 0);
  69. }
  70. #endif
  71. #ifdef __TURBOC__
  72. #if (defined( __BORLANDC__) || !defined(SMALL_MEDIUM)) && !defined(__32BIT__)
  73. /* Small and medium model in Turbo C are for now limited to near allocation
  74.  * with reduced MAX_WBITS and MAX_MEM_LEVEL
  75.  */
  76. #  define MY_ZCALLOC
  77. /* Turbo C malloc() does not allow dynamic allocation of 64K bytes
  78.  * and farmalloc(64K) returns a pointer with an offset of 8, so we
  79.  * must fix the pointer. Warning: the pointer must be put back to its
  80.  * original form in order to free it, use zcfree().
  81.  */
  82. #define MAX_PTR 10
  83. /* 10*64K = 640K */
  84. local int next_ptr = 0;
  85. typedef struct ptr_table_s {
  86.     voidpf org_ptr;
  87.     voidpf new_ptr;
  88. } ptr_table;
  89. local ptr_table table[MAX_PTR];
  90. /* This table is used to remember the original form of pointers
  91.  * to large buffers (64K). Such pointers are normalized with a zero offset.
  92.  * Since MSDOS is not a preemptive multitasking OS, this table is not
  93.  * protected from concurrent access. This hack doesn't work anyway on
  94.  * a protected system like OS/2. Use Microsoft C instead.
  95.  */
  96. voidpf zcalloc (voidpf opaque, unsigned items, unsigned size)
  97. {
  98.     voidpf buf = opaque; /* just to make some compilers happy */
  99.     ulg bsize = (ulg)items*size;
  100.     /* If we allocate less than 65520 bytes, we assume that farmalloc
  101.      * will return a usable pointer which doesn't have to be normalized.
  102.      */
  103.     if (bsize < 65520L) {
  104.         buf = farmalloc(bsize);
  105.         if (*(ush*)&buf != 0) return buf;
  106.     } else {
  107.         buf = farmalloc(bsize + 16L);
  108.     }
  109.     if (buf == NULL || next_ptr >= MAX_PTR) return NULL;
  110.     table[next_ptr].org_ptr = buf;
  111.     /* Normalize the pointer to seg:0 */
  112.     *((ush*)&buf+1) += ((ush)((uch*)buf-0) + 15) >> 4;
  113.     *(ush*)&buf = 0;
  114.     table[next_ptr++].new_ptr = buf;
  115.     return buf;
  116. }
  117. void  zcfree (voidpf opaque, voidpf ptr)
  118. {
  119.     int n;
  120.     if (*(ush*)&ptr != 0) { /* object < 64K */
  121.         farfree(ptr);
  122.         return;
  123.     }
  124.     /* Find the original pointer */
  125.     for (n = 0; n < next_ptr; n++) {
  126.         if (ptr != table[n].new_ptr) continue;
  127.         farfree(table[n].org_ptr);
  128.         while (++n < next_ptr) {
  129.             table[n-1] = table[n];
  130.         }
  131.         next_ptr--;
  132.         return;
  133.     }
  134.     ptr = opaque; /* just to make some compilers happy */
  135.     Assert(0, "zcfree: ptr not found");
  136. }
  137. #endif
  138. #endif /* __TURBOC__ */
  139. #if defined(M_I86) && !defined(__32BIT__)
  140. /* Microsoft C in 16-bit mode */
  141. #  define MY_ZCALLOC
  142. #if (!defined(_MSC_VER) || (_MSC_VER < 600))
  143. #  define _halloc  halloc
  144. #  define _hfree   hfree
  145. #endif
  146. voidpf zcalloc (voidpf opaque, unsigned items, unsigned size)
  147. {
  148.     if (opaque) opaque = 0; /* to make compiler happy */
  149.     return _halloc((long)items, size);
  150. }
  151. void  zcfree (voidpf opaque, voidpf ptr)
  152. {
  153.     if (opaque) opaque = 0; /* to make compiler happy */
  154.     _hfree(ptr);
  155. }
  156. #endif /* MSC */
  157. #ifndef MY_ZCALLOC /* Any system without a special alloc function */
  158. #ifndef STDC
  159. extern voidp  calloc OF((uInt items, uInt size));
  160. extern void   free   OF((voidpf ptr));
  161. #endif
  162. voidpf zcalloc (opaque, items, size)
  163.     voidpf opaque;
  164.     unsigned items;
  165.     unsigned size;
  166. {
  167.     if (opaque) items += size - size; /* make compiler happy */
  168.     return (voidpf)calloc(items, size);
  169. }
  170. void  zcfree (opaque, ptr)
  171.     voidpf opaque;
  172.     voidpf ptr;
  173. {
  174.     free(ptr);
  175.     if (opaque) return; /* make compiler happy */
  176. }
  177. #endif /* MY_ZCALLOC */