2020-03-04 02:24:08 +00:00
|
|
|
package advmgr
|
|
|
|
|
|
|
|
import (
|
2020-03-06 05:30:47 +00:00
|
|
|
"context"
|
|
|
|
|
2020-03-04 02:24:08 +00:00
|
|
|
"github.com/filecoin-project/go-sectorbuilder"
|
2020-03-11 07:22:21 +00:00
|
|
|
"github.com/filecoin-project/lotus/storage/sealmgr/stores"
|
|
|
|
|
2020-03-04 02:24:08 +00:00
|
|
|
"github.com/filecoin-project/specs-actors/actors/abi"
|
|
|
|
"golang.org/x/xerrors"
|
|
|
|
)
|
|
|
|
|
|
|
|
type readonlyProvider struct {
|
2020-03-18 01:08:11 +00:00
|
|
|
stor *stores.Local
|
2020-03-04 02:24:08 +00:00
|
|
|
}
|
|
|
|
|
2020-03-17 20:19:52 +00:00
|
|
|
func (l *readonlyProvider) AcquireSector(ctx context.Context, id abi.SectorID, existing sectorbuilder.SectorFileType, allocate sectorbuilder.SectorFileType, sealing bool) (sectorbuilder.SectorPaths, func(), error) {
|
2020-03-04 02:24:08 +00:00
|
|
|
if allocate != 0 {
|
|
|
|
return sectorbuilder.SectorPaths{}, nil, xerrors.New("read-only storage")
|
|
|
|
}
|
|
|
|
|
2020-03-17 20:19:52 +00:00
|
|
|
p, _, done, err := l.stor.AcquireSector(ctx, id, existing, allocate, sealing)
|
2020-03-13 16:54:55 +00:00
|
|
|
|
|
|
|
return p, done, err
|
2020-03-04 02:24:08 +00:00
|
|
|
}
|