2019-03-07 01:55:38 +03:00
|
|
|
package brotli
|
|
|
|
|
2019-03-09 06:45:16 +03:00
|
|
|
import "math"
|
|
|
|
|
2019-03-07 01:55:38 +03:00
|
|
|
/* The distance symbols effectively used by "Large Window Brotli" (32-bit). */
|
|
|
|
const BROTLI_NUM_HISTOGRAM_DISTANCE_SYMBOLS = 544
|
|
|
|
|
|
|
|
type HistogramLiteral struct {
|
2019-03-15 22:05:31 +03:00
|
|
|
data_ [numLiteralSymbols]uint32
|
2019-03-07 01:55:38 +03:00
|
|
|
total_count_ uint
|
|
|
|
bit_cost_ float64
|
|
|
|
}
|
|
|
|
|
|
|
|
func HistogramClearLiteral(self *HistogramLiteral) {
|
2019-03-15 22:05:31 +03:00
|
|
|
self.data_ = [numLiteralSymbols]uint32{}
|
2019-03-07 01:55:38 +03:00
|
|
|
self.total_count_ = 0
|
2019-03-09 06:45:16 +03:00
|
|
|
self.bit_cost_ = math.MaxFloat64
|
2019-03-07 01:55:38 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func ClearHistogramsLiteral(array []HistogramLiteral, length uint) {
|
|
|
|
var i uint
|
|
|
|
for i = 0; i < length; i++ {
|
|
|
|
HistogramClearLiteral(&array[i:][0])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func HistogramAddLiteral(self *HistogramLiteral, val uint) {
|
|
|
|
self.data_[val]++
|
|
|
|
self.total_count_++
|
|
|
|
}
|
|
|
|
|
|
|
|
func HistogramAddVectorLiteral(self *HistogramLiteral, p []byte, n uint) {
|
|
|
|
self.total_count_ += n
|
|
|
|
n += 1
|
|
|
|
for {
|
|
|
|
n--
|
|
|
|
if n == 0 {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
self.data_[p[0]]++
|
|
|
|
p = p[1:]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func HistogramAddHistogramLiteral(self *HistogramLiteral, v *HistogramLiteral) {
|
|
|
|
var i uint
|
|
|
|
self.total_count_ += v.total_count_
|
2019-03-15 22:05:31 +03:00
|
|
|
for i = 0; i < numLiteralSymbols; i++ {
|
2019-03-07 01:55:38 +03:00
|
|
|
self.data_[i] += v.data_[i]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func HistogramDataSizeLiteral() uint {
|
2019-03-15 22:05:31 +03:00
|
|
|
return numLiteralSymbols
|
2019-03-07 01:55:38 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
type HistogramCommand struct {
|
2019-03-15 22:05:31 +03:00
|
|
|
data_ [numCommandSymbols]uint32
|
2019-03-07 01:55:38 +03:00
|
|
|
total_count_ uint
|
|
|
|
bit_cost_ float64
|
|
|
|
}
|
|
|
|
|
|
|
|
func HistogramClearCommand(self *HistogramCommand) {
|
2019-03-15 22:05:31 +03:00
|
|
|
self.data_ = [numCommandSymbols]uint32{}
|
2019-03-07 01:55:38 +03:00
|
|
|
self.total_count_ = 0
|
2019-03-09 06:45:16 +03:00
|
|
|
self.bit_cost_ = math.MaxFloat64
|
2019-03-07 01:55:38 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func ClearHistogramsCommand(array []HistogramCommand, length uint) {
|
|
|
|
var i uint
|
|
|
|
for i = 0; i < length; i++ {
|
|
|
|
HistogramClearCommand(&array[i:][0])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func HistogramAddCommand(self *HistogramCommand, val uint) {
|
|
|
|
self.data_[val]++
|
|
|
|
self.total_count_++
|
|
|
|
}
|
|
|
|
|
|
|
|
func HistogramAddVectorCommand(self *HistogramCommand, p []uint16, n uint) {
|
|
|
|
self.total_count_ += n
|
|
|
|
n += 1
|
|
|
|
for {
|
|
|
|
n--
|
|
|
|
if n == 0 {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
self.data_[p[0]]++
|
|
|
|
p = p[1:]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func HistogramAddHistogramCommand(self *HistogramCommand, v *HistogramCommand) {
|
|
|
|
var i uint
|
|
|
|
self.total_count_ += v.total_count_
|
2019-03-15 22:05:31 +03:00
|
|
|
for i = 0; i < numCommandSymbols; i++ {
|
2019-03-07 01:55:38 +03:00
|
|
|
self.data_[i] += v.data_[i]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func HistogramDataSizeCommand() uint {
|
2019-03-15 22:05:31 +03:00
|
|
|
return numCommandSymbols
|
2019-03-07 01:55:38 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
type HistogramDistance struct {
|
2019-03-15 22:05:31 +03:00
|
|
|
data_ [numDistanceSymbols]uint32
|
2019-03-07 01:55:38 +03:00
|
|
|
total_count_ uint
|
|
|
|
bit_cost_ float64
|
|
|
|
}
|
|
|
|
|
|
|
|
func HistogramClearDistance(self *HistogramDistance) {
|
2019-03-15 22:05:31 +03:00
|
|
|
self.data_ = [numDistanceSymbols]uint32{}
|
2019-03-07 01:55:38 +03:00
|
|
|
self.total_count_ = 0
|
2019-03-09 06:45:16 +03:00
|
|
|
self.bit_cost_ = math.MaxFloat64
|
2019-03-07 01:55:38 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func ClearHistogramsDistance(array []HistogramDistance, length uint) {
|
|
|
|
var i uint
|
|
|
|
for i = 0; i < length; i++ {
|
|
|
|
HistogramClearDistance(&array[i:][0])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func HistogramAddDistance(self *HistogramDistance, val uint) {
|
|
|
|
self.data_[val]++
|
|
|
|
self.total_count_++
|
|
|
|
}
|
|
|
|
|
|
|
|
func HistogramAddVectorDistance(self *HistogramDistance, p []uint16, n uint) {
|
|
|
|
self.total_count_ += n
|
|
|
|
n += 1
|
|
|
|
for {
|
|
|
|
n--
|
|
|
|
if n == 0 {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
self.data_[p[0]]++
|
|
|
|
p = p[1:]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func HistogramAddHistogramDistance(self *HistogramDistance, v *HistogramDistance) {
|
|
|
|
var i uint
|
|
|
|
self.total_count_ += v.total_count_
|
2019-03-15 22:05:31 +03:00
|
|
|
for i = 0; i < numDistanceSymbols; i++ {
|
2019-03-07 01:55:38 +03:00
|
|
|
self.data_[i] += v.data_[i]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func HistogramDataSizeDistance() uint {
|
2019-03-15 22:05:31 +03:00
|
|
|
return numDistanceSymbols
|
2019-03-07 01:55:38 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
type BlockSplitIterator struct {
|
2019-03-15 22:05:31 +03:00
|
|
|
split_ *blockSplit
|
2019-03-07 01:55:38 +03:00
|
|
|
idx_ uint
|
|
|
|
type_ uint
|
|
|
|
length_ uint
|
|
|
|
}
|
|
|
|
|
2019-03-15 22:05:31 +03:00
|
|
|
func InitBlockSplitIterator(self *BlockSplitIterator, split *blockSplit) {
|
2019-03-07 01:55:38 +03:00
|
|
|
self.split_ = split
|
|
|
|
self.idx_ = 0
|
|
|
|
self.type_ = 0
|
|
|
|
if split.lengths != nil {
|
|
|
|
self.length_ = uint(split.lengths[0])
|
|
|
|
} else {
|
|
|
|
self.length_ = 0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func BlockSplitIteratorNext(self *BlockSplitIterator) {
|
|
|
|
if self.length_ == 0 {
|
|
|
|
self.idx_++
|
|
|
|
self.type_ = uint(self.split_.types[self.idx_])
|
|
|
|
self.length_ = uint(self.split_.lengths[self.idx_])
|
|
|
|
}
|
|
|
|
|
|
|
|
self.length_--
|
|
|
|
}
|
|
|
|
|
2019-03-15 22:05:31 +03:00
|
|
|
func BrotliBuildHistogramsWithContext(cmds []command, num_commands uint, literal_split *blockSplit, insert_and_copy_split *blockSplit, dist_split *blockSplit, ringbuffer []byte, start_pos uint, mask uint, prev_byte byte, prev_byte2 byte, context_modes []int, literal_histograms []HistogramLiteral, insert_and_copy_histograms []HistogramCommand, copy_dist_histograms []HistogramDistance) {
|
2019-03-07 01:55:38 +03:00
|
|
|
var pos uint = start_pos
|
|
|
|
var literal_it BlockSplitIterator
|
|
|
|
var insert_and_copy_it BlockSplitIterator
|
|
|
|
var dist_it BlockSplitIterator
|
|
|
|
var i uint
|
|
|
|
|
|
|
|
InitBlockSplitIterator(&literal_it, literal_split)
|
|
|
|
InitBlockSplitIterator(&insert_and_copy_it, insert_and_copy_split)
|
|
|
|
InitBlockSplitIterator(&dist_it, dist_split)
|
|
|
|
for i = 0; i < num_commands; i++ {
|
2019-03-15 22:05:31 +03:00
|
|
|
var cmd *command = &cmds[i]
|
2019-03-07 01:55:38 +03:00
|
|
|
var j uint
|
|
|
|
BlockSplitIteratorNext(&insert_and_copy_it)
|
|
|
|
HistogramAddCommand(&insert_and_copy_histograms[insert_and_copy_it.type_], uint(cmd.cmd_prefix_))
|
|
|
|
|
|
|
|
/* TODO: unwrap iterator blocks. */
|
|
|
|
for j = uint(cmd.insert_len_); j != 0; j-- {
|
|
|
|
var context uint
|
|
|
|
BlockSplitIteratorNext(&literal_it)
|
|
|
|
context = literal_it.type_
|
|
|
|
if context_modes != nil {
|
|
|
|
var lut ContextLut = BROTLI_CONTEXT_LUT(context_modes[context])
|
|
|
|
context = (context << BROTLI_LITERAL_CONTEXT_BITS) + uint(BROTLI_CONTEXT(prev_byte, prev_byte2, lut))
|
|
|
|
}
|
|
|
|
|
|
|
|
HistogramAddLiteral(&literal_histograms[context], uint(ringbuffer[pos&mask]))
|
|
|
|
prev_byte2 = prev_byte
|
|
|
|
prev_byte = ringbuffer[pos&mask]
|
|
|
|
pos++
|
|
|
|
}
|
|
|
|
|
2019-03-15 22:05:31 +03:00
|
|
|
pos += uint(commandCopyLen(cmd))
|
|
|
|
if commandCopyLen(cmd) != 0 {
|
2019-03-07 01:55:38 +03:00
|
|
|
prev_byte2 = ringbuffer[(pos-2)&mask]
|
|
|
|
prev_byte = ringbuffer[(pos-1)&mask]
|
|
|
|
if cmd.cmd_prefix_ >= 128 {
|
|
|
|
var context uint
|
|
|
|
BlockSplitIteratorNext(&dist_it)
|
2019-03-15 22:05:31 +03:00
|
|
|
context = uint(uint32(dist_it.type_<<BROTLI_DISTANCE_CONTEXT_BITS) + commandDistanceContext(cmd))
|
2019-03-07 01:55:38 +03:00
|
|
|
HistogramAddDistance(©_dist_histograms[context], uint(cmd.dist_prefix_)&0x3FF)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|