2021-04-26 14:48:20 +00:00
|
|
|
package market
|
|
|
|
|
|
|
|
import (
|
2022-09-06 15:49:29 +00:00
|
|
|
actorstypes "github.com/filecoin-project/go-state-types/actors"
|
|
|
|
"unicode/utf8"
|
2022-03-12 18:07:35 +00:00
|
|
|
|
2021-09-29 20:16:19 +00:00
|
|
|
"github.com/filecoin-project/go-state-types/network"
|
2021-04-26 14:48:20 +00:00
|
|
|
"golang.org/x/xerrors"
|
|
|
|
|
|
|
|
"github.com/filecoin-project/go-address"
|
|
|
|
"github.com/filecoin-project/go-state-types/abi"
|
2021-04-30 15:51:24 +00:00
|
|
|
"github.com/filecoin-project/go-state-types/big"
|
2021-04-26 14:48:20 +00:00
|
|
|
"github.com/filecoin-project/go-state-types/cbor"
|
|
|
|
cbg "github.com/whyrusleeping/cbor-gen"
|
|
|
|
|
2022-09-26 16:47:48 +00:00
|
|
|
markettypes "github.com/filecoin-project/go-state-types/builtin/v9/market"
|
2022-10-03 05:51:30 +00:00
|
|
|
verifregtypes "github.com/filecoin-project/go-state-types/builtin/v9/verifreg"
|
2021-04-26 14:48:20 +00:00
|
|
|
{{range .versions}}
|
2022-04-20 21:34:28 +00:00
|
|
|
{{if (le . 7)}}
|
|
|
|
builtin{{.}} "github.com/filecoin-project/specs-actors{{import .}}actors/builtin"
|
|
|
|
{{end}}
|
2021-04-26 14:48:20 +00:00
|
|
|
{{end}}
|
|
|
|
|
2022-09-06 15:49:29 +00:00
|
|
|
builtintypes "github.com/filecoin-project/go-state-types/builtin"
|
|
|
|
|
2021-04-26 14:48:20 +00:00
|
|
|
"github.com/filecoin-project/lotus/chain/actors/adt"
|
2021-05-15 01:11:23 +00:00
|
|
|
"github.com/filecoin-project/lotus/chain/actors"
|
2021-04-26 14:48:20 +00:00
|
|
|
"github.com/filecoin-project/lotus/chain/types"
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
2022-09-06 15:49:29 +00:00
|
|
|
Address = builtintypes.StorageMarketActorAddr
|
|
|
|
Methods = builtintypes.MethodsMarket
|
2021-04-26 14:48:20 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func Load(store adt.Store, act *types.Actor) (State, error) {
|
2022-04-04 11:23:13 +00:00
|
|
|
if name, av, ok := actors.GetActorMetaByCode(act.Code); ok {
|
2022-04-20 21:34:28 +00:00
|
|
|
if name != actors.MarketKey {
|
|
|
|
return nil, xerrors.Errorf("actor code is not market: %s", name)
|
2022-04-04 11:23:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
switch av {
|
|
|
|
{{range .versions}}
|
2022-04-20 21:34:28 +00:00
|
|
|
{{if (ge . 8)}}
|
2022-09-06 15:49:29 +00:00
|
|
|
case actorstypes.Version{{.}}:
|
2022-04-20 21:34:28 +00:00
|
|
|
return load{{.}}(store, act.Head)
|
|
|
|
{{end}}
|
2022-04-04 11:23:13 +00:00
|
|
|
{{end}}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-26 14:48:20 +00:00
|
|
|
switch act.Code {
|
|
|
|
{{range .versions}}
|
2022-04-20 21:34:28 +00:00
|
|
|
{{if (le . 7)}}
|
|
|
|
case builtin{{.}}.StorageMarketActorCodeID:
|
|
|
|
return load{{.}}(store, act.Head)
|
|
|
|
{{end}}
|
2021-04-26 14:48:20 +00:00
|
|
|
{{end}}
|
|
|
|
}
|
2022-04-20 21:34:28 +00:00
|
|
|
|
2021-04-26 14:48:20 +00:00
|
|
|
return nil, xerrors.Errorf("unknown actor code %s", act.Code)
|
|
|
|
}
|
|
|
|
|
2022-09-06 15:49:29 +00:00
|
|
|
func MakeState(store adt.Store, av actorstypes.Version) (State, error) {
|
2021-05-15 01:11:23 +00:00
|
|
|
switch av {
|
|
|
|
{{range .versions}}
|
2022-09-06 15:49:29 +00:00
|
|
|
case actorstypes.Version{{.}}:
|
2021-05-15 01:11:23 +00:00
|
|
|
return make{{.}}(store)
|
|
|
|
{{end}}
|
|
|
|
}
|
|
|
|
return nil, xerrors.Errorf("unknown actor version %d", av)
|
|
|
|
}
|
|
|
|
|
2021-04-26 14:48:20 +00:00
|
|
|
type State interface {
|
|
|
|
cbor.Marshaler
|
|
|
|
BalancesChanged(State) (bool, error)
|
|
|
|
EscrowTable() (BalanceTable, error)
|
|
|
|
LockedTable() (BalanceTable, error)
|
|
|
|
TotalLocked() (abi.TokenAmount, error)
|
|
|
|
StatesChanged(State) (bool, error)
|
|
|
|
States() (DealStates, error)
|
|
|
|
ProposalsChanged(State) (bool, error)
|
|
|
|
Proposals() (DealProposals, error)
|
|
|
|
VerifyDealsForActivation(
|
|
|
|
minerAddr address.Address, deals []abi.DealID, currEpoch, sectorExpiry abi.ChainEpoch,
|
|
|
|
) (weight, verifiedWeight abi.DealWeight, err error)
|
|
|
|
NextID() (abi.DealID, error)
|
2021-05-15 01:11:23 +00:00
|
|
|
GetState() interface{}
|
2022-10-05 18:43:16 +00:00
|
|
|
GetAllocationIdForPendingDeal(dealId abi.DealID) (verifregtypes.AllocationId, error)
|
2021-04-26 14:48:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type BalanceTable interface {
|
|
|
|
ForEach(cb func(address.Address, abi.TokenAmount) error) error
|
|
|
|
Get(key address.Address) (abi.TokenAmount, error)
|
|
|
|
}
|
|
|
|
|
|
|
|
type DealStates interface {
|
|
|
|
ForEach(cb func(id abi.DealID, ds DealState) error) error
|
|
|
|
Get(id abi.DealID) (*DealState, bool, error)
|
|
|
|
|
|
|
|
array() adt.Array
|
|
|
|
decode(*cbg.Deferred) (*DealState, error)
|
|
|
|
}
|
|
|
|
|
|
|
|
type DealProposals interface {
|
2022-09-06 15:49:29 +00:00
|
|
|
ForEach(cb func(id abi.DealID, dp markettypes.DealProposal) error) error
|
|
|
|
Get(id abi.DealID) (*markettypes.DealProposal, bool, error)
|
2021-04-26 14:48:20 +00:00
|
|
|
|
|
|
|
array() adt.Array
|
2022-09-06 15:49:29 +00:00
|
|
|
decode(*cbg.Deferred) (*markettypes.DealProposal, error)
|
2021-04-26 14:48:20 +00:00
|
|
|
}
|
|
|
|
|
2021-09-29 20:16:19 +00:00
|
|
|
|
|
|
|
type PublishStorageDealsReturn interface {
|
|
|
|
DealIDs() ([]abi.DealID, error)
|
|
|
|
// Note that this index is based on the batch of deals that were published, NOT the DealID
|
2022-04-12 19:34:45 +00:00
|
|
|
IsDealValid(index uint64) (bool, int, error)
|
2021-09-29 20:16:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func DecodePublishStorageDealsReturn(b []byte, nv network.Version) (PublishStorageDealsReturn, error) {
|
2022-09-06 15:49:29 +00:00
|
|
|
av, err := actorstypes.VersionForNetwork(nv)
|
2021-09-29 20:16:19 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
switch av {
|
|
|
|
{{range .versions}}
|
2022-09-06 15:49:29 +00:00
|
|
|
case actorstypes.Version{{.}}:
|
2021-09-29 20:16:19 +00:00
|
|
|
return decodePublishStorageDealsReturn{{.}}(b)
|
|
|
|
{{end}}
|
|
|
|
}
|
|
|
|
return nil, xerrors.Errorf("unknown actor version %d", av)
|
|
|
|
}
|
|
|
|
|
2022-09-06 15:49:29 +00:00
|
|
|
type DealProposal = markettypes.DealProposal
|
|
|
|
type DealLabel = markettypes.DealLabel
|
2021-04-26 14:48:20 +00:00
|
|
|
|
2022-09-06 15:49:29 +00:00
|
|
|
type DealState = markettypes.DealState
|
2021-04-26 14:48:20 +00:00
|
|
|
|
|
|
|
type DealStateChanges struct {
|
2021-05-15 01:11:23 +00:00
|
|
|
Added []DealIDState
|
2021-04-26 14:48:20 +00:00
|
|
|
Modified []DealStateChange
|
2021-05-15 01:11:23 +00:00
|
|
|
Removed []DealIDState
|
2021-04-26 14:48:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type DealIDState struct {
|
2021-05-15 01:11:23 +00:00
|
|
|
ID abi.DealID
|
2021-04-26 14:48:20 +00:00
|
|
|
Deal DealState
|
|
|
|
}
|
|
|
|
|
|
|
|
// DealStateChange is a change in deal state from -> to
|
|
|
|
type DealStateChange struct {
|
2021-05-15 01:11:23 +00:00
|
|
|
ID abi.DealID
|
2021-04-26 14:48:20 +00:00
|
|
|
From *DealState
|
2021-05-15 01:11:23 +00:00
|
|
|
To *DealState
|
2021-04-26 14:48:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type DealProposalChanges struct {
|
2021-05-15 01:11:23 +00:00
|
|
|
Added []ProposalIDState
|
2021-04-26 14:48:20 +00:00
|
|
|
Removed []ProposalIDState
|
|
|
|
}
|
|
|
|
|
|
|
|
type ProposalIDState struct {
|
2021-05-15 01:11:23 +00:00
|
|
|
ID abi.DealID
|
2022-09-06 15:49:29 +00:00
|
|
|
Proposal markettypes.DealProposal
|
2021-04-26 14:48:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func EmptyDealState() *DealState {
|
|
|
|
return &DealState{
|
|
|
|
SectorStartEpoch: -1,
|
2021-05-15 01:11:23 +00:00
|
|
|
SlashEpoch: -1,
|
2021-04-26 14:48:20 +00:00
|
|
|
LastUpdatedEpoch: -1,
|
|
|
|
}
|
2021-04-27 18:48:32 +00:00
|
|
|
}
|
2021-04-30 15:51:24 +00:00
|
|
|
|
|
|
|
// returns the earned fees and pending fees for a given deal
|
2022-09-06 15:49:29 +00:00
|
|
|
func GetDealFees(deal markettypes.DealProposal, height abi.ChainEpoch) (abi.TokenAmount, abi.TokenAmount) {
|
2021-05-15 01:11:23 +00:00
|
|
|
tf := big.Mul(deal.StoragePricePerEpoch, big.NewInt(int64(deal.EndEpoch-deal.StartEpoch)))
|
2021-04-30 15:51:24 +00:00
|
|
|
|
2021-05-15 01:11:23 +00:00
|
|
|
ef := big.Mul(deal.StoragePricePerEpoch, big.NewInt(int64(height-deal.StartEpoch)))
|
|
|
|
if ef.LessThan(big.Zero()) {
|
|
|
|
ef = big.Zero()
|
|
|
|
}
|
2021-04-30 15:51:24 +00:00
|
|
|
|
2021-05-15 01:11:23 +00:00
|
|
|
if ef.GreaterThan(tf) {
|
|
|
|
ef = tf
|
|
|
|
}
|
2021-04-30 15:51:24 +00:00
|
|
|
|
2021-05-15 01:11:23 +00:00
|
|
|
return ef, big.Sub(tf, ef)
|
2021-04-30 15:51:24 +00:00
|
|
|
}
|
2022-03-12 18:07:35 +00:00
|
|
|
|
2022-09-06 15:49:29 +00:00
|
|
|
func IsDealActive(state markettypes.DealState) bool {
|
2022-08-02 22:54:42 +00:00
|
|
|
return state.SectorStartEpoch > -1 && state.SlashEpoch == -1
|
|
|
|
}
|
|
|
|
|
2022-09-06 15:49:29 +00:00
|
|
|
func labelFromGoString(s string) (markettypes.DealLabel, error) {
|
2022-03-12 18:07:35 +00:00
|
|
|
if utf8.ValidString(s) {
|
2022-09-06 15:49:29 +00:00
|
|
|
return markettypes.NewLabelFromString(s)
|
2022-03-12 18:07:35 +00:00
|
|
|
} else {
|
2022-09-06 15:49:29 +00:00
|
|
|
return markettypes.NewLabelFromBytes([]byte(s))
|
2022-03-12 18:07:35 +00:00
|
|
|
}
|
|
|
|
}
|