6a0f16b084
* Initial work supporting DDO pieces in lotus-miner * sealing: Update pipeline input to operate on UniversalPiece * sealing: Update pipeline checks/sealing states to operate on UniversalPiece * sealing: Make pipeline build with UniversalPiece * move PieceDealInfo out of api * make gen * make sealing pipeline unit tests pass * fix itest ensemble build * don't panic in SectorsStatus with deals * stop linter from complaining about checkPieces * fix sector import tests * mod tidy * sealing: Add logic for (pre)committing DDO sectors * sealing: state-types with method defs * DDO non-snap pipeline works(?), DDO Itests * DDO support in snapdeals pipeline * make gen * update actor bundles * update the gst market fix * fix: chain: use PreCommitSectorsBatch2 when setting up genesis * some bug fixes * integration working changes * update actor bundles * Make TestOnboardRawPieceSnap pass * Appease the linter * Make deadlines test pass with v12 actors * Update go-state-types, abstract market DealState * make gen * mod tidy, lint fixes * Fix some more tests * Bump version in master Bump version in master * Make gen Make gen * fix sender * fix: lotus-provider: Fix winning PoSt * fix: sql Scan cannot write to an object * Actually show miner-addrs in info-log Actually show miner-addrs in lotus-provider info-log * [WIP] feat: Add nv22 skeleton Addition of Network Version 22 skeleton * update FFI * ddo is now nv22 * make gen * temp actor bundle with ddo * use working go-state-types * gst with v13 market migration * update bundle, builtin.MethodsMiner.ProveCommitSectors2 -> 3 * actually working v13 migration, v13 migration itest * Address review * sealing: Correct DDO snap pledge math * itests: Mixed ddo itest * pipeline: Fix sectorWeight * sealing: convert market deals into PAMs in mixed sectors * sealing: make market to ddo conversion work * fix lint * update gst * Update actors and GST to lastest integ branch * commit batcher: Update ProveCommitSectors3Params builder logic * make gen * use builtin-actors master * ddo: address review * itests: Add commd assertions to ddo tests * make gen * gst with fixed types * config knobs for RequireActivationSuccess * storage: Drop obsolete flaky tasts --------- Co-authored-by: Jennifer Wang <jiayingw703@gmail.com> Co-authored-by: Aayush <arajasek94@gmail.com> Co-authored-by: Shrenuj Bansal <shrenuj.bansal@protocol.ai> Co-authored-by: Phi <orjan.roren@gmail.com> Co-authored-by: Andrew Jackson (Ajax) <snadrus@gmail.com> Co-authored-by: TippyFlits <james.bluett@protocol.ai>
934 lines
18 KiB
Go
934 lines
18 KiB
Go
// Code generated by github.com/whyrusleeping/cbor-gen. DO NOT EDIT.
|
|
|
|
package api
|
|
|
|
import (
|
|
"fmt"
|
|
"io"
|
|
"math"
|
|
"sort"
|
|
|
|
cid "github.com/ipfs/go-cid"
|
|
cbg "github.com/whyrusleeping/cbor-gen"
|
|
xerrors "golang.org/x/xerrors"
|
|
|
|
abi "github.com/filecoin-project/go-state-types/abi"
|
|
paych "github.com/filecoin-project/go-state-types/builtin/v8/paych"
|
|
|
|
piece "github.com/filecoin-project/lotus/storage/pipeline/piece"
|
|
)
|
|
|
|
var _ = xerrors.Errorf
|
|
var _ = cid.Undef
|
|
var _ = math.E
|
|
var _ = sort.Sort
|
|
|
|
func (t *PaymentInfo) MarshalCBOR(w io.Writer) error {
|
|
if t == nil {
|
|
_, err := w.Write(cbg.CborNull)
|
|
return err
|
|
}
|
|
|
|
cw := cbg.NewCborWriter(w)
|
|
|
|
if _, err := cw.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")
|
|
}
|
|
|
|
if err := cw.WriteMajorTypeHeader(cbg.MajTextString, uint64(len("Channel"))); err != nil {
|
|
return err
|
|
}
|
|
if _, err := cw.WriteString(string("Channel")); err != nil {
|
|
return err
|
|
}
|
|
|
|
if err := t.Channel.MarshalCBOR(cw); err != nil {
|
|
return err
|
|
}
|
|
|
|
// t.Vouchers ([]*paych.SignedVoucher) (slice)
|
|
if len("Vouchers") > cbg.MaxLength {
|
|
return xerrors.Errorf("Value in field \"Vouchers\" was too long")
|
|
}
|
|
|
|
if err := cw.WriteMajorTypeHeader(cbg.MajTextString, uint64(len("Vouchers"))); err != nil {
|
|
return err
|
|
}
|
|
if _, err := cw.WriteString(string("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 := cw.WriteMajorTypeHeader(cbg.MajArray, uint64(len(t.Vouchers))); err != nil {
|
|
return err
|
|
}
|
|
for _, v := range t.Vouchers {
|
|
if err := v.MarshalCBOR(cw); err != nil {
|
|
return err
|
|
}
|
|
|
|
}
|
|
|
|
// t.WaitSentinel (cid.Cid) (struct)
|
|
if len("WaitSentinel") > cbg.MaxLength {
|
|
return xerrors.Errorf("Value in field \"WaitSentinel\" was too long")
|
|
}
|
|
|
|
if err := cw.WriteMajorTypeHeader(cbg.MajTextString, uint64(len("WaitSentinel"))); err != nil {
|
|
return err
|
|
}
|
|
if _, err := cw.WriteString(string("WaitSentinel")); err != nil {
|
|
return err
|
|
}
|
|
|
|
if err := cbg.WriteCid(cw, t.WaitSentinel); err != nil {
|
|
return xerrors.Errorf("failed to write cid field t.WaitSentinel: %w", err)
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (t *PaymentInfo) UnmarshalCBOR(r io.Reader) (err error) {
|
|
*t = PaymentInfo{}
|
|
|
|
cr := cbg.NewCborReader(r)
|
|
|
|
maj, extra, err := cr.ReadHeader()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
defer func() {
|
|
if err == io.EOF {
|
|
err = io.ErrUnexpectedEOF
|
|
}
|
|
}()
|
|
|
|
if maj != cbg.MajMap {
|
|
return fmt.Errorf("cbor input should be of type map")
|
|
}
|
|
|
|
if extra > cbg.MaxLength {
|
|
return fmt.Errorf("PaymentInfo: map struct too large (%d)", extra)
|
|
}
|
|
|
|
var name string
|
|
n := extra
|
|
|
|
for i := uint64(0); i < n; i++ {
|
|
|
|
{
|
|
sval, err := cbg.ReadString(cr)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
name = string(sval)
|
|
}
|
|
|
|
switch name {
|
|
// t.Channel (address.Address) (struct)
|
|
case "Channel":
|
|
|
|
{
|
|
|
|
if err := t.Channel.UnmarshalCBOR(cr); err != nil {
|
|
return xerrors.Errorf("unmarshaling t.Channel: %w", err)
|
|
}
|
|
|
|
}
|
|
// t.Vouchers ([]*paych.SignedVoucher) (slice)
|
|
case "Vouchers":
|
|
|
|
maj, extra, err = cr.ReadHeader()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if extra > cbg.MaxLength {
|
|
return fmt.Errorf("t.Vouchers: array too large (%d)", extra)
|
|
}
|
|
|
|
if maj != cbg.MajArray {
|
|
return fmt.Errorf("expected cbor array")
|
|
}
|
|
|
|
if extra > 0 {
|
|
t.Vouchers = make([]*paych.SignedVoucher, extra)
|
|
}
|
|
|
|
for i := 0; i < int(extra); i++ {
|
|
{
|
|
var maj byte
|
|
var extra uint64
|
|
var err error
|
|
_ = maj
|
|
_ = extra
|
|
_ = err
|
|
|
|
{
|
|
|
|
b, err := cr.ReadByte()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if b != cbg.CborNull[0] {
|
|
if err := cr.UnreadByte(); err != nil {
|
|
return err
|
|
}
|
|
t.Vouchers[i] = new(paych.SignedVoucher)
|
|
if err := t.Vouchers[i].UnmarshalCBOR(cr); err != nil {
|
|
return xerrors.Errorf("unmarshaling t.Vouchers[i] pointer: %w", err)
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
}
|
|
// t.WaitSentinel (cid.Cid) (struct)
|
|
case "WaitSentinel":
|
|
|
|
{
|
|
|
|
c, err := cbg.ReadCid(cr)
|
|
if err != nil {
|
|
return xerrors.Errorf("failed to read cid field t.WaitSentinel: %w", err)
|
|
}
|
|
|
|
t.WaitSentinel = c
|
|
|
|
}
|
|
|
|
default:
|
|
// Field doesn't exist on this type, so ignore it
|
|
cbg.ScanForLinks(r, func(cid.Cid) {})
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
func (t *SealedRef) MarshalCBOR(w io.Writer) error {
|
|
if t == nil {
|
|
_, err := w.Write(cbg.CborNull)
|
|
return err
|
|
}
|
|
|
|
cw := cbg.NewCborWriter(w)
|
|
|
|
if _, err := cw.Write([]byte{163}); err != nil {
|
|
return err
|
|
}
|
|
|
|
// t.Size (abi.UnpaddedPieceSize) (uint64)
|
|
if len("Size") > cbg.MaxLength {
|
|
return xerrors.Errorf("Value in field \"Size\" was too long")
|
|
}
|
|
|
|
if err := cw.WriteMajorTypeHeader(cbg.MajTextString, uint64(len("Size"))); err != nil {
|
|
return err
|
|
}
|
|
if _, err := cw.WriteString(string("Size")); err != nil {
|
|
return err
|
|
}
|
|
|
|
if err := cw.WriteMajorTypeHeader(cbg.MajUnsignedInt, uint64(t.Size)); err != nil {
|
|
return err
|
|
}
|
|
|
|
// t.Offset (abi.PaddedPieceSize) (uint64)
|
|
if len("Offset") > cbg.MaxLength {
|
|
return xerrors.Errorf("Value in field \"Offset\" was too long")
|
|
}
|
|
|
|
if err := cw.WriteMajorTypeHeader(cbg.MajTextString, uint64(len("Offset"))); err != nil {
|
|
return err
|
|
}
|
|
if _, err := cw.WriteString(string("Offset")); err != nil {
|
|
return err
|
|
}
|
|
|
|
if err := cw.WriteMajorTypeHeader(cbg.MajUnsignedInt, uint64(t.Offset)); err != nil {
|
|
return err
|
|
}
|
|
|
|
// t.SectorID (abi.SectorNumber) (uint64)
|
|
if len("SectorID") > cbg.MaxLength {
|
|
return xerrors.Errorf("Value in field \"SectorID\" was too long")
|
|
}
|
|
|
|
if err := cw.WriteMajorTypeHeader(cbg.MajTextString, uint64(len("SectorID"))); err != nil {
|
|
return err
|
|
}
|
|
if _, err := cw.WriteString(string("SectorID")); err != nil {
|
|
return err
|
|
}
|
|
|
|
if err := cw.WriteMajorTypeHeader(cbg.MajUnsignedInt, uint64(t.SectorID)); err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (t *SealedRef) UnmarshalCBOR(r io.Reader) (err error) {
|
|
*t = SealedRef{}
|
|
|
|
cr := cbg.NewCborReader(r)
|
|
|
|
maj, extra, err := cr.ReadHeader()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
defer func() {
|
|
if err == io.EOF {
|
|
err = io.ErrUnexpectedEOF
|
|
}
|
|
}()
|
|
|
|
if maj != cbg.MajMap {
|
|
return fmt.Errorf("cbor input should be of type map")
|
|
}
|
|
|
|
if extra > cbg.MaxLength {
|
|
return fmt.Errorf("SealedRef: map struct too large (%d)", extra)
|
|
}
|
|
|
|
var name string
|
|
n := extra
|
|
|
|
for i := uint64(0); i < n; i++ {
|
|
|
|
{
|
|
sval, err := cbg.ReadString(cr)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
name = string(sval)
|
|
}
|
|
|
|
switch name {
|
|
// t.Size (abi.UnpaddedPieceSize) (uint64)
|
|
case "Size":
|
|
|
|
{
|
|
|
|
maj, extra, err = cr.ReadHeader()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if maj != cbg.MajUnsignedInt {
|
|
return fmt.Errorf("wrong type for uint64 field")
|
|
}
|
|
t.Size = abi.UnpaddedPieceSize(extra)
|
|
|
|
}
|
|
// t.Offset (abi.PaddedPieceSize) (uint64)
|
|
case "Offset":
|
|
|
|
{
|
|
|
|
maj, extra, err = cr.ReadHeader()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if maj != cbg.MajUnsignedInt {
|
|
return fmt.Errorf("wrong type for uint64 field")
|
|
}
|
|
t.Offset = abi.PaddedPieceSize(extra)
|
|
|
|
}
|
|
// t.SectorID (abi.SectorNumber) (uint64)
|
|
case "SectorID":
|
|
|
|
{
|
|
|
|
maj, extra, err = cr.ReadHeader()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if maj != cbg.MajUnsignedInt {
|
|
return fmt.Errorf("wrong type for uint64 field")
|
|
}
|
|
t.SectorID = abi.SectorNumber(extra)
|
|
|
|
}
|
|
|
|
default:
|
|
// Field doesn't exist on this type, so ignore it
|
|
cbg.ScanForLinks(r, func(cid.Cid) {})
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
func (t *SealedRefs) MarshalCBOR(w io.Writer) error {
|
|
if t == nil {
|
|
_, err := w.Write(cbg.CborNull)
|
|
return err
|
|
}
|
|
|
|
cw := cbg.NewCborWriter(w)
|
|
|
|
if _, err := cw.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")
|
|
}
|
|
|
|
if err := cw.WriteMajorTypeHeader(cbg.MajTextString, uint64(len("Refs"))); err != nil {
|
|
return err
|
|
}
|
|
if _, err := cw.WriteString(string("Refs")); err != nil {
|
|
return err
|
|
}
|
|
|
|
if len(t.Refs) > cbg.MaxLength {
|
|
return xerrors.Errorf("Slice value in field t.Refs was too long")
|
|
}
|
|
|
|
if err := cw.WriteMajorTypeHeader(cbg.MajArray, uint64(len(t.Refs))); err != nil {
|
|
return err
|
|
}
|
|
for _, v := range t.Refs {
|
|
if err := v.MarshalCBOR(cw); err != nil {
|
|
return err
|
|
}
|
|
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (t *SealedRefs) UnmarshalCBOR(r io.Reader) (err error) {
|
|
*t = SealedRefs{}
|
|
|
|
cr := cbg.NewCborReader(r)
|
|
|
|
maj, extra, err := cr.ReadHeader()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
defer func() {
|
|
if err == io.EOF {
|
|
err = io.ErrUnexpectedEOF
|
|
}
|
|
}()
|
|
|
|
if maj != cbg.MajMap {
|
|
return fmt.Errorf("cbor input should be of type map")
|
|
}
|
|
|
|
if extra > cbg.MaxLength {
|
|
return fmt.Errorf("SealedRefs: map struct too large (%d)", extra)
|
|
}
|
|
|
|
var name string
|
|
n := extra
|
|
|
|
for i := uint64(0); i < n; i++ {
|
|
|
|
{
|
|
sval, err := cbg.ReadString(cr)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
name = string(sval)
|
|
}
|
|
|
|
switch name {
|
|
// t.Refs ([]api.SealedRef) (slice)
|
|
case "Refs":
|
|
|
|
maj, extra, err = cr.ReadHeader()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if extra > cbg.MaxLength {
|
|
return fmt.Errorf("t.Refs: array too large (%d)", extra)
|
|
}
|
|
|
|
if maj != cbg.MajArray {
|
|
return fmt.Errorf("expected cbor array")
|
|
}
|
|
|
|
if extra > 0 {
|
|
t.Refs = make([]SealedRef, extra)
|
|
}
|
|
|
|
for i := 0; i < int(extra); i++ {
|
|
{
|
|
var maj byte
|
|
var extra uint64
|
|
var err error
|
|
_ = maj
|
|
_ = extra
|
|
_ = err
|
|
|
|
{
|
|
|
|
if err := t.Refs[i].UnmarshalCBOR(cr); err != nil {
|
|
return xerrors.Errorf("unmarshaling t.Refs[i]: %w", err)
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
}
|
|
|
|
default:
|
|
// Field doesn't exist on this type, so ignore it
|
|
cbg.ScanForLinks(r, func(cid.Cid) {})
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
func (t *SealTicket) MarshalCBOR(w io.Writer) error {
|
|
if t == nil {
|
|
_, err := w.Write(cbg.CborNull)
|
|
return err
|
|
}
|
|
|
|
cw := cbg.NewCborWriter(w)
|
|
|
|
if _, err := cw.Write([]byte{162}); 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 := cw.WriteMajorTypeHeader(cbg.MajTextString, uint64(len("Epoch"))); err != nil {
|
|
return err
|
|
}
|
|
if _, err := cw.WriteString(string("Epoch")); err != nil {
|
|
return err
|
|
}
|
|
|
|
if t.Epoch >= 0 {
|
|
if err := cw.WriteMajorTypeHeader(cbg.MajUnsignedInt, uint64(t.Epoch)); err != nil {
|
|
return err
|
|
}
|
|
} else {
|
|
if err := cw.WriteMajorTypeHeader(cbg.MajNegativeInt, uint64(-t.Epoch-1)); 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 := cw.WriteMajorTypeHeader(cbg.MajTextString, uint64(len("Value"))); err != nil {
|
|
return err
|
|
}
|
|
if _, err := cw.WriteString(string("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 := cw.WriteMajorTypeHeader(cbg.MajByteString, uint64(len(t.Value))); err != nil {
|
|
return err
|
|
}
|
|
|
|
if _, err := cw.Write(t.Value); err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (t *SealTicket) UnmarshalCBOR(r io.Reader) (err error) {
|
|
*t = SealTicket{}
|
|
|
|
cr := cbg.NewCborReader(r)
|
|
|
|
maj, extra, err := cr.ReadHeader()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
defer func() {
|
|
if err == io.EOF {
|
|
err = io.ErrUnexpectedEOF
|
|
}
|
|
}()
|
|
|
|
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(cr)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
name = string(sval)
|
|
}
|
|
|
|
switch name {
|
|
// t.Epoch (abi.ChainEpoch) (int64)
|
|
case "Epoch":
|
|
{
|
|
maj, extra, err := cr.ReadHeader()
|
|
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 overflow")
|
|
}
|
|
extraI = -1 - extraI
|
|
default:
|
|
return fmt.Errorf("wrong type for int64 field: %d", maj)
|
|
}
|
|
|
|
t.Epoch = abi.ChainEpoch(extraI)
|
|
}
|
|
// t.Value (abi.SealRandomness) (slice)
|
|
case "Value":
|
|
|
|
maj, extra, err = cr.ReadHeader()
|
|
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")
|
|
}
|
|
|
|
if extra > 0 {
|
|
t.Value = make([]uint8, extra)
|
|
}
|
|
|
|
if _, err := io.ReadFull(cr, t.Value); err != nil {
|
|
return err
|
|
}
|
|
|
|
default:
|
|
// Field doesn't exist on this type, so ignore it
|
|
cbg.ScanForLinks(r, func(cid.Cid) {})
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
func (t *SealSeed) MarshalCBOR(w io.Writer) error {
|
|
if t == nil {
|
|
_, err := w.Write(cbg.CborNull)
|
|
return err
|
|
}
|
|
|
|
cw := cbg.NewCborWriter(w)
|
|
|
|
if _, err := cw.Write([]byte{162}); 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 := cw.WriteMajorTypeHeader(cbg.MajTextString, uint64(len("Epoch"))); err != nil {
|
|
return err
|
|
}
|
|
if _, err := cw.WriteString(string("Epoch")); err != nil {
|
|
return err
|
|
}
|
|
|
|
if t.Epoch >= 0 {
|
|
if err := cw.WriteMajorTypeHeader(cbg.MajUnsignedInt, uint64(t.Epoch)); err != nil {
|
|
return err
|
|
}
|
|
} else {
|
|
if err := cw.WriteMajorTypeHeader(cbg.MajNegativeInt, uint64(-t.Epoch-1)); 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 := cw.WriteMajorTypeHeader(cbg.MajTextString, uint64(len("Value"))); err != nil {
|
|
return err
|
|
}
|
|
if _, err := cw.WriteString(string("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 := cw.WriteMajorTypeHeader(cbg.MajByteString, uint64(len(t.Value))); err != nil {
|
|
return err
|
|
}
|
|
|
|
if _, err := cw.Write(t.Value); err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (t *SealSeed) UnmarshalCBOR(r io.Reader) (err error) {
|
|
*t = SealSeed{}
|
|
|
|
cr := cbg.NewCborReader(r)
|
|
|
|
maj, extra, err := cr.ReadHeader()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
defer func() {
|
|
if err == io.EOF {
|
|
err = io.ErrUnexpectedEOF
|
|
}
|
|
}()
|
|
|
|
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(cr)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
name = string(sval)
|
|
}
|
|
|
|
switch name {
|
|
// t.Epoch (abi.ChainEpoch) (int64)
|
|
case "Epoch":
|
|
{
|
|
maj, extra, err := cr.ReadHeader()
|
|
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 overflow")
|
|
}
|
|
extraI = -1 - extraI
|
|
default:
|
|
return fmt.Errorf("wrong type for int64 field: %d", maj)
|
|
}
|
|
|
|
t.Epoch = abi.ChainEpoch(extraI)
|
|
}
|
|
// t.Value (abi.InteractiveSealRandomness) (slice)
|
|
case "Value":
|
|
|
|
maj, extra, err = cr.ReadHeader()
|
|
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")
|
|
}
|
|
|
|
if extra > 0 {
|
|
t.Value = make([]uint8, extra)
|
|
}
|
|
|
|
if _, err := io.ReadFull(cr, t.Value); err != nil {
|
|
return err
|
|
}
|
|
|
|
default:
|
|
// Field doesn't exist on this type, so ignore it
|
|
cbg.ScanForLinks(r, func(cid.Cid) {})
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
func (t *SectorPiece) MarshalCBOR(w io.Writer) error {
|
|
if t == nil {
|
|
_, err := w.Write(cbg.CborNull)
|
|
return err
|
|
}
|
|
|
|
cw := cbg.NewCborWriter(w)
|
|
|
|
if _, err := cw.Write([]byte{162}); err != nil {
|
|
return err
|
|
}
|
|
|
|
// t.Piece (abi.PieceInfo) (struct)
|
|
if len("Piece") > cbg.MaxLength {
|
|
return xerrors.Errorf("Value in field \"Piece\" was too long")
|
|
}
|
|
|
|
if err := cw.WriteMajorTypeHeader(cbg.MajTextString, uint64(len("Piece"))); err != nil {
|
|
return err
|
|
}
|
|
if _, err := cw.WriteString(string("Piece")); err != nil {
|
|
return err
|
|
}
|
|
|
|
if err := t.Piece.MarshalCBOR(cw); err != nil {
|
|
return err
|
|
}
|
|
|
|
// t.DealInfo (piece.PieceDealInfo) (struct)
|
|
if len("DealInfo") > cbg.MaxLength {
|
|
return xerrors.Errorf("Value in field \"DealInfo\" was too long")
|
|
}
|
|
|
|
if err := cw.WriteMajorTypeHeader(cbg.MajTextString, uint64(len("DealInfo"))); err != nil {
|
|
return err
|
|
}
|
|
if _, err := cw.WriteString(string("DealInfo")); err != nil {
|
|
return err
|
|
}
|
|
|
|
if err := t.DealInfo.MarshalCBOR(cw); err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (t *SectorPiece) UnmarshalCBOR(r io.Reader) (err error) {
|
|
*t = SectorPiece{}
|
|
|
|
cr := cbg.NewCborReader(r)
|
|
|
|
maj, extra, err := cr.ReadHeader()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
defer func() {
|
|
if err == io.EOF {
|
|
err = io.ErrUnexpectedEOF
|
|
}
|
|
}()
|
|
|
|
if maj != cbg.MajMap {
|
|
return fmt.Errorf("cbor input should be of type map")
|
|
}
|
|
|
|
if extra > cbg.MaxLength {
|
|
return fmt.Errorf("SectorPiece: map struct too large (%d)", extra)
|
|
}
|
|
|
|
var name string
|
|
n := extra
|
|
|
|
for i := uint64(0); i < n; i++ {
|
|
|
|
{
|
|
sval, err := cbg.ReadString(cr)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
name = string(sval)
|
|
}
|
|
|
|
switch name {
|
|
// t.Piece (abi.PieceInfo) (struct)
|
|
case "Piece":
|
|
|
|
{
|
|
|
|
if err := t.Piece.UnmarshalCBOR(cr); err != nil {
|
|
return xerrors.Errorf("unmarshaling t.Piece: %w", err)
|
|
}
|
|
|
|
}
|
|
// t.DealInfo (piece.PieceDealInfo) (struct)
|
|
case "DealInfo":
|
|
|
|
{
|
|
|
|
b, err := cr.ReadByte()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if b != cbg.CborNull[0] {
|
|
if err := cr.UnreadByte(); err != nil {
|
|
return err
|
|
}
|
|
t.DealInfo = new(piece.PieceDealInfo)
|
|
if err := t.DealInfo.UnmarshalCBOR(cr); err != nil {
|
|
return xerrors.Errorf("unmarshaling t.DealInfo pointer: %w", err)
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
default:
|
|
// Field doesn't exist on this type, so ignore it
|
|
cbg.ScanForLinks(r, func(cid.Cid) {})
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|