2020-09-12 03:07:52 +00:00
|
|
|
package market
|
|
|
|
|
|
|
|
import (
|
2020-09-14 11:14:06 +00:00
|
|
|
"golang.org/x/xerrors"
|
|
|
|
|
2020-09-12 03:07:52 +00:00
|
|
|
"github.com/filecoin-project/go-address"
|
|
|
|
"github.com/filecoin-project/go-state-types/abi"
|
|
|
|
"github.com/filecoin-project/go-state-types/cbor"
|
2020-09-14 11:14:06 +00:00
|
|
|
v0builtin "github.com/filecoin-project/specs-actors/actors/builtin"
|
|
|
|
|
|
|
|
"github.com/filecoin-project/lotus/chain/actors/adt"
|
|
|
|
"github.com/filecoin-project/lotus/chain/types"
|
2020-09-12 03:07:52 +00:00
|
|
|
)
|
|
|
|
|
2020-09-15 23:47:58 +00:00
|
|
|
var Address = v0builtin.StorageMarketActorAddr
|
|
|
|
|
2020-09-12 03:07:52 +00:00
|
|
|
func Load(store adt.Store, act *types.Actor) (st State, err error) {
|
|
|
|
switch act.Code {
|
2020-09-14 11:14:06 +00:00
|
|
|
case v0builtin.StorageMarketActorCodeID:
|
2020-09-12 03:07:52 +00:00
|
|
|
out := v0State{store: store}
|
|
|
|
err := store.Get(store.Context(), act.Head, &out)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return &out, nil
|
|
|
|
}
|
|
|
|
return nil, xerrors.Errorf("unknown actor code %s", act.Code)
|
|
|
|
}
|
|
|
|
|
|
|
|
type State interface {
|
|
|
|
cbor.Marshaler
|
2020-09-17 02:13:12 +00:00
|
|
|
BalancesChanged(State) bool
|
2020-09-12 03:07:52 +00:00
|
|
|
EscrowTable() (BalanceTable, error)
|
|
|
|
LockedTable() (BalanceTable, error)
|
|
|
|
TotalLocked() (abi.TokenAmount, error)
|
2020-09-17 02:13:12 +00:00
|
|
|
StatesChanged(State) bool
|
|
|
|
States() (DealStates, error)
|
|
|
|
ProposalsChanged(State) bool
|
|
|
|
Proposals() (DealProposals, error)
|
2020-09-15 23:47:58 +00:00
|
|
|
VerifyDealsForActivation(
|
|
|
|
minerAddr address.Address, deals []abi.DealID, currEpoch, sectorExpiry abi.ChainEpoch,
|
|
|
|
) (weight, verifiedWeight abi.DealWeight, err error)
|
2020-09-12 03:07:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type BalanceTable interface {
|
|
|
|
Get(key address.Address) (abi.TokenAmount, error)
|
|
|
|
}
|
2020-09-17 02:13:12 +00:00
|
|
|
|
|
|
|
type DealStates interface {
|
|
|
|
GetDeal(key abi.DealID) (DealState, error)
|
|
|
|
Diff(DealStates) (*DealStateChanges, error)
|
|
|
|
}
|
|
|
|
|
|
|
|
type DealProposals interface {
|
|
|
|
Diff(DealProposals) (*DealProposalChanges, error)
|
|
|
|
}
|
|
|
|
|
|
|
|
type DealState interface {
|
|
|
|
SectorStartEpoch() abi.ChainEpoch
|
|
|
|
SlashEpoch() abi.ChainEpoch
|
|
|
|
LastUpdatedEpoch() abi.ChainEpoch
|
|
|
|
Equals(DealState) bool
|
|
|
|
}
|
|
|
|
|
|
|
|
type DealProposal interface {
|
|
|
|
}
|
|
|
|
|
|
|
|
type DealStateChanges struct {
|
|
|
|
Added []DealIDState
|
|
|
|
Modified []DealStateChange
|
|
|
|
Removed []DealIDState
|
|
|
|
}
|
|
|
|
|
|
|
|
type DealIDState struct {
|
|
|
|
ID abi.DealID
|
|
|
|
Deal DealState
|
|
|
|
}
|
|
|
|
|
|
|
|
// DealStateChange is a change in deal state from -> to
|
|
|
|
type DealStateChange struct {
|
|
|
|
ID abi.DealID
|
|
|
|
From DealState
|
|
|
|
To DealState
|
|
|
|
}
|
|
|
|
|
|
|
|
type DealProposalChanges struct {
|
|
|
|
Added []ProposalIDState
|
|
|
|
Removed []ProposalIDState
|
|
|
|
}
|
|
|
|
|
|
|
|
type ProposalIDState struct {
|
|
|
|
ID abi.DealID
|
|
|
|
Proposal DealProposal
|
|
|
|
}
|