forked from TrueCloudLab/frostfs-node
cc7a723d77
Signed-off-by: Elizaveta Chichindaeva <elizaveta@nspcc.ru>
122 lines
2.7 KiB
Go
122 lines
2.7 KiB
Go
package blobstorconfig
|
|
|
|
import (
|
|
"io/fs"
|
|
|
|
"github.com/nspcc-dev/neofs-node/cmd/neofs-node/config"
|
|
blobovniczaconfig "github.com/nspcc-dev/neofs-node/cmd/neofs-node/config/engine/shard/blobstor/blobovnicza"
|
|
"github.com/nspcc-dev/neofs-node/pkg/local_object_storage/blobstor/fstree"
|
|
)
|
|
|
|
// Config is a wrapper over the config section
|
|
// which provides access to BlobStor configurations.
|
|
type Config config.Config
|
|
|
|
// config defaults
|
|
const (
|
|
// PermDefault are default permission bits for BlobStor data.
|
|
PermDefault = 0660
|
|
|
|
// ShallowDepthDefault is a default shallow dir depth.
|
|
ShallowDepthDefault = 4
|
|
|
|
// SmallSizeLimitDefault is a default limit of small objects payload in bytes.
|
|
SmallSizeLimitDefault = 1 << 20
|
|
)
|
|
|
|
// From wraps config section into Config.
|
|
func From(c *config.Config) *Config {
|
|
return (*Config)(c)
|
|
}
|
|
|
|
// Path returns the value of "path" config parameter.
|
|
//
|
|
// Panics if the value is not a non-empty string.
|
|
func (x *Config) Path() string {
|
|
p := config.String(
|
|
(*config.Config)(x),
|
|
"path",
|
|
)
|
|
|
|
if p == "" {
|
|
panic("blobstor path not set")
|
|
}
|
|
|
|
return p
|
|
}
|
|
|
|
// Perm returns the value of "perm" config parameter as a fs.FileMode.
|
|
//
|
|
// Returns PermDefault if the value is not a non-zero number.
|
|
func (x *Config) Perm() fs.FileMode {
|
|
p := config.UintSafe(
|
|
(*config.Config)(x),
|
|
"perm",
|
|
)
|
|
|
|
if p == 0 {
|
|
p = PermDefault
|
|
}
|
|
|
|
return fs.FileMode(p)
|
|
}
|
|
|
|
// ShallowDepth returns the value of "depth" config parameter.
|
|
//
|
|
// Returns ShallowDepthDefault if the value is out of
|
|
// [1:fstree.MaxDepth] range.
|
|
func (x *Config) ShallowDepth() int {
|
|
d := config.IntSafe(
|
|
(*config.Config)(x),
|
|
"depth",
|
|
)
|
|
|
|
if d >= 1 && d <= fstree.MaxDepth {
|
|
return int(d)
|
|
}
|
|
|
|
return ShallowDepthDefault
|
|
}
|
|
|
|
// Compress returns the value of "compress" config parameter.
|
|
//
|
|
// Returns false if the value is not a valid bool.
|
|
func (x *Config) Compress() bool {
|
|
return config.BoolSafe(
|
|
(*config.Config)(x),
|
|
"compress",
|
|
)
|
|
}
|
|
|
|
// UncompressableContentTypes returns the value of "compress_skip_content_types" config parameter.
|
|
//
|
|
// Returns nil if a the value is missing or is invalid.
|
|
func (x *Config) UncompressableContentTypes() []string {
|
|
return config.StringSliceSafe(
|
|
(*config.Config)(x),
|
|
"compression_exclude_content_types")
|
|
}
|
|
|
|
// SmallSizeLimit returns the value of "small_object_size" config parameter.
|
|
//
|
|
// Returns SmallSizeLimitDefault if the value is not a positive number.
|
|
func (x *Config) SmallSizeLimit() uint64 {
|
|
l := config.SizeInBytesSafe(
|
|
(*config.Config)(x),
|
|
"small_object_size",
|
|
)
|
|
|
|
if l > 0 {
|
|
return l
|
|
}
|
|
|
|
return SmallSizeLimitDefault
|
|
}
|
|
|
|
// Blobovnicza returns "blobovnicza" subsection as a blobovniczaconfig.Config.
|
|
func (x *Config) Blobovnicza() *blobovniczaconfig.Config {
|
|
return blobovniczaconfig.From(
|
|
(*config.Config)(x).
|
|
Sub("blobovnicza"),
|
|
)
|
|
}
|