2020-05-19 16:11:56 +00:00
|
|
|
package storiface
|
|
|
|
|
2020-05-28 23:33:00 +00:00
|
|
|
import (
|
2020-12-01 23:35:55 +00:00
|
|
|
"context"
|
2020-05-28 23:33:00 +00:00
|
|
|
"errors"
|
2020-12-01 23:39:55 +00:00
|
|
|
|
2020-12-01 23:35:55 +00:00
|
|
|
"github.com/ipfs/go-cid"
|
2020-05-28 23:33:00 +00:00
|
|
|
|
2020-09-07 03:49:10 +00:00
|
|
|
"github.com/filecoin-project/go-state-types/abi"
|
2020-05-28 23:33:00 +00:00
|
|
|
)
|
2020-05-19 16:11:56 +00:00
|
|
|
|
|
|
|
var ErrSectorNotFound = errors.New("sector not found")
|
2020-05-26 08:25:17 +00:00
|
|
|
|
|
|
|
type UnpaddedByteIndex uint64
|
2020-05-28 23:33:00 +00:00
|
|
|
|
|
|
|
func (i UnpaddedByteIndex) Padded() PaddedByteIndex {
|
|
|
|
return PaddedByteIndex(abi.UnpaddedPieceSize(i).Padded())
|
|
|
|
}
|
|
|
|
|
|
|
|
type PaddedByteIndex uint64
|
2020-12-01 23:35:55 +00:00
|
|
|
|
|
|
|
type RGetter func(ctx context.Context, id abi.SectorID) (cid.Cid, error)
|