1031f3122e
Implement `message.Message` interface on all structures and use new methods for conversion instead of functions. make `Unmarshal` and JSON methods to use encoding functions from `message` library. Remove all per-service clients and implement `rpc` library of the functions which execute NeoFS API RPC through new RPC client. Remove no longer used gRPC per-service clients. Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
122 lines
2.3 KiB
Go
122 lines
2.3 KiB
Go
package accounting
|
|
|
|
import (
|
|
"github.com/nspcc-dev/neofs-api-go/rpc/message"
|
|
protoutil "github.com/nspcc-dev/neofs-api-go/util/proto"
|
|
accounting "github.com/nspcc-dev/neofs-api-go/v2/accounting/grpc"
|
|
)
|
|
|
|
const (
|
|
decimalValueField = 1
|
|
decimalPrecisionField = 2
|
|
|
|
balanceReqBodyOwnerField = 1
|
|
|
|
balanceRespBodyDecimalField = 1
|
|
)
|
|
|
|
func (d *Decimal) StableMarshal(buf []byte) ([]byte, error) {
|
|
if d == nil {
|
|
return []byte{}, nil
|
|
}
|
|
|
|
if buf == nil {
|
|
buf = make([]byte, d.StableSize())
|
|
}
|
|
|
|
var (
|
|
offset, n int
|
|
err error
|
|
)
|
|
|
|
n, err = protoutil.Int64Marshal(decimalValueField, buf[offset:], d.val)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
offset += n
|
|
|
|
_, err = protoutil.UInt32Marshal(decimalPrecisionField, buf[offset:], d.prec)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return buf, nil
|
|
}
|
|
|
|
func (d *Decimal) StableSize() (size int) {
|
|
if d == nil {
|
|
return 0
|
|
}
|
|
|
|
size += protoutil.Int64Size(decimalValueField, d.val)
|
|
size += protoutil.UInt32Size(decimalPrecisionField, d.prec)
|
|
|
|
return size
|
|
}
|
|
|
|
func (d *Decimal) Unmarshal(data []byte) error {
|
|
return message.Unmarshal(d, data, new(accounting.Decimal))
|
|
}
|
|
|
|
func (b *BalanceRequestBody) StableMarshal(buf []byte) ([]byte, error) {
|
|
if b == nil {
|
|
return []byte{}, nil
|
|
}
|
|
|
|
if buf == nil {
|
|
buf = make([]byte, b.StableSize())
|
|
}
|
|
|
|
_, err := protoutil.NestedStructureMarshal(balanceReqBodyOwnerField, buf, b.ownerID)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return buf, nil
|
|
}
|
|
|
|
func (b *BalanceRequestBody) StableSize() (size int) {
|
|
if b == nil {
|
|
return 0
|
|
}
|
|
|
|
size = protoutil.NestedStructureSize(balanceReqBodyOwnerField, b.ownerID)
|
|
|
|
return size
|
|
}
|
|
|
|
func (b *BalanceRequestBody) Unmarshal(data []byte) error {
|
|
return message.Unmarshal(b, data, new(accounting.BalanceRequest_Body))
|
|
}
|
|
|
|
func (br *BalanceResponseBody) StableMarshal(buf []byte) ([]byte, error) {
|
|
if br == nil {
|
|
return []byte{}, nil
|
|
}
|
|
|
|
if buf == nil {
|
|
buf = make([]byte, br.StableSize())
|
|
}
|
|
|
|
_, err := protoutil.NestedStructureMarshal(balanceRespBodyDecimalField, buf, br.bal)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return buf, nil
|
|
}
|
|
|
|
func (br *BalanceResponseBody) StableSize() (size int) {
|
|
if br == nil {
|
|
return 0
|
|
}
|
|
|
|
size = protoutil.NestedStructureSize(balanceRespBodyDecimalField, br.bal)
|
|
|
|
return size
|
|
}
|
|
|
|
func (br *BalanceResponseBody) Unmarshal(data []byte) error {
|
|
return message.Unmarshal(br, data, new(accounting.BalanceResponse_Body))
|
|
}
|