2020-03-23 11:40:02 +00:00
|
|
|
package stores
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2021-05-20 11:01:25 +00:00
|
|
|
"os"
|
2020-11-16 18:20:18 +00:00
|
|
|
|
2020-09-07 03:49:10 +00:00
|
|
|
"github.com/filecoin-project/go-state-types/abi"
|
2021-05-19 13:50:48 +00:00
|
|
|
"github.com/filecoin-project/lotus/extern/sector-storage/partialfile"
|
2020-03-23 11:40:02 +00:00
|
|
|
|
2020-11-04 20:29:08 +00:00
|
|
|
"github.com/filecoin-project/specs-storage/storage"
|
|
|
|
|
2020-09-06 16:54:00 +00:00
|
|
|
"github.com/filecoin-project/lotus/extern/sector-storage/fsutil"
|
|
|
|
"github.com/filecoin-project/lotus/extern/sector-storage/storiface"
|
2020-05-20 16:36:46 +00:00
|
|
|
)
|
|
|
|
|
2021-05-19 13:50:48 +00:00
|
|
|
// PartialFileHandler helps mock out the partial file functionality during testing.
|
|
|
|
type partialFileHandler interface {
|
|
|
|
// OpenPartialFile opens and returns a partial file at the given path and also verifies it has the given
|
|
|
|
// size
|
|
|
|
OpenPartialFile(maxPieceSize abi.PaddedPieceSize, path string) (*partialfile.PartialFile, error)
|
|
|
|
|
2021-05-20 11:01:25 +00:00
|
|
|
// HasAllocated returns true if the given partial file has an unsealed piece starting at the given offset with the given size.
|
2021-05-19 13:50:48 +00:00
|
|
|
// returns false otherwise.
|
|
|
|
HasAllocated(pf *partialfile.PartialFile, offset storiface.UnpaddedByteIndex, size abi.UnpaddedPieceSize) (bool, error)
|
2021-05-20 11:01:25 +00:00
|
|
|
|
|
|
|
// Reader returns a file from which we can read the unsealed piece in the partial file.
|
|
|
|
Reader(pf *partialfile.PartialFile, offset storiface.PaddedByteIndex, size abi.PaddedPieceSize) (*os.File, error)
|
|
|
|
|
|
|
|
// Close closes the partial file
|
|
|
|
Close(pf *partialfile.PartialFile) error
|
2021-05-19 13:50:48 +00:00
|
|
|
}
|
|
|
|
|
2020-03-23 11:40:02 +00:00
|
|
|
type Store interface {
|
2020-11-04 20:29:08 +00:00
|
|
|
AcquireSector(ctx context.Context, s storage.SectorRef, existing storiface.SectorFileType, allocate storiface.SectorFileType, sealing storiface.PathType, op storiface.AcquireMode) (paths storiface.SectorPaths, stores storiface.SectorPaths, err error)
|
2020-09-06 16:54:00 +00:00
|
|
|
Remove(ctx context.Context, s abi.SectorID, types storiface.SectorFileType, force bool) error
|
2020-03-25 18:21:53 +00:00
|
|
|
|
2020-05-20 16:36:46 +00:00
|
|
|
// like remove, but doesn't remove the primary sector copy, nor the last
|
|
|
|
// non-primary copy if there no primary copies
|
2020-09-06 16:54:00 +00:00
|
|
|
RemoveCopies(ctx context.Context, s abi.SectorID, types storiface.SectorFileType) error
|
2020-05-20 16:36:46 +00:00
|
|
|
|
2020-03-25 18:21:53 +00:00
|
|
|
// move sectors into storage
|
2020-11-04 20:29:08 +00:00
|
|
|
MoveStorage(ctx context.Context, s storage.SectorRef, types storiface.SectorFileType) error
|
2020-03-25 18:21:53 +00:00
|
|
|
|
2020-07-08 14:58:09 +00:00
|
|
|
FsStat(ctx context.Context, id ID) (fsutil.FsStat, error)
|
2021-05-20 05:08:22 +00:00
|
|
|
|
|
|
|
Reserve(ctx context.Context, sid storage.SectorRef, ft storiface.SectorFileType, storageIDs storiface.SectorPaths, overheadTab map[storiface.SectorFileType]int) (func(), error)
|
2020-03-23 22:43:38 +00:00
|
|
|
}
|