os/ossrv/compressionlibs/ziplib/test/oldezlib/EZLib/infcodes.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
/* infcodes.c -- process literals and length/distance pairs
sl@0
     2
 * Copyright (C) 1995-2002 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 "inftrees.h"
sl@0
     8
#include "infblock.h"
sl@0
     9
#include "infcodes.h"
sl@0
    10
#include "infutil.h"
sl@0
    11
#include "inffast.h"
sl@0
    12
sl@0
    13
/* simplify the use of the inflate_huft type with some defines */
sl@0
    14
#define exop word.what.Exop
sl@0
    15
#define bits word.what.Bits
sl@0
    16
sl@0
    17
typedef enum {        /* waiting for "i:"=input, "o:"=output, "x:"=nothing */
sl@0
    18
      START,    /* x: set up for LEN */
sl@0
    19
      LEN,      /* i: get length/literal/eob next */
sl@0
    20
      LENEXT,   /* i: getting length extra (have base) */
sl@0
    21
      DIST,     /* i: get distance next */
sl@0
    22
      DISTEXT,  /* i: getting distance extra */
sl@0
    23
      COPY,     /* o: copying bytes in window, waiting for space */
sl@0
    24
      LIT,      /* o: got literal, waiting for output space */
sl@0
    25
      WASH,     /* o: got eob, possibly still output waiting */
sl@0
    26
      END,      /* x: got eob and all data flushed */
sl@0
    27
      BADCODE}  /* x: got error */
sl@0
    28
inflate_codes_mode;
sl@0
    29
sl@0
    30
/* inflate codes private state */
sl@0
    31
struct inflate_codes_state {
sl@0
    32
sl@0
    33
  /* mode */
sl@0
    34
  inflate_codes_mode mode;      /* current inflate_codes mode */
sl@0
    35
sl@0
    36
  /* mode dependent information */
sl@0
    37
  uInt len;
sl@0
    38
  union {
sl@0
    39
    struct {
sl@0
    40
      const inflate_huft *tree;       /* pointer into tree */
sl@0
    41
      uInt need;                /* bits needed */
sl@0
    42
    } code;             /* if LEN or DIST, where in tree */
sl@0
    43
    uInt lit;           /* if LIT, literal */
sl@0
    44
    struct {
sl@0
    45
      uInt get;                 /* bits to get for extra */
sl@0
    46
      uInt dist;                /* distance back to copy from */
sl@0
    47
    } copy;             /* if EXT or COPY, where and how much */
sl@0
    48
  } sub;                /* submode */
sl@0
    49
sl@0
    50
  /* mode independent information */
sl@0
    51
  Byte lbits;           /* ltree bits decoded per branch */
sl@0
    52
  Byte dbits;           /* dtree bits decoder per branch */
sl@0
    53
  const inflate_huft *ltree;          /* literal/length/eob tree */
sl@0
    54
  const inflate_huft *dtree;          /* distance tree */
sl@0
    55
sl@0
    56
};
sl@0
    57
sl@0
    58
sl@0
    59
inflate_codes_statef *inflate_codes_new(
sl@0
    60
uInt bl, uInt bd,
sl@0
    61
const inflate_huft *tl,
sl@0
    62
const inflate_huft *td, /* need separate declaration for Borland C++ */
sl@0
    63
z_streamp z)
sl@0
    64
{
sl@0
    65
  inflate_codes_statef *c;
sl@0
    66
sl@0
    67
  if ((c = (inflate_codes_statef *)
sl@0
    68
       ZALLOC(z,1,sizeof(struct inflate_codes_state))) != Z_NULL)
sl@0
    69
  {
sl@0
    70
    c->mode = START;
sl@0
    71
    c->lbits = (Byte)bl;
sl@0
    72
    c->dbits = (Byte)bd;
sl@0
    73
    c->ltree = tl;
sl@0
    74
    c->dtree = td;
sl@0
    75
    Tracev((stderr, "inflate:       codes new\n"));
sl@0
    76
  }
sl@0
    77
  return c;
sl@0
    78
}
sl@0
    79
sl@0
    80
sl@0
    81
int inflate_codes(
sl@0
    82
inflate_blocks_statef *s,
sl@0
    83
z_streamp z,
sl@0
    84
int r)
sl@0
    85
{
sl@0
    86
  uInt j;               /* temporary storage */
sl@0
    87
  const inflate_huft *t;      /* temporary pointer */
sl@0
    88
  uInt e;               /* extra bits or operation */
sl@0
    89
  uLong b;              /* bit buffer */
sl@0
    90
  uInt k;               /* bits in bit buffer */
sl@0
    91
  Bytef *p;             /* input data pointer */
sl@0
    92
  uInt n;               /* bytes available there */
sl@0
    93
  Bytef *q;             /* output window write pointer */
sl@0
    94
  uInt m;               /* bytes to end of window or read pointer */
sl@0
    95
  Bytef *f;             /* pointer to copy strings from */
sl@0
    96
  inflate_codes_statef *c = s->sub.decode.codes;  /* codes state */
sl@0
    97
sl@0
    98
  /* copy input/output information to locals (UPDATE macro restores) */
sl@0
    99
  LOAD
sl@0
   100
sl@0
   101
  /* process input and output based on current state */
sl@0
   102
  for (;;) switch (c->mode)
sl@0
   103
  {             /* waiting for "i:"=input, "o:"=output, "x:"=nothing */
sl@0
   104
    case START:         /* x: set up for LEN */
sl@0
   105
#ifndef SLOW
sl@0
   106
      if (m >= 258 && n >= 10)
sl@0
   107
      {
sl@0
   108
        UPDATE
sl@0
   109
        r = inflate_fast(c->lbits, c->dbits, c->ltree, c->dtree, s, z);
sl@0
   110
        LOAD
sl@0
   111
        if (r != Z_OK)
sl@0
   112
        {
sl@0
   113
          c->mode = r == Z_STREAM_END ? WASH : BADCODE;
sl@0
   114
          break;
sl@0
   115
        }
sl@0
   116
      }
sl@0
   117
#endif /* !SLOW */
sl@0
   118
      c->sub.code.need = c->lbits;
sl@0
   119
      c->sub.code.tree = c->ltree;
sl@0
   120
      c->mode = LEN;
sl@0
   121
    case LEN:           /* i: get length/literal/eob next */
sl@0
   122
      j = c->sub.code.need;
sl@0
   123
      NEEDBITS(j)
sl@0
   124
      t = c->sub.code.tree + ((uInt)b & inflate_mask[j]);
sl@0
   125
      DUMPBITS(t->bits)
sl@0
   126
      e = (uInt)(t->exop);
sl@0
   127
      if (e == 0)               /* literal */
sl@0
   128
      {
sl@0
   129
        c->sub.lit = t->base;
sl@0
   130
        Tracevv((stderr, t->base >= 0x20 && t->base < 0x7f ?
sl@0
   131
                 "inflate:         literal '%c'\n" :
sl@0
   132
                 "inflate:         literal 0x%02x\n", t->base));
sl@0
   133
        c->mode = LIT;
sl@0
   134
        break;
sl@0
   135
      }
sl@0
   136
      if (e & 16)               /* length */
sl@0
   137
      {
sl@0
   138
        c->sub.copy.get = e & 15;
sl@0
   139
        c->len = t->base;
sl@0
   140
        c->mode = LENEXT;
sl@0
   141
        break;
sl@0
   142
      }
sl@0
   143
      if ((e & 64) == 0)        /* next table */
sl@0
   144
      {
sl@0
   145
        c->sub.code.need = e;
sl@0
   146
        c->sub.code.tree = t + t->base;
sl@0
   147
        break;
sl@0
   148
      }
sl@0
   149
      if (e & 32)               /* end of block */
sl@0
   150
      {
sl@0
   151
        Tracevv((stderr, "inflate:         end of block\n"));
sl@0
   152
        c->mode = WASH;
sl@0
   153
        break;
sl@0
   154
      }
sl@0
   155
      c->mode = BADCODE;        /* invalid code */
sl@0
   156
      z->msg = (char*)"invalid literal/length code";
sl@0
   157
      r = Z_DATA_ERROR;
sl@0
   158
      LEAVE
sl@0
   159
    case LENEXT:        /* i: getting length extra (have base) */
sl@0
   160
      j = c->sub.copy.get;
sl@0
   161
      NEEDBITS(j)
sl@0
   162
      c->len += (uInt)b & inflate_mask[j];
sl@0
   163
      DUMPBITS(j)
sl@0
   164
      c->sub.code.need = c->dbits;
sl@0
   165
      c->sub.code.tree = c->dtree;
sl@0
   166
      Tracevv((stderr, "inflate:         length %u\n", c->len));
sl@0
   167
      c->mode = DIST;
sl@0
   168
    case DIST:          /* i: get distance next */
sl@0
   169
      j = c->sub.code.need;
sl@0
   170
      NEEDBITS(j)
sl@0
   171
      t = c->sub.code.tree + ((uInt)b & inflate_mask[j]);
sl@0
   172
      DUMPBITS(t->bits)
sl@0
   173
      e = (uInt)(t->exop);
sl@0
   174
      if (e & 16)               /* distance */
sl@0
   175
      {
sl@0
   176
        c->sub.copy.get = e & 15;
sl@0
   177
        c->sub.copy.dist = t->base;
sl@0
   178
        c->mode = DISTEXT;
sl@0
   179
        break;
sl@0
   180
      }
sl@0
   181
      if ((e & 64) == 0)        /* next table */
sl@0
   182
      {
sl@0
   183
        c->sub.code.need = e;
sl@0
   184
        c->sub.code.tree = t + t->base;
sl@0
   185
        break;
sl@0
   186
      }
sl@0
   187
      c->mode = BADCODE;        /* invalid code */
sl@0
   188
      z->msg = (char*)"invalid distance code";
sl@0
   189
      r = Z_DATA_ERROR;
sl@0
   190
      LEAVE
sl@0
   191
    case DISTEXT:       /* i: getting distance extra */
sl@0
   192
      j = c->sub.copy.get;
sl@0
   193
      NEEDBITS(j)
sl@0
   194
      c->sub.copy.dist += (uInt)b & inflate_mask[j];
sl@0
   195
      DUMPBITS(j)
sl@0
   196
      Tracevv((stderr, "inflate:         distance %u\n", c->sub.copy.dist));
sl@0
   197
      c->mode = COPY;
sl@0
   198
    case COPY:          /* o: copying bytes in window, waiting for space */
sl@0
   199
      f = q - c->sub.copy.dist;
sl@0
   200
      while (f < s->window)             /* modulo window size-"while" instead */
sl@0
   201
        f += s->end - s->window;        /* of "if" handles invalid distances */
sl@0
   202
      while (c->len)
sl@0
   203
      {
sl@0
   204
        NEEDOUT
sl@0
   205
        OUTBYTE(*f++)
sl@0
   206
        if (f == s->end)
sl@0
   207
          f = s->window;
sl@0
   208
        c->len--;
sl@0
   209
      }
sl@0
   210
      c->mode = START;
sl@0
   211
      break;
sl@0
   212
    case LIT:           /* o: got literal, waiting for output space */
sl@0
   213
      NEEDOUT
sl@0
   214
      OUTBYTE(c->sub.lit)
sl@0
   215
      c->mode = START;
sl@0
   216
      break;
sl@0
   217
    case WASH:          /* o: got eob, possibly more output */
sl@0
   218
      if (k > 7)        /* return unused byte, if any */
sl@0
   219
      {
sl@0
   220
        Assert(k < 16, "inflate_codes grabbed too many bytes")
sl@0
   221
        k -= 8;
sl@0
   222
        n++;
sl@0
   223
        p--;            /* can always return one */
sl@0
   224
      }
sl@0
   225
      FLUSH
sl@0
   226
      if (s->read != s->write)
sl@0
   227
        LEAVE
sl@0
   228
      c->mode = END;
sl@0
   229
    case END:
sl@0
   230
      r = Z_STREAM_END;
sl@0
   231
      LEAVE
sl@0
   232
    case BADCODE:       /* x: got error */
sl@0
   233
      r = Z_DATA_ERROR;
sl@0
   234
      LEAVE
sl@0
   235
    default:
sl@0
   236
      r = Z_STREAM_ERROR;
sl@0
   237
      LEAVE
sl@0
   238
  }
sl@0
   239
#ifdef NEED_DUMMY_RETURN
sl@0
   240
  return Z_STREAM_ERROR;  /* Some dumb compilers complain without this */
sl@0
   241
#endif
sl@0
   242
}
sl@0
   243
sl@0
   244
sl@0
   245
void inflate_codes_free(
sl@0
   246
inflate_codes_statef *c,
sl@0
   247
z_streamp z)
sl@0
   248
{
sl@0
   249
  ZFREE(z, c);
sl@0
   250
  Tracev((stderr, "inflate:       codes free\n"));
sl@0
   251
}