lotus/api/api_worker.go

31 lines
854 B
Go
Raw Normal View History

2020-03-11 01:57:52 +00:00
package api
import (
"context"
2020-09-07 03:49:10 +00:00
"github.com/filecoin-project/go-state-types/abi"
"github.com/filecoin-project/lotus/extern/sector-storage/sealtasks"
"github.com/filecoin-project/lotus/extern/sector-storage/stores"
"github.com/filecoin-project/lotus/extern/sector-storage/storiface"
2020-03-11 01:57:52 +00:00
"github.com/filecoin-project/lotus/build"
)
type WorkerAPI interface {
2020-03-11 01:57:52 +00:00
Version(context.Context) (build.Version, error)
// TODO: Info() (name, ...) ?
2020-03-23 11:40:02 +00:00
TaskTypes(context.Context) (map[sealtasks.TaskType]struct{}, error) // TaskType -> Weight
2020-03-13 11:59:19 +00:00
Paths(context.Context) ([]stores.StoragePath, error)
2020-04-23 22:23:20 +00:00
Info(context.Context) (storiface.WorkerInfo, error)
2020-03-11 01:57:52 +00:00
2020-09-06 16:47:16 +00:00
storiface.WorkerCalls
2020-09-06 16:47:16 +00:00
// Storage / Other
Remove(ctx context.Context, sector abi.SectorID) error
2020-08-30 18:28:58 +00:00
StorageAddLocal(ctx context.Context, path string) error
Closing(context.Context) (<-chan struct{}, error)
2020-03-11 01:57:52 +00:00
}