2022-09-06 15:49:29 +00:00
|
|
|
package builtin
|
|
|
|
|
|
|
|
import (
|
|
|
|
actorstypes "github.com/filecoin-project/go-state-types/actors"
|
|
|
|
"github.com/ipfs/go-cid"
|
|
|
|
{{range .versions}}
|
|
|
|
{{if (ge . 8)}}
|
|
|
|
account{{.}} "github.com/filecoin-project/go-state-types/builtin/v{{.}}/account"
|
2022-09-09 20:42:55 +00:00
|
|
|
cron{{.}} "github.com/filecoin-project/go-state-types/builtin/v{{.}}/cron"
|
|
|
|
_init{{.}} "github.com/filecoin-project/go-state-types/builtin/v{{.}}/init"
|
|
|
|
multisig{{.}} "github.com/filecoin-project/go-state-types/builtin/v{{.}}/multisig"
|
|
|
|
miner{{.}} "github.com/filecoin-project/go-state-types/builtin/v{{.}}/miner"
|
|
|
|
market{{.}} "github.com/filecoin-project/go-state-types/builtin/v{{.}}/market"
|
|
|
|
reward{{.}} "github.com/filecoin-project/go-state-types/builtin/v{{.}}/reward"
|
|
|
|
paych{{.}} "github.com/filecoin-project/go-state-types/builtin/v{{.}}/paych"
|
|
|
|
power{{.}} "github.com/filecoin-project/go-state-types/builtin/v{{.}}/power"
|
|
|
|
system{{.}} "github.com/filecoin-project/go-state-types/builtin/v{{.}}/system"
|
|
|
|
verifreg{{.}} "github.com/filecoin-project/go-state-types/builtin/v{{.}}/verifreg"
|
2022-09-06 15:49:29 +00:00
|
|
|
{{end}}
|
2022-10-12 15:44:59 +00:00
|
|
|
{{if (ge . 9)}}
|
|
|
|
datacap{{.}} "github.com/filecoin-project/go-state-types/builtin/v{{.}}/datacap"
|
|
|
|
{{end}}
|
2022-09-06 15:49:29 +00:00
|
|
|
{{end}}
|
|
|
|
"github.com/filecoin-project/go-state-types/cbor"
|
|
|
|
rtt "github.com/filecoin-project/go-state-types/rt"
|
|
|
|
"github.com/filecoin-project/lotus/chain/actors"
|
|
|
|
)
|
|
|
|
|
|
|
|
type RegistryEntry struct {
|
|
|
|
state cbor.Er
|
|
|
|
code cid.Cid
|
2022-09-21 14:56:58 +00:00
|
|
|
methods map[uint64]interface{}
|
2022-09-06 15:49:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (r RegistryEntry) State() cbor.Er {
|
|
|
|
return r.state
|
|
|
|
}
|
|
|
|
|
2022-09-21 14:56:58 +00:00
|
|
|
func (r RegistryEntry) Exports() map[uint64]interface{} {
|
2022-09-06 15:49:29 +00:00
|
|
|
return r.methods
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r RegistryEntry) Code() cid.Cid {
|
|
|
|
return r.code
|
|
|
|
}
|
|
|
|
|
2022-09-21 14:56:58 +00:00
|
|
|
func MakeRegistryLegacy(actors []rtt.VMActor) []RegistryEntry {
|
|
|
|
registry := make([]RegistryEntry, 0)
|
|
|
|
|
|
|
|
for _, actor := range actors {
|
|
|
|
methodMap := make(map[uint64]interface{})
|
|
|
|
for methodNum, method := range actor.Exports() {
|
|
|
|
methodMap[uint64(methodNum)] = method
|
|
|
|
}
|
|
|
|
registry = append(registry, RegistryEntry{
|
|
|
|
code: actor.Code(),
|
|
|
|
methods: methodMap,
|
|
|
|
state: actor.State(),
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
return registry
|
|
|
|
}
|
|
|
|
|
|
|
|
func MakeRegistry(av actorstypes.Version) []RegistryEntry {
|
2022-09-06 15:49:29 +00:00
|
|
|
if av < actorstypes.Version8 {
|
|
|
|
panic("expected version v8 and up only, use specs-actors for v0-7")
|
|
|
|
}
|
2022-09-21 14:56:58 +00:00
|
|
|
registry := make([]RegistryEntry, 0)
|
2022-09-06 15:49:29 +00:00
|
|
|
|
|
|
|
codeIDs, err := actors.GetActorCodeIDs(av)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
switch av {
|
|
|
|
{{range .versions}}
|
|
|
|
{{if (ge . 8)}}
|
|
|
|
case actorstypes.Version{{.}}:
|
|
|
|
for key, codeID := range codeIDs {
|
|
|
|
switch key {
|
|
|
|
case actors.AccountKey:
|
|
|
|
registry = append(registry, RegistryEntry{
|
|
|
|
code: codeID,
|
|
|
|
methods: account{{.}}.Methods,
|
|
|
|
state: new(account{{.}}.State),
|
|
|
|
})
|
2022-09-09 20:42:55 +00:00
|
|
|
case actors.CronKey:
|
|
|
|
registry = append(registry, RegistryEntry{
|
|
|
|
code: codeID,
|
|
|
|
methods: cron{{.}}.Methods,
|
|
|
|
state: new(cron{{.}}.State),
|
|
|
|
})
|
|
|
|
case actors.InitKey:
|
|
|
|
registry = append(registry, RegistryEntry{
|
|
|
|
code: codeID,
|
|
|
|
methods: _init{{.}}.Methods,
|
|
|
|
state: new(_init{{.}}.State),
|
|
|
|
})
|
|
|
|
case actors.MarketKey:
|
|
|
|
registry = append(registry, RegistryEntry{
|
|
|
|
code: codeID,
|
|
|
|
methods: market{{.}}.Methods,
|
|
|
|
state: new(market{{.}}.State),
|
|
|
|
})
|
|
|
|
case actors.MinerKey:
|
|
|
|
registry = append(registry, RegistryEntry{
|
|
|
|
code: codeID,
|
|
|
|
methods: miner{{.}}.Methods,
|
|
|
|
state: new(miner{{.}}.State),
|
|
|
|
})
|
|
|
|
case actors.MultisigKey:
|
|
|
|
registry = append(registry, RegistryEntry{
|
|
|
|
code: codeID,
|
|
|
|
methods: multisig{{.}}.Methods,
|
|
|
|
state: new(multisig{{.}}.State),
|
|
|
|
})
|
|
|
|
case actors.PaychKey:
|
|
|
|
registry = append(registry, RegistryEntry{
|
|
|
|
code: codeID,
|
|
|
|
methods: paych{{.}}.Methods,
|
|
|
|
state: new(paych{{.}}.State),
|
|
|
|
})
|
|
|
|
case actors.PowerKey:
|
|
|
|
registry = append(registry, RegistryEntry{
|
|
|
|
code: codeID,
|
|
|
|
methods: power{{.}}.Methods,
|
|
|
|
state: new(power{{.}}.State),
|
|
|
|
})
|
|
|
|
case actors.RewardKey:
|
|
|
|
registry = append(registry, RegistryEntry{
|
|
|
|
code: codeID,
|
|
|
|
methods: reward{{.}}.Methods,
|
|
|
|
state: new(reward{{.}}.State),
|
|
|
|
})
|
|
|
|
case actors.SystemKey:
|
|
|
|
registry = append(registry, RegistryEntry{
|
|
|
|
code: codeID,
|
|
|
|
methods: system{{.}}.Methods,
|
|
|
|
state: new(system{{.}}.State),
|
|
|
|
})
|
|
|
|
case actors.VerifregKey:
|
|
|
|
registry = append(registry, RegistryEntry{
|
|
|
|
code: codeID,
|
|
|
|
methods: verifreg{{.}}.Methods,
|
|
|
|
state: new(verifreg{{.}}.State),
|
|
|
|
})
|
2022-10-12 15:44:59 +00:00
|
|
|
{{if (ge . 9)}}case actors.DatacapKey:
|
|
|
|
registry = append(registry, RegistryEntry{
|
|
|
|
code: codeID,
|
|
|
|
methods: datacap{{.}}.Methods,
|
|
|
|
state: new(datacap{{.}}.State),
|
|
|
|
}){{end}}
|
2022-09-06 15:49:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
{{end}}
|
|
|
|
{{end}}
|
|
|
|
|
|
|
|
default:
|
|
|
|
panic("expected version v8 and up only, use specs-actors for v0-7")
|
|
|
|
}
|
|
|
|
|
|
|
|
return registry
|
|
|
|
}
|