2014-07-23 03:55:32 +04:00
|
|
|
package ledis
|
|
|
|
|
2014-07-23 04:30:00 +04:00
|
|
|
import (
|
|
|
|
"github.com/siddontang/copier"
|
|
|
|
"github.com/siddontang/ledisdb/leveldb"
|
|
|
|
"path"
|
|
|
|
)
|
|
|
|
|
2014-07-23 03:55:32 +04:00
|
|
|
type Config struct {
|
|
|
|
DataDir string `json:"data_dir"`
|
|
|
|
|
|
|
|
DB struct {
|
|
|
|
Compression bool `json:"compression"`
|
|
|
|
BlockSize int `json:"block_size"`
|
|
|
|
WriteBufferSize int `json:"write_buffer_size"`
|
|
|
|
CacheSize int `json:"cache_size"`
|
|
|
|
MaxOpenFiles int `json:"max_open_files"`
|
|
|
|
} `json:"db"`
|
|
|
|
|
|
|
|
BinLog struct {
|
|
|
|
Use bool `json:"use"`
|
|
|
|
MaxFileSize int `json:"max_file_size"`
|
|
|
|
MaxFileNum int `json:"max_file_num"`
|
|
|
|
} `json:"binlog"`
|
|
|
|
}
|
2014-07-23 04:30:00 +04:00
|
|
|
|
|
|
|
func (cfg *Config) NewDBConfig() *leveldb.Config {
|
|
|
|
dbPath := path.Join(cfg.DataDir, "data")
|
|
|
|
|
|
|
|
dbCfg := new(leveldb.Config)
|
|
|
|
copier.Copy(dbCfg, &cfg.DB)
|
|
|
|
dbCfg.Path = dbPath
|
|
|
|
return dbCfg
|
|
|
|
}
|
|
|
|
|
|
|
|
func (cfg *Config) NewBinLogConfig() *BinLogConfig {
|
|
|
|
binLogPath := path.Join(cfg.DataDir, "bin_log")
|
|
|
|
c := new(BinLogConfig)
|
|
|
|
copier.Copy(c, &cfg.BinLog)
|
|
|
|
c.Path = binLogPath
|
|
|
|
return c
|
|
|
|
}
|