12a1f914f4
* update github.com/alecthomas/chroma v0.8.0 -> v0.8.1 * github.com/blevesearch/bleve v1.0.10 -> v1.0.12 * editorconfig-core-go v2.1.1 -> v2.3.7 * github.com/gliderlabs/ssh v0.2.2 -> v0.3.1 * migrate editorconfig.ParseBytes to Parse * github.com/shurcooL/vfsgen to 0d455de96546 * github.com/go-git/go-git/v5 v5.1.0 -> v5.2.0 * github.com/google/uuid v1.1.1 -> v1.1.2 * github.com/huandu/xstrings v1.3.0 -> v1.3.2 * github.com/klauspost/compress v1.10.11 -> v1.11.1 * github.com/markbates/goth v1.61.2 -> v1.65.0 * github.com/mattn/go-sqlite3 v1.14.0 -> v1.14.4 * github.com/mholt/archiver v3.3.0 -> v3.3.2 * github.com/microcosm-cc/bluemonday 4f7140c49acb -> v1.0.4 * github.com/minio/minio-go v7.0.4 -> v7.0.5 * github.com/olivere/elastic v7.0.9 -> v7.0.20 * github.com/urfave/cli v1.20.0 -> v1.22.4 * github.com/prometheus/client_golang v1.1.0 -> v1.8.0 * github.com/xanzy/go-gitlab v0.37.0 -> v0.38.1 * mvdan.cc/xurls v2.1.0 -> v2.2.0 Co-authored-by: Lauris BH <lauris@nix.lv>
94 lines
2 KiB
Go
Vendored
94 lines
2 KiB
Go
Vendored
package brotli
|
|
|
|
/* Copyright 2010 Google Inc. All Rights Reserved.
|
|
|
|
Distributed under MIT license.
|
|
See file LICENSE for detail or copy at https://opensource.org/licenses/MIT
|
|
*/
|
|
|
|
/* Write bits into a byte array. */
|
|
|
|
type bitWriter struct {
|
|
dst []byte
|
|
|
|
// Data waiting to be written is the low nbits of bits.
|
|
bits uint64
|
|
nbits uint
|
|
}
|
|
|
|
func (w *bitWriter) writeBits(nb uint, b uint64) {
|
|
w.bits |= b << w.nbits
|
|
w.nbits += nb
|
|
if w.nbits >= 32 {
|
|
bits := w.bits
|
|
w.bits >>= 32
|
|
w.nbits -= 32
|
|
w.dst = append(w.dst,
|
|
byte(bits),
|
|
byte(bits>>8),
|
|
byte(bits>>16),
|
|
byte(bits>>24),
|
|
)
|
|
}
|
|
}
|
|
|
|
func (w *bitWriter) writeSingleBit(bit bool) {
|
|
if bit {
|
|
w.writeBits(1, 1)
|
|
} else {
|
|
w.writeBits(1, 0)
|
|
}
|
|
}
|
|
|
|
func (w *bitWriter) jumpToByteBoundary() {
|
|
dst := w.dst
|
|
for w.nbits != 0 {
|
|
dst = append(dst, byte(w.bits))
|
|
w.bits >>= 8
|
|
if w.nbits > 8 { // Avoid underflow
|
|
w.nbits -= 8
|
|
} else {
|
|
w.nbits = 0
|
|
}
|
|
}
|
|
w.bits = 0
|
|
w.dst = dst
|
|
}
|
|
|
|
func (w *bitWriter) writeBytes(b []byte) {
|
|
if w.nbits&7 != 0 {
|
|
panic("writeBytes with unfinished bits")
|
|
}
|
|
for w.nbits != 0 {
|
|
w.dst = append(w.dst, byte(w.bits))
|
|
w.bits >>= 8
|
|
w.nbits -= 8
|
|
}
|
|
w.dst = append(w.dst, b...)
|
|
}
|
|
|
|
func (w *bitWriter) getPos() uint {
|
|
return uint(len(w.dst)<<3) + w.nbits
|
|
}
|
|
|
|
func (w *bitWriter) rewind(p uint) {
|
|
w.bits = uint64(w.dst[p>>3] & byte((1<<(p&7))-1))
|
|
w.nbits = p & 7
|
|
w.dst = w.dst[:p>>3]
|
|
}
|
|
|
|
func (w *bitWriter) updateBits(n_bits uint, bits uint32, pos uint) {
|
|
for n_bits > 0 {
|
|
var byte_pos uint = pos >> 3
|
|
var n_unchanged_bits uint = pos & 7
|
|
var n_changed_bits uint = brotli_min_size_t(n_bits, 8-n_unchanged_bits)
|
|
var total_bits uint = n_unchanged_bits + n_changed_bits
|
|
var mask uint32 = (^((1 << total_bits) - 1)) | ((1 << n_unchanged_bits) - 1)
|
|
var unchanged_bits uint32 = uint32(w.dst[byte_pos]) & mask
|
|
var changed_bits uint32 = bits & ((1 << n_changed_bits) - 1)
|
|
w.dst[byte_pos] = byte(changed_bits<<n_unchanged_bits | unchanged_bits)
|
|
n_bits -= n_changed_bits
|
|
bits >>= n_changed_bits
|
|
pos += n_changed_bits
|
|
}
|
|
}
|