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-17 07:32:10 +00:00
|
|
|
"github.com/ipfs/go-cid"
|
2020-09-17 23:08:54 +00:00
|
|
|
cbg "github.com/whyrusleeping/cbor-gen"
|
2020-09-14 11:14:06 +00:00
|
|
|
|
2020-09-19 03:46:03 +00:00
|
|
|
builtin0 "github.com/filecoin-project/specs-actors/actors/builtin"
|
|
|
|
market0 "github.com/filecoin-project/specs-actors/actors/builtin/market"
|
2020-09-28 20:13:18 +00:00
|
|
|
builtin2 "github.com/filecoin-project/specs-actors/v2/actors/builtin"
|
2020-09-19 03:46:03 +00:00
|
|
|
|
2020-09-14 11:14:06 +00:00
|
|
|
"github.com/filecoin-project/lotus/chain/actors/adt"
|
2020-09-24 00:40:29 +00:00
|
|
|
"github.com/filecoin-project/lotus/chain/actors/builtin"
|
2020-09-14 11:14:06 +00:00
|
|
|
"github.com/filecoin-project/lotus/chain/types"
|
2020-09-12 03:07:52 +00:00
|
|
|
)
|
|
|
|
|
2020-09-24 00:40:29 +00:00
|
|
|
func init() {
|
|
|
|
builtin.RegisterActorState(builtin0.StorageMarketActorCodeID, func(store adt.Store, root cid.Cid) (cbor.Marshaler, error) {
|
|
|
|
return load0(store, root)
|
|
|
|
})
|
2020-09-28 20:13:18 +00:00
|
|
|
builtin.RegisterActorState(builtin2.StorageMarketActorCodeID, func(store adt.Store, root cid.Cid) (cbor.Marshaler, error) {
|
|
|
|
return load2(store, root)
|
2020-09-24 00:40:29 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2020-09-18 21:59:27 +00:00
|
|
|
var Address = builtin0.StorageMarketActorAddr
|
2020-09-15 23:47:58 +00:00
|
|
|
|
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-18 21:59:27 +00:00
|
|
|
case builtin0.StorageMarketActorCodeID:
|
2020-09-24 00:40:29 +00:00
|
|
|
return load0(store, act.Head)
|
2020-09-28 20:13:18 +00:00
|
|
|
case builtin2.StorageMarketActorCodeID:
|
|
|
|
return load2(store, act.Head)
|
2020-09-12 03:07:52 +00:00
|
|
|
}
|
|
|
|
return nil, xerrors.Errorf("unknown actor code %s", act.Code)
|
|
|
|
}
|
|
|
|
|
|
|
|
type State interface {
|
|
|
|
cbor.Marshaler
|
2020-09-23 05:19:43 +00:00
|
|
|
BalancesChanged(State) (bool, error)
|
2020-09-12 03:07:52 +00:00
|
|
|
EscrowTable() (BalanceTable, error)
|
|
|
|
LockedTable() (BalanceTable, error)
|
|
|
|
TotalLocked() (abi.TokenAmount, error)
|
2020-09-23 05:19:43 +00:00
|
|
|
StatesChanged(State) (bool, error)
|
2020-09-17 02:13:12 +00:00
|
|
|
States() (DealStates, error)
|
2020-09-23 05:19:43 +00:00
|
|
|
ProposalsChanged(State) (bool, error)
|
2020-09-17 02:13:12 +00:00
|
|
|
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 {
|
2020-09-17 07:32:10 +00:00
|
|
|
ForEach(cb func(address.Address, abi.TokenAmount) error) error
|
2020-09-12 03:07:52 +00:00
|
|
|
Get(key address.Address) (abi.TokenAmount, error)
|
|
|
|
}
|
2020-09-17 02:13:12 +00:00
|
|
|
|
|
|
|
type DealStates interface {
|
2020-09-22 21:09:33 +00:00
|
|
|
ForEach(cb func(id abi.DealID, ds DealState) error) error
|
2020-09-17 07:32:10 +00:00
|
|
|
Get(id abi.DealID) (*DealState, bool, error)
|
2020-09-17 23:08:54 +00:00
|
|
|
|
|
|
|
array() adt.Array
|
|
|
|
decode(*cbg.Deferred) (*DealState, error)
|
2020-09-17 02:13:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type DealProposals interface {
|
2020-09-17 07:32:10 +00:00
|
|
|
ForEach(cb func(id abi.DealID, dp DealProposal) error) error
|
|
|
|
Get(id abi.DealID) (*DealProposal, bool, error)
|
2020-09-17 23:08:54 +00:00
|
|
|
|
|
|
|
array() adt.Array
|
|
|
|
decode(*cbg.Deferred) (*DealProposal, error)
|
2020-09-17 02:13:12 +00:00
|
|
|
}
|
|
|
|
|
2020-09-23 06:18:52 +00:00
|
|
|
type PublishStorageDealsParams = market0.PublishStorageDealsParams
|
|
|
|
type PublishStorageDealsReturn = market0.PublishStorageDealsReturn
|
|
|
|
type VerifyDealsForActivationParams = market0.VerifyDealsForActivationParams
|
|
|
|
|
|
|
|
type ClientDealProposal = market0.ClientDealProposal
|
|
|
|
|
2020-09-17 07:32:10 +00:00
|
|
|
type DealState struct {
|
|
|
|
SectorStartEpoch abi.ChainEpoch // -1 if not yet included in proven sector
|
|
|
|
LastUpdatedEpoch abi.ChainEpoch // -1 if deal state never updated
|
|
|
|
SlashEpoch abi.ChainEpoch // -1 if deal never slashed
|
2020-09-17 02:13:12 +00:00
|
|
|
}
|
|
|
|
|
2020-09-17 07:32:10 +00:00
|
|
|
type DealProposal struct {
|
|
|
|
PieceCID cid.Cid
|
|
|
|
PieceSize abi.PaddedPieceSize
|
|
|
|
VerifiedDeal bool
|
|
|
|
Client address.Address
|
|
|
|
Provider address.Address
|
|
|
|
Label string
|
|
|
|
StartEpoch abi.ChainEpoch
|
|
|
|
EndEpoch abi.ChainEpoch
|
|
|
|
StoragePricePerEpoch abi.TokenAmount
|
|
|
|
ProviderCollateral abi.TokenAmount
|
|
|
|
ClientCollateral abi.TokenAmount
|
2020-09-17 02:13:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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
|
2020-09-17 07:32:10 +00:00
|
|
|
From *DealState
|
|
|
|
To *DealState
|
2020-09-17 02:13:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type DealProposalChanges struct {
|
|
|
|
Added []ProposalIDState
|
|
|
|
Removed []ProposalIDState
|
|
|
|
}
|
|
|
|
|
|
|
|
type ProposalIDState struct {
|
|
|
|
ID abi.DealID
|
|
|
|
Proposal DealProposal
|
|
|
|
}
|
2020-09-17 07:32:10 +00:00
|
|
|
|
|
|
|
func EmptyDealState() *DealState {
|
|
|
|
return &DealState{
|
|
|
|
SectorStartEpoch: -1,
|
|
|
|
SlashEpoch: -1,
|
|
|
|
LastUpdatedEpoch: -1,
|
|
|
|
}
|
|
|
|
}
|