lotus/chain/store/splitstore/liveset.go

36 lines
693 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
cid "github.com/ipfs/go-cid"
)
type LiveSet interface {
Mark(cid.Cid) error
Has(cid.Cid) (bool, error)
Close() error
}
2020-11-26 15:49:47 +00:00
2020-11-26 16:58:03 +00:00
var markBytes = []byte{}
type LiveSetEnv interface {
NewLiveSet(name string) (LiveSet, error)
Close() error
}
2021-02-28 07:59:11 +00:00
func NewLiveSetEnv(path string, liveSetType string) (LiveSetEnv, error) {
switch liveSetType {
case "", "bloom":
return NewBloomLiveSetEnv()
case "bolt":
return NewBoltLiveSetEnv(filepath.Join(path, "sweep.bolt"))
case "lmdb":
return NewLMDBLiveSetEnv(filepath.Join(path, "sweep.lmdb"))
2021-02-28 07:59:11 +00:00
default:
return nil, xerrors.Errorf("unknown live set type %s", liveSetType)
}
}