lotus/api/cbor_gen.go

715 lines
15 KiB
Go
Raw Normal View History

// Code generated by github.com/whyrusleeping/cbor-gen. DO NOT EDIT.
package api
import (
"fmt"
"io"
2020-02-12 23:52:36 +00:00
"github.com/filecoin-project/specs-actors/actors/abi"
"github.com/filecoin-project/specs-actors/actors/builtin/paych"
cbg "github.com/whyrusleeping/cbor-gen"
xerrors "golang.org/x/xerrors"
)
var _ = xerrors.Errorf
func (t *PaymentInfo) MarshalCBOR(w io.Writer) error {
if t == nil {
_, err := w.Write(cbg.CborNull)
return err
}
2019-12-09 16:40:15 +00:00
if _, err := w.Write([]byte{163}); err != nil {
return err
}
// t.Channel (address.Address) (struct)
if len("Channel") > cbg.MaxLength {
return xerrors.Errorf("Value in field \"Channel\" was too long")
}
2019-12-09 16:40:15 +00:00
if _, err := w.Write(cbg.CborEncodeMajorType(cbg.MajTextString, uint64(len("Channel")))); err != nil {
return err
}
if _, err := w.Write([]byte("Channel")); err != nil {
return err
}
if err := t.Channel.MarshalCBOR(w); err != nil {
return err
}
2019-12-09 16:40:15 +00:00
// t.ChannelMessage (cid.Cid) (struct)
if len("ChannelMessage") > cbg.MaxLength {
return xerrors.Errorf("Value in field \"ChannelMessage\" was too long")
}
2019-12-09 16:40:15 +00:00
if _, err := w.Write(cbg.CborEncodeMajorType(cbg.MajTextString, uint64(len("ChannelMessage")))); err != nil {
return err
}
if _, err := w.Write([]byte("ChannelMessage")); err != nil {
return err
}
if t.ChannelMessage == nil {
if _, err := w.Write(cbg.CborNull); err != nil {
return err
}
} else {
if err := cbg.WriteCid(w, *t.ChannelMessage); err != nil {
return xerrors.Errorf("failed to write cid field t.ChannelMessage: %w", err)
}
}
2020-02-12 23:52:36 +00:00
// t.Vouchers ([]*paych.SignedVoucher) (slice)
if len("Vouchers") > cbg.MaxLength {
return xerrors.Errorf("Value in field \"Vouchers\" was too long")
}
2019-12-09 16:40:15 +00:00
if _, err := w.Write(cbg.CborEncodeMajorType(cbg.MajTextString, uint64(len("Vouchers")))); err != nil {
return err
}
if _, err := w.Write([]byte("Vouchers")); err != nil {
return err
}
if len(t.Vouchers) > cbg.MaxLength {
return xerrors.Errorf("Slice value in field t.Vouchers was too long")
}
if _, err := w.Write(cbg.CborEncodeMajorType(cbg.MajArray, uint64(len(t.Vouchers)))); err != nil {
return err
}
for _, v := range t.Vouchers {
if err := v.MarshalCBOR(w); err != nil {
return err
}
}
return nil
}
func (t *PaymentInfo) UnmarshalCBOR(r io.Reader) error {
br := cbg.GetPeeker(r)
maj, extra, err := cbg.CborReadHeader(br)
if err != nil {
return err
}
2019-12-09 16:40:15 +00:00
if maj != cbg.MajMap {
return fmt.Errorf("cbor input should be of type map")
}
2020-01-21 16:05:10 +00:00
if extra > cbg.MaxLength {
return fmt.Errorf("PaymentInfo: map struct too large (%d)", extra)
}
2019-12-09 16:40:15 +00:00
var name string
2020-01-21 16:05:10 +00:00
n := extra
2019-12-09 16:40:15 +00:00
2020-01-21 16:05:10 +00:00
for i := uint64(0); i < n; i++ {
2020-01-21 16:05:10 +00:00
{
sval, err := cbg.ReadString(br)
if err != nil {
return err
}
2020-01-21 16:05:10 +00:00
name = string(sval)
}
2020-01-21 16:05:10 +00:00
switch name {
// t.Channel (address.Address) (struct)
case "Channel":
2019-12-09 16:40:15 +00:00
2020-01-21 16:05:10 +00:00
{
2019-12-09 16:40:15 +00:00
2020-01-21 16:05:10 +00:00
if err := t.Channel.UnmarshalCBOR(br); err != nil {
2020-03-21 21:17:01 +00:00
return xerrors.Errorf("unmarshaling t.Channel: %w", err)
2020-01-21 16:05:10 +00:00
}
2020-01-21 16:05:10 +00:00
}
// t.ChannelMessage (cid.Cid) (struct)
case "ChannelMessage":
{
pb, err := br.PeekByte()
if err != nil {
return err
}
if pb == cbg.CborNull[0] {
var nbuf [1]byte
if _, err := br.Read(nbuf[:]); err != nil {
return err
}
} else {
c, err := cbg.ReadCid(br)
if err != nil {
return xerrors.Errorf("failed to read cid field t.ChannelMessage: %w", err)
}
t.ChannelMessage = &c
}
}
2020-02-12 23:52:36 +00:00
// t.Vouchers ([]*paych.SignedVoucher) (slice)
2020-01-21 16:05:10 +00:00
case "Vouchers":
2020-01-21 16:05:10 +00:00
maj, extra, err = cbg.CborReadHeader(br)
if err != nil {
2020-01-21 16:05:10 +00:00
return err
}
2020-01-21 16:05:10 +00:00
if extra > cbg.MaxLength {
return fmt.Errorf("t.Vouchers: array too large (%d)", extra)
}
2020-01-21 16:05:10 +00:00
if maj != cbg.MajArray {
return fmt.Errorf("expected cbor array")
}
2020-04-17 17:53:09 +00:00
2020-01-21 16:05:10 +00:00
if extra > 0 {
2020-02-12 23:52:36 +00:00
t.Vouchers = make([]*paych.SignedVoucher, extra)
2020-01-21 16:05:10 +00:00
}
2020-04-17 17:53:09 +00:00
2020-01-21 16:05:10 +00:00
for i := 0; i < int(extra); i++ {
2019-12-09 16:40:15 +00:00
2020-02-12 23:52:36 +00:00
var v paych.SignedVoucher
2020-01-21 16:05:10 +00:00
if err := v.UnmarshalCBOR(br); err != nil {
return err
}
2020-01-21 16:05:10 +00:00
t.Vouchers[i] = &v
}
2020-01-21 16:05:10 +00:00
default:
return fmt.Errorf("unknown struct field %d: '%s'", i, name)
}
}
return nil
}
2019-11-06 12:22:08 +00:00
func (t *SealedRef) MarshalCBOR(w io.Writer) error {
if t == nil {
_, err := w.Write(cbg.CborNull)
return err
}
2019-12-09 16:40:15 +00:00
if _, err := w.Write([]byte{163}); err != nil {
return err
}
2020-02-12 23:52:36 +00:00
// t.SectorID (abi.SectorNumber) (uint64)
if len("SectorID") > cbg.MaxLength {
return xerrors.Errorf("Value in field \"SectorID\" was too long")
}
2019-12-09 16:40:15 +00:00
if _, err := w.Write(cbg.CborEncodeMajorType(cbg.MajTextString, uint64(len("SectorID")))); err != nil {
return err
}
if _, err := w.Write([]byte("SectorID")); err != nil {
2019-11-06 12:22:08 +00:00
return err
}
2019-12-01 17:58:31 +00:00
if _, err := w.Write(cbg.CborEncodeMajorType(cbg.MajUnsignedInt, uint64(t.SectorID))); err != nil {
2019-11-06 12:22:08 +00:00
return err
}
2019-12-09 16:40:15 +00:00
// t.Offset (uint64) (uint64)
if len("Offset") > cbg.MaxLength {
return xerrors.Errorf("Value in field \"Offset\" was too long")
}
2019-12-09 16:40:15 +00:00
if _, err := w.Write(cbg.CborEncodeMajorType(cbg.MajTextString, uint64(len("Offset")))); err != nil {
return err
}
if _, err := w.Write([]byte("Offset")); err != nil {
return err
}
2019-11-06 12:22:08 +00:00
if _, err := w.Write(cbg.CborEncodeMajorType(cbg.MajUnsignedInt, uint64(t.Offset))); err != nil {
return err
}
2020-02-12 23:52:36 +00:00
// t.Size (abi.UnpaddedPieceSize) (uint64)
if len("Size") > cbg.MaxLength {
return xerrors.Errorf("Value in field \"Size\" was too long")
}
2019-12-09 16:40:15 +00:00
if _, err := w.Write(cbg.CborEncodeMajorType(cbg.MajTextString, uint64(len("Size")))); err != nil {
return err
}
if _, err := w.Write([]byte("Size")); err != nil {
return err
}
2019-11-06 12:22:08 +00:00
if _, err := w.Write(cbg.CborEncodeMajorType(cbg.MajUnsignedInt, uint64(t.Size))); err != nil {
return err
}
2020-02-23 00:47:47 +00:00
2019-11-06 12:22:08 +00:00
return nil
}
func (t *SealedRef) UnmarshalCBOR(r io.Reader) error {
br := cbg.GetPeeker(r)
maj, extra, err := cbg.CborReadHeader(br)
if err != nil {
return err
}
2019-12-09 16:40:15 +00:00
if maj != cbg.MajMap {
return fmt.Errorf("cbor input should be of type map")
2019-11-06 12:22:08 +00:00
}
2020-01-21 16:05:10 +00:00
if extra > cbg.MaxLength {
return fmt.Errorf("SealedRef: map struct too large (%d)", extra)
2019-11-06 12:22:08 +00:00
}
2019-12-09 16:40:15 +00:00
var name string
2020-01-21 16:05:10 +00:00
n := extra
2019-12-09 16:40:15 +00:00
2020-01-21 16:05:10 +00:00
for i := uint64(0); i < n; i++ {
2019-12-09 16:40:15 +00:00
2020-01-21 16:05:10 +00:00
{
sval, err := cbg.ReadString(br)
if err != nil {
return err
}
2019-12-09 16:40:15 +00:00
2020-01-21 16:05:10 +00:00
name = string(sval)
2019-12-09 16:40:15 +00:00
}
2020-01-21 16:05:10 +00:00
switch name {
2020-02-12 23:52:36 +00:00
// t.SectorID (abi.SectorNumber) (uint64)
2020-01-21 16:05:10 +00:00
case "SectorID":
2019-11-06 12:22:08 +00:00
2020-02-23 00:47:47 +00:00
{
maj, extra, err = cbg.CborReadHeader(br)
if err != nil {
return err
}
if maj != cbg.MajUnsignedInt {
return fmt.Errorf("wrong type for uint64 field")
}
t.SectorID = abi.SectorNumber(extra)
2020-01-21 16:05:10 +00:00
}
// t.Offset (uint64) (uint64)
case "Offset":
2019-12-09 16:40:15 +00:00
2020-02-23 00:47:47 +00:00
{
maj, extra, err = cbg.CborReadHeader(br)
if err != nil {
return err
}
if maj != cbg.MajUnsignedInt {
return fmt.Errorf("wrong type for uint64 field")
}
t.Offset = uint64(extra)
2020-01-21 16:05:10 +00:00
}
2020-02-12 23:52:36 +00:00
// t.Size (abi.UnpaddedPieceSize) (uint64)
2020-01-21 16:05:10 +00:00
case "Size":
2019-12-09 16:40:15 +00:00
2020-02-23 00:47:47 +00:00
{
maj, extra, err = cbg.CborReadHeader(br)
if err != nil {
return err
}
if maj != cbg.MajUnsignedInt {
return fmt.Errorf("wrong type for uint64 field")
}
t.Size = abi.UnpaddedPieceSize(extra)
2020-01-21 16:05:10 +00:00
}
2019-12-09 16:40:15 +00:00
2020-01-21 16:05:10 +00:00
default:
return fmt.Errorf("unknown struct field %d: '%s'", i, name)
2020-01-21 16:05:10 +00:00
}
2019-12-09 16:40:15 +00:00
}
2019-11-06 12:22:08 +00:00
return nil
}
func (t *SealedRefs) MarshalCBOR(w io.Writer) error {
if t == nil {
_, err := w.Write(cbg.CborNull)
return err
}
2019-12-09 16:40:15 +00:00
if _, err := w.Write([]byte{161}); err != nil {
return err
}
// t.Refs ([]api.SealedRef) (slice)
if len("Refs") > cbg.MaxLength {
return xerrors.Errorf("Value in field \"Refs\" was too long")
}
2019-12-09 16:40:15 +00:00
if _, err := w.Write(cbg.CborEncodeMajorType(cbg.MajTextString, uint64(len("Refs")))); err != nil {
return err
}
if _, err := w.Write([]byte("Refs")); err != nil {
2019-11-06 12:22:08 +00:00
return err
}
if len(t.Refs) > cbg.MaxLength {
return xerrors.Errorf("Slice value in field t.Refs was too long")
}
2019-11-06 12:22:08 +00:00
if _, err := w.Write(cbg.CborEncodeMajorType(cbg.MajArray, uint64(len(t.Refs)))); err != nil {
return err
}
for _, v := range t.Refs {
if err := v.MarshalCBOR(w); err != nil {
return err
}
}
return nil
}
func (t *SealedRefs) UnmarshalCBOR(r io.Reader) error {
br := cbg.GetPeeker(r)
maj, extra, err := cbg.CborReadHeader(br)
if err != nil {
return err
}
2019-12-09 16:40:15 +00:00
if maj != cbg.MajMap {
return fmt.Errorf("cbor input should be of type map")
2019-11-06 12:22:08 +00:00
}
2020-01-21 16:05:10 +00:00
if extra > cbg.MaxLength {
return fmt.Errorf("SealedRefs: map struct too large (%d)", extra)
2019-11-06 12:22:08 +00:00
}
2019-12-09 16:40:15 +00:00
var name string
2020-01-21 16:05:10 +00:00
n := extra
2019-12-09 16:40:15 +00:00
2020-01-21 16:05:10 +00:00
for i := uint64(0); i < n; i++ {
2019-12-09 16:40:15 +00:00
2020-01-21 16:05:10 +00:00
{
sval, err := cbg.ReadString(br)
if err != nil {
return err
}
name = string(sval)
2019-12-09 16:40:15 +00:00
}
2020-01-21 16:05:10 +00:00
switch name {
// t.Refs ([]api.SealedRef) (slice)
case "Refs":
2019-12-09 16:40:15 +00:00
2020-01-21 16:05:10 +00:00
maj, extra, err = cbg.CborReadHeader(br)
if err != nil {
return err
}
2019-11-06 12:22:08 +00:00
2020-01-21 16:05:10 +00:00
if extra > cbg.MaxLength {
return fmt.Errorf("t.Refs: array too large (%d)", extra)
}
2019-12-09 16:40:15 +00:00
2020-01-21 16:05:10 +00:00
if maj != cbg.MajArray {
return fmt.Errorf("expected cbor array")
}
2020-04-17 17:53:09 +00:00
2020-01-21 16:05:10 +00:00
if extra > 0 {
t.Refs = make([]SealedRef, extra)
}
2020-04-17 17:53:09 +00:00
2020-01-21 16:05:10 +00:00
for i := 0; i < int(extra); i++ {
2019-11-06 12:22:08 +00:00
2020-01-21 16:05:10 +00:00
var v SealedRef
if err := v.UnmarshalCBOR(br); err != nil {
return err
}
2019-11-06 12:22:08 +00:00
2020-01-21 16:05:10 +00:00
t.Refs[i] = v
}
2019-11-06 12:22:08 +00:00
2020-01-21 16:05:10 +00:00
default:
return fmt.Errorf("unknown struct field %d: '%s'", i, name)
2020-01-21 16:05:10 +00:00
}
2019-11-06 12:22:08 +00:00
}
return nil
}
2020-02-27 23:34:48 +00:00
func (t *SealTicket) MarshalCBOR(w io.Writer) error {
if t == nil {
_, err := w.Write(cbg.CborNull)
return err
}
if _, err := w.Write([]byte{162}); err != nil {
return err
}
// t.Value (abi.SealRandomness) (slice)
if len("Value") > cbg.MaxLength {
return xerrors.Errorf("Value in field \"Value\" was too long")
}
if _, err := w.Write(cbg.CborEncodeMajorType(cbg.MajTextString, uint64(len("Value")))); err != nil {
return err
}
if _, err := w.Write([]byte("Value")); err != nil {
return err
}
if len(t.Value) > cbg.ByteArrayMaxLen {
return xerrors.Errorf("Byte array in field t.Value was too long")
}
if _, err := w.Write(cbg.CborEncodeMajorType(cbg.MajByteString, uint64(len(t.Value)))); err != nil {
return err
}
if _, err := w.Write(t.Value); err != nil {
return err
}
// t.Epoch (abi.ChainEpoch) (int64)
if len("Epoch") > cbg.MaxLength {
return xerrors.Errorf("Value in field \"Epoch\" was too long")
}
if _, err := w.Write(cbg.CborEncodeMajorType(cbg.MajTextString, uint64(len("Epoch")))); err != nil {
return err
}
if _, err := w.Write([]byte("Epoch")); err != nil {
return err
}
if t.Epoch >= 0 {
if _, err := w.Write(cbg.CborEncodeMajorType(cbg.MajUnsignedInt, uint64(t.Epoch))); err != nil {
return err
}
} else {
if _, err := w.Write(cbg.CborEncodeMajorType(cbg.MajNegativeInt, uint64(-t.Epoch)-1)); err != nil {
return err
}
}
return nil
}
func (t *SealTicket) UnmarshalCBOR(r io.Reader) error {
br := cbg.GetPeeker(r)
maj, extra, err := cbg.CborReadHeader(br)
if err != nil {
return err
}
if maj != cbg.MajMap {
return fmt.Errorf("cbor input should be of type map")
}
if extra > cbg.MaxLength {
return fmt.Errorf("SealTicket: map struct too large (%d)", extra)
}
var name string
n := extra
for i := uint64(0); i < n; i++ {
{
sval, err := cbg.ReadString(br)
if err != nil {
return err
}
name = string(sval)
}
switch name {
// t.Value (abi.SealRandomness) (slice)
case "Value":
maj, extra, err = cbg.CborReadHeader(br)
if err != nil {
return err
}
if extra > cbg.ByteArrayMaxLen {
return fmt.Errorf("t.Value: byte array too large (%d)", extra)
}
if maj != cbg.MajByteString {
return fmt.Errorf("expected byte array")
}
t.Value = make([]byte, extra)
if _, err := io.ReadFull(br, t.Value); err != nil {
return err
}
// t.Epoch (abi.ChainEpoch) (int64)
case "Epoch":
{
maj, extra, err := cbg.CborReadHeader(br)
var extraI int64
if err != nil {
return err
}
switch maj {
case cbg.MajUnsignedInt:
extraI = int64(extra)
if extraI < 0 {
return fmt.Errorf("int64 positive overflow")
}
case cbg.MajNegativeInt:
extraI = int64(extra)
if extraI < 0 {
return fmt.Errorf("int64 negative oveflow")
}
extraI = -1 - extraI
default:
return fmt.Errorf("wrong type for int64 field: %d", maj)
}
t.Epoch = abi.ChainEpoch(extraI)
}
default:
return fmt.Errorf("unknown struct field %d: '%s'", i, name)
}
}
return nil
}
func (t *SealSeed) MarshalCBOR(w io.Writer) error {
if t == nil {
_, err := w.Write(cbg.CborNull)
return err
}
if _, err := w.Write([]byte{162}); err != nil {
return err
}
// t.Value (abi.InteractiveSealRandomness) (slice)
if len("Value") > cbg.MaxLength {
return xerrors.Errorf("Value in field \"Value\" was too long")
}
if _, err := w.Write(cbg.CborEncodeMajorType(cbg.MajTextString, uint64(len("Value")))); err != nil {
return err
}
if _, err := w.Write([]byte("Value")); err != nil {
return err
}
if len(t.Value) > cbg.ByteArrayMaxLen {
return xerrors.Errorf("Byte array in field t.Value was too long")
}
if _, err := w.Write(cbg.CborEncodeMajorType(cbg.MajByteString, uint64(len(t.Value)))); err != nil {
return err
}
if _, err := w.Write(t.Value); err != nil {
return err
}
// t.Epoch (abi.ChainEpoch) (int64)
if len("Epoch") > cbg.MaxLength {
return xerrors.Errorf("Value in field \"Epoch\" was too long")
}
if _, err := w.Write(cbg.CborEncodeMajorType(cbg.MajTextString, uint64(len("Epoch")))); err != nil {
return err
}
if _, err := w.Write([]byte("Epoch")); err != nil {
return err
}
if t.Epoch >= 0 {
if _, err := w.Write(cbg.CborEncodeMajorType(cbg.MajUnsignedInt, uint64(t.Epoch))); err != nil {
return err
}
} else {
if _, err := w.Write(cbg.CborEncodeMajorType(cbg.MajNegativeInt, uint64(-t.Epoch)-1)); err != nil {
return err
}
}
return nil
}
func (t *SealSeed) UnmarshalCBOR(r io.Reader) error {
br := cbg.GetPeeker(r)
maj, extra, err := cbg.CborReadHeader(br)
if err != nil {
return err
}
if maj != cbg.MajMap {
return fmt.Errorf("cbor input should be of type map")
}
if extra > cbg.MaxLength {
return fmt.Errorf("SealSeed: map struct too large (%d)", extra)
}
var name string
n := extra
for i := uint64(0); i < n; i++ {
{
sval, err := cbg.ReadString(br)
if err != nil {
return err
}
name = string(sval)
}
switch name {
// t.Value (abi.InteractiveSealRandomness) (slice)
case "Value":
maj, extra, err = cbg.CborReadHeader(br)
if err != nil {
return err
}
if extra > cbg.ByteArrayMaxLen {
return fmt.Errorf("t.Value: byte array too large (%d)", extra)
}
if maj != cbg.MajByteString {
return fmt.Errorf("expected byte array")
}
t.Value = make([]byte, extra)
if _, err := io.ReadFull(br, t.Value); err != nil {
return err
}
// t.Epoch (abi.ChainEpoch) (int64)
case "Epoch":
{
maj, extra, err := cbg.CborReadHeader(br)
var extraI int64
if err != nil {
return err
}
switch maj {
case cbg.MajUnsignedInt:
extraI = int64(extra)
if extraI < 0 {
return fmt.Errorf("int64 positive overflow")
}
case cbg.MajNegativeInt:
extraI = int64(extra)
if extraI < 0 {
return fmt.Errorf("int64 negative oveflow")
}
extraI = -1 - extraI
default:
return fmt.Errorf("wrong type for int64 field: %d", maj)
}
t.Epoch = abi.ChainEpoch(extraI)
}
default:
return fmt.Errorf("unknown struct field %d: '%s'", i, name)
}
}
return nil
}