2021-03-24 07:10:51 +00:00
|
|
|
package reputation
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/nspcc-dev/neofs-api-go/rpc/message"
|
|
|
|
protoutil "github.com/nspcc-dev/neofs-api-go/util/proto"
|
|
|
|
reputation "github.com/nspcc-dev/neofs-api-go/v2/reputation/grpc"
|
|
|
|
)
|
|
|
|
|
2021-04-01 14:53:14 +00:00
|
|
|
const (
|
|
|
|
_ = iota
|
|
|
|
peerIDValFNum
|
|
|
|
)
|
|
|
|
|
|
|
|
func (x *PeerID) StableMarshal(buf []byte) ([]byte, error) {
|
|
|
|
if x == nil {
|
|
|
|
return []byte{}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
if buf == nil {
|
|
|
|
buf = make([]byte, x.StableSize())
|
|
|
|
}
|
|
|
|
|
|
|
|
_, err := protoutil.BytesMarshal(peerIDValFNum, buf, x.val)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return buf, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *PeerID) StableSize() (size int) {
|
|
|
|
size += protoutil.BytesSize(peerIDValFNum, x.val)
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *PeerID) Unmarshal(data []byte) error {
|
|
|
|
return message.Unmarshal(x, data, new(reputation.PeerID))
|
|
|
|
}
|
|
|
|
|
2021-03-24 07:10:51 +00:00
|
|
|
const (
|
|
|
|
_ = iota
|
|
|
|
trustPeerFNum
|
|
|
|
trustValueFNum
|
|
|
|
)
|
|
|
|
|
|
|
|
func (x *Trust) StableMarshal(buf []byte) ([]byte, error) {
|
|
|
|
if x == nil {
|
|
|
|
return []byte{}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
if buf == nil {
|
|
|
|
buf = make([]byte, x.StableSize())
|
|
|
|
}
|
|
|
|
|
|
|
|
var (
|
|
|
|
offset, n int
|
|
|
|
err error
|
|
|
|
)
|
|
|
|
|
2021-04-01 14:53:14 +00:00
|
|
|
n, err = protoutil.NestedStructureMarshal(trustPeerFNum, buf[offset:], x.peer)
|
2021-03-24 07:10:51 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
offset += n
|
|
|
|
|
|
|
|
_, err = protoutil.Float64Marshal(trustValueFNum, buf[offset:], x.val)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return buf, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *Trust) StableSize() (size int) {
|
2021-04-01 14:53:14 +00:00
|
|
|
size += protoutil.NestedStructureSize(trustPeerFNum, x.peer)
|
2021-03-24 07:10:51 +00:00
|
|
|
size += protoutil.Float64Size(trustValueFNum, x.val)
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *Trust) Unmarshal(data []byte) error {
|
|
|
|
return message.Unmarshal(x, data, new(reputation.Trust))
|
|
|
|
}
|
|
|
|
|
2021-04-09 08:28:06 +00:00
|
|
|
const (
|
|
|
|
_ = iota
|
|
|
|
p2pTrustTrustingFNum
|
|
|
|
p2pTrustValueFNum
|
|
|
|
)
|
|
|
|
|
|
|
|
func (x *PeerToPeerTrust) StableMarshal(buf []byte) ([]byte, error) {
|
|
|
|
if x == nil {
|
|
|
|
return []byte{}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
if buf == nil {
|
|
|
|
buf = make([]byte, x.StableSize())
|
|
|
|
}
|
|
|
|
|
|
|
|
offset, err := protoutil.NestedStructureMarshal(p2pTrustTrustingFNum, buf, x.trusting)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
_, err = protoutil.NestedStructureMarshal(p2pTrustValueFNum, buf[offset:], x.trust)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return buf, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *PeerToPeerTrust) StableSize() (size int) {
|
|
|
|
size += protoutil.NestedStructureSize(p2pTrustTrustingFNum, x.trusting)
|
|
|
|
size += protoutil.NestedStructureSize(p2pTrustValueFNum, x.trust)
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *PeerToPeerTrust) Unmarshal(data []byte) error {
|
|
|
|
return message.Unmarshal(x, data, new(reputation.PeerToPeerTrust))
|
|
|
|
}
|
|
|
|
|
2021-04-01 14:53:14 +00:00
|
|
|
const (
|
|
|
|
_ = iota
|
|
|
|
globalTrustBodyManagerFNum
|
|
|
|
globalTrustBodyValueFNum
|
|
|
|
)
|
|
|
|
|
|
|
|
func (x *GlobalTrustBody) StableMarshal(buf []byte) ([]byte, error) {
|
|
|
|
if x == nil {
|
|
|
|
return []byte{}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
if buf == nil {
|
|
|
|
buf = make([]byte, x.StableSize())
|
|
|
|
}
|
|
|
|
|
|
|
|
offset, err := protoutil.NestedStructureMarshal(globalTrustBodyManagerFNum, buf, x.manager)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
_, err = protoutil.NestedStructureMarshal(globalTrustBodyValueFNum, buf[offset:], x.trust)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return buf, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *GlobalTrustBody) StableSize() (size int) {
|
|
|
|
size += protoutil.NestedStructureSize(globalTrustBodyManagerFNum, x.manager)
|
|
|
|
size += protoutil.NestedStructureSize(globalTrustBodyValueFNum, x.trust)
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *GlobalTrustBody) Unmarshal(data []byte) error {
|
|
|
|
return message.Unmarshal(x, data, new(reputation.GlobalTrust_Body))
|
|
|
|
}
|
|
|
|
|
|
|
|
const (
|
|
|
|
_ = iota
|
|
|
|
globalTrustVersionFNum
|
|
|
|
globalTrustBodyFNum
|
|
|
|
globalTrustSigFNum
|
|
|
|
)
|
|
|
|
|
|
|
|
func (x *GlobalTrust) StableMarshal(buf []byte) ([]byte, error) {
|
|
|
|
if x == nil {
|
|
|
|
return []byte{}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
if buf == nil {
|
|
|
|
buf = make([]byte, x.StableSize())
|
|
|
|
}
|
|
|
|
|
|
|
|
offset, err := protoutil.NestedStructureMarshal(globalTrustVersionFNum, buf, x.version)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
n, err := protoutil.NestedStructureMarshal(globalTrustBodyFNum, buf[offset:], x.body)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
offset += n
|
|
|
|
|
|
|
|
_, err = protoutil.NestedStructureMarshal(globalTrustSigFNum, buf[offset:], x.sig)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return buf, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *GlobalTrust) StableSize() (size int) {
|
|
|
|
size += protoutil.NestedStructureSize(globalTrustVersionFNum, x.version)
|
|
|
|
size += protoutil.NestedStructureSize(globalTrustBodyFNum, x.body)
|
|
|
|
size += protoutil.NestedStructureSize(globalTrustSigFNum, x.sig)
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *GlobalTrust) Unmarshal(data []byte) error {
|
|
|
|
return message.Unmarshal(x, data, new(reputation.GlobalTrust))
|
|
|
|
}
|
|
|
|
|
2021-03-24 07:10:51 +00:00
|
|
|
const (
|
|
|
|
_ = iota
|
|
|
|
sendLocalTrustBodyEpochFNum
|
|
|
|
sendLocalTrustBodyTrustsFNum
|
|
|
|
)
|
|
|
|
|
|
|
|
func (x *SendLocalTrustRequestBody) StableMarshal(buf []byte) ([]byte, error) {
|
|
|
|
if x == nil {
|
|
|
|
return []byte{}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
if buf == nil {
|
|
|
|
buf = make([]byte, x.StableSize())
|
|
|
|
}
|
|
|
|
|
|
|
|
var (
|
|
|
|
offset, n int
|
|
|
|
err error
|
|
|
|
)
|
|
|
|
|
|
|
|
n, err = protoutil.UInt64Marshal(sendLocalTrustBodyEpochFNum, buf[offset:], x.epoch)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
offset += n
|
|
|
|
|
|
|
|
for i := range x.trusts {
|
|
|
|
n, err = protoutil.NestedStructureMarshal(sendLocalTrustBodyTrustsFNum, buf[offset:], x.trusts[i])
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
offset += n
|
|
|
|
}
|
|
|
|
|
|
|
|
return buf, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *SendLocalTrustRequestBody) StableSize() (size int) {
|
|
|
|
size += protoutil.UInt64Size(sendLocalTrustBodyEpochFNum, x.epoch)
|
|
|
|
|
|
|
|
for i := range x.trusts {
|
|
|
|
size += protoutil.NestedStructureSize(sendLocalTrustBodyTrustsFNum, x.trusts[i])
|
|
|
|
}
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *SendLocalTrustRequestBody) Unmarshal(data []byte) error {
|
|
|
|
return message.Unmarshal(x, data, new(reputation.SendLocalTrustRequest_Body))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *SendLocalTrustResponseBody) StableMarshal(buf []byte) ([]byte, error) {
|
|
|
|
return buf, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *SendLocalTrustResponseBody) StableSize() int {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *SendLocalTrustResponseBody) Unmarshal(data []byte) error {
|
|
|
|
return message.Unmarshal(x, data, new(reputation.SendLocalTrustResponse_Body))
|
|
|
|
}
|
2021-04-01 14:53:14 +00:00
|
|
|
|
|
|
|
const (
|
|
|
|
_ = iota
|
2021-04-22 07:40:12 +00:00
|
|
|
sendInterResBodyEpochFNum
|
2021-04-01 14:53:14 +00:00
|
|
|
sendInterResBodyIterFNum
|
|
|
|
sendInterResBodyTrustFNum
|
|
|
|
)
|
|
|
|
|
|
|
|
func (x *SendIntermediateResultRequestBody) StableMarshal(buf []byte) ([]byte, error) {
|
|
|
|
if x == nil {
|
|
|
|
return []byte{}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
if buf == nil {
|
|
|
|
buf = make([]byte, x.StableSize())
|
|
|
|
}
|
|
|
|
|
2021-04-22 07:40:12 +00:00
|
|
|
var (
|
|
|
|
offset, n int
|
|
|
|
err error
|
|
|
|
)
|
|
|
|
|
|
|
|
n, err = protoutil.UInt64Marshal(sendInterResBodyEpochFNum, buf, x.epoch)
|
2021-04-01 14:53:14 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2021-04-22 07:40:12 +00:00
|
|
|
offset += n
|
|
|
|
|
|
|
|
n, err = protoutil.UInt32Marshal(sendInterResBodyIterFNum, buf[offset:], x.iter)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
offset += n
|
|
|
|
|
2021-04-01 14:53:14 +00:00
|
|
|
_, err = protoutil.NestedStructureMarshal(sendInterResBodyTrustFNum, buf[offset:], x.trust)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return buf, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *SendIntermediateResultRequestBody) StableSize() (size int) {
|
2021-04-22 07:40:12 +00:00
|
|
|
size += protoutil.UInt64Size(sendInterResBodyEpochFNum, x.epoch)
|
2021-04-01 14:53:14 +00:00
|
|
|
size += protoutil.UInt32Size(sendInterResBodyIterFNum, x.iter)
|
|
|
|
size += protoutil.NestedStructureSize(sendInterResBodyTrustFNum, x.trust)
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *SendIntermediateResultRequestBody) Unmarshal(data []byte) error {
|
|
|
|
return message.Unmarshal(x, data, new(reputation.SendIntermediateResultRequest_Body))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *SendIntermediateResultResponseBody) StableMarshal(buf []byte) ([]byte, error) {
|
|
|
|
return buf, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *SendIntermediateResultResponseBody) StableSize() int {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *SendIntermediateResultResponseBody) Unmarshal(data []byte) error {
|
|
|
|
return message.Unmarshal(x, data, new(reputation.SendIntermediateResultResponse_Body))
|
|
|
|
}
|