mirror of
https://github.com/octoleo/syncthing.git
synced 2024-11-10 15:20:56 +00:00
95 lines
2.5 KiB
Go
95 lines
2.5 KiB
Go
// Copyright 2014 The zappy Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
// Copyright 2011 The Snappy-Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the SNAPPY-GO-LICENSE file.
|
|
|
|
// +build !cgo purego
|
|
|
|
package zappy
|
|
|
|
import (
|
|
"encoding/binary"
|
|
"fmt"
|
|
"math"
|
|
|
|
"github.com/cznic/internal/buffer"
|
|
)
|
|
|
|
func puregoEncode() bool { return true }
|
|
|
|
// Encode returns the encoded form of src. The returned slice may be a sub-
|
|
// slice of buf if buf was large enough to hold the entire encoded block.
|
|
// Otherwise, a newly allocated slice will be returned.
|
|
// It is valid to pass a nil buf.
|
|
func Encode(buf, src []byte) ([]byte, error) {
|
|
if n := MaxEncodedLen(len(src)); len(buf) < n {
|
|
buf = *buffer.Get(n)
|
|
}
|
|
|
|
if len(src) > math.MaxInt32 {
|
|
return nil, fmt.Errorf("zappy.Encode: too long data: %d bytes", len(src))
|
|
}
|
|
|
|
// The block starts with the varint-encoded length of the decompressed bytes.
|
|
d := binary.PutUvarint(buf, uint64(len(src)))
|
|
|
|
// Return early if src is short.
|
|
if len(src) <= 4 {
|
|
if len(src) != 0 {
|
|
d += emitLiteral(buf[d:], src)
|
|
}
|
|
return buf[:d], nil
|
|
}
|
|
|
|
// Iterate over the source bytes.
|
|
var (
|
|
table [1 << 12]int // Hash table
|
|
s int // The iterator position.
|
|
t int // The last position with the same hash as s.
|
|
lit int // The start position of any pending literal bytes.
|
|
)
|
|
for lim := len(src) - 3; s < lim; {
|
|
// Update the hash table.
|
|
b0, b1, b2, b3 := src[s], src[s+1], src[s+2], src[s+3]
|
|
h := uint32(b0) | uint32(b1)<<8 | uint32(b2)<<16 | uint32(b3)<<24
|
|
more:
|
|
p := &table[(h*0x1e35a7bd)>>20]
|
|
t, *p = *p, s
|
|
// If t is invalid or src[s:s+4] differs from src[t:t+4], accumulate a literal byte.
|
|
if t == 0 || s-t >= maxOffset || b0 != src[t] || b1 != src[t+1] || b2 != src[t+2] || b3 != src[t+3] {
|
|
s++
|
|
if s >= lim {
|
|
break
|
|
}
|
|
|
|
b0, b1, b2, b3 = b1, b2, b3, src[s+3]
|
|
h = h>>8 | uint32(b3)<<24
|
|
goto more
|
|
}
|
|
|
|
// Otherwise, we have a match. First, emit any pending literal bytes.
|
|
if lit != s {
|
|
d += emitLiteral(buf[d:], src[lit:s])
|
|
}
|
|
// Extend the match to be as long as possible.
|
|
s0 := s
|
|
s, t = s+4, t+4
|
|
for s < len(src) && src[s] == src[t] {
|
|
s++
|
|
t++
|
|
}
|
|
// Emit the copied bytes.
|
|
d += emitCopy(buf[d:], s-t, s-s0)
|
|
lit = s
|
|
}
|
|
|
|
// Emit any final pending literal bytes and return.
|
|
if lit != len(src) {
|
|
d += emitLiteral(buf[d:], src[lit:])
|
|
}
|
|
return buf[:d], nil
|
|
}
|