quorum/ethutil/config.go

215 lines
4.0 KiB
Go
Raw Normal View History

2014-02-14 14:56:09 -08:00
package ethutil
import (
2014-05-30 10:51:19 -07:00
"flag"
"fmt"
2014-05-30 10:51:19 -07:00
"github.com/rakyll/globalconf"
2014-02-14 14:56:09 -08:00
"log"
"os"
"os/user"
"path"
"runtime"
2014-02-14 14:56:09 -08:00
)
// Config struct
2014-02-14 14:56:09 -08:00
type config struct {
Db Database
Log *Logger
ExecPath string
Debug bool
Ver string
ClientString string
Pubkey []byte
Identifier string
2014-05-30 10:51:19 -07:00
conf *globalconf.GlobalConf
2014-02-14 14:56:09 -08:00
}
const defaultConf = `
id = ""
port = 30303
upnp = true
maxpeer = 10
rpc = false
rpcport = 8080
`
2014-02-14 14:56:09 -08:00
var Config *config
func ApplicationFolder(base string) string {
usr, _ := user.Current()
p := path.Join(usr.HomeDir, base)
if len(base) > 0 {
//Check if the logging directory already exists, create it if not
_, err := os.Stat(p)
if err != nil {
if os.IsNotExist(err) {
log.Printf("Debug logging directory %s doesn't exist, creating it\n", p)
os.Mkdir(p, 0777)
}
}
iniFilePath := path.Join(p, "conf.ini")
_, err = os.Stat(iniFilePath)
if err != nil && os.IsNotExist(err) {
file, err := os.Create(iniFilePath)
if err != nil {
fmt.Println(err)
} else {
assetPath := path.Join(os.Getenv("GOPATH"), "src", "github.com", "ethereum", "go-ethereum", "ethereal", "assets")
file.Write([]byte(defaultConf + "\nasset_path = " + assetPath))
}
}
}
return p
}
// Read config
//
// Initialize the global Config variable with default settings
2014-05-30 10:51:19 -07:00
func ReadConfig(base string, logTypes LoggerType, g *globalconf.GlobalConf, id string) *config {
2014-02-14 14:56:09 -08:00
if Config == nil {
path := ApplicationFolder(base)
2014-02-14 14:56:09 -08:00
2014-06-09 13:23:30 -07:00
Config = &config{ExecPath: path, Debug: true, Ver: "0.5.0 RC12"}
2014-05-30 10:51:19 -07:00
Config.conf = g
Config.Identifier = id
Config.Log = NewLogger(logTypes, LogLevelDebug)
2014-03-20 09:27:48 -07:00
Config.SetClientString("/Ethereum(G)")
2014-02-14 14:56:09 -08:00
}
return Config
}
// Set client string
//
2014-03-20 09:27:48 -07:00
func (c *config) SetClientString(str string) {
id := runtime.GOOS
if len(c.Identifier) > 0 {
id = c.Identifier
}
Config.ClientString = fmt.Sprintf("%s nv%s/%s", str, c.Ver, id)
2014-03-20 09:27:48 -07:00
}
2014-05-30 10:51:19 -07:00
func (c *config) SetIdentifier(id string) {
c.Identifier = id
c.Set("id", id)
}
func (c *config) Set(key, value string) {
f := &flag.Flag{Name: key, Value: &confValue{value}}
c.conf.Set("", f)
}
2014-02-14 14:56:09 -08:00
type LoggerType byte
const (
LogFile = 0x1
LogStd = 0x2
)
type LogSystem interface {
Println(v ...interface{})
Printf(format string, v ...interface{})
}
2014-02-14 14:56:09 -08:00
type Logger struct {
logSys []LogSystem
2014-02-14 14:56:09 -08:00
logLevel int
}
func NewLogger(flag LoggerType, level int) *Logger {
var loggers []LogSystem
2014-02-14 14:56:09 -08:00
2014-02-19 07:27:22 -08:00
flags := log.LstdFlags
2014-02-14 14:56:09 -08:00
if flag&LogFile > 0 {
file, err := os.OpenFile(path.Join(Config.ExecPath, "debug.log"), os.O_RDWR|os.O_CREATE|os.O_APPEND, os.ModePerm)
if err != nil {
log.Panic("unable to create file logger", err)
}
2014-02-19 07:27:22 -08:00
log := log.New(file, "", flags)
2014-02-14 14:56:09 -08:00
loggers = append(loggers, log)
}
if flag&LogStd > 0 {
2014-02-19 07:27:22 -08:00
log := log.New(os.Stdout, "", flags)
2014-02-14 14:56:09 -08:00
loggers = append(loggers, log)
}
return &Logger{logSys: loggers, logLevel: level}
}
func (log *Logger) AddLogSystem(logger LogSystem) {
log.logSys = append(log.logSys, logger)
2014-02-14 14:56:09 -08:00
}
2014-02-19 07:27:22 -08:00
const (
LogLevelDebug = iota
LogLevelInfo
)
func (log *Logger) Debugln(v ...interface{}) {
2014-02-19 07:27:22 -08:00
if log.logLevel != LogLevelDebug {
2014-02-14 14:56:09 -08:00
return
}
for _, logger := range log.logSys {
logger.Println(v...)
}
}
func (log *Logger) Debugf(format string, v ...interface{}) {
2014-02-19 07:27:22 -08:00
if log.logLevel != LogLevelDebug {
return
}
for _, logger := range log.logSys {
logger.Printf(format, v...)
}
}
func (log *Logger) Infoln(v ...interface{}) {
2014-02-19 07:27:22 -08:00
if log.logLevel > LogLevelInfo {
return
}
for _, logger := range log.logSys {
logger.Println(v...)
}
}
func (log *Logger) Infof(format string, v ...interface{}) {
2014-02-19 07:27:22 -08:00
if log.logLevel > LogLevelInfo {
2014-02-14 14:56:09 -08:00
return
}
for _, logger := range log.logSys {
logger.Printf(format, v...)
}
}
2014-05-19 08:02:16 -07:00
func (log *Logger) Fatal(v ...interface{}) {
if log.logLevel > LogLevelInfo {
return
}
for _, logger := range log.logSys {
logger.Println(v...)
}
os.Exit(1)
}
2014-05-30 10:51:19 -07:00
type confValue struct {
value string
}
func (self confValue) String() string { return self.value }
func (self confValue) Set(s string) error { self.value = s; return nil }