cosmos-sdk/x/params/keeper.go

62 lines
1.3 KiB
Go

package params
import (
"fmt"
"github.com/cosmos/cosmos-sdk/codec"
sdk "github.com/cosmos/cosmos-sdk/types"
"github.com/cosmos/cosmos-sdk/x/params/subspace"
"github.com/cosmos/cosmos-sdk/x/params/types"
"github.com/tendermint/tendermint/libs/log"
)
// Keeper of the global paramstore
type Keeper struct {
cdc codec.Marshaler
key sdk.StoreKey
tkey sdk.StoreKey
spaces map[string]*Subspace
}
// NewKeeper constructs a params keeper
func NewKeeper(cdc codec.Marshaler, key, tkey sdk.StoreKey) Keeper {
return Keeper{
cdc: cdc,
key: key,
tkey: tkey,
spaces: make(map[string]*Subspace),
}
}
// Logger returns a module-specific logger.
func (k Keeper) Logger(ctx sdk.Context) log.Logger {
return ctx.Logger().With("module", fmt.Sprintf("x/%s", types.ModuleName))
}
// Allocate subspace used for keepers
func (k Keeper) Subspace(s string) Subspace {
_, ok := k.spaces[s]
if ok {
panic("subspace already occupied")
}
if s == "" {
panic("cannot use empty string for subspace")
}
space := subspace.NewSubspace(k.cdc, k.key, k.tkey, s)
k.spaces[s] = &space
return space
}
// Get existing substore from keeper
func (k Keeper) GetSubspace(s string) (Subspace, bool) {
space, ok := k.spaces[s]
if !ok {
return Subspace{}, false
}
return *space, ok
}