seaweedfs/go/storage/crc.go

31 lines
516 B
Go
Raw Normal View History

2012-09-26 06:37:13 +08:00
package storage
import (
"encoding/binary"
2014-07-22 15:24:50 +08:00
"fmt"
"github.com/klauspost/crc32"
2012-09-26 06:37:13 +08:00
)
var table = crc32.MakeTable(crc32.Castagnoli)
type CRC uint32
func NewCRC(b []byte) CRC {
return CRC(0).Update(b)
}
func (c CRC) Update(b []byte) CRC {
return CRC(crc32.Update(uint32(c), table, b))
}
func (c CRC) Value() uint32 {
return uint32(c>>15|c<<17) + 0xa282ead8
}
2014-07-22 15:24:50 +08:00
func (n *Needle) Etag() string {
bits := make([]byte, 4)
binary.BigEndian.PutUint32(bits, uint32(n.Checksum))
2014-08-27 01:15:12 +08:00
return fmt.Sprintf("\"%x\"", bits)
2014-07-22 15:24:50 +08:00
}