os/ossrv/compressionlibs/ziplib/test/oldezlib/Zlib/infutil.c
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
/* inflate_util.c -- data and routines common to blocks and codes
sl@0
     2
 * Copyright (C) 1995-1998 Mark Adler
sl@0
     3
 * For conditions of distribution and use, see copyright notice in zlib.h 
sl@0
     4
 */
sl@0
     5
sl@0
     6
#include "zutil.h"
sl@0
     7
#include "infblock.h"
sl@0
     8
#include "inftrees.h"
sl@0
     9
#include "infcodes.h"
sl@0
    10
#include "infutil.h"
sl@0
    11
sl@0
    12
struct inflate_codes_state {int dummy;}; /* for buggy compilers */
sl@0
    13
sl@0
    14
/* And'ing with mask[n] masks the lower n bits */
sl@0
    15
uInt inflate_mask[17] = {
sl@0
    16
    0x0000,
sl@0
    17
    0x0001, 0x0003, 0x0007, 0x000f, 0x001f, 0x003f, 0x007f, 0x00ff,
sl@0
    18
    0x01ff, 0x03ff, 0x07ff, 0x0fff, 0x1fff, 0x3fff, 0x7fff, 0xffff
sl@0
    19
};
sl@0
    20
sl@0
    21
sl@0
    22
/* copy as much as possible from the sliding window to the output area */
sl@0
    23
int inflate_flush(inflate_blocks_statef *s, z_streamp z, int r)
sl@0
    24
{
sl@0
    25
  uInt n;
sl@0
    26
  Bytef *p;
sl@0
    27
  Bytef *q;
sl@0
    28
sl@0
    29
  /* local copies of source and destination pointers */
sl@0
    30
  p = z->next_out;
sl@0
    31
  q = s->read;
sl@0
    32
sl@0
    33
  /* compute number of bytes to copy as far as end of window */
sl@0
    34
  n = (uInt)((q <= s->write ? s->write : s->end) - q);
sl@0
    35
  if (n > z->avail_out) n = z->avail_out;
sl@0
    36
  if (n && r == Z_BUF_ERROR) r = Z_OK;
sl@0
    37
sl@0
    38
  /* update counters */
sl@0
    39
  z->avail_out -= n;
sl@0
    40
  z->total_out += n;
sl@0
    41
sl@0
    42
  /* update check information */
sl@0
    43
  if (s->checkfn != Z_NULL)
sl@0
    44
    z->adler = s->check = (*s->checkfn)(s->check, q, n);
sl@0
    45
sl@0
    46
  /* copy as far as end of window */
sl@0
    47
  zmemcpy(p, q, n);
sl@0
    48
  p += n;
sl@0
    49
  q += n;
sl@0
    50
sl@0
    51
  /* see if more to copy at beginning of window */
sl@0
    52
  if (q == s->end)
sl@0
    53
  {
sl@0
    54
    /* wrap pointers */
sl@0
    55
    q = s->window;
sl@0
    56
    if (s->write == s->end)
sl@0
    57
      s->write = s->window;
sl@0
    58
sl@0
    59
    /* compute bytes to copy */
sl@0
    60
    n = (uInt)(s->write - q);
sl@0
    61
    if (n > z->avail_out) n = z->avail_out;
sl@0
    62
    if (n && r == Z_BUF_ERROR) r = Z_OK;
sl@0
    63
sl@0
    64
    /* update counters */
sl@0
    65
    z->avail_out -= n;
sl@0
    66
    z->total_out += n;
sl@0
    67
sl@0
    68
    /* update check information */
sl@0
    69
    if (s->checkfn != Z_NULL)
sl@0
    70
      z->adler = s->check = (*s->checkfn)(s->check, q, n);
sl@0
    71
sl@0
    72
    /* copy */
sl@0
    73
    zmemcpy(p, q, n);
sl@0
    74
    p += n;
sl@0
    75
    q += n;
sl@0
    76
  }
sl@0
    77
sl@0
    78
  /* update pointers */
sl@0
    79
  z->next_out = p;
sl@0
    80
  s->read = q;
sl@0
    81
sl@0
    82
  /* done */
sl@0
    83
  return r;
sl@0
    84
}