2022-06-14 18:03:38 +00:00
|
|
|
package sealer
|
2020-04-27 20:43:42 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
|
|
|
"golang.org/x/xerrors"
|
|
|
|
|
2020-09-07 03:49:10 +00:00
|
|
|
"github.com/filecoin-project/go-state-types/abi"
|
2020-05-08 16:54:06 +00:00
|
|
|
|
2022-06-14 18:25:52 +00:00
|
|
|
"github.com/filecoin-project/lotus/storage/paths"
|
2022-06-14 18:03:38 +00:00
|
|
|
"github.com/filecoin-project/lotus/storage/sealer/sealtasks"
|
2022-06-15 10:06:22 +00:00
|
|
|
"github.com/filecoin-project/lotus/storage/sealer/storiface"
|
2020-04-27 20:43:42 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type allocSelector struct {
|
2022-06-14 18:25:52 +00:00
|
|
|
index paths.SectorIndex
|
2020-09-06 16:54:00 +00:00
|
|
|
alloc storiface.SectorFileType
|
|
|
|
ptype storiface.PathType
|
2020-04-27 20:43:42 +00:00
|
|
|
}
|
|
|
|
|
2022-06-14 18:25:52 +00:00
|
|
|
func newAllocSelector(index paths.SectorIndex, alloc storiface.SectorFileType, ptype storiface.PathType) *allocSelector {
|
2020-04-27 20:43:42 +00:00
|
|
|
return &allocSelector{
|
2020-05-08 16:54:06 +00:00
|
|
|
index: index,
|
|
|
|
alloc: alloc,
|
2020-06-03 21:44:59 +00:00
|
|
|
ptype: ptype,
|
2020-07-16 21:41:04 +00:00
|
|
|
}
|
2020-04-27 20:43:42 +00:00
|
|
|
}
|
|
|
|
|
2022-05-23 20:56:11 +00:00
|
|
|
func (s *allocSelector) Ok(ctx context.Context, task sealtasks.TaskType, spt abi.RegisteredSealProof, whnd *WorkerHandle) (bool, bool, error) {
|
2022-04-06 16:31:42 +00:00
|
|
|
tasks, err := whnd.TaskTypes(ctx)
|
2020-04-27 20:43:42 +00:00
|
|
|
if err != nil {
|
2022-05-23 20:56:11 +00:00
|
|
|
return false, false, xerrors.Errorf("getting supported worker task types: %w", err)
|
2020-04-27 20:43:42 +00:00
|
|
|
}
|
|
|
|
if _, supported := tasks[task]; !supported {
|
2022-05-23 20:56:11 +00:00
|
|
|
return false, false, nil
|
2020-04-27 20:43:42 +00:00
|
|
|
}
|
|
|
|
|
2020-10-28 13:23:38 +00:00
|
|
|
paths, err := whnd.workerRpc.Paths(ctx)
|
2020-04-27 20:43:42 +00:00
|
|
|
if err != nil {
|
2022-05-23 20:56:11 +00:00
|
|
|
return false, false, xerrors.Errorf("getting worker paths: %w", err)
|
2020-04-27 20:43:42 +00:00
|
|
|
}
|
|
|
|
|
2022-01-18 10:57:04 +00:00
|
|
|
have := map[storiface.ID]struct{}{}
|
2020-04-27 20:43:42 +00:00
|
|
|
for _, path := range paths {
|
|
|
|
have[path.ID] = struct{}{}
|
|
|
|
}
|
|
|
|
|
2020-10-21 01:30:56 +00:00
|
|
|
ssize, err := spt.SectorSize()
|
|
|
|
if err != nil {
|
2022-05-23 20:56:11 +00:00
|
|
|
return false, false, xerrors.Errorf("getting sector size: %w", err)
|
2020-10-21 01:30:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
best, err := s.index.StorageBestAlloc(ctx, s.alloc, ssize, s.ptype)
|
2020-05-08 16:54:06 +00:00
|
|
|
if err != nil {
|
2022-05-23 20:56:11 +00:00
|
|
|
return false, false, xerrors.Errorf("finding best alloc storage: %w", err)
|
2020-05-08 16:54:06 +00:00
|
|
|
}
|
|
|
|
|
2022-07-01 16:02:10 +00:00
|
|
|
requested := s.alloc
|
|
|
|
|
2020-05-08 16:54:06 +00:00
|
|
|
for _, info := range best {
|
2020-04-27 20:43:42 +00:00
|
|
|
if _, ok := have[info.ID]; ok {
|
2022-07-12 11:09:20 +00:00
|
|
|
requested = requested.SubAllowed(info.AllowTypes, info.DenyTypes)
|
2022-07-01 16:02:10 +00:00
|
|
|
|
|
|
|
// got all paths
|
|
|
|
if requested == storiface.FTNone {
|
|
|
|
break
|
|
|
|
}
|
2020-04-27 20:43:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-07-01 16:02:10 +00:00
|
|
|
return requested == storiface.FTNone, false, nil
|
2020-04-27 20:43:42 +00:00
|
|
|
}
|
|
|
|
|
2022-05-18 13:47:08 +00:00
|
|
|
func (s *allocSelector) Cmp(ctx context.Context, task sealtasks.TaskType, a, b *WorkerHandle) (bool, error) {
|
|
|
|
return a.Utilization() < b.Utilization(), nil
|
2020-04-27 20:43:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var _ WorkerSelector = &allocSelector{}
|