ctop/config/main.go

40 lines
715 B
Go
Raw Normal View History

2017-02-07 03:33:09 +00:00
package config
2017-01-03 17:37:09 +00:00
2017-01-04 17:50:49 +00:00
import (
"fmt"
2017-01-04 17:50:49 +00:00
"os"
"github.com/bcicen/ctop/logging"
2017-01-04 17:50:49 +00:00
)
2017-02-09 03:49:46 +00:00
var (
GlobalParams []*Param
GlobalSwitches []*Switch
log = logging.Init()
2017-02-09 03:49:46 +00:00
)
func Init() {
for _, p := range params {
GlobalParams = append(GlobalParams, p)
log.Infof("loaded config param: %s: %s", quote(p.Key), quote(p.Val))
2017-01-03 17:37:09 +00:00
}
for _, s := range switches {
GlobalSwitches = append(GlobalSwitches, s)
log.Infof("loaded config switch: %s: %t", quote(s.Key), s.Val)
}
2017-01-03 17:37:09 +00:00
}
func quote(s string) string {
return fmt.Sprintf("\"%s\"", s)
}
// Return env var value if set, else return defaultVal
func getEnv(key, defaultVal string) string {
val := os.Getenv(key)
if val != "" {
return val
}
return defaultVal
}