2023-10-25 12:23:25 +00:00
|
|
|
package provider
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2023-10-27 23:08:18 +00:00
|
|
|
"time"
|
|
|
|
|
2023-10-25 19:13:56 +00:00
|
|
|
logging "github.com/ipfs/go-log/v2"
|
|
|
|
|
2023-10-25 12:23:25 +00:00
|
|
|
"github.com/filecoin-project/lotus/api"
|
|
|
|
"github.com/filecoin-project/lotus/lib/harmony/harmonydb"
|
|
|
|
"github.com/filecoin-project/lotus/node/config"
|
|
|
|
dtypes "github.com/filecoin-project/lotus/node/modules/dtypes"
|
2023-10-25 18:58:16 +00:00
|
|
|
"github.com/filecoin-project/lotus/provider/chainsched"
|
2023-11-04 10:04:46 +00:00
|
|
|
"github.com/filecoin-project/lotus/provider/lpmessage"
|
2023-10-25 12:23:25 +00:00
|
|
|
"github.com/filecoin-project/lotus/provider/lpwindow"
|
|
|
|
"github.com/filecoin-project/lotus/storage/ctladdr"
|
2023-11-04 10:04:46 +00:00
|
|
|
"github.com/filecoin-project/lotus/storage/paths"
|
|
|
|
"github.com/filecoin-project/lotus/storage/sealer"
|
2023-10-25 12:23:25 +00:00
|
|
|
"github.com/filecoin-project/lotus/storage/sealer/storiface"
|
|
|
|
)
|
|
|
|
|
2023-10-25 18:58:16 +00:00
|
|
|
var log = logging.Logger("provider")
|
|
|
|
|
2023-10-25 12:23:25 +00:00
|
|
|
func WindowPostScheduler(ctx context.Context, fc config.LotusProviderFees, pc config.ProvingConfig,
|
2023-10-27 14:10:55 +00:00
|
|
|
api api.FullNode, verif storiface.Verifier, lw *sealer.LocalWorker,
|
2023-11-09 16:32:32 +00:00
|
|
|
as *ctladdr.AddressSelector, addresses []dtypes.MinerAddress, db *harmonydb.DB,
|
|
|
|
stor paths.Store, idx paths.SectorIndex, max int) (*lpwindow.WdPostTask, *lpwindow.WdPostSubmitTask, *lpwindow.WdPostRecoverDeclareTask, error) {
|
2023-10-25 12:23:25 +00:00
|
|
|
|
2023-10-25 18:58:16 +00:00
|
|
|
chainSched := chainsched.New(api)
|
2023-10-25 12:23:25 +00:00
|
|
|
|
2023-10-27 14:10:55 +00:00
|
|
|
// todo config
|
|
|
|
ft := lpwindow.NewSimpleFaultTracker(stor, idx, 32, 5*time.Second, 300*time.Second)
|
|
|
|
|
2023-11-03 21:40:28 +00:00
|
|
|
sender := lpmessage.NewSender(api, api, db)
|
|
|
|
|
2023-11-09 16:32:32 +00:00
|
|
|
computeTask, err := lpwindow.NewWdPostTask(db, api, ft, lw, verif, chainSched, addresses, max)
|
2023-11-03 21:40:28 +00:00
|
|
|
if err != nil {
|
2023-11-09 16:32:32 +00:00
|
|
|
return nil, nil, nil, err
|
2023-11-03 21:40:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
submitTask, err := lpwindow.NewWdPostSubmitTask(chainSched, sender, db, api, fc.MaxWindowPoStGasFee, as)
|
2023-10-30 18:40:06 +00:00
|
|
|
if err != nil {
|
2023-11-09 16:32:32 +00:00
|
|
|
return nil, nil, nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
recoverTask, err := lpwindow.NewWdPostRecoverDeclareTask(sender, db, api, ft, as, chainSched, fc.MaxWindowPoStGasFee, addresses)
|
|
|
|
if err != nil {
|
|
|
|
return nil, nil, nil, err
|
2023-10-30 18:40:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
go chainSched.Run(ctx)
|
|
|
|
|
2023-11-09 16:32:32 +00:00
|
|
|
return computeTask, submitTask, recoverTask, nil
|
2023-10-25 12:23:25 +00:00
|
|
|
}
|