frostfs-api-go/status/marshal.go
Leonard Lyubich 0f09f0dfc6 Re-compile NeoFS API proto files using updated script
Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
2021-11-17 15:29:33 +03:00

115 lines
2.1 KiB
Go

package status
import (
"github.com/nspcc-dev/neofs-api-go/v2/rpc/message"
status "github.com/nspcc-dev/neofs-api-go/v2/status/grpc"
protoutil "github.com/nspcc-dev/neofs-api-go/v2/util/proto"
)
const (
_ = iota
detailIDFNum
detailValueFNum
)
func (x *Detail) 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.UInt32Marshal(detailIDFNum, buf[offset:], x.id)
if err != nil {
return nil, err
}
offset += n
_, err = protoutil.BytesMarshal(detailValueFNum, buf[offset:], x.val)
if err != nil {
return nil, err
}
return buf, nil
}
func (x *Detail) StableSize() (size int) {
size += protoutil.UInt32Size(detailIDFNum, x.id)
size += protoutil.BytesSize(detailValueFNum, x.val)
return size
}
func (x *Detail) Unmarshal(data []byte) error {
return message.Unmarshal(x, data, new(status.Status_Detail))
}
const (
_ = iota
statusCodeFNum
statusMsgFNum
statusDetailsFNum
)
func (x *Status) 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.UInt32Marshal(statusCodeFNum, buf[offset:], CodeToGRPC(x.code))
if err != nil {
return nil, err
}
offset += n
n, err = protoutil.StringMarshal(statusMsgFNum, buf[offset:], x.msg)
if err != nil {
return nil, err
}
offset += n
for i := range x.details {
n, err = protoutil.NestedStructureMarshal(statusDetailsFNum, buf[offset:], x.details[i])
if err != nil {
return nil, err
}
offset += n
}
return buf, nil
}
func (x *Status) StableSize() (size int) {
size += protoutil.UInt32Size(statusCodeFNum, CodeToGRPC(x.code))
size += protoutil.StringSize(statusMsgFNum, x.msg)
for i := range x.details {
size += protoutil.NestedStructureSize(statusDetailsFNum, x.details[i])
}
return size
}
func (x *Status) Unmarshal(data []byte) error {
return message.Unmarshal(x, data, new(status.Status))
}