lotus/api/api_storage.go

190 lines
4.2 KiB
Go
Raw Normal View History

2019-11-01 12:01:16 +00:00
package api
import (
2020-03-03 22:19:22 +00:00
"bytes"
2019-11-01 12:01:16 +00:00
"context"
"github.com/ipfs/go-cid"
"github.com/filecoin-project/go-address"
2020-02-08 02:18:32 +00:00
"github.com/filecoin-project/specs-actors/actors/abi"
"github.com/filecoin-project/go-fil-markets/storagemarket"
"github.com/filecoin-project/lotus/chain/types"
2019-11-01 12:01:16 +00:00
)
2019-11-01 13:58:48 +00:00
// alias because cbor-gen doesn't like non-alias types
type SectorState = uint64
2019-11-01 12:01:16 +00:00
const (
2019-11-01 13:58:48 +00:00
UndefinedSectorState SectorState = iota
2019-11-01 12:01:16 +00:00
2020-01-13 20:54:28 +00:00
// happy path
Empty
2019-11-01 12:01:16 +00:00
Packing // sector not in sealStore, and not on chain
Unsealed // sealing / queued
PreCommitting // on chain pre-commit
2020-01-20 22:04:46 +00:00
WaitSeed // waiting for seed
2019-11-01 12:01:16 +00:00
Committing
CommitWait // waiting for message to land on chain
2020-01-29 21:25:06 +00:00
FinalizeSector
2019-11-01 13:58:48 +00:00
Proving
2020-01-13 20:54:28 +00:00
_ // reserved
_
_
// recovery handling
// Reseal
_
_
_
_
_
_
_
// error modes
FailedUnrecoverable
2019-11-01 13:58:48 +00:00
SealFailed
PreCommitFailed
SealCommitFailed
CommitFailed
PackingFailed
2020-01-13 20:54:28 +00:00
_
_
_
Faulty // sector is corrupted or gone for some reason
FaultReported // sector has been declared as a fault on chain
FaultedFinal // fault declared on chain
2019-11-01 12:01:16 +00:00
)
var SectorStates = []string{
UndefinedSectorState: "UndefinedSectorState",
Empty: "Empty",
Packing: "Packing",
Unsealed: "Unsealed",
PreCommitting: "PreCommitting",
2020-01-20 22:04:46 +00:00
WaitSeed: "WaitSeed",
Committing: "Committing",
CommitWait: "CommitWait",
2020-01-29 22:47:28 +00:00
FinalizeSector: "FinalizeSector",
Proving: "Proving",
SealFailed: "SealFailed",
PreCommitFailed: "PreCommitFailed",
SealCommitFailed: "SealCommitFailed",
CommitFailed: "CommitFailed",
PackingFailed: "PackingFailed",
FailedUnrecoverable: "FailedUnrecoverable",
Faulty: "Faulty",
FaultReported: "FaultReported",
FaultedFinal: "FaultedFinal",
2019-11-01 13:58:48 +00:00
}
2019-11-01 12:01:16 +00:00
// StorageMiner is a low-level interface to the Filecoin network storage miner node
type StorageMiner interface {
Common
ActorAddress(context.Context) (address.Address, error)
ActorSectorSize(context.Context, address.Address) (abi.SectorSize, error)
2019-11-01 12:01:16 +00:00
// Temp api for testing
PledgeSector(context.Context) error
2019-11-01 12:01:16 +00:00
// Get the status of a given sector by ID
SectorsStatus(context.Context, abi.SectorNumber) (SectorInfo, error)
2019-11-01 12:01:16 +00:00
// List all staged sectors
SectorsList(context.Context) ([]abi.SectorNumber, error)
2019-11-01 12:01:16 +00:00
SectorsRefs(context.Context) (map[string][]SealedRef, error)
2019-11-08 18:15:13 +00:00
SectorsUpdate(context.Context, abi.SectorNumber, SectorState) error
/*WorkerStats(context.Context) (sealsched.WorkerStats, error)*/
2019-11-21 00:52:59 +00:00
/*// WorkerQueue registers a remote worker
2020-02-28 18:06:59 +00:00
WorkerQueue(context.Context, WorkerCfg) (<-chan WorkerTask, error)
2019-11-21 00:52:59 +00:00
// WorkerQueue registers a remote worker
WorkerQueue(context.Context, sectorbuilder.WorkerCfg) (<-chan sectorbuilder.WorkerTask, error)
2019-11-21 00:52:59 +00:00
WorkerDone(ctx context.Context, task uint64, res sectorbuilder.SealRes) error
2020-03-05 19:21:06 +00:00
*/
MarketImportDealData(ctx context.Context, propcid cid.Cid, path string) error
MarketListDeals(ctx context.Context) ([]storagemarket.StorageDeal, error)
MarketListIncompleteDeals(ctx context.Context) ([]storagemarket.MinerDeal, error)
SetPrice(context.Context, types.BigInt) error
DealsImportData(ctx context.Context, dealPropCid cid.Cid, file string) error
DealsList(ctx context.Context) ([]storagemarket.StorageDeal, error)
StorageAddLocal(ctx context.Context, path string) error
2020-02-28 18:06:59 +00:00
}
type SealRes struct {
Err string
GoErr error `json:"-"`
2019-11-21 00:52:59 +00:00
2020-02-28 18:06:59 +00:00
Proof []byte
2019-11-08 18:15:13 +00:00
}
type SectorLog struct {
Kind string
Timestamp uint64
Trace string
Message string
}
2019-11-08 18:15:13 +00:00
type SectorInfo struct {
SectorID abi.SectorNumber
2019-11-08 18:15:13 +00:00
State SectorState
2020-02-27 21:45:31 +00:00
CommD *cid.Cid
CommR *cid.Cid
2019-11-08 18:15:13 +00:00
Proof []byte
Deals []abi.DealID
2020-03-03 22:19:22 +00:00
Ticket SealTicket
Seed SealSeed
2019-12-09 16:40:15 +00:00
Retries uint64
2019-12-09 16:40:15 +00:00
LastErr string
Log []SectorLog
2019-11-01 12:01:16 +00:00
}
type SealedRef struct {
2020-02-08 02:18:32 +00:00
SectorID abi.SectorNumber
2019-12-01 17:58:31 +00:00
Offset uint64
2020-02-08 02:18:32 +00:00
Size abi.UnpaddedPieceSize
2019-11-06 12:22:08 +00:00
}
type SealedRefs struct {
Refs []SealedRef
2019-11-01 12:01:16 +00:00
}
2020-03-03 22:19:22 +00:00
type SealTicket struct {
Value abi.SealRandomness
Epoch abi.ChainEpoch
}
type SealSeed struct {
Value abi.InteractiveSealRandomness
Epoch abi.ChainEpoch
}
func (st *SealTicket) Equals(ost *SealTicket) bool {
return bytes.Equal(st.Value, ost.Value) && st.Epoch == ost.Epoch
}
func (st *SealSeed) Equals(ost *SealSeed) bool {
return bytes.Equal(st.Value, ost.Value) && st.Epoch == ost.Epoch
2020-03-05 19:21:06 +00:00
}