lotus/blockstore/splitstore/tracking.go

31 lines
747 B
Go
Raw Normal View History

2020-11-26 14:53:16 +00:00
package splitstore
import (
"path/filepath"
2021-02-28 07:59:11 +00:00
"golang.org/x/xerrors"
2020-11-26 14:53:16 +00:00
"github.com/filecoin-project/go-state-types/abi"
cid "github.com/ipfs/go-cid"
2020-11-26 14:53:16 +00:00
)
type TrackingStore interface {
Put(cid.Cid, abi.ChainEpoch) error
PutBatch([]cid.Cid, abi.ChainEpoch) error
Get(cid.Cid) (abi.ChainEpoch, error)
Delete(cid.Cid) error
DeleteBatch(map[cid.Cid]struct{}) error
ForEach(func(cid.Cid, abi.ChainEpoch) error) error
2021-02-27 16:16:09 +00:00
Sync() error
2020-11-26 18:37:02 +00:00
Close() error
}
2021-03-01 17:39:00 +00:00
func OpenTrackingStore(path string, trackingStoreType string) (TrackingStore, error) {
2021-02-28 07:59:11 +00:00
switch trackingStoreType {
case "", "bolt":
2021-03-01 17:39:00 +00:00
return OpenBoltTrackingStore(filepath.Join(path, "snoop.bolt"))
2021-02-28 07:59:11 +00:00
default:
return nil, xerrors.Errorf("unknown tracking store type %s", trackingStoreType)
}
}