2019-04-19 04:43:36 +00:00
|
|
|
package needle
|
2012-09-25 22:37:13 +00:00
|
|
|
|
|
|
|
import (
|
2018-11-23 08:26:15 +00:00
|
|
|
"fmt"
|
2021-03-05 10:29:38 +00:00
|
|
|
"io"
|
2016-04-10 07:24:22 +00:00
|
|
|
|
2021-08-17 08:06:48 +00:00
|
|
|
"hash/crc32"
|
2020-03-08 22:42:44 +00:00
|
|
|
|
2022-07-29 07:17:28 +00:00
|
|
|
"github.com/seaweedfs/seaweedfs/weed/util"
|
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))
|
|
|
|
}
|
|
|
|
|
2022-06-05 22:24:02 +00:00
|
|
|
// Value Deprecated. Just use the raw uint32 value to compare.
|
2012-09-25 22:37:13 +00:00
|
|
|
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)
|
2016-04-10 07:24:22 +00:00
|
|
|
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
|
|
|
}
|
2021-03-05 10:29:38 +00:00
|
|
|
|
|
|
|
func NewCRCwriter(w io.Writer) *CRCwriter {
|
|
|
|
|
|
|
|
return &CRCwriter{
|
2021-03-06 22:24:24 +00:00
|
|
|
crc: CRC(0),
|
2021-03-14 20:21:02 +00:00
|
|
|
w: w,
|
2021-03-05 10:29:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
type CRCwriter struct {
|
2021-03-06 22:24:24 +00:00
|
|
|
crc CRC
|
|
|
|
w io.Writer
|
2021-03-05 10:29:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (c *CRCwriter) Write(p []byte) (n int, err error) {
|
|
|
|
n, err = c.w.Write(p) // with each write ...
|
2021-03-06 22:24:24 +00:00
|
|
|
c.crc = c.crc.Update(p)
|
2021-03-05 10:29:38 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-06-05 22:24:02 +00:00
|
|
|
func (c *CRCwriter) Sum() uint32 { return uint32(c.crc) } // final hash
|