2020-12-10 08:30:14 +00:00
|
|
|
package tombstone
|
|
|
|
|
|
|
|
import (
|
2021-11-16 17:30:55 +00:00
|
|
|
"github.com/nspcc-dev/neofs-api-go/v2/rpc/message"
|
2020-12-10 08:30:14 +00:00
|
|
|
tombstone "github.com/nspcc-dev/neofs-api-go/v2/tombstone/grpc"
|
2021-11-16 17:30:55 +00:00
|
|
|
"github.com/nspcc-dev/neofs-api-go/v2/util/proto"
|
2020-12-10 08:30:14 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
expFNum = 1
|
|
|
|
splitIDFNum = 2
|
|
|
|
membersFNum = 3
|
|
|
|
)
|
|
|
|
|
|
|
|
// StableMarshal marshals unified tombstone message in a protobuf
|
|
|
|
// compatible way without field order shuffle.
|
|
|
|
func (s *Tombstone) StableMarshal(buf []byte) ([]byte, error) {
|
|
|
|
if s == nil {
|
|
|
|
return []byte{}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
if buf == nil {
|
|
|
|
buf = make([]byte, s.StableSize())
|
|
|
|
}
|
|
|
|
|
|
|
|
var (
|
|
|
|
offset, n int
|
|
|
|
err error
|
|
|
|
)
|
|
|
|
|
|
|
|
n, err = proto.UInt64Marshal(expFNum, buf[offset:], s.exp)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
offset += n
|
|
|
|
|
|
|
|
n, err = proto.BytesMarshal(splitIDFNum, buf[offset:], s.splitID)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
offset += n
|
|
|
|
|
|
|
|
for i := range s.members {
|
2022-03-01 12:50:09 +00:00
|
|
|
n, err = proto.NestedStructureMarshal(membersFNum, buf[offset:], &s.members[i])
|
2020-12-10 08:30:14 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
offset += n
|
|
|
|
}
|
|
|
|
|
|
|
|
return buf, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// StableSize returns size of tombstone message marshalled by StableMarshal function.
|
|
|
|
func (s *Tombstone) StableSize() (size int) {
|
|
|
|
if s == nil {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
size += proto.UInt64Size(expFNum, s.exp)
|
|
|
|
size += proto.BytesSize(splitIDFNum, s.splitID)
|
|
|
|
for i := range s.members {
|
2022-03-01 12:50:09 +00:00
|
|
|
size += proto.NestedStructureSize(membersFNum, &s.members[i])
|
2020-12-10 08:30:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return size
|
|
|
|
}
|
|
|
|
|
|
|
|
// Unmarshal unmarshal tombstone message from its binary representation.
|
|
|
|
func (s *Tombstone) Unmarshal(data []byte) error {
|
2021-03-12 12:57:23 +00:00
|
|
|
return message.Unmarshal(s, data, new(tombstone.Tombstone))
|
2020-12-10 08:30:14 +00:00
|
|
|
}
|