lotus/storage/cbor_gen.go

321 lines
6.6 KiB
Go
Raw Normal View History

2019-11-01 13:58:48 +00:00
package storage
import (
"fmt"
2019-11-05 18:02:28 +00:00
"io"
2019-11-01 13:58:48 +00:00
"github.com/filecoin-project/lotus/chain/types"
cbg "github.com/whyrusleeping/cbor-gen"
xerrors "golang.org/x/xerrors"
)
/* This file was generated by github.com/whyrusleeping/cbor-gen */
var _ = xerrors.Errorf
func (t *SealTicket) MarshalCBOR(w io.Writer) error {
if t == nil {
_, err := w.Write(cbg.CborNull)
return err
}
if _, err := w.Write([]byte{130}); err != nil {
return err
}
2019-11-05 18:02:28 +00:00
// t.t.BlockHeight (uint64) (uint64)
if _, err := w.Write(cbg.CborEncodeMajorType(cbg.MajUnsignedInt, uint64(t.BlockHeight))); err != nil {
2019-11-01 13:58:48 +00:00
return err
}
2019-11-05 18:02:28 +00:00
// t.t.TicketBytes ([]uint8) (slice)
2019-11-01 13:58:48 +00:00
if _, err := w.Write(cbg.CborEncodeMajorType(cbg.MajByteString, uint64(len(t.TicketBytes)))); err != nil {
return err
}
if _, err := w.Write(t.TicketBytes); 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.MajArray {
return fmt.Errorf("cbor input should be of type array")
}
if extra != 2 {
return fmt.Errorf("cbor input had wrong number of fields")
}
2019-11-05 18:02:28 +00:00
// t.t.BlockHeight (uint64) (uint64)
2019-11-01 13:58:48 +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")
}
2019-11-05 18:02:28 +00:00
t.BlockHeight = uint64(extra)
// t.t.TicketBytes ([]uint8) (slice)
2019-11-01 13:58:48 +00:00
maj, extra, err = cbg.CborReadHeader(br)
if err != nil {
return err
}
if extra > 8192 {
return fmt.Errorf("t.TicketBytes: array too large (%d)", extra)
}
if maj != cbg.MajByteString {
return fmt.Errorf("expected byte array")
}
t.TicketBytes = make([]byte, extra)
if _, err := io.ReadFull(br, t.TicketBytes); err != nil {
return err
}
return nil
}
func (t *SectorInfo) MarshalCBOR(w io.Writer) error {
if t == nil {
_, err := w.Write(cbg.CborNull)
return err
}
if _, err := w.Write([]byte{137}); err != nil {
return err
}
2019-11-05 18:02:28 +00:00
// t.t.State (uint64) (uint64)
if _, err := w.Write(cbg.CborEncodeMajorType(cbg.MajUnsignedInt, uint64(t.State))); err != nil {
2019-11-01 13:58:48 +00:00
return err
}
2019-11-05 18:02:28 +00:00
// t.t.SectorID (uint64) (uint64)
if _, err := w.Write(cbg.CborEncodeMajorType(cbg.MajUnsignedInt, uint64(t.SectorID))); err != nil {
2019-11-01 13:58:48 +00:00
return err
}
2019-11-05 18:02:28 +00:00
// t.t.CommD ([]uint8) (slice)
2019-11-01 13:58:48 +00:00
if _, err := w.Write(cbg.CborEncodeMajorType(cbg.MajByteString, uint64(len(t.CommD)))); err != nil {
return err
}
if _, err := w.Write(t.CommD); err != nil {
return err
}
2019-11-05 18:02:28 +00:00
// t.t.CommR ([]uint8) (slice)
2019-11-01 13:58:48 +00:00
if _, err := w.Write(cbg.CborEncodeMajorType(cbg.MajByteString, uint64(len(t.CommR)))); err != nil {
return err
}
if _, err := w.Write(t.CommR); err != nil {
return err
}
2019-11-05 18:02:28 +00:00
// t.t.Ticket (storage.SealTicket) (struct)
2019-11-01 13:58:48 +00:00
if err := t.Ticket.MarshalCBOR(w); err != nil {
return err
}
2019-11-05 18:02:28 +00:00
// t.t.PreCommitMessage (cid.Cid) (struct)
2019-11-01 13:58:48 +00:00
if t.PreCommitMessage == nil {
if _, err := w.Write(cbg.CborNull); err != nil {
return err
}
} else {
if err := cbg.WriteCid(w, *t.PreCommitMessage); err != nil {
return xerrors.Errorf("failed to write cid field t.PreCommitMessage: %w", err)
}
}
2019-11-05 18:02:28 +00:00
// t.t.RandHeight (uint64) (uint64)
if _, err := w.Write(cbg.CborEncodeMajorType(cbg.MajUnsignedInt, uint64(t.RandHeight))); err != nil {
2019-11-01 13:58:48 +00:00
return err
}
2019-11-05 18:02:28 +00:00
// t.t.RandTs (types.TipSet) (struct)
2019-11-01 13:58:48 +00:00
if err := t.RandTs.MarshalCBOR(w); err != nil {
return err
}
2019-11-05 18:02:28 +00:00
// t.t.CommitMessage (cid.Cid) (struct)
2019-11-01 13:58:48 +00:00
if t.CommitMessage == nil {
if _, err := w.Write(cbg.CborNull); err != nil {
return err
}
} else {
if err := cbg.WriteCid(w, *t.CommitMessage); err != nil {
return xerrors.Errorf("failed to write cid field t.CommitMessage: %w", err)
}
}
return nil
}
func (t *SectorInfo) UnmarshalCBOR(r io.Reader) error {
br := cbg.GetPeeker(r)
maj, extra, err := cbg.CborReadHeader(br)
if err != nil {
return err
}
if maj != cbg.MajArray {
return fmt.Errorf("cbor input should be of type array")
}
if extra != 9 {
return fmt.Errorf("cbor input had wrong number of fields")
}
2019-11-05 18:02:28 +00:00
// t.t.State (uint64) (uint64)
2019-11-01 13:58:48 +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")
}
2019-11-05 18:02:28 +00:00
t.State = uint64(extra)
// t.t.SectorID (uint64) (uint64)
2019-11-01 13:58:48 +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")
}
2019-11-05 18:02:28 +00:00
t.SectorID = uint64(extra)
// t.t.CommD ([]uint8) (slice)
2019-11-01 13:58:48 +00:00
maj, extra, err = cbg.CborReadHeader(br)
if err != nil {
return err
}
if extra > 8192 {
return fmt.Errorf("t.CommD: array too large (%d)", extra)
}
if maj != cbg.MajByteString {
return fmt.Errorf("expected byte array")
}
t.CommD = make([]byte, extra)
if _, err := io.ReadFull(br, t.CommD); err != nil {
return err
}
2019-11-05 18:02:28 +00:00
// t.t.CommR ([]uint8) (slice)
2019-11-01 13:58:48 +00:00
maj, extra, err = cbg.CborReadHeader(br)
if err != nil {
return err
}
if extra > 8192 {
return fmt.Errorf("t.CommR: array too large (%d)", extra)
}
if maj != cbg.MajByteString {
return fmt.Errorf("expected byte array")
}
t.CommR = make([]byte, extra)
if _, err := io.ReadFull(br, t.CommR); err != nil {
return err
}
2019-11-05 18:02:28 +00:00
// t.t.Ticket (storage.SealTicket) (struct)
2019-11-01 13:58:48 +00:00
{
if err := t.Ticket.UnmarshalCBOR(br); err != nil {
return err
}
}
2019-11-05 18:02:28 +00:00
// t.t.PreCommitMessage (cid.Cid) (struct)
2019-11-01 13:58:48 +00:00
{
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.PreCommitMessage: %w", err)
}
t.PreCommitMessage = &c
}
}
2019-11-05 18:02:28 +00:00
// t.t.RandHeight (uint64) (uint64)
2019-11-01 13:58:48 +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")
}
2019-11-05 18:02:28 +00:00
t.RandHeight = uint64(extra)
// t.t.RandTs (types.TipSet) (struct)
2019-11-01 13:58:48 +00:00
{
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 {
t.RandTs = new(types.TipSet)
if err := t.RandTs.UnmarshalCBOR(br); err != nil {
return err
}
}
}
2019-11-05 18:02:28 +00:00
// t.t.CommitMessage (cid.Cid) (struct)
2019-11-01 13:58:48 +00:00
{
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.CommitMessage: %w", err)
}
t.CommitMessage = &c
}
}
return nil
}