2019-04-19 04:43:36 +00:00
|
|
|
package needle
|
2012-12-21 05:57:03 +00:00
|
|
|
|
|
|
|
import (
|
2012-12-21 06:32:21 +00:00
|
|
|
"errors"
|
2013-01-17 08:22:18 +00:00
|
|
|
"fmt"
|
2022-07-29 07:17:28 +00:00
|
|
|
"github.com/seaweedfs/seaweedfs/weed/glog"
|
|
|
|
"github.com/seaweedfs/seaweedfs/weed/stats"
|
|
|
|
"github.com/seaweedfs/seaweedfs/weed/storage/backend"
|
|
|
|
. "github.com/seaweedfs/seaweedfs/weed/storage/types"
|
|
|
|
"github.com/seaweedfs/seaweedfs/weed/util"
|
2021-03-22 07:03:16 +00:00
|
|
|
"io"
|
2012-12-21 05:57:03 +00:00
|
|
|
)
|
|
|
|
|
2013-01-20 11:40:04 +00:00
|
|
|
const (
|
2020-06-20 05:45:27 +00:00
|
|
|
FlagIsCompressed = 0x01
|
2013-07-09 06:38:38 +00:00
|
|
|
FlagHasName = 0x02
|
|
|
|
FlagHasMime = 0x04
|
|
|
|
FlagHasLastModifiedDate = 0x08
|
2014-09-20 19:38:59 +00:00
|
|
|
FlagHasTtl = 0x10
|
2017-01-08 01:16:29 +00:00
|
|
|
FlagHasPairs = 0x20
|
2015-12-15 06:38:58 +00:00
|
|
|
FlagIsChunkManifest = 0x80
|
2013-07-09 06:38:38 +00:00
|
|
|
LastModifiedBytesLength = 5
|
2014-09-20 19:38:59 +00:00
|
|
|
TtlBytesLength = 2
|
2013-01-20 11:40:04 +00:00
|
|
|
)
|
|
|
|
|
2020-10-27 20:11:56 +00:00
|
|
|
var ErrorSizeMismatch = errors.New("size mismatch")
|
|
|
|
|
2018-07-24 08:36:04 +00:00
|
|
|
func (n *Needle) DiskSize(version Version) int64 {
|
2019-05-28 07:51:01 +00:00
|
|
|
return GetActualSize(n.Size, version)
|
2013-01-21 03:44:23 +00:00
|
|
|
}
|
2017-01-06 18:22:20 +00:00
|
|
|
|
2020-08-19 00:04:28 +00:00
|
|
|
func ReadNeedleBlob(r backend.BackendStorageFile, offset int64, size Size, version Version) (dataSlice []byte, err error) {
|
2019-08-28 13:48:06 +00:00
|
|
|
|
|
|
|
dataSize := GetActualSize(size, version)
|
2019-10-01 11:21:44 +00:00
|
|
|
dataSlice = make([]byte, int(dataSize))
|
2019-08-28 13:48:06 +00:00
|
|
|
|
2021-02-20 20:39:25 +00:00
|
|
|
var n int
|
|
|
|
n, err = r.ReadAt(dataSlice, offset)
|
|
|
|
if err != nil && int64(n) == dataSize {
|
|
|
|
err = nil
|
|
|
|
}
|
|
|
|
if err != nil {
|
|
|
|
fileSize, _, _ := r.GetStat()
|
2021-09-02 19:32:46 +00:00
|
|
|
glog.Errorf("%s read %d dataSize %d offset %d fileSize %d: %v", r.Name(), n, dataSize, offset, fileSize, err)
|
2021-02-20 20:39:25 +00:00
|
|
|
}
|
2019-11-09 08:10:59 +00:00
|
|
|
return dataSlice, err
|
|
|
|
|
2016-04-14 08:30:26 +00:00
|
|
|
}
|
|
|
|
|
2019-05-27 18:59:03 +00:00
|
|
|
// ReadBytes hydrates the needle from the bytes buffer, with only n.Id is set.
|
2020-08-19 00:04:28 +00:00
|
|
|
func (n *Needle) ReadBytes(bytes []byte, offset int64, size Size, version Version) (err error) {
|
2015-05-26 07:58:41 +00:00
|
|
|
n.ParseNeedleHeader(bytes)
|
|
|
|
if n.Size != size {
|
2020-10-27 20:11:56 +00:00
|
|
|
// cookie is not always passed in for this API. Use size to do preliminary checking.
|
|
|
|
if OffsetSize == 4 && offset < int64(MaxPossibleVolumeSize) {
|
2022-02-05 06:57:51 +00:00
|
|
|
stats.VolumeServerRequestCounter.WithLabelValues(stats.ErrorSizeMismatchOffsetSize).Inc()
|
2020-10-27 20:11:56 +00:00
|
|
|
glog.Errorf("entry not found1: offset %d found id %x size %d, expected size %d", offset, n.Id, n.Size, size)
|
|
|
|
return ErrorSizeMismatch
|
|
|
|
}
|
2022-02-05 06:57:51 +00:00
|
|
|
stats.VolumeServerRequestCounter.WithLabelValues(stats.ErrorSizeMismatch).Inc()
|
2020-08-05 05:09:07 +00:00
|
|
|
return fmt.Errorf("entry not found: offset %d found id %x size %d, expected size %d", offset, n.Id, n.Size, size)
|
2015-05-26 07:58:41 +00:00
|
|
|
}
|
2013-01-17 08:22:18 +00:00
|
|
|
switch version {
|
|
|
|
case Version1:
|
2019-04-19 07:39:34 +00:00
|
|
|
n.Data = bytes[NeedleHeaderSize : NeedleHeaderSize+size]
|
2018-07-24 08:36:04 +00:00
|
|
|
case Version2, Version3:
|
2019-04-19 07:39:34 +00:00
|
|
|
err = n.readNeedleDataVersion2(bytes[NeedleHeaderSize : NeedleHeaderSize+int(n.Size)])
|
2012-12-21 05:57:03 +00:00
|
|
|
}
|
2019-04-30 03:22:19 +00:00
|
|
|
if err != nil && err != io.EOF {
|
2019-03-19 12:34:43 +00:00
|
|
|
return err
|
2016-07-25 03:40:35 +00:00
|
|
|
}
|
2019-04-19 08:56:38 +00:00
|
|
|
if size > 0 {
|
|
|
|
checksum := util.BytesToUint32(bytes[NeedleHeaderSize+size : NeedleHeaderSize+size+NeedleChecksumSize])
|
|
|
|
newChecksum := NewCRC(n.Data)
|
2022-06-05 22:24:02 +00:00
|
|
|
if checksum != newChecksum.Value() && checksum != uint32(newChecksum) {
|
|
|
|
// the crc.Value() function is to be deprecated. this double checking is for backward compatible.
|
2022-02-05 06:57:51 +00:00
|
|
|
stats.VolumeServerRequestCounter.WithLabelValues(stats.ErrorCRC).Inc()
|
2019-04-19 08:56:38 +00:00
|
|
|
return errors.New("CRC error! Data On Disk Corrupted")
|
|
|
|
}
|
|
|
|
n.Checksum = newChecksum
|
2015-05-26 07:58:41 +00:00
|
|
|
}
|
2018-07-24 08:36:04 +00:00
|
|
|
if version == Version3 {
|
2019-04-19 07:39:34 +00:00
|
|
|
tsOffset := NeedleHeaderSize + size + NeedleChecksumSize
|
2018-07-24 08:38:08 +00:00
|
|
|
n.AppendAtNs = util.BytesToUint64(bytes[tsOffset : tsOffset+TimestampSize])
|
2018-07-24 08:36:04 +00:00
|
|
|
}
|
2015-05-26 07:58:41 +00:00
|
|
|
return nil
|
2012-12-21 05:57:03 +00:00
|
|
|
}
|
2018-07-08 09:28:04 +00:00
|
|
|
|
2019-05-27 18:59:03 +00:00
|
|
|
// ReadData hydrates the needle from the file, with only n.Id is set.
|
2020-08-19 00:04:28 +00:00
|
|
|
func (n *Needle) ReadData(r backend.BackendStorageFile, offset int64, size Size, version Version) (err error) {
|
2019-05-27 18:59:03 +00:00
|
|
|
bytes, err := ReadNeedleBlob(r, offset, size, version)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return n.ReadBytes(bytes, offset, size, version)
|
|
|
|
}
|
|
|
|
|
2015-05-26 07:58:41 +00:00
|
|
|
func (n *Needle) ParseNeedleHeader(bytes []byte) {
|
2018-07-08 09:28:04 +00:00
|
|
|
n.Cookie = BytesToCookie(bytes[0:CookieSize])
|
2018-07-24 08:38:08 +00:00
|
|
|
n.Id = BytesToNeedleId(bytes[CookieSize : CookieSize+NeedleIdSize])
|
2020-08-19 00:04:28 +00:00
|
|
|
n.Size = BytesToSize(bytes[CookieSize+NeedleIdSize : NeedleHeaderSize])
|
2012-12-21 10:13:02 +00:00
|
|
|
}
|
2018-07-08 09:28:04 +00:00
|
|
|
|
2019-03-19 12:34:43 +00:00
|
|
|
func (n *Needle) readNeedleDataVersion2(bytes []byte) (err error) {
|
2012-12-21 10:20:38 +00:00
|
|
|
index, lenBytes := 0, len(bytes)
|
|
|
|
if index < lenBytes {
|
2018-07-24 08:38:08 +00:00
|
|
|
n.DataSize = util.BytesToUint32(bytes[index : index+4])
|
2012-12-21 10:20:38 +00:00
|
|
|
index = index + 4
|
2019-03-20 03:56:27 +00:00
|
|
|
if int(n.DataSize)+index > lenBytes {
|
2022-02-05 06:57:51 +00:00
|
|
|
stats.VolumeServerRequestCounter.WithLabelValues(stats.ErrorIndexOutOfRange).Inc()
|
2019-03-20 03:56:27 +00:00
|
|
|
return fmt.Errorf("index out of range %d", 1)
|
2015-03-09 07:34:26 +00:00
|
|
|
}
|
2018-07-24 08:38:08 +00:00
|
|
|
n.Data = bytes[index : index+int(n.DataSize)]
|
2012-12-21 10:20:38 +00:00
|
|
|
index = index + int(n.DataSize)
|
2022-06-05 01:15:39 +00:00
|
|
|
}
|
|
|
|
_, err = n.readNeedleDataVersion2NonData(bytes[index:])
|
|
|
|
return
|
|
|
|
}
|
|
|
|
func (n *Needle) readNeedleDataVersion2NonData(bytes []byte) (index int, err error) {
|
|
|
|
lenBytes := len(bytes)
|
|
|
|
if index < lenBytes {
|
2012-12-21 10:20:38 +00:00
|
|
|
n.Flags = bytes[index]
|
|
|
|
index = index + 1
|
|
|
|
}
|
2012-12-22 20:38:09 +00:00
|
|
|
if index < lenBytes && n.HasName() {
|
2012-12-21 10:13:02 +00:00
|
|
|
n.NameSize = uint8(bytes[index])
|
|
|
|
index = index + 1
|
2019-03-20 03:56:27 +00:00
|
|
|
if int(n.NameSize)+index > lenBytes {
|
2022-02-05 06:57:51 +00:00
|
|
|
stats.VolumeServerRequestCounter.WithLabelValues(stats.ErrorIndexOutOfRange).Inc()
|
2022-06-05 01:15:39 +00:00
|
|
|
return index, fmt.Errorf("index out of range %d", 2)
|
2019-03-19 12:34:43 +00:00
|
|
|
}
|
2018-07-24 08:38:08 +00:00
|
|
|
n.Name = bytes[index : index+int(n.NameSize)]
|
2012-12-21 10:13:02 +00:00
|
|
|
index = index + int(n.NameSize)
|
|
|
|
}
|
2012-12-22 20:38:09 +00:00
|
|
|
if index < lenBytes && n.HasMime() {
|
2012-12-21 10:13:02 +00:00
|
|
|
n.MimeSize = uint8(bytes[index])
|
|
|
|
index = index + 1
|
2019-03-20 03:56:27 +00:00
|
|
|
if int(n.MimeSize)+index > lenBytes {
|
2022-02-05 06:57:51 +00:00
|
|
|
stats.VolumeServerRequestCounter.WithLabelValues(stats.ErrorIndexOutOfRange).Inc()
|
2022-06-05 01:15:39 +00:00
|
|
|
return index, fmt.Errorf("index out of range %d", 3)
|
2019-03-19 12:34:43 +00:00
|
|
|
}
|
2018-07-24 08:38:08 +00:00
|
|
|
n.Mime = bytes[index : index+int(n.MimeSize)]
|
2013-07-09 06:38:38 +00:00
|
|
|
index = index + int(n.MimeSize)
|
|
|
|
}
|
|
|
|
if index < lenBytes && n.HasLastModifiedDate() {
|
2019-03-20 03:56:27 +00:00
|
|
|
if LastModifiedBytesLength+index > lenBytes {
|
2022-02-05 06:57:51 +00:00
|
|
|
stats.VolumeServerRequestCounter.WithLabelValues(stats.ErrorIndexOutOfRange).Inc()
|
2022-06-05 01:15:39 +00:00
|
|
|
return index, fmt.Errorf("index out of range %d", 4)
|
2019-03-19 12:34:43 +00:00
|
|
|
}
|
2018-07-24 08:38:08 +00:00
|
|
|
n.LastModified = util.BytesToUint64(bytes[index : index+LastModifiedBytesLength])
|
2013-07-09 06:38:38 +00:00
|
|
|
index = index + LastModifiedBytesLength
|
2012-12-21 10:13:02 +00:00
|
|
|
}
|
2014-09-20 19:38:59 +00:00
|
|
|
if index < lenBytes && n.HasTtl() {
|
2019-03-20 03:56:27 +00:00
|
|
|
if TtlBytesLength+index > lenBytes {
|
2022-02-05 06:57:51 +00:00
|
|
|
stats.VolumeServerRequestCounter.WithLabelValues(stats.ErrorIndexOutOfRange).Inc()
|
2022-06-05 01:15:39 +00:00
|
|
|
return index, fmt.Errorf("index out of range %d", 5)
|
2019-03-19 12:34:43 +00:00
|
|
|
}
|
2018-07-24 08:38:08 +00:00
|
|
|
n.Ttl = LoadTTLFromBytes(bytes[index : index+TtlBytesLength])
|
2014-09-20 19:38:59 +00:00
|
|
|
index = index + TtlBytesLength
|
|
|
|
}
|
2017-01-08 01:16:29 +00:00
|
|
|
if index < lenBytes && n.HasPairs() {
|
2019-03-20 03:56:27 +00:00
|
|
|
if 2+index > lenBytes {
|
2022-02-05 06:57:51 +00:00
|
|
|
stats.VolumeServerRequestCounter.WithLabelValues(stats.ErrorIndexOutOfRange).Inc()
|
2022-06-05 01:15:39 +00:00
|
|
|
return index, fmt.Errorf("index out of range %d", 6)
|
2019-03-19 12:34:43 +00:00
|
|
|
}
|
2018-07-24 08:38:08 +00:00
|
|
|
n.PairsSize = util.BytesToUint16(bytes[index : index+2])
|
2017-01-08 01:16:29 +00:00
|
|
|
index += 2
|
2019-03-20 03:56:27 +00:00
|
|
|
if int(n.PairsSize)+index > lenBytes {
|
2022-02-05 06:57:51 +00:00
|
|
|
stats.VolumeServerRequestCounter.WithLabelValues(stats.ErrorIndexOutOfRange).Inc()
|
2022-06-05 01:15:39 +00:00
|
|
|
return index, fmt.Errorf("index out of range %d", 7)
|
2019-03-19 12:34:43 +00:00
|
|
|
}
|
2017-01-08 01:16:29 +00:00
|
|
|
end := index + int(n.PairsSize)
|
|
|
|
n.Pairs = bytes[index:end]
|
|
|
|
index = end
|
|
|
|
}
|
2022-06-05 01:15:39 +00:00
|
|
|
return index, nil
|
2012-12-21 10:13:02 +00:00
|
|
|
}
|
2013-01-21 03:44:23 +00:00
|
|
|
|
2019-11-29 02:33:18 +00:00
|
|
|
func ReadNeedleHeader(r backend.BackendStorageFile, version Version, offset int64) (n *Needle, bytes []byte, bodyLength int64, err error) {
|
2012-12-21 06:32:21 +00:00
|
|
|
n = new(Needle)
|
2018-07-24 08:36:04 +00:00
|
|
|
if version == Version1 || version == Version2 || version == Version3 {
|
2019-04-19 07:39:34 +00:00
|
|
|
bytes = make([]byte, NeedleHeaderSize)
|
2019-08-28 13:48:06 +00:00
|
|
|
|
2019-11-09 08:10:59 +00:00
|
|
|
var count int
|
|
|
|
count, err = r.ReadAt(bytes, offset)
|
|
|
|
if count <= 0 || err != nil {
|
|
|
|
return nil, bytes, 0, err
|
2012-12-21 06:32:21 +00:00
|
|
|
}
|
2019-11-09 08:10:59 +00:00
|
|
|
|
2015-05-26 07:58:41 +00:00
|
|
|
n.ParseNeedleHeader(bytes)
|
2018-07-24 08:36:04 +00:00
|
|
|
bodyLength = NeedleBodyLength(n.Size, version)
|
2012-12-21 08:36:55 +00:00
|
|
|
}
|
2019-08-28 13:48:06 +00:00
|
|
|
|
2012-12-21 08:36:55 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-08-19 00:04:28 +00:00
|
|
|
func PaddingLength(needleSize Size, version Version) Size {
|
2018-07-24 08:36:04 +00:00
|
|
|
if version == Version3 {
|
|
|
|
// this is same value as version2, but just listed here for clarity
|
2019-04-19 07:39:34 +00:00
|
|
|
return NeedlePaddingSize - ((NeedleHeaderSize + needleSize + NeedleChecksumSize + TimestampSize) % NeedlePaddingSize)
|
2018-07-24 08:36:04 +00:00
|
|
|
}
|
2019-04-19 07:39:34 +00:00
|
|
|
return NeedlePaddingSize - ((NeedleHeaderSize + needleSize + NeedleChecksumSize) % NeedlePaddingSize)
|
2018-07-24 08:36:04 +00:00
|
|
|
}
|
|
|
|
|
2020-08-19 00:04:28 +00:00
|
|
|
func NeedleBodyLength(needleSize Size, version Version) int64 {
|
2018-07-24 08:36:04 +00:00
|
|
|
if version == Version3 {
|
|
|
|
return int64(needleSize) + NeedleChecksumSize + TimestampSize + int64(PaddingLength(needleSize, version))
|
|
|
|
}
|
|
|
|
return int64(needleSize) + NeedleChecksumSize + int64(PaddingLength(needleSize, version))
|
|
|
|
}
|
|
|
|
|
2012-12-21 08:36:55 +00:00
|
|
|
//n should be a needle already read the header
|
|
|
|
//the input stream will read until next file entry
|
2019-11-29 02:33:18 +00:00
|
|
|
func (n *Needle) ReadNeedleBody(r backend.BackendStorageFile, version Version, offset int64, bodyLength int64) (bytes []byte, err error) {
|
2019-03-18 06:28:43 +00:00
|
|
|
|
2013-02-06 22:30:44 +00:00
|
|
|
if bodyLength <= 0 {
|
2019-04-18 07:18:29 +00:00
|
|
|
return nil, nil
|
2013-02-06 22:30:44 +00:00
|
|
|
}
|
2019-04-19 02:22:13 +00:00
|
|
|
bytes = make([]byte, bodyLength)
|
|
|
|
if _, err = r.ReadAt(bytes, offset); err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
err = n.ReadNeedleBodyBytes(bytes, version)
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func (n *Needle) ReadNeedleBodyBytes(needleBody []byte, version Version) (err error) {
|
|
|
|
|
|
|
|
if len(needleBody) <= 0 {
|
|
|
|
return nil
|
|
|
|
}
|
2013-01-17 08:22:18 +00:00
|
|
|
switch version {
|
|
|
|
case Version1:
|
2019-04-19 02:22:13 +00:00
|
|
|
n.Data = needleBody[:n.Size]
|
2012-12-21 08:36:55 +00:00
|
|
|
n.Checksum = NewCRC(n.Data)
|
2018-07-24 08:36:04 +00:00
|
|
|
case Version2, Version3:
|
2019-04-19 02:22:13 +00:00
|
|
|
err = n.readNeedleDataVersion2(needleBody[0:n.Size])
|
2012-12-21 10:13:02 +00:00
|
|
|
n.Checksum = NewCRC(n.Data)
|
2019-03-18 06:28:43 +00:00
|
|
|
|
|
|
|
if version == Version3 {
|
2019-03-19 12:34:43 +00:00
|
|
|
tsOffset := n.Size + NeedleChecksumSize
|
2019-04-19 02:22:13 +00:00
|
|
|
n.AppendAtNs = util.BytesToUint64(needleBody[tsOffset : tsOffset+TimestampSize])
|
2019-03-18 06:28:43 +00:00
|
|
|
}
|
2013-01-20 11:40:04 +00:00
|
|
|
default:
|
2019-04-19 02:22:13 +00:00
|
|
|
err = fmt.Errorf("unsupported version %d!", version)
|
2012-12-21 05:57:03 +00:00
|
|
|
}
|
2012-12-21 06:32:21 +00:00
|
|
|
return
|
2012-12-21 05:57:03 +00:00
|
|
|
}
|
2012-12-22 10:10:45 +00:00
|
|
|
|
2020-06-20 05:45:27 +00:00
|
|
|
func (n *Needle) IsCompressed() bool {
|
|
|
|
return n.Flags&FlagIsCompressed > 0
|
2012-12-22 20:38:09 +00:00
|
|
|
}
|
2020-06-20 05:45:27 +00:00
|
|
|
func (n *Needle) SetIsCompressed() {
|
|
|
|
n.Flags = n.Flags | FlagIsCompressed
|
2012-12-22 20:38:09 +00:00
|
|
|
}
|
|
|
|
func (n *Needle) HasName() bool {
|
2013-01-20 11:40:04 +00:00
|
|
|
return n.Flags&FlagHasName > 0
|
2012-12-22 20:38:09 +00:00
|
|
|
}
|
|
|
|
func (n *Needle) SetHasName() {
|
2013-01-20 11:40:04 +00:00
|
|
|
n.Flags = n.Flags | FlagHasName
|
2012-12-22 20:38:09 +00:00
|
|
|
}
|
|
|
|
func (n *Needle) HasMime() bool {
|
2013-01-20 11:40:04 +00:00
|
|
|
return n.Flags&FlagHasMime > 0
|
2012-12-22 10:10:45 +00:00
|
|
|
}
|
2012-12-22 20:38:09 +00:00
|
|
|
func (n *Needle) SetHasMime() {
|
2013-01-20 11:40:04 +00:00
|
|
|
n.Flags = n.Flags | FlagHasMime
|
2012-12-22 10:10:45 +00:00
|
|
|
}
|
2013-07-09 06:38:38 +00:00
|
|
|
func (n *Needle) HasLastModifiedDate() bool {
|
|
|
|
return n.Flags&FlagHasLastModifiedDate > 0
|
|
|
|
}
|
|
|
|
func (n *Needle) SetHasLastModifiedDate() {
|
|
|
|
n.Flags = n.Flags | FlagHasLastModifiedDate
|
|
|
|
}
|
2014-09-20 19:38:59 +00:00
|
|
|
func (n *Needle) HasTtl() bool {
|
|
|
|
return n.Flags&FlagHasTtl > 0
|
|
|
|
}
|
|
|
|
func (n *Needle) SetHasTtl() {
|
|
|
|
n.Flags = n.Flags | FlagHasTtl
|
|
|
|
}
|
2015-11-29 15:49:41 +00:00
|
|
|
|
2015-12-01 12:53:44 +00:00
|
|
|
func (n *Needle) IsChunkedManifest() bool {
|
2015-12-15 06:38:58 +00:00
|
|
|
return n.Flags&FlagIsChunkManifest > 0
|
2015-11-29 15:49:41 +00:00
|
|
|
}
|
|
|
|
|
2015-12-15 06:38:58 +00:00
|
|
|
func (n *Needle) SetIsChunkManifest() {
|
|
|
|
n.Flags = n.Flags | FlagIsChunkManifest
|
2015-11-29 15:49:41 +00:00
|
|
|
}
|
2017-01-08 01:16:29 +00:00
|
|
|
|
|
|
|
func (n *Needle) HasPairs() bool {
|
|
|
|
return n.Flags&FlagHasPairs != 0
|
|
|
|
}
|
|
|
|
|
|
|
|
func (n *Needle) SetHasPairs() {
|
|
|
|
n.Flags = n.Flags | FlagHasPairs
|
|
|
|
}
|
2019-04-19 04:43:36 +00:00
|
|
|
|
2020-08-19 00:04:28 +00:00
|
|
|
func GetActualSize(size Size, version Version) int64 {
|
2019-04-19 07:39:34 +00:00
|
|
|
return NeedleHeaderSize + NeedleBodyLength(size, version)
|
2019-04-19 04:43:36 +00:00
|
|
|
}
|