Documentation
¶
Overview ¶
Package config provides convenient access methods to configuration stored as JSON or YAML.
Let's start with a simple YAML file config.yml:
development: database: host: localhost users: - name: calvin password: yukon - name: hobbes password: tuna production: database: host: 192.168.1.1
We can parse it using ParseYaml(), which will return a *Config instance on success:
file, err := ioutil.ReadFile("config.yml") if err != nil { panic(err) } yamlString := string(file) cfg, err := config.ParseYaml(yamlString)
An equivalent JSON configuration could be built using ParseJson():
cfg, err := config.ParseJson(jsonString)
From now, we can retrieve configuration values using a path in dotted notation:
// "localhost" host, err := cfg.String("development.database.host") // or... // "192.168.1.1" host, err := cfg.String("production.database.host")
Besides String(), other types can be fetched directly: Bool(), Float64(), Int(), Map() and List(). All these methods will return an error if the path doesn't exist, or the value doesn't match or can't be converted to the requested type.
A nested configuration can be fetched using Get(). Here we get a new *Config instance with a subset of the configuration:
cfg, err := cfg.Get("development")
Then the inner values are fetched relatively to the subset:
// "localhost" host, err := cfg.String("database.host")
For lists, the dotted path must use an index to refer to a specific value. To retrieve the information from a user stored in the configuration above:
// map[string]interface{}{ ... } user1, err := cfg.Map("development.users.0") // map[string]interface{}{ ... } user2, err := cfg.Map("development.users.1") // or... // "calvin" name1, err := cfg.String("development.users.0.name") // "hobbes" name2, err := cfg.String("development.users.1.name")
JSON or YAML strings can be created calling the appropriate Render*() functions. Here's how we render a configuration like the one used in these examples:
cfg := map[string]interface{}{ "development": map[string]interface{}{ "database": map[string]interface{}{ "host": "localhost", }, "users": []interface{}{ map[string]interface{}{ "name": "calvin", "password": "yukon", }, map[string]interface{}{ "name": "hobbes", "password": "tuna", }, }, }, "production": map[string]interface{}{ "database": map[string]interface{}{ "host": "192.168.1.1", }, }, } json, err := config.RenderJson(cfg) // or... yaml, err := config.RenderYaml(cfg)
This results in a configuration string to be stored in a file or database.
For more more convenience it can parse OS environment variables and command line arguments.
cfg, err := config.ParseYaml(yamlString) cfg.Env() // or cfg.Flag()
We can also specify the order of parsing:
cfg.Env().Flag() // or cfg.Flag().Env()
In case of OS environment all existing at the moment of parsing keys will be scanned in OS environment, but in uppercase and the separator will be `_` instead of a `.`. If EnvPrefix() is used the given prefix will be used to lookup the environment variable, e.g PREFIX_FOO_BAR will set foo.bar. In case of flags separator will be `-`. In case of command line arguments possible to use regular dot notation syntax for all keys. For see existing keys we can run application with `-h`.
We can use unsafe method to get value:
// "" cfg.UString("undefined.key") // or with default value unsafeValue := cfg.UString("undefined.key", "default value")
There is unsafe methods, like regular, but wuth prefix `U`.
Index ¶
- func Get(cfg interface{}, path string) (interface{}, error)
- func RenderJson(cfg interface{}) (string, error)
- func RenderYaml(cfg interface{}) (string, error)
- func Set(cfg interface{}, path string, value interface{}) error
- type Config
- func (cfg *Config) Args(args ...string) *Config
- func (cfg *Config) Bool(path string) (bool, error)
- func (c *Config) Copy(dottedPath ...string) (*Config, error)
- func (cfg *Config) Env() *Config
- func (cfg *Config) EnvPrefix(prefix string) *Config
- func (c *Config) Error() error
- func (c *Config) Extend(cfg *Config) (*Config, error)
- func (cfg *Config) Flag() *Config
- func (cfg *Config) Float64(path string) (float64, error)
- func (cfg *Config) Get(path string) (*Config, error)
- func (cfg *Config) Int(path string) (int, error)
- func (cfg *Config) List(path string) ([]interface{}, error)
- func (cfg *Config) Map(path string) (map[string]interface{}, error)
- func (cfg *Config) Set(path string, val interface{}) error
- func (cfg *Config) String(path string) (string, error)
- func (c *Config) UBool(path string, defaults ...bool) bool
- func (c *Config) UFloat64(path string, defaults ...float64) float64
- func (c *Config) UInt(path string, defaults ...int) int
- func (c *Config) UList(path string, defaults ...[]interface{}) []interface{}
- func (c *Config) UMap(path string, defaults ...map[string]interface{}) map[string]interface{}
- func (c *Config) UString(path string, defaults ...string) string
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func RenderJson ¶
RenderJson renders a JSON configuration.
func RenderYaml ¶
RenderYaml renders a YAML configuration.
Types ¶
type Config ¶
type Config struct { Root interface{} // contains filtered or unexported fields }
Config represents a configuration with convenient access methods.
func Must ¶
Must is a wrapper for parsing functions to be used during initialization. It panics on failure.
func ParseJsonFile ¶
ParseJsonFile reads a JSON configuration from the given filename.
func ParseYamlBytes ¶
ParseYamlBytes reads a YAML configuration from the given []byte.
func ParseYamlFile ¶
ParseYamlFile reads a YAML configuration from the given filename.
func (*Config) Extend ¶
Extend returns extended copy of current config with applied values from the given config instance. Note that if you extend with different structure you will get an error. See: `.Set()` method for details.
func (*Config) UFloat64 ¶
UFloat64 returns a float64 according to a dotted path or default value or 0.
func (*Config) UList ¶
UList returns a []interface{} according to a dotted path or defaults or []interface{}.