lotus/node/impl/storminer.go

81 lines
2.0 KiB
Go
Raw Normal View History

package impl
2019-07-24 00:58:31 +00:00
import (
2019-07-27 01:54:03 +00:00
"context"
"fmt"
2019-08-14 20:27:10 +00:00
"io"
"math/rand"
2019-07-27 01:54:03 +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/sector"
"github.com/filecoin-project/lotus/storage/sectorblocks"
"golang.org/x/xerrors"
2019-07-24 00:58:31 +00:00
)
type StorageMinerAPI struct {
CommonAPI
2019-07-27 00:45:27 +00:00
2019-08-10 01:54:45 +00:00
SectorBuilderConfig *sectorbuilder.SectorBuilderConfig
SectorBuilder *sectorbuilder.SectorBuilder
2019-08-14 20:27:10 +00:00
Sectors *sector.Store
2019-08-26 10:04:57 +00:00
SectorBlocks *sectorblocks.SectorBlocks
Miner *storage.Miner
2019-07-24 00:58:31 +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-07-27 01:54:03 +00:00
func (sm *StorageMinerAPI) StoreGarbageData(ctx context.Context) (uint64, error) {
ssize, err := sm.Miner.SectorSize(ctx)
if err != nil {
return 0, xerrors.Errorf("failed to get miner sector size: %w", err)
}
size := sectorbuilder.UserBytesForSectorSize(ssize)
2019-07-27 01:54:03 +00:00
// TODO: create a deal
name := fmt.Sprintf("fake-file-%d", rand.Intn(100000000))
2019-10-27 08:56:53 +00:00
sectorId, err := sm.Sectors.AddPiece(name, size, io.LimitReader(rand.New(rand.NewSource(42)), int64(size)))
2019-07-27 01:54:03 +00:00
if err != nil {
return 0, err
}
2019-10-27 08:56:53 +00:00
if err := sm.Sectors.SealSector(ctx, sectorId); err != nil {
return sectorId, err
}
2019-07-27 01:54:03 +00:00
return sectorId, err
}
func (sm *StorageMinerAPI) SectorsStatus(ctx context.Context, sid uint64) (sectorbuilder.SectorSealingStatus, error) {
return sm.SectorBuilder.SealStatus(sid)
}
// List all staged sectors
func (sm *StorageMinerAPI) SectorsList(context.Context) ([]uint64, error) {
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{}