// Copyright 2019+ Klaus Post. All rights reserved.// License information can be found in the LICENSE file.// Based on work by Yann Collet, released under BSD License.package zstdimport ()var (// fsePredef are the predefined fse tables as defined here: // https://github.com/facebook/zstd/blob/dev/doc/zstd_compression_format.md#default-distributions // These values are already transformed. fsePredef [3]fseDecoder// fsePredefEnc are the predefined encoder based on fse tables as defined here: // https://github.com/facebook/zstd/blob/dev/doc/zstd_compression_format.md#default-distributions // These values are already transformed. fsePredefEnc [3]fseEncoder// symbolTableX contain the transformations needed for each type as defined in // https://github.com/facebook/zstd/blob/dev/doc/zstd_compression_format.md#the-codes-for-literals-lengths-match-lengths-and-offsets symbolTableX [3][]baseOffset// maxTableSymbol is the biggest supported symbol for each table type // https://github.com/facebook/zstd/blob/dev/doc/zstd_compression_format.md#the-codes-for-literals-lengths-match-lengths-and-offsets maxTableSymbol = [3]uint8{tableLiteralLengths: maxLiteralLengthSymbol, tableOffsets: maxOffsetLengthSymbol, tableMatchLengths: maxMatchLengthSymbol}// bitTables is the bits table for each table. bitTables = [3][]byte{tableLiteralLengths: llBitsTable[:], tableOffsets: nil, tableMatchLengths: mlBitsTable[:]})type tableIndex uint8const (// indexes for fsePredef and symbolTableX tableLiteralLengths tableIndex = 0 tableOffsets tableIndex = 1 tableMatchLengths tableIndex = 2 maxLiteralLengthSymbol = 35 maxOffsetLengthSymbol = 30 maxMatchLengthSymbol = 52)// baseOffset is used for calculating transformations.type baseOffset struct { baseLine uint32 addBits uint8}// fillBase will precalculate base offsets with the given bit distributions.func fillBase( []baseOffset, uint32, ...uint8) {iflen() != len() {panic(fmt.Sprintf("len(dst) (%d) != len(bits) (%d)", len(), len())) }for , := range {if > math.MaxInt32 {panic("invalid decoding table, base overflows int32") } [] = baseOffset{baseLine: ,addBits: , } += 1 << }}var predef sync.Oncefunc initPredefined() {predef.Do(func() {// Literals length codes := make([]baseOffset, 36)for := range [:16] { [] = baseOffset{baseLine: uint32(),addBits: 0, } }fillBase([16:], 16, 1, 1, 1, 1, 2, 2, 3, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16)symbolTableX[tableLiteralLengths] = // Match length codes = make([]baseOffset, 53)for := range [:32] { [] = baseOffset{// The transformation adds the 3 length.baseLine: uint32() + 3,addBits: 0, } }fillBase([32:], 35, 1, 1, 1, 1, 2, 2, 3, 3, 4, 4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16)symbolTableX[tableMatchLengths] = // Offset codes = make([]baseOffset, maxOffsetBits+1) [1] = baseOffset{baseLine: 1,addBits: 1, }fillBase([2:], 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30)symbolTableX[tableOffsets] = // Fill predefined tables and transform them. // https://github.com/facebook/zstd/blob/dev/doc/zstd_compression_format.md#default-distributionsfor := rangefsePredef[:] { := &fsePredef[]switchtableIndex() {casetableLiteralLengths:// https://github.com/facebook/zstd/blob/ededcfca57366461021c922720878c81a5854a0a/lib/decompress/zstd_decompress_block.c#L243 .actualTableLog = 6copy(.norm[:], []int16{4, 3, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 1, 1,2, 2, 2, 2, 2, 2, 2, 2, 2, 3, 2, 1, 1, 1, 1, 1, -1, -1, -1, -1}) .symbolLen = 36casetableOffsets:// https://github.com/facebook/zstd/blob/ededcfca57366461021c922720878c81a5854a0a/lib/decompress/zstd_decompress_block.c#L281 .actualTableLog = 5copy(.norm[:], []int16{1, 1, 1, 1, 1, 1, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1,1, 1, 1, 1, 1, 1, 1, 1, -1, -1, -1, -1, -1}) .symbolLen = 29casetableMatchLengths://https://github.com/facebook/zstd/blob/ededcfca57366461021c922720878c81a5854a0a/lib/decompress/zstd_decompress_block.c#L304 .actualTableLog = 6copy(.norm[:], []int16{1, 4, 3, 2, 2, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1,1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, -1, -1, -1, -1, -1, -1, -1}) .symbolLen = 53 }if := .buildDtable(); != nil {panic(fmt.Errorf("building table %v: %v", tableIndex(), )) }if := .transform(symbolTableX[]); != nil {panic(fmt.Errorf("building table %v: %v", tableIndex(), )) } .preDefined = true// Create encoder as well := &fsePredefEnc[]copy(.norm[:], .norm[:]) .symbolLen = .symbolLen .actualTableLog = .actualTableLogif := .buildCTable(); != nil {panic(fmt.Errorf("building encoding table %v: %v", tableIndex(), )) } .setBits(bitTables[]) .preDefined = true } })}
The pages are generated with Goldsv0.8.2. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds.