os/ossrv/compressionlibs/ziplib/test/oldezlib/EZLib/infutil.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
/* infutil.h -- types and macros 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
/* WARNING: this file should *not* be used by applications. It is
sl@0
     7
   part of the implementation of the compression library and is
sl@0
     8
   subject to change. Applications should only use zlib.h.
sl@0
     9
 */
sl@0
    10
sl@0
    11
#ifndef _INFUTIL_H
sl@0
    12
#define _INFUTIL_H
sl@0
    13
sl@0
    14
typedef enum {
sl@0
    15
      TYPE,     /* get type bits (3, including end bit) */
sl@0
    16
      LENS,     /* get lengths for stored */
sl@0
    17
      STORED,   /* processing stored block */
sl@0
    18
      TABLE,    /* get table lengths */
sl@0
    19
      BTREE,    /* get bit lengths tree for a dynamic block */
sl@0
    20
      DTREE,    /* get length, distance trees for a dynamic block */
sl@0
    21
      CODES,    /* processing fixed or dynamic block */
sl@0
    22
      DRY,      /* output remaining window bytes */
sl@0
    23
      DONE,     /* finished last block, done */
sl@0
    24
      BAD}      /* got a data error--stuck here */
sl@0
    25
inflate_block_mode;
sl@0
    26
sl@0
    27
/* inflate blocks semi-private state */
sl@0
    28
struct inflate_blocks_state {
sl@0
    29
sl@0
    30
  /* mode */
sl@0
    31
  inflate_block_mode  mode;     /* current inflate_block mode */
sl@0
    32
sl@0
    33
  /* mode dependent information */
sl@0
    34
  union {
sl@0
    35
    uInt left;          /* if STORED, bytes left to copy */
sl@0
    36
    struct {
sl@0
    37
      uInt table;               /* table lengths (14 bits) */
sl@0
    38
      uInt index;               /* index into blens (or border) */
sl@0
    39
      uIntf *blens;             /* bit lengths of codes */
sl@0
    40
      uInt bb;                  /* bit length tree depth */
sl@0
    41
      inflate_huft *tb;         /* bit length decoding tree */
sl@0
    42
    } trees;            /* if DTREE, decoding info for trees */
sl@0
    43
    struct {
sl@0
    44
      inflate_codes_statef 
sl@0
    45
         *codes;
sl@0
    46
    } decode;           /* if CODES, current state */
sl@0
    47
  } sub;                /* submode */
sl@0
    48
  uInt last;            /* true if this block is the last block */
sl@0
    49
sl@0
    50
  /* mode independent information */
sl@0
    51
  uInt bitk;            /* bits in bit buffer */
sl@0
    52
  uLong bitb;           /* bit buffer */
sl@0
    53
  inflate_huft *hufts;  /* single malloc for tree space */
sl@0
    54
  Bytef *window;        /* sliding window */
sl@0
    55
  Bytef *end;           /* one byte after sliding window */
sl@0
    56
  Bytef *read;          /* window read pointer */
sl@0
    57
  Bytef *write;         /* window write pointer */
sl@0
    58
  check_func checkfn;   /* check function */
sl@0
    59
  uLong check;          /* check on output */
sl@0
    60
sl@0
    61
};
sl@0
    62
sl@0
    63
sl@0
    64
/* defines for inflate input/output */
sl@0
    65
/*   update pointers and return */
sl@0
    66
#define UPDBITS {s->bitb=b;s->bitk=k;}
sl@0
    67
#define UPDIN {z->avail_in=n;z->total_in+=p-z->next_in;z->next_in=p;}
sl@0
    68
#define UPDOUT {s->write=q;}
sl@0
    69
#define UPDATE {UPDBITS UPDIN UPDOUT}
sl@0
    70
#define LEAVE {UPDATE return inflate_flush(s,z,r);}
sl@0
    71
/*   get bytes and bits */
sl@0
    72
#define LOADIN {p=z->next_in;n=z->avail_in;b=s->bitb;k=s->bitk;}
sl@0
    73
#define NEEDBYTE {if(n)r=Z_OK;else LEAVE}
sl@0
    74
#define NEXTBYTE (n--,*p++)
sl@0
    75
#define NEEDBITS(j) {while(k<(j)){NEEDBYTE;b|=((uLong)NEXTBYTE)<<k;k+=8;}}
sl@0
    76
#define DUMPBITS(j) {b>>=(j);k-=(j);}
sl@0
    77
/*   output bytes */
sl@0
    78
#define WAVAIL (uInt)(q<s->read?s->read-q-1:s->end-q)
sl@0
    79
#define LOADOUT {q=s->write;m=(uInt)WAVAIL;}
sl@0
    80
#define WRAP {if(q==s->end&&s->read!=s->window){q=s->window;m=(uInt)WAVAIL;}}
sl@0
    81
#define FLUSH {UPDOUT r=inflate_flush(s,z,r); LOADOUT}
sl@0
    82
#define NEEDOUT {if(m==0){WRAP if(m==0){FLUSH WRAP if(m==0) LEAVE}}r=Z_OK;}
sl@0
    83
#define OUTBYTE(a) {*q++=(Byte)(a);m--;}
sl@0
    84
/*   load local pointers */
sl@0
    85
#define LOAD {LOADIN LOADOUT}
sl@0
    86
sl@0
    87
/* masks for lower bits (size given to avoid silly warnings with Visual C++) */
sl@0
    88
extern const uInt inflate_mask[17];
sl@0
    89
sl@0
    90
/* copy as much as possible from the sliding window to the output area */
sl@0
    91
extern int inflate_flush OF((
sl@0
    92
    inflate_blocks_statef *,
sl@0
    93
    z_streamp ,
sl@0
    94
    int));
sl@0
    95
sl@0
    96
struct internal_state      {int dummy;}; /* for buggy compilers */
sl@0
    97
sl@0
    98
#endif