2d57bfe273
* Use local GST Use local GST * Import actors and define upgrade heights Creatin a mock actor-bundle and define upgrade heights * Generate adapters Updates gen/inlinegen-data.json, and runs make actors-gen * Add schedule and migration Add schedule and migration * Add upgrade and network version fields/params Add upgrade and network version fields/params * Run make gen / make docsgen-cli Run make gen / make docsgen-cli * Update filecoin-ffi Update filecoin-ffi to the v1.28.0-dev tag, which supports the nv23 skeleton. * Update GST to v0.14.0-dev Update GST to v0.14.0-dev, which includes the nv23 skeleton * Add support for actor version 14 in actor registry Add support for actor version 14 in actor registry
105 lines
2.5 KiB
Go
105 lines
2.5 KiB
Go
package datacap
|
|
|
|
import (
|
|
"github.com/ipfs/go-cid"
|
|
"golang.org/x/xerrors"
|
|
|
|
"github.com/filecoin-project/go-address"
|
|
"github.com/filecoin-project/go-state-types/abi"
|
|
actorstypes "github.com/filecoin-project/go-state-types/actors"
|
|
builtin14 "github.com/filecoin-project/go-state-types/builtin"
|
|
"github.com/filecoin-project/go-state-types/cbor"
|
|
"github.com/filecoin-project/go-state-types/manifest"
|
|
|
|
"github.com/filecoin-project/lotus/chain/actors"
|
|
"github.com/filecoin-project/lotus/chain/actors/adt"
|
|
"github.com/filecoin-project/lotus/chain/types"
|
|
)
|
|
|
|
var (
|
|
Address = builtin14.DatacapActorAddr
|
|
Methods = builtin14.MethodsDatacap
|
|
)
|
|
|
|
func Load(store adt.Store, act *types.Actor) (State, error) {
|
|
if name, av, ok := actors.GetActorMetaByCode(act.Code); ok {
|
|
if name != manifest.DatacapKey {
|
|
return nil, xerrors.Errorf("actor code is not datacap: %s", name)
|
|
}
|
|
|
|
switch av {
|
|
|
|
case actorstypes.Version9:
|
|
return load9(store, act.Head)
|
|
|
|
case actorstypes.Version10:
|
|
return load10(store, act.Head)
|
|
|
|
case actorstypes.Version11:
|
|
return load11(store, act.Head)
|
|
|
|
case actorstypes.Version12:
|
|
return load12(store, act.Head)
|
|
|
|
case actorstypes.Version13:
|
|
return load13(store, act.Head)
|
|
|
|
case actorstypes.Version14:
|
|
return load14(store, act.Head)
|
|
|
|
}
|
|
}
|
|
|
|
return nil, xerrors.Errorf("unknown actor code %s", act.Code)
|
|
}
|
|
|
|
func MakeState(store adt.Store, av actorstypes.Version, governor address.Address, bitwidth uint64) (State, error) {
|
|
switch av {
|
|
|
|
case actorstypes.Version9:
|
|
return make9(store, governor, bitwidth)
|
|
|
|
case actorstypes.Version10:
|
|
return make10(store, governor, bitwidth)
|
|
|
|
case actorstypes.Version11:
|
|
return make11(store, governor, bitwidth)
|
|
|
|
case actorstypes.Version12:
|
|
return make12(store, governor, bitwidth)
|
|
|
|
case actorstypes.Version13:
|
|
return make13(store, governor, bitwidth)
|
|
|
|
case actorstypes.Version14:
|
|
return make14(store, governor, bitwidth)
|
|
|
|
default:
|
|
return nil, xerrors.Errorf("datacap actor only valid for actors v9 and above, got %d", av)
|
|
}
|
|
}
|
|
|
|
type State interface {
|
|
cbor.Marshaler
|
|
|
|
Code() cid.Cid
|
|
ActorKey() string
|
|
ActorVersion() actorstypes.Version
|
|
|
|
ForEachClient(func(addr address.Address, dcap abi.StoragePower) error) error
|
|
VerifiedClientDataCap(address.Address) (bool, abi.StoragePower, error)
|
|
Governor() (address.Address, error)
|
|
GetState() interface{}
|
|
}
|
|
|
|
func AllCodes() []cid.Cid {
|
|
return []cid.Cid{
|
|
(&state9{}).Code(),
|
|
(&state10{}).Code(),
|
|
(&state11{}).Code(),
|
|
(&state12{}).Code(),
|
|
(&state13{}).Code(),
|
|
(&state14{}).Code(),
|
|
}
|
|
}
|