Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Commit1Out ¶
type Commit1Out []byte
type PreCommit1Out ¶
type PreCommit1Out []byte
type Prover ¶
type Prover interface { GenerateWinningPoSt(ctx context.Context, minerID abi.ActorID, sectorInfo []proof.SectorInfo, randomness abi.PoStRandomness) ([]proof.PoStProof, error) GenerateWindowPoSt(ctx context.Context, minerID abi.ActorID, sectorInfo []proof.SectorInfo, randomness abi.PoStRandomness) (proof []proof.PoStProof, skipped []abi.SectorID, err error) }
type Range ¶
type Range struct { Offset abi.UnpaddedPieceSize Size abi.UnpaddedPieceSize }
type Sealer ¶
type Sealer interface { SealPreCommit1(ctx context.Context, sector SectorRef, ticket abi.SealRandomness, pieces []abi.PieceInfo) (PreCommit1Out, error) SealPreCommit2(ctx context.Context, sector SectorRef, pc1o PreCommit1Out) (SectorCids, error) SealCommit1(ctx context.Context, sector SectorRef, ticket abi.SealRandomness, seed abi.InteractiveSealRandomness, pieces []abi.PieceInfo, cids SectorCids) (Commit1Out, error) SealCommit2(ctx context.Context, sector SectorRef, c1o Commit1Out) (Proof, error) FinalizeSector(ctx context.Context, sector SectorRef, keepUnsealed []Range) error // ReleaseUnsealed marks parts of the unsealed sector file as safe to drop // (called by the fsm on restart, allows storage to keep no persistent // state about unsealed fast-retrieval copies) ReleaseUnsealed(ctx context.Context, sector SectorRef, safeToFree []Range) error // Removes all data associated with the specified sector Remove(ctx context.Context, sector SectorRef) error }
type SectorCids ¶
type SectorCids struct { Unsealed cid.Cid Sealed cid.Cid }
type Storage ¶
type Storage interface { // Creates a new empty sector (only allocate on disk. Layers above // storage are responsible for assigning sector IDs) NewSector(ctx context.Context, sector SectorRef) error // Add a piece to an existing *unsealed* sector AddPiece(ctx context.Context, sector SectorRef, pieceSizes []abi.UnpaddedPieceSize, newPieceSize abi.UnpaddedPieceSize, pieceData Data) (abi.PieceInfo, error) }
Click to show internal directories.
Click to hide internal directories.