2020-09-12 03:07:52 +00:00
|
|
|
package builtin
|
|
|
|
|
|
|
|
import (
|
2020-09-24 00:40:29 +00:00
|
|
|
"github.com/ipfs/go-cid"
|
|
|
|
"golang.org/x/xerrors"
|
|
|
|
|
2020-09-22 04:12:07 +00:00
|
|
|
"github.com/filecoin-project/go-state-types/abi"
|
2020-09-24 00:40:29 +00:00
|
|
|
"github.com/filecoin-project/go-state-types/cbor"
|
|
|
|
|
|
|
|
"github.com/filecoin-project/lotus/chain/actors/adt"
|
|
|
|
"github.com/filecoin-project/lotus/chain/types"
|
|
|
|
|
2020-09-22 04:12:07 +00:00
|
|
|
miner0 "github.com/filecoin-project/specs-actors/actors/builtin/miner"
|
2020-09-23 04:48:35 +00:00
|
|
|
proof0 "github.com/filecoin-project/specs-actors/actors/runtime/proof"
|
2020-09-20 21:53:46 +00:00
|
|
|
smoothing0 "github.com/filecoin-project/specs-actors/actors/util/smoothing"
|
2020-09-19 03:46:03 +00:00
|
|
|
smoothing1 "github.com/filecoin-project/specs-actors/v2/actors/util/smoothing"
|
2020-09-12 03:07:52 +00:00
|
|
|
)
|
|
|
|
|
2020-09-19 04:30:24 +00:00
|
|
|
// TODO: Why does actors have 2 different versions of this?
|
2020-09-23 04:48:35 +00:00
|
|
|
type SectorInfo = proof0.SectorInfo
|
|
|
|
type PoStProof = proof0.PoStProof
|
2020-09-20 21:53:46 +00:00
|
|
|
type FilterEstimate = smoothing0.FilterEstimate
|
|
|
|
|
|
|
|
func FromV0FilterEstimate(v0 smoothing0.FilterEstimate) FilterEstimate {
|
|
|
|
return (FilterEstimate)(v0)
|
2020-09-19 04:30:24 +00:00
|
|
|
}
|
2020-09-22 04:12:07 +00:00
|
|
|
|
|
|
|
// Doesn't change between actors v0 and v1
|
|
|
|
func QAPowerForWeight(size abi.SectorSize, duration abi.ChainEpoch, dealWeight, verifiedWeight abi.DealWeight) abi.StoragePower {
|
|
|
|
return miner0.QAPowerForWeight(size, duration, dealWeight, verifiedWeight)
|
|
|
|
}
|
2020-09-19 03:46:03 +00:00
|
|
|
|
|
|
|
func FromV1FilterEstimate(v1 smoothing1.FilterEstimate) FilterEstimate {
|
|
|
|
return (FilterEstimate)(v1)
|
|
|
|
}
|
2020-09-24 00:40:29 +00:00
|
|
|
|
|
|
|
type ActorStateLoader func(store adt.Store, root cid.Cid) (cbor.Marshaler, error)
|
|
|
|
|
|
|
|
var ActorStateLoaders = make(map[cid.Cid]ActorStateLoader)
|
|
|
|
|
|
|
|
func RegisterActorState(code cid.Cid, loader ActorStateLoader) {
|
|
|
|
ActorStateLoaders[code] = loader
|
|
|
|
}
|
|
|
|
|
|
|
|
func Load(store adt.Store, act *types.Actor) (cbor.Marshaler, error) {
|
|
|
|
loader, found := ActorStateLoaders[act.Code]
|
|
|
|
if !found {
|
|
|
|
return nil, xerrors.Errorf("unknown actor code %s", act.Code)
|
|
|
|
}
|
|
|
|
return loader(store, act.Head)
|
|
|
|
}
|