ledisdb/config/config.go

126 lines
2.4 KiB
Go
Raw Normal View History

package config
import (
"github.com/BurntSushi/toml"
"io/ioutil"
)
type Size int
const (
DefaultAddr string = "127.0.0.1:6380"
DefaultHttpAddr string = "127.0.0.1:11181"
DefaultDBName string = "goleveldb"
DefaultDataDir string = "./var"
)
type LevelDBConfig struct {
2014-08-27 11:37:42 +04:00
Compression bool `toml:"compression"`
BlockSize int `toml:"block_size"`
WriteBufferSize int `toml:"write_buffer_size"`
CacheSize int `toml:"cache_size"`
MaxOpenFiles int `toml:"max_open_files"`
}
type LMDBConfig struct {
2014-08-27 11:37:42 +04:00
MapSize int `toml:"map_size"`
NoSync bool `toml:"nosync"`
}
2014-09-22 13:50:51 +04:00
type ReplicationConfig struct {
2014-10-05 13:24:44 +04:00
Path string `toml:"path"`
ExpiredLogDays int `toml:"expired_log_days"`
Sync bool `toml:"sync"`
WaitSyncTime int `toml:"wait_sync_time"`
WaitMaxSlaveAcks int `toml:"wait_max_slave_acks"`
Compression bool `toml:"compression"`
}
type Config struct {
2014-08-27 11:37:42 +04:00
Addr string `toml:"addr"`
2014-08-27 11:37:42 +04:00
HttpAddr string `toml:"http_addr"`
2014-09-22 13:50:51 +04:00
SlaveOf string `toml:"slaveof"`
2014-08-27 11:37:42 +04:00
DataDir string `toml:"data_dir"`
2014-08-27 11:37:42 +04:00
DBName string `toml:"db_name"`
2014-09-18 18:30:33 +04:00
DBPath string `toml:"db_path"`
2014-08-27 11:37:42 +04:00
LevelDB LevelDBConfig `toml:"leveldb"`
2014-08-27 11:37:42 +04:00
LMDB LMDBConfig `toml:"lmdb"`
2014-08-27 11:37:42 +04:00
AccessLog string `toml:"access_log"`
2014-09-22 13:50:51 +04:00
UseReplication bool `toml:"use_replication"`
Replication ReplicationConfig `toml:"replication"`
}
func NewConfigWithFile(fileName string) (*Config, error) {
data, err := ioutil.ReadFile(fileName)
if err != nil {
return nil, err
}
return NewConfigWithData(data)
}
func NewConfigWithData(data []byte) (*Config, error) {
cfg := NewConfigDefault()
_, err := toml.Decode(string(data), cfg)
if err != nil {
2014-08-27 11:37:42 +04:00
return nil, err
}
return cfg, nil
}
func NewConfigDefault() *Config {
cfg := new(Config)
cfg.Addr = DefaultAddr
cfg.HttpAddr = DefaultHttpAddr
cfg.DataDir = DefaultDataDir
cfg.DBName = DefaultDBName
cfg.SlaveOf = ""
// disable access log
cfg.AccessLog = ""
2014-09-04 10:02:47 +04:00
cfg.LMDB.MapSize = 20 * 1024 * 1024
2014-08-25 10:18:23 +04:00
cfg.LMDB.NoSync = true
cfg.Replication.WaitSyncTime = 1
2014-09-27 05:10:08 +04:00
cfg.Replication.Compression = true
2014-10-05 13:24:44 +04:00
cfg.Replication.WaitMaxSlaveAcks = 2
return cfg
}
func (cfg *LevelDBConfig) Adjust() {
if cfg.CacheSize <= 0 {
cfg.CacheSize = 4 * 1024 * 1024
}
if cfg.BlockSize <= 0 {
cfg.BlockSize = 4 * 1024
}
if cfg.WriteBufferSize <= 0 {
cfg.WriteBufferSize = 4 * 1024 * 1024
}
if cfg.MaxOpenFiles < 1024 {
cfg.MaxOpenFiles = 1024
}
}