Path: blob/main/epkcompiler/src/com/jcraft/jzlib/StaticTree.java
8645 views
/* -*-mode:java; c-basic-offset:2; -*- */1/*2Copyright (c) 2000,2001,2002,2003 ymnk, JCraft,Inc. All rights reserved.34Redistribution and use in source and binary forms, with or without5modification, are permitted provided that the following conditions are met:671. Redistributions of source code must retain the above copyright notice,8this list of conditions and the following disclaimer.9102. Redistributions in binary form must reproduce the above copyright11notice, this list of conditions and the following disclaimer in12the documentation and/or other materials provided with the distribution.13143. The names of the authors may not be used to endorse or promote products15derived from this software without specific prior written permission.1617THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES,18INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND19FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL JCRAFT,20INC. OR ANY CONTRIBUTORS TO THIS SOFTWARE BE LIABLE FOR ANY DIRECT, INDIRECT,21INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT22LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,23OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF24LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING25NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,26EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.27*/28/*29* This program is based on zlib-1.1.3, so all credit should go authors30* Jean-loup Gailly([email protected]) and Mark Adler([email protected])31* and contributors of zlib.32*/3334package com.jcraft.jzlib;3536final class StaticTree{37static final private int MAX_BITS=15;3839static final private int BL_CODES=19;40static final private int D_CODES=30;41static final private int LITERALS=256;42static final private int LENGTH_CODES=29;43static final private int L_CODES=(LITERALS+1+LENGTH_CODES);4445// Bit length codes must not exceed MAX_BL_BITS bits46static final int MAX_BL_BITS=7;4748static final short[] static_ltree = {4912, 8, 140, 8, 76, 8, 204, 8, 44, 8,50172, 8, 108, 8, 236, 8, 28, 8, 156, 8,5192, 8, 220, 8, 60, 8, 188, 8, 124, 8,52252, 8, 2, 8, 130, 8, 66, 8, 194, 8,5334, 8, 162, 8, 98, 8, 226, 8, 18, 8,54146, 8, 82, 8, 210, 8, 50, 8, 178, 8,55114, 8, 242, 8, 10, 8, 138, 8, 74, 8,56202, 8, 42, 8, 170, 8, 106, 8, 234, 8,5726, 8, 154, 8, 90, 8, 218, 8, 58, 8,58186, 8, 122, 8, 250, 8, 6, 8, 134, 8,5970, 8, 198, 8, 38, 8, 166, 8, 102, 8,60230, 8, 22, 8, 150, 8, 86, 8, 214, 8,6154, 8, 182, 8, 118, 8, 246, 8, 14, 8,62142, 8, 78, 8, 206, 8, 46, 8, 174, 8,63110, 8, 238, 8, 30, 8, 158, 8, 94, 8,64222, 8, 62, 8, 190, 8, 126, 8, 254, 8,651, 8, 129, 8, 65, 8, 193, 8, 33, 8,66161, 8, 97, 8, 225, 8, 17, 8, 145, 8,6781, 8, 209, 8, 49, 8, 177, 8, 113, 8,68241, 8, 9, 8, 137, 8, 73, 8, 201, 8,6941, 8, 169, 8, 105, 8, 233, 8, 25, 8,70153, 8, 89, 8, 217, 8, 57, 8, 185, 8,71121, 8, 249, 8, 5, 8, 133, 8, 69, 8,72197, 8, 37, 8, 165, 8, 101, 8, 229, 8,7321, 8, 149, 8, 85, 8, 213, 8, 53, 8,74181, 8, 117, 8, 245, 8, 13, 8, 141, 8,7577, 8, 205, 8, 45, 8, 173, 8, 109, 8,76237, 8, 29, 8, 157, 8, 93, 8, 221, 8,7761, 8, 189, 8, 125, 8, 253, 8, 19, 9,78275, 9, 147, 9, 403, 9, 83, 9, 339, 9,79211, 9, 467, 9, 51, 9, 307, 9, 179, 9,80435, 9, 115, 9, 371, 9, 243, 9, 499, 9,8111, 9, 267, 9, 139, 9, 395, 9, 75, 9,82331, 9, 203, 9, 459, 9, 43, 9, 299, 9,83171, 9, 427, 9, 107, 9, 363, 9, 235, 9,84491, 9, 27, 9, 283, 9, 155, 9, 411, 9,8591, 9, 347, 9, 219, 9, 475, 9, 59, 9,86315, 9, 187, 9, 443, 9, 123, 9, 379, 9,87251, 9, 507, 9, 7, 9, 263, 9, 135, 9,88391, 9, 71, 9, 327, 9, 199, 9, 455, 9,8939, 9, 295, 9, 167, 9, 423, 9, 103, 9,90359, 9, 231, 9, 487, 9, 23, 9, 279, 9,91151, 9, 407, 9, 87, 9, 343, 9, 215, 9,92471, 9, 55, 9, 311, 9, 183, 9, 439, 9,93119, 9, 375, 9, 247, 9, 503, 9, 15, 9,94271, 9, 143, 9, 399, 9, 79, 9, 335, 9,95207, 9, 463, 9, 47, 9, 303, 9, 175, 9,96431, 9, 111, 9, 367, 9, 239, 9, 495, 9,9731, 9, 287, 9, 159, 9, 415, 9, 95, 9,98351, 9, 223, 9, 479, 9, 63, 9, 319, 9,99191, 9, 447, 9, 127, 9, 383, 9, 255, 9,100511, 9, 0, 7, 64, 7, 32, 7, 96, 7,10116, 7, 80, 7, 48, 7, 112, 7, 8, 7,10272, 7, 40, 7, 104, 7, 24, 7, 88, 7,10356, 7, 120, 7, 4, 7, 68, 7, 36, 7,104100, 7, 20, 7, 84, 7, 52, 7, 116, 7,1053, 8, 131, 8, 67, 8, 195, 8, 35, 8,106163, 8, 99, 8, 227, 8107};108109static final short[] static_dtree = {1100, 5, 16, 5, 8, 5, 24, 5, 4, 5,11120, 5, 12, 5, 28, 5, 2, 5, 18, 5,11210, 5, 26, 5, 6, 5, 22, 5, 14, 5,11330, 5, 1, 5, 17, 5, 9, 5, 25, 5,1145, 5, 21, 5, 13, 5, 29, 5, 3, 5,11519, 5, 11, 5, 27, 5, 7, 5, 23, 5116};117118static StaticTree static_l_desc =119new StaticTree(static_ltree, Tree.extra_lbits,120LITERALS+1, L_CODES, MAX_BITS);121122static StaticTree static_d_desc =123new StaticTree(static_dtree, Tree.extra_dbits,1240, D_CODES, MAX_BITS);125126static StaticTree static_bl_desc =127new StaticTree(null, Tree.extra_blbits,1280, BL_CODES, MAX_BL_BITS);129130short[] static_tree; // static tree or null131int[] extra_bits; // extra bits for each code or null132int extra_base; // base index for extra_bits133int elems; // max number of elements in the tree134int max_length; // max bit length for the codes135136private StaticTree(short[] static_tree,137int[] extra_bits,138int extra_base,139int elems,140int max_length){141this.static_tree=static_tree;142this.extra_bits=extra_bits;143this.extra_base=extra_base;144this.elems=elems;145this.max_length=max_length;146}147}148149150