33 lines
829 B
Go
33 lines
829 B
Go
package stores
|
|
|
|
import (
|
|
"context"
|
|
"syscall"
|
|
|
|
"golang.org/x/xerrors"
|
|
|
|
"github.com/filecoin-project/go-sectorbuilder"
|
|
"github.com/filecoin-project/specs-actors/actors/abi"
|
|
)
|
|
|
|
type Store interface {
|
|
AcquireSector(ctx context.Context, s abi.SectorID, existing sectorbuilder.SectorFileType, allocate sectorbuilder.SectorFileType, sealing bool) (paths sectorbuilder.SectorPaths, stores sectorbuilder.SectorPaths, done func(), err error)
|
|
}
|
|
|
|
type FsStat struct {
|
|
Capacity uint64
|
|
Free uint64 // Free to use for sector storage
|
|
}
|
|
|
|
func Stat(path string) (FsStat, error) {
|
|
var stat syscall.Statfs_t
|
|
if err := syscall.Statfs(path, &stat); err != nil {
|
|
return FsStat{}, xerrors.Errorf("statfs: %w", err)
|
|
}
|
|
|
|
return FsStat{
|
|
Capacity: stat.Blocks * uint64(stat.Bsize),
|
|
Free: stat.Bavail * uint64(stat.Bsize),
|
|
}, nil
|
|
}
|