2019-08-01 14:14:16 +00:00
|
|
|
package modules
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
|
|
|
"go.uber.org/fx"
|
|
|
|
|
2019-10-18 04:47:41 +00:00
|
|
|
"github.com/filecoin-project/lotus/chain/types"
|
2020-10-01 11:58:26 +00:00
|
|
|
"github.com/filecoin-project/lotus/lib/backupds"
|
2019-10-18 04:47:41 +00:00
|
|
|
"github.com/filecoin-project/lotus/node/modules/dtypes"
|
|
|
|
"github.com/filecoin-project/lotus/node/repo"
|
2019-08-01 14:14:16 +00:00
|
|
|
)
|
|
|
|
|
2019-08-01 14:19:53 +00:00
|
|
|
func LockedRepo(lr repo.LockedRepo) func(lc fx.Lifecycle) repo.LockedRepo {
|
|
|
|
return func(lc fx.Lifecycle) repo.LockedRepo {
|
|
|
|
lc.Append(fx.Hook{
|
|
|
|
OnStop: func(_ context.Context) error {
|
|
|
|
return lr.Close()
|
|
|
|
},
|
|
|
|
})
|
2019-08-01 14:14:16 +00:00
|
|
|
|
2019-08-01 14:19:53 +00:00
|
|
|
return lr
|
2019-08-01 14:14:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-01 14:19:53 +00:00
|
|
|
func KeyStore(lr repo.LockedRepo) (types.KeyStore, error) {
|
|
|
|
return lr.KeyStore()
|
2019-08-01 14:14:16 +00:00
|
|
|
}
|
|
|
|
|
2019-08-01 14:19:53 +00:00
|
|
|
func Datastore(r repo.LockedRepo) (dtypes.MetadataDS, error) {
|
2020-10-01 11:58:26 +00:00
|
|
|
mds, err := r.Datastore("/metadata")
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return backupds.Wrap(mds), nil
|
2019-08-01 14:14:16 +00:00
|
|
|
}
|