plugeth/common/config.go

84 lines
2.2 KiB
Go
Raw Normal View History

2015-07-07 00:54:22 +00:00
// Copyright 2014 The go-ethereum Authors
// This file is part of go-ethereum.
//
// go-ethereum is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// go-ethereum is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with go-ethereum. If not, see <http://www.gnu.org/licenses/>.
2015-03-16 10:27:38 +00:00
package common
2014-02-14 22:56:09 +00:00
import (
2014-05-30 17:51:19 +00:00
"flag"
"fmt"
"os"
2014-07-26 09:24:44 +00:00
"github.com/rakyll/globalconf"
2014-02-14 22:56:09 +00:00
)
// Config struct
type ConfigManager struct {
ExecPath string
Debug bool
2014-07-11 14:04:09 +00:00
Diff bool
2014-07-13 22:37:50 +00:00
DiffType string
Paranoia bool
VmType int
2014-05-30 17:51:19 +00:00
conf *globalconf.GlobalConf
2014-02-14 22:56:09 +00:00
}
// Read config
//
// Initialize Config from Config File
func ReadConfig(ConfigFile string, Datadir string, EnvPrefix string) *ConfigManager {
if !FileExist(ConfigFile) {
// create ConfigFile if it does not exist, otherwise
// globalconf will panic when trying to persist flags.
fmt.Printf("config file '%s' doesn't exist, creating it\n", ConfigFile)
os.Create(ConfigFile)
}
g, err := globalconf.NewWithOptions(&globalconf.Options{
Filename: ConfigFile,
EnvPrefix: EnvPrefix,
})
if err != nil {
fmt.Println(err)
} else {
g.ParseAll()
2014-02-14 22:56:09 +00:00
}
cfg := &ConfigManager{ExecPath: Datadir, Debug: true, conf: g, Paranoia: true}
return cfg
2014-02-14 22:56:09 +00:00
}
// provides persistence for flags
func (c *ConfigManager) Save(key string, value interface{}) {
f := &flag.Flag{Name: key, Value: newConfValue(value)}
2014-05-30 17:51:19 +00:00
c.conf.Set("", f)
}
func (c *ConfigManager) Delete(key string) {
c.conf.Delete("", key)
}
// private type implementing flag.Value
2014-05-30 17:51:19 +00:00
type confValue struct {
value string
}
// generic constructor to allow persising non-string values directly
func newConfValue(value interface{}) *confValue {
return &confValue{fmt.Sprintf("%v", value)}
}
2014-05-30 17:51:19 +00:00
func (self confValue) String() string { return self.value }
func (self confValue) Set(s string) error { self.value = s; return nil }