os/ossrv/compressionlibs/ziplib/src/zlib/inflate.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
/* inflate.h -- internal inflate state definition
sl@0
     2
 * Copyright (C) 1995-2004 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
/* define NO_GZIP when compiling if you want to disable gzip header and
sl@0
    12
   trailer decoding by inflate().  NO_GZIP would be used to avoid linking in
sl@0
    13
   the crc code when it is not needed.  For shared libraries, gzip decoding
sl@0
    14
   should be left enabled. */
sl@0
    15
#ifndef NO_GZIP
sl@0
    16
#  define GUNZIP
sl@0
    17
#endif
sl@0
    18
sl@0
    19
/* Possible inflate modes between inflate() calls */
sl@0
    20
typedef enum {
sl@0
    21
    HEAD,       /* i: waiting for magic header */
sl@0
    22
    FLAGS,      /* i: waiting for method and flags (gzip) */
sl@0
    23
    TIME,       /* i: waiting for modification time (gzip) */
sl@0
    24
    OS,         /* i: waiting for extra flags and operating system (gzip) */
sl@0
    25
    EXLEN,      /* i: waiting for extra length (gzip) */
sl@0
    26
    EXTRA,      /* i: waiting for extra bytes (gzip) */
sl@0
    27
    NAME,       /* i: waiting for end of file name (gzip) */
sl@0
    28
    COMMENT,    /* i: waiting for end of comment (gzip) */
sl@0
    29
    HCRC,       /* i: waiting for header crc (gzip) */
sl@0
    30
    DICTID,     /* i: waiting for dictionary check value */
sl@0
    31
    DICT,       /* waiting for inflateSetDictionary() call */
sl@0
    32
        TYPE,       /* i: waiting for type bits, including last-flag bit */
sl@0
    33
        TYPEDO,     /* i: same, but skip check to exit inflate on new block */
sl@0
    34
        STORED,     /* i: waiting for stored size (length and complement) */
sl@0
    35
        COPY,       /* i/o: waiting for input or output to copy stored block */
sl@0
    36
        TABLE,      /* i: waiting for dynamic block table lengths */
sl@0
    37
        LENLENS,    /* i: waiting for code length code lengths */
sl@0
    38
        CODELENS,   /* i: waiting for length/lit and distance code lengths */
sl@0
    39
            LEN,        /* i: waiting for length/lit code */
sl@0
    40
            LENEXT,     /* i: waiting for length extra bits */
sl@0
    41
            DIST,       /* i: waiting for distance code */
sl@0
    42
            DISTEXT,    /* i: waiting for distance extra bits */
sl@0
    43
            MATCH,      /* o: waiting for output space to copy string */
sl@0
    44
            LIT,        /* o: waiting for output space to write literal */
sl@0
    45
    CHECK,      /* i: waiting for 32-bit check value */
sl@0
    46
    LENGTH,     /* i: waiting for 32-bit length (gzip) */
sl@0
    47
    DONE,       /* finished check, done -- remain here until reset */
sl@0
    48
    BAD,        /* got a data error -- remain here until reset */
sl@0
    49
    MEM,        /* got an inflate() memory error -- remain here until reset */
sl@0
    50
    SYNC        /* looking for synchronization bytes to restart inflate() */
sl@0
    51
} inflate_mode;
sl@0
    52
sl@0
    53
/*
sl@0
    54
    State transitions between above modes -
sl@0
    55
sl@0
    56
    (most modes can go to the BAD or MEM mode -- not shown for clarity)
sl@0
    57
sl@0
    58
    Process header:
sl@0
    59
        HEAD -> (gzip) or (zlib)
sl@0
    60
        (gzip) -> FLAGS -> TIME -> OS -> EXLEN -> EXTRA -> NAME
sl@0
    61
        NAME -> COMMENT -> HCRC -> TYPE
sl@0
    62
        (zlib) -> DICTID or TYPE
sl@0
    63
        DICTID -> DICT -> TYPE
sl@0
    64
    Read deflate blocks:
sl@0
    65
            TYPE -> STORED or TABLE or LEN or CHECK
sl@0
    66
            STORED -> COPY -> TYPE
sl@0
    67
            TABLE -> LENLENS -> CODELENS -> LEN
sl@0
    68
    Read deflate codes:
sl@0
    69
                LEN -> LENEXT or LIT or TYPE
sl@0
    70
                LENEXT -> DIST -> DISTEXT -> MATCH -> LEN
sl@0
    71
                LIT -> LEN
sl@0
    72
    Process trailer:
sl@0
    73
        CHECK -> LENGTH -> DONE
sl@0
    74
 */
sl@0
    75
sl@0
    76
/* state maintained between inflate() calls.  Approximately 7K bytes. */
sl@0
    77
struct inflate_state {
sl@0
    78
    inflate_mode mode;          /* current inflate mode */
sl@0
    79
    int last;                   /* true if processing last block */
sl@0
    80
    int wrap;                   /* bit 0 true for zlib, bit 1 true for gzip */
sl@0
    81
    int havedict;               /* true if dictionary provided */
sl@0
    82
    int flags;                  /* gzip header method and flags (0 if zlib) */
sl@0
    83
    unsigned dmax;              /* zlib header max distance (INFLATE_STRICT) */
sl@0
    84
    unsigned long check;        /* protected copy of check value */
sl@0
    85
    unsigned long total;        /* protected copy of output count */
sl@0
    86
    gz_headerp head;            /* where to save gzip header information */
sl@0
    87
        /* sliding window */
sl@0
    88
    unsigned wbits;             /* log base 2 of requested window size */
sl@0
    89
    unsigned wsize;             /* window size or zero if not using window */
sl@0
    90
    unsigned whave;             /* valid bytes in the window */
sl@0
    91
    unsigned write;             /* window write index */
sl@0
    92
    unsigned char FAR *window;  /* allocated sliding window, if needed */
sl@0
    93
        /* bit accumulator */
sl@0
    94
    unsigned long hold;         /* input bit accumulator */
sl@0
    95
    unsigned bits;              /* number of bits in "in" */
sl@0
    96
        /* for string and stored block copying */
sl@0
    97
    unsigned length;            /* literal or length of data to copy */
sl@0
    98
    unsigned offset;            /* distance back to copy string from */
sl@0
    99
        /* for table and code decoding */
sl@0
   100
    unsigned extra;             /* extra bits needed */
sl@0
   101
        /* fixed and dynamic code tables */
sl@0
   102
    code const FAR *lencode;    /* starting table for length/literal codes */
sl@0
   103
    code const FAR *distcode;   /* starting table for distance codes */
sl@0
   104
    unsigned lenbits;           /* index bits for lencode */
sl@0
   105
    unsigned distbits;          /* index bits for distcode */
sl@0
   106
        /* dynamic table building */
sl@0
   107
    unsigned ncode;             /* number of code length code lengths */
sl@0
   108
    unsigned nlen;              /* number of length code lengths */
sl@0
   109
    unsigned ndist;             /* number of distance code lengths */
sl@0
   110
    unsigned have;              /* number of code lengths in lens[] */
sl@0
   111
    code FAR *next;             /* next available space in codes[] */
sl@0
   112
    unsigned short lens[320];   /* temporary storage for code lengths */
sl@0
   113
    unsigned short work[288];   /* work area for code table building */
sl@0
   114
    code codes[ENOUGH];         /* space for code tables */
sl@0
   115
};