2020-01-10 18:21:46 +00:00
|
|
|
package storageadapter
|
2019-11-04 19:57:54 +00:00
|
|
|
|
|
|
|
// this file implements storagemarket.StorageProviderNode
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2020-01-24 20:19:52 +00:00
|
|
|
"io"
|
2020-09-11 11:28:09 +00:00
|
|
|
"time"
|
2019-11-04 19:57:54 +00:00
|
|
|
|
2020-03-18 19:43:06 +00:00
|
|
|
"github.com/ipfs/go-cid"
|
|
|
|
logging "github.com/ipfs/go-log/v2"
|
|
|
|
"golang.org/x/xerrors"
|
|
|
|
|
2020-10-08 01:09:33 +00:00
|
|
|
market2 "github.com/filecoin-project/specs-actors/v2/actors/builtin/market"
|
2020-09-21 23:01:29 +00:00
|
|
|
|
2020-03-18 18:37:32 +00:00
|
|
|
"github.com/filecoin-project/go-address"
|
|
|
|
"github.com/filecoin-project/go-fil-markets/shared"
|
|
|
|
"github.com/filecoin-project/go-fil-markets/storagemarket"
|
2020-09-07 03:49:10 +00:00
|
|
|
"github.com/filecoin-project/go-state-types/abi"
|
|
|
|
"github.com/filecoin-project/go-state-types/crypto"
|
|
|
|
"github.com/filecoin-project/go-state-types/exitcode"
|
2019-11-04 19:57:54 +00:00
|
|
|
|
|
|
|
"github.com/filecoin-project/lotus/api"
|
2020-01-24 20:19:52 +00:00
|
|
|
"github.com/filecoin-project/lotus/build"
|
2019-11-04 19:57:54 +00:00
|
|
|
"github.com/filecoin-project/lotus/chain/actors"
|
2020-09-21 23:01:29 +00:00
|
|
|
"github.com/filecoin-project/lotus/chain/actors/builtin/market"
|
2020-10-02 16:34:50 +00:00
|
|
|
"github.com/filecoin-project/lotus/chain/events"
|
2020-07-08 08:35:50 +00:00
|
|
|
"github.com/filecoin-project/lotus/chain/events/state"
|
2019-11-04 19:57:54 +00:00
|
|
|
"github.com/filecoin-project/lotus/chain/types"
|
2020-08-17 13:39:33 +00:00
|
|
|
sealing "github.com/filecoin-project/lotus/extern/storage-sealing"
|
2020-03-03 21:23:06 +00:00
|
|
|
"github.com/filecoin-project/lotus/lib/sigs"
|
2020-01-10 18:21:46 +00:00
|
|
|
"github.com/filecoin-project/lotus/markets/utils"
|
2020-10-02 16:34:50 +00:00
|
|
|
"github.com/filecoin-project/lotus/node/config"
|
2019-11-04 19:57:54 +00:00
|
|
|
"github.com/filecoin-project/lotus/node/modules/dtypes"
|
|
|
|
"github.com/filecoin-project/lotus/storage/sectorblocks"
|
|
|
|
)
|
|
|
|
|
2020-09-11 11:28:09 +00:00
|
|
|
var addPieceRetryWait = 5 * time.Minute
|
2020-09-11 17:45:57 +00:00
|
|
|
var addPieceRetryTimeout = 6 * time.Hour
|
2020-07-08 10:52:37 +00:00
|
|
|
var log = logging.Logger("storageadapter")
|
2019-11-04 19:57:54 +00:00
|
|
|
|
|
|
|
type ProviderNodeAdapter struct {
|
|
|
|
api.FullNode
|
|
|
|
|
|
|
|
// this goes away with the data transfer module
|
|
|
|
dag dtypes.StagingDAG
|
|
|
|
|
|
|
|
secb *sectorblocks.SectorBlocks
|
2020-01-24 20:19:52 +00:00
|
|
|
ev *events.Events
|
2020-10-02 16:34:50 +00:00
|
|
|
|
|
|
|
publishSpec, addBalanceSpec *api.MessageSendSpec
|
2020-10-28 11:38:06 +00:00
|
|
|
dsMatcher *dealStateMatcher
|
2019-11-04 19:57:54 +00:00
|
|
|
}
|
|
|
|
|
2020-10-02 16:34:50 +00:00
|
|
|
func NewProviderNodeAdapter(fc *config.MinerFeeConfig) func(dag dtypes.StagingDAG, secb *sectorblocks.SectorBlocks, full api.FullNode) storagemarket.StorageProviderNode {
|
|
|
|
return func(dag dtypes.StagingDAG, secb *sectorblocks.SectorBlocks, full api.FullNode) storagemarket.StorageProviderNode {
|
|
|
|
na := &ProviderNodeAdapter{
|
|
|
|
FullNode: full,
|
|
|
|
|
2020-10-28 11:38:06 +00:00
|
|
|
dag: dag,
|
|
|
|
secb: secb,
|
|
|
|
ev: events.NewEvents(context.TODO(), full),
|
|
|
|
dsMatcher: newDealStateMatcher(state.NewStatePredicates(full)),
|
2020-10-02 16:34:50 +00:00
|
|
|
}
|
|
|
|
if fc != nil {
|
|
|
|
na.publishSpec = &api.MessageSendSpec{MaxFee: abi.TokenAmount(fc.MaxPublishDealsFee)}
|
|
|
|
na.addBalanceSpec = &api.MessageSendSpec{MaxFee: abi.TokenAmount(fc.MaxMarketBalanceAddFee)}
|
|
|
|
}
|
|
|
|
return na
|
2019-11-04 19:57:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-05 01:31:56 +00:00
|
|
|
func (n *ProviderNodeAdapter) PublishDeals(ctx context.Context, deal storagemarket.MinerDeal) (cid.Cid, error) {
|
2019-11-04 19:57:54 +00:00
|
|
|
log.Info("publishing deal")
|
|
|
|
|
2020-04-16 17:36:36 +00:00
|
|
|
mi, err := n.StateMinerInfo(ctx, deal.Proposal.Provider, types.EmptyTSK)
|
2019-11-04 19:57:54 +00:00
|
|
|
if err != nil {
|
2020-05-05 01:31:56 +00:00
|
|
|
return cid.Undef, err
|
2019-11-04 19:57:54 +00:00
|
|
|
}
|
|
|
|
|
2020-10-08 01:09:33 +00:00
|
|
|
params, err := actors.SerializeParams(&market2.PublishStorageDealsParams{
|
|
|
|
Deals: []market2.ClientDealProposal{deal.ClientDealProposal},
|
2019-11-04 19:57:54 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
if err != nil {
|
2020-08-20 04:49:10 +00:00
|
|
|
return cid.Undef, xerrors.Errorf("serializing PublishStorageDeals params failed: %w", err)
|
2019-11-04 19:57:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: We may want this to happen after fetching data
|
|
|
|
smsg, err := n.MpoolPushMessage(ctx, &types.Message{
|
2020-09-21 23:01:29 +00:00
|
|
|
To: market.Address,
|
2020-08-06 21:08:42 +00:00
|
|
|
From: mi.Worker,
|
|
|
|
Value: types.NewInt(0),
|
2020-10-08 20:32:54 +00:00
|
|
|
Method: market.Methods.PublishStorageDeals,
|
2020-08-06 21:08:42 +00:00
|
|
|
Params: params,
|
2020-10-02 16:34:50 +00:00
|
|
|
}, n.publishSpec)
|
2019-11-04 19:57:54 +00:00
|
|
|
if err != nil {
|
2020-05-05 01:31:56 +00:00
|
|
|
return cid.Undef, err
|
2019-11-04 19:57:54 +00:00
|
|
|
}
|
2020-05-05 01:31:56 +00:00
|
|
|
return smsg.Cid(), nil
|
2019-11-04 19:57:54 +00:00
|
|
|
}
|
|
|
|
|
2020-07-30 12:31:31 +00:00
|
|
|
func (n *ProviderNodeAdapter) OnDealComplete(ctx context.Context, deal storagemarket.MinerDeal, pieceSize abi.UnpaddedPieceSize, pieceData io.Reader) (*storagemarket.PackingResult, error) {
|
2020-08-27 15:50:37 +00:00
|
|
|
if deal.PublishCid == nil {
|
|
|
|
return nil, xerrors.Errorf("deal.PublishCid can't be nil")
|
|
|
|
}
|
|
|
|
|
2020-09-11 11:28:09 +00:00
|
|
|
sdInfo := sealing.DealInfo{
|
2020-08-27 15:50:37 +00:00
|
|
|
DealID: deal.DealID,
|
|
|
|
PublishCid: deal.PublishCid,
|
2020-04-07 22:34:30 +00:00
|
|
|
DealSchedule: sealing.DealSchedule{
|
|
|
|
StartEpoch: deal.ClientDealProposal.Proposal.StartEpoch,
|
|
|
|
EndEpoch: deal.ClientDealProposal.Proposal.EndEpoch,
|
|
|
|
},
|
2020-07-08 18:35:55 +00:00
|
|
|
KeepUnsealed: deal.FastRetrieval,
|
2020-09-11 11:28:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
p, offset, err := n.secb.AddPiece(ctx, pieceSize, pieceData, sdInfo)
|
2020-09-11 17:45:57 +00:00
|
|
|
curTime := time.Now()
|
|
|
|
for time.Since(curTime) < addPieceRetryTimeout {
|
|
|
|
if !xerrors.Is(err, sealing.ErrTooManySectorsSealing) {
|
2020-09-17 15:30:15 +00:00
|
|
|
if err != nil {
|
|
|
|
log.Errorf("failed to addPiece for deal %d, err: %w", deal.DealID, err)
|
|
|
|
}
|
2020-09-11 17:45:57 +00:00
|
|
|
break
|
|
|
|
}
|
2020-09-11 11:28:09 +00:00
|
|
|
select {
|
|
|
|
case <-time.After(addPieceRetryWait):
|
|
|
|
p, offset, err = n.secb.AddPiece(ctx, pieceSize, pieceData, sdInfo)
|
|
|
|
case <-ctx.Done():
|
|
|
|
return nil, xerrors.New("context expired while waiting to retry AddPiece")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-04 19:57:54 +00:00
|
|
|
if err != nil {
|
2020-07-30 12:31:31 +00:00
|
|
|
return nil, xerrors.Errorf("AddPiece failed: %s", err)
|
2019-11-04 19:57:54 +00:00
|
|
|
}
|
2020-02-05 04:08:08 +00:00
|
|
|
log.Warnf("New Deal: deal %d", deal.DealID)
|
2019-11-04 19:57:54 +00:00
|
|
|
|
2020-07-30 12:31:31 +00:00
|
|
|
return &storagemarket.PackingResult{
|
|
|
|
SectorNumber: p,
|
|
|
|
Offset: offset,
|
|
|
|
Size: pieceSize.Padded(),
|
|
|
|
}, nil
|
2019-11-04 19:57:54 +00:00
|
|
|
}
|
|
|
|
|
2020-04-07 02:17:02 +00:00
|
|
|
func (n *ProviderNodeAdapter) VerifySignature(ctx context.Context, sig crypto.Signature, addr address.Address, input []byte, encodedTs shared.TipSetToken) (bool, error) {
|
2020-04-16 21:06:31 +00:00
|
|
|
addr, err := n.StateAccountKey(ctx, addr, types.EmptyTSK)
|
|
|
|
if err != nil {
|
|
|
|
return false, err
|
|
|
|
}
|
|
|
|
|
|
|
|
err = sigs.Verify(&sig, addr, input)
|
2020-04-07 02:17:02 +00:00
|
|
|
return err == nil, err
|
2020-02-20 08:37:10 +00:00
|
|
|
}
|
|
|
|
|
2020-03-18 18:37:32 +00:00
|
|
|
func (n *ProviderNodeAdapter) GetMinerWorkerAddress(ctx context.Context, miner address.Address, tok shared.TipSetToken) (address.Address, error) {
|
|
|
|
tsk, err := types.TipSetKeyFromBytes(tok)
|
|
|
|
if err != nil {
|
|
|
|
return address.Undef, err
|
|
|
|
}
|
|
|
|
|
2020-04-16 17:36:36 +00:00
|
|
|
mi, err := n.StateMinerInfo(ctx, miner, tsk)
|
|
|
|
if err != nil {
|
|
|
|
return address.Address{}, err
|
|
|
|
}
|
|
|
|
return mi.Worker, nil
|
2019-11-04 19:57:54 +00:00
|
|
|
}
|
|
|
|
|
2020-02-12 22:32:26 +00:00
|
|
|
func (n *ProviderNodeAdapter) SignBytes(ctx context.Context, signer address.Address, b []byte) (*crypto.Signature, error) {
|
2020-04-16 20:38:42 +00:00
|
|
|
signer, err := n.StateAccountKey(ctx, signer, types.EmptyTSK)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2020-01-10 18:01:48 +00:00
|
|
|
localSignature, err := n.WalletSign(ctx, signer, b)
|
2019-12-17 10:46:39 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2020-02-20 08:37:10 +00:00
|
|
|
return localSignature, nil
|
2019-11-04 19:57:54 +00:00
|
|
|
}
|
|
|
|
|
2020-11-10 15:45:48 +00:00
|
|
|
func (n *ProviderNodeAdapter) ReserveFunds(ctx context.Context, wallet, addr address.Address, amt abi.TokenAmount) (cid.Cid, error) {
|
|
|
|
return n.MarketReserveFunds(ctx, wallet, addr, amt)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (n *ProviderNodeAdapter) ReleaseFunds(ctx context.Context, addr address.Address, amt abi.TokenAmount) error {
|
|
|
|
return n.MarketReleaseFunds(ctx, addr, amt)
|
2019-11-04 19:57:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Adds funds with the StorageMinerActor for a storage participant. Used by both providers and clients.
|
2020-05-05 01:31:56 +00:00
|
|
|
func (n *ProviderNodeAdapter) AddFunds(ctx context.Context, addr address.Address, amount abi.TokenAmount) (cid.Cid, error) {
|
2019-11-04 19:57:54 +00:00
|
|
|
// (Provider Node API)
|
|
|
|
smsg, err := n.MpoolPushMessage(ctx, &types.Message{
|
2020-09-21 23:01:29 +00:00
|
|
|
To: market.Address,
|
2020-08-06 21:08:42 +00:00
|
|
|
From: addr,
|
|
|
|
Value: amount,
|
2020-10-08 20:32:54 +00:00
|
|
|
Method: market.Methods.AddBalance,
|
2020-10-02 16:34:50 +00:00
|
|
|
}, n.addBalanceSpec)
|
2019-11-04 19:57:54 +00:00
|
|
|
if err != nil {
|
2020-05-05 01:31:56 +00:00
|
|
|
return cid.Undef, err
|
2019-11-04 19:57:54 +00:00
|
|
|
}
|
|
|
|
|
2020-05-05 01:31:56 +00:00
|
|
|
return smsg.Cid(), nil
|
2019-11-04 19:57:54 +00:00
|
|
|
}
|
|
|
|
|
2020-04-07 02:17:02 +00:00
|
|
|
func (n *ProviderNodeAdapter) GetBalance(ctx context.Context, addr address.Address, encodedTs shared.TipSetToken) (storagemarket.Balance, error) {
|
|
|
|
tsk, err := types.TipSetKeyFromBytes(encodedTs)
|
|
|
|
if err != nil {
|
|
|
|
return storagemarket.Balance{}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
bal, err := n.StateMarketBalance(ctx, addr, tsk)
|
2019-11-04 19:57:54 +00:00
|
|
|
if err != nil {
|
|
|
|
return storagemarket.Balance{}, err
|
|
|
|
}
|
|
|
|
|
2020-02-20 08:37:10 +00:00
|
|
|
return utils.ToSharedBalance(bal), nil
|
2019-11-04 19:57:54 +00:00
|
|
|
}
|
|
|
|
|
2020-07-27 17:59:30 +00:00
|
|
|
// TODO: why doesnt this method take in a sector ID?
|
2020-07-30 12:31:31 +00:00
|
|
|
func (n *ProviderNodeAdapter) LocatePieceForDealWithinSector(ctx context.Context, dealID abi.DealID, encodedTs shared.TipSetToken) (sectorID abi.SectorNumber, offset abi.PaddedPieceSize, length abi.PaddedPieceSize, err error) {
|
2020-03-18 18:37:32 +00:00
|
|
|
refs, err := n.secb.GetRefs(dealID)
|
2020-01-24 20:19:52 +00:00
|
|
|
if err != nil {
|
|
|
|
return 0, 0, 0, err
|
|
|
|
}
|
|
|
|
if len(refs) == 0 {
|
|
|
|
return 0, 0, 0, xerrors.New("no sector information for deal ID")
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: better strategy (e.g. look for already unsealed)
|
|
|
|
var best api.SealedRef
|
|
|
|
var bestSi sealing.SectorInfo
|
|
|
|
for _, r := range refs {
|
|
|
|
si, err := n.secb.Miner.GetSectorInfo(r.SectorID)
|
|
|
|
if err != nil {
|
|
|
|
return 0, 0, 0, xerrors.Errorf("getting sector info: %w", err)
|
|
|
|
}
|
2020-04-06 20:23:37 +00:00
|
|
|
if si.State == sealing.Proving {
|
2020-01-24 20:19:52 +00:00
|
|
|
best = r
|
|
|
|
bestSi = si
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
2020-04-06 20:23:37 +00:00
|
|
|
if bestSi.State == sealing.UndefinedSectorState {
|
2020-01-24 20:19:52 +00:00
|
|
|
return 0, 0, 0, xerrors.New("no sealed sector found")
|
|
|
|
}
|
2020-07-30 12:31:31 +00:00
|
|
|
return best.SectorID, best.Offset, best.Size.Padded(), nil
|
2020-01-24 20:19:52 +00:00
|
|
|
}
|
|
|
|
|
2020-07-30 04:55:37 +00:00
|
|
|
func (n *ProviderNodeAdapter) DealProviderCollateralBounds(ctx context.Context, size abi.PaddedPieceSize, isVerified bool) (abi.TokenAmount, abi.TokenAmount, error) {
|
2020-07-30 12:31:31 +00:00
|
|
|
bounds, err := n.StateDealProviderCollateralBounds(ctx, size, isVerified, types.EmptyTSK)
|
|
|
|
if err != nil {
|
|
|
|
return abi.TokenAmount{}, abi.TokenAmount{}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return bounds.Min, bounds.Max, nil
|
2020-07-30 04:55:37 +00:00
|
|
|
}
|
|
|
|
|
2020-11-10 00:30:47 +00:00
|
|
|
func (n *ProviderNodeAdapter) OnDealSectorCommitted(ctx context.Context, provider address.Address, dealID abi.DealID, proposal market2.DealProposal, publishCid *cid.Cid, cb storagemarket.DealSectorCommittedCallback) error {
|
|
|
|
return OnDealSectorCommitted(ctx, n, n.ev, provider, dealID, market.DealProposal(proposal), publishCid, cb)
|
2020-01-24 20:19:52 +00:00
|
|
|
}
|
|
|
|
|
2020-03-18 18:37:32 +00:00
|
|
|
func (n *ProviderNodeAdapter) GetChainHead(ctx context.Context) (shared.TipSetToken, abi.ChainEpoch, error) {
|
|
|
|
head, err := n.ChainHead(ctx)
|
|
|
|
if err != nil {
|
|
|
|
return nil, 0, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return head.Key().Bytes(), head.Height(), nil
|
|
|
|
}
|
|
|
|
|
2020-09-11 18:00:42 +00:00
|
|
|
func (n *ProviderNodeAdapter) WaitForMessage(ctx context.Context, mcid cid.Cid, cb func(code exitcode.ExitCode, bytes []byte, finalCid cid.Cid, err error) error) error {
|
2020-08-27 15:50:37 +00:00
|
|
|
receipt, err := n.StateWaitMsg(ctx, mcid, 2*build.MessageConfidence)
|
2020-05-05 01:31:56 +00:00
|
|
|
if err != nil {
|
2020-09-11 18:00:42 +00:00
|
|
|
return cb(0, nil, cid.Undef, err)
|
2020-05-05 01:31:56 +00:00
|
|
|
}
|
2020-09-11 18:00:42 +00:00
|
|
|
return cb(receipt.Receipt.ExitCode, receipt.Receipt.Return, receipt.Message, nil)
|
2020-05-05 01:31:56 +00:00
|
|
|
}
|
|
|
|
|
2020-09-17 08:17:14 +00:00
|
|
|
func (n *ProviderNodeAdapter) GetDataCap(ctx context.Context, addr address.Address, encodedTs shared.TipSetToken) (*abi.StoragePower, error) {
|
2020-07-08 08:35:50 +00:00
|
|
|
tsk, err := types.TipSetKeyFromBytes(encodedTs)
|
|
|
|
if err != nil {
|
2020-09-17 08:17:14 +00:00
|
|
|
return nil, err
|
2020-07-08 08:35:50 +00:00
|
|
|
}
|
2020-09-17 08:17:14 +00:00
|
|
|
|
|
|
|
sp, err := n.StateVerifiedClientStatus(ctx, addr, tsk)
|
2020-09-17 15:30:15 +00:00
|
|
|
return sp, err
|
2020-07-08 08:35:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (n *ProviderNodeAdapter) OnDealExpiredOrSlashed(ctx context.Context, dealID abi.DealID, onDealExpired storagemarket.DealExpiredCallback, onDealSlashed storagemarket.DealSlashedCallback) error {
|
2020-07-08 19:00:54 +00:00
|
|
|
head, err := n.ChainHead(ctx)
|
|
|
|
if err != nil {
|
|
|
|
return xerrors.Errorf("client: failed to get chain head: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
sd, err := n.StateMarketStorageDeal(ctx, dealID, head.Key())
|
|
|
|
if err != nil {
|
|
|
|
return xerrors.Errorf("client: failed to look up deal %d on chain: %w", dealID, err)
|
|
|
|
}
|
2020-07-08 08:35:50 +00:00
|
|
|
|
|
|
|
// Called immediately to check if the deal has already expired or been slashed
|
|
|
|
checkFunc := func(ts *types.TipSet) (done bool, more bool, err error) {
|
2020-08-12 21:27:39 +00:00
|
|
|
if ts == nil {
|
|
|
|
// keep listening for events
|
|
|
|
return false, true, nil
|
|
|
|
}
|
|
|
|
|
2020-07-08 08:35:50 +00:00
|
|
|
// Check if the deal has already expired
|
|
|
|
if sd.Proposal.EndEpoch <= ts.Height() {
|
|
|
|
onDealExpired(nil)
|
|
|
|
return true, false, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// If there is no deal assume it's already been slashed
|
|
|
|
if sd.State.SectorStartEpoch < 0 {
|
|
|
|
onDealSlashed(ts.Height(), nil)
|
|
|
|
return true, false, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// No events have occurred yet, so return
|
|
|
|
// done: false, more: true (keep listening for events)
|
|
|
|
return false, true, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Called when there was a match against the state change we're looking for
|
|
|
|
// and the chain has advanced to the confidence height
|
|
|
|
stateChanged := func(ts *types.TipSet, ts2 *types.TipSet, states events.StateChange, h abi.ChainEpoch) (more bool, err error) {
|
|
|
|
// Check if the deal has already expired
|
|
|
|
if sd.Proposal.EndEpoch <= ts2.Height() {
|
|
|
|
onDealExpired(nil)
|
|
|
|
return false, nil
|
|
|
|
}
|
|
|
|
|
2020-07-08 19:00:54 +00:00
|
|
|
// Timeout waiting for state change
|
|
|
|
if states == nil {
|
|
|
|
log.Error("timed out waiting for deal expiry")
|
|
|
|
return false, nil
|
|
|
|
}
|
|
|
|
|
2020-07-08 08:35:50 +00:00
|
|
|
changedDeals, ok := states.(state.ChangedDeals)
|
|
|
|
if !ok {
|
|
|
|
panic("Expected state.ChangedDeals")
|
|
|
|
}
|
|
|
|
|
|
|
|
deal, ok := changedDeals[dealID]
|
|
|
|
if !ok {
|
|
|
|
// No change to deal
|
|
|
|
return true, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Deal was slashed
|
|
|
|
if deal.To == nil {
|
|
|
|
onDealSlashed(ts2.Height(), nil)
|
|
|
|
return false, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
return true, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Called when there was a chain reorg and the state change was reverted
|
|
|
|
revert := func(ctx context.Context, ts *types.TipSet) error {
|
|
|
|
// TODO: Is it ok to just ignore this?
|
|
|
|
log.Warn("deal state reverted; TODO: actually handle this!")
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Watch for state changes to the deal
|
2020-10-28 11:38:06 +00:00
|
|
|
match := n.dsMatcher.matcher(ctx, dealID)
|
2020-07-08 19:00:54 +00:00
|
|
|
|
|
|
|
// Wait until after the end epoch for the deal and then timeout
|
|
|
|
timeout := (sd.Proposal.EndEpoch - head.Height()) + 1
|
|
|
|
if err := n.ev.StateChanged(checkFunc, stateChanged, revert, int(build.MessageConfidence)+1, timeout, match); err != nil {
|
2020-07-08 08:35:50 +00:00
|
|
|
return xerrors.Errorf("failed to set up state changed handler: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-11-04 19:57:54 +00:00
|
|
|
var _ storagemarket.StorageProviderNode = &ProviderNodeAdapter{}
|