2015-03-10 07:20:31 +00:00
|
|
|
package util
|
|
|
|
|
2012-08-24 03:56:09 +00:00
|
|
|
// Copyright 2011 Numerotron Inc.
|
|
|
|
// Use of this source code is governed by an MIT-style license
|
|
|
|
// that can be found in the LICENSE file.
|
|
|
|
//
|
|
|
|
// Developed at www.stathat.com by Patrick Crosby
|
|
|
|
// Contact us on twitter with any questions: twitter.com/stat_hat
|
|
|
|
|
|
|
|
// The jconfig package provides a simple, basic configuration file parser using JSON.
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
2013-09-02 06:58:21 +00:00
|
|
|
"encoding/json"
|
2012-08-24 03:56:09 +00:00
|
|
|
"os"
|
2014-10-26 18:34:55 +00:00
|
|
|
|
2016-06-03 01:09:14 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/glog"
|
2012-08-24 03:56:09 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type Config struct {
|
|
|
|
data map[string]interface{}
|
|
|
|
filename string
|
|
|
|
}
|
|
|
|
|
|
|
|
func newConfig() *Config {
|
|
|
|
result := new(Config)
|
|
|
|
result.data = make(map[string]interface{})
|
|
|
|
return result
|
|
|
|
}
|
|
|
|
|
|
|
|
// Loads config information from a JSON file
|
|
|
|
func LoadConfig(filename string) *Config {
|
|
|
|
result := newConfig()
|
|
|
|
result.filename = filename
|
|
|
|
err := result.parse()
|
|
|
|
if err != nil {
|
2013-08-09 06:57:22 +00:00
|
|
|
glog.Fatalf("error loading config file %s: %s", filename, err)
|
2012-08-24 03:56:09 +00:00
|
|
|
}
|
|
|
|
return result
|
|
|
|
}
|
|
|
|
|
|
|
|
// Loads config information from a JSON string
|
|
|
|
func LoadConfigString(s string) *Config {
|
|
|
|
result := newConfig()
|
|
|
|
err := json.Unmarshal([]byte(s), &result.data)
|
|
|
|
if err != nil {
|
2013-08-09 06:57:22 +00:00
|
|
|
glog.Fatalf("error parsing config string %s: %s", s, err)
|
2012-08-24 03:56:09 +00:00
|
|
|
}
|
|
|
|
return result
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Config) StringMerge(s string) {
|
|
|
|
next := LoadConfigString(s)
|
|
|
|
c.merge(next.data)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Config) LoadMerge(filename string) {
|
|
|
|
next := LoadConfig(filename)
|
|
|
|
c.merge(next.data)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Config) merge(ndata map[string]interface{}) {
|
|
|
|
for k, v := range ndata {
|
|
|
|
c.data[k] = v
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Config) parse() error {
|
|
|
|
f, err := os.Open(c.filename)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer f.Close()
|
|
|
|
b := new(bytes.Buffer)
|
|
|
|
_, err = b.ReadFrom(f)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
err = json.Unmarshal(b.Bytes(), &c.data)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Returns a string for the config variable key
|
|
|
|
func (c *Config) GetString(key string) string {
|
|
|
|
result, present := c.data[key]
|
|
|
|
if !present {
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
return result.(string)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Returns an int for the config variable key
|
|
|
|
func (c *Config) GetInt(key string) int {
|
|
|
|
x, ok := c.data[key]
|
|
|
|
if !ok {
|
|
|
|
return -1
|
|
|
|
}
|
|
|
|
return int(x.(float64))
|
|
|
|
}
|
|
|
|
|
|
|
|
// Returns a float for the config variable key
|
|
|
|
func (c *Config) GetFloat(key string) float64 {
|
|
|
|
x, ok := c.data[key]
|
|
|
|
if !ok {
|
|
|
|
return -1
|
|
|
|
}
|
|
|
|
return x.(float64)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Returns a bool for the config variable key
|
|
|
|
func (c *Config) GetBool(key string) bool {
|
|
|
|
x, ok := c.data[key]
|
|
|
|
if !ok {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
return x.(bool)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Returns an array for the config variable key
|
|
|
|
func (c *Config) GetArray(key string) []interface{} {
|
|
|
|
result, present := c.data[key]
|
|
|
|
if !present {
|
|
|
|
return []interface{}(nil)
|
|
|
|
}
|
|
|
|
return result.([]interface{})
|
|
|
|
}
|