lotus/api/api_worker.go

48 lines
1.5 KiB
Go
Raw Normal View History

2020-03-11 01:57:52 +00:00
package api
import (
"context"
"github.com/google/uuid"
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
)
type WorkerAPI interface {
Version(context.Context) (Version, error)
2020-03-11 01:57:52 +00:00
// 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-11-30 22:16:30 +00:00
TaskDisable(ctx context.Context, tt sealtasks.TaskType) error
TaskEnable(ctx context.Context, tt sealtasks.TaskType) error
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
// SetEnabled marks the worker as enabled/disabled. Not that this setting
// may take a few seconds to propagate to task scheduler
SetEnabled(ctx context.Context, enabled bool) error
Enabled(ctx context.Context) (bool, error)
// WaitQuiet blocks until there are no tasks running
WaitQuiet(ctx context.Context) error
// returns a random UUID of worker session, generated randomly when worker
// process starts
ProcessSession(context.Context) (uuid.UUID, error)
// Like ProcessSession, but returns an error when worker is disabled
Session(context.Context) (uuid.UUID, error)
2020-03-11 01:57:52 +00:00
}