2019-07-24 01:13:56 +00:00
|
|
|
package impl
|
2019-07-24 00:58:31 +00:00
|
|
|
|
|
|
|
import (
|
2019-07-27 01:54:03 +00:00
|
|
|
"context"
|
|
|
|
|
2019-10-18 04:47:41 +00:00
|
|
|
"github.com/filecoin-project/lotus/api"
|
|
|
|
"github.com/filecoin-project/lotus/chain/address"
|
|
|
|
"github.com/filecoin-project/lotus/lib/sectorbuilder"
|
|
|
|
"github.com/filecoin-project/lotus/storage"
|
|
|
|
"github.com/filecoin-project/lotus/storage/sectorblocks"
|
2019-07-24 00:58:31 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type StorageMinerAPI struct {
|
|
|
|
CommonAPI
|
2019-07-27 00:45:27 +00:00
|
|
|
|
2019-11-04 16:47:08 +00:00
|
|
|
SectorBuilderConfig *sectorbuilder.Config
|
2019-08-10 01:54:45 +00:00
|
|
|
SectorBuilder *sectorbuilder.SectorBuilder
|
2019-08-26 10:04:57 +00:00
|
|
|
SectorBlocks *sectorblocks.SectorBlocks
|
2019-07-30 00:46:56 +00:00
|
|
|
|
|
|
|
Miner *storage.Miner
|
2019-11-02 14:13:21 +00:00
|
|
|
Full api.FullNode
|
2019-07-24 00:58:31 +00:00
|
|
|
}
|
|
|
|
|
2019-10-14 02:32:32 +00:00
|
|
|
func (sm *StorageMinerAPI) ActorAddress(context.Context) (address.Address, error) {
|
|
|
|
return sm.SectorBuilderConfig.Miner, nil
|
2019-08-10 01:54:45 +00:00
|
|
|
}
|
|
|
|
|
2019-10-29 17:52:07 +00:00
|
|
|
func (sm *StorageMinerAPI) StoreGarbageData(ctx context.Context) error {
|
2019-11-01 23:43:54 +00:00
|
|
|
return sm.Miner.StoreGarbageData(ctx)
|
2019-07-27 01:54:03 +00:00
|
|
|
}
|
|
|
|
|
2019-07-27 21:08:10 +00:00
|
|
|
func (sm *StorageMinerAPI) SectorsStatus(ctx context.Context, sid uint64) (sectorbuilder.SectorSealingStatus, error) {
|
|
|
|
return sm.SectorBuilder.SealStatus(sid)
|
|
|
|
}
|
|
|
|
|
|
|
|
// List all staged sectors
|
2019-10-14 02:32:32 +00:00
|
|
|
func (sm *StorageMinerAPI) SectorsList(context.Context) ([]uint64, error) {
|
2019-07-27 21:08:10 +00:00
|
|
|
return sm.SectorBuilder.GetAllStagedSectors()
|
|
|
|
}
|
|
|
|
|
2019-08-26 10:04:57 +00:00
|
|
|
func (sm *StorageMinerAPI) SectorsRefs(context.Context) (map[string][]api.SealedRef, error) {
|
|
|
|
// json can't handle cids as map keys
|
|
|
|
out := map[string][]api.SealedRef{}
|
|
|
|
|
|
|
|
refs, err := sm.SectorBlocks.List()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
for k, v := range refs {
|
|
|
|
out[k.String()] = v
|
|
|
|
}
|
|
|
|
|
|
|
|
return out, nil
|
|
|
|
}
|
|
|
|
|
2019-07-24 00:58:31 +00:00
|
|
|
var _ api.StorageMiner = &StorageMinerAPI{}
|