seaweedfs/weed/storage/needle/crc.go

42 lines
661 B
Go
Raw Normal View History

2019-04-19 04:43:36 +00:00
package needle
2012-09-25 22:37:13 +00:00
import (
"crypto/md5"
2018-11-23 08:26:15 +00:00
"fmt"
"github.com/chrislusf/seaweedfs/weed/util"
2018-11-23 08:26:15 +00:00
"github.com/klauspost/crc32"
2012-09-25 22:37:13 +00: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 07:24:50 +00:00
func (n *Needle) Etag() string {
bits := make([]byte, 4)
util.Uint32toBytes(bits, uint32(n.Checksum))
2018-09-09 23:25:43 +00:00
return fmt.Sprintf("%x", bits)
2014-07-22 07:24:50 +00:00
}
func (n *Needle) MD5() string {
hash := md5.New()
hash.Write(n.Data)
return fmt.Sprintf("%x", hash.Sum(nil))
}