mirror of
https://github.com/go-gitea/gitea
synced 2024-11-02 08:14:25 +00:00
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>
152 lines
3.4 KiB
Go
Vendored
152 lines
3.4 KiB
Go
Vendored
// Copyright 2014-2019 Ulrich Kunitz. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package lzma
|
|
|
|
// states defines the overall state count
|
|
const states = 12
|
|
|
|
// State maintains the full state of the operation encoding or decoding
|
|
// process.
|
|
type state struct {
|
|
rep [4]uint32
|
|
isMatch [states << maxPosBits]prob
|
|
isRepG0Long [states << maxPosBits]prob
|
|
isRep [states]prob
|
|
isRepG0 [states]prob
|
|
isRepG1 [states]prob
|
|
isRepG2 [states]prob
|
|
litCodec literalCodec
|
|
lenCodec lengthCodec
|
|
repLenCodec lengthCodec
|
|
distCodec distCodec
|
|
state uint32
|
|
posBitMask uint32
|
|
Properties Properties
|
|
}
|
|
|
|
// initProbSlice initializes a slice of probabilities.
|
|
func initProbSlice(p []prob) {
|
|
for i := range p {
|
|
p[i] = probInit
|
|
}
|
|
}
|
|
|
|
// Reset sets all state information to the original values.
|
|
func (s *state) Reset() {
|
|
p := s.Properties
|
|
*s = state{
|
|
Properties: p,
|
|
// dict: s.dict,
|
|
posBitMask: (uint32(1) << uint(p.PB)) - 1,
|
|
}
|
|
initProbSlice(s.isMatch[:])
|
|
initProbSlice(s.isRep[:])
|
|
initProbSlice(s.isRepG0[:])
|
|
initProbSlice(s.isRepG1[:])
|
|
initProbSlice(s.isRepG2[:])
|
|
initProbSlice(s.isRepG0Long[:])
|
|
s.litCodec.init(p.LC, p.LP)
|
|
s.lenCodec.init()
|
|
s.repLenCodec.init()
|
|
s.distCodec.init()
|
|
}
|
|
|
|
// initState initializes the state.
|
|
func initState(s *state, p Properties) {
|
|
*s = state{Properties: p}
|
|
s.Reset()
|
|
}
|
|
|
|
// newState creates a new state from the give Properties.
|
|
func newState(p Properties) *state {
|
|
s := &state{Properties: p}
|
|
s.Reset()
|
|
return s
|
|
}
|
|
|
|
// deepcopy initializes s as a deep copy of the source.
|
|
func (s *state) deepcopy(src *state) {
|
|
if s == src {
|
|
return
|
|
}
|
|
s.rep = src.rep
|
|
s.isMatch = src.isMatch
|
|
s.isRepG0Long = src.isRepG0Long
|
|
s.isRep = src.isRep
|
|
s.isRepG0 = src.isRepG0
|
|
s.isRepG1 = src.isRepG1
|
|
s.isRepG2 = src.isRepG2
|
|
s.litCodec.deepcopy(&src.litCodec)
|
|
s.lenCodec.deepcopy(&src.lenCodec)
|
|
s.repLenCodec.deepcopy(&src.repLenCodec)
|
|
s.distCodec.deepcopy(&src.distCodec)
|
|
s.state = src.state
|
|
s.posBitMask = src.posBitMask
|
|
s.Properties = src.Properties
|
|
}
|
|
|
|
// cloneState creates a new clone of the give state.
|
|
func cloneState(src *state) *state {
|
|
s := new(state)
|
|
s.deepcopy(src)
|
|
return s
|
|
}
|
|
|
|
// updateStateLiteral updates the state for a literal.
|
|
func (s *state) updateStateLiteral() {
|
|
switch {
|
|
case s.state < 4:
|
|
s.state = 0
|
|
return
|
|
case s.state < 10:
|
|
s.state -= 3
|
|
return
|
|
}
|
|
s.state -= 6
|
|
}
|
|
|
|
// updateStateMatch updates the state for a match.
|
|
func (s *state) updateStateMatch() {
|
|
if s.state < 7 {
|
|
s.state = 7
|
|
} else {
|
|
s.state = 10
|
|
}
|
|
}
|
|
|
|
// updateStateRep updates the state for a repetition.
|
|
func (s *state) updateStateRep() {
|
|
if s.state < 7 {
|
|
s.state = 8
|
|
} else {
|
|
s.state = 11
|
|
}
|
|
}
|
|
|
|
// updateStateShortRep updates the state for a short repetition.
|
|
func (s *state) updateStateShortRep() {
|
|
if s.state < 7 {
|
|
s.state = 9
|
|
} else {
|
|
s.state = 11
|
|
}
|
|
}
|
|
|
|
// states computes the states of the operation codec.
|
|
func (s *state) states(dictHead int64) (state1, state2, posState uint32) {
|
|
state1 = s.state
|
|
posState = uint32(dictHead) & s.posBitMask
|
|
state2 = (s.state << maxPosBits) | posState
|
|
return
|
|
}
|
|
|
|
// litState computes the literal state.
|
|
func (s *state) litState(prev byte, dictHead int64) uint32 {
|
|
lp, lc := uint(s.Properties.LP), uint(s.Properties.LC)
|
|
litState := ((uint32(dictHead) & ((1 << lp) - 1)) << lc) |
|
|
(uint32(prev) >> (8 - lc))
|
|
return litState
|
|
}
|