yaml

package
v1.0.14 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Feb 9, 2022 License: LGPL-3.0 Imports: 9 Imported by: 0

Documentation

Overview

Package yaml for config provider Usage:

import(
 _ "github.com/W3-Engineers-Ltd/Radiant/core/config/yaml"
   "github.com/W3-Engineers-Ltd/Radiant/core/config"
)

cnf, err := config.NewConfig("yaml", "config.yaml")

More docs http://radiant.me/docs/module/config.md

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func ReadYmlReader

func ReadYmlReader(path string) (cnf map[string]interface{}, err error)

ReadYmlReader Read yaml file to map.

Types

type Config

type Config struct{}

Config is a yaml config parser and implements Config interface.

func (*Config) Parse

func (*Config) Parse(filename string) (y config.Configer, err error)

Parse returns a ConfigContainer with parsed yaml config map.

func (*Config) ParseData

func (*Config) ParseData(data []byte) (config.Configer, error)

ParseData parse yaml data

type ConfigContainer

type ConfigContainer struct {
	sync.RWMutex
	// contains filtered or unexported fields
}

ConfigContainer is a config which represents the yaml configuration.

func (*ConfigContainer) Bool

func (c *ConfigContainer) Bool(key string) (bool, error)

Bool returns the boolean value for a given key.

func (*ConfigContainer) DIY

func (c *ConfigContainer) DIY(key string) (v interface{}, err error)

DIY returns the raw value by a given key.

func (*ConfigContainer) DefaultBool

func (c *ConfigContainer) DefaultBool(key string, defaultVal bool) bool

DefaultBool return the bool value if has no error otherwise return the defaultVal

func (*ConfigContainer) DefaultFloat

func (c *ConfigContainer) DefaultFloat(key string, defaultVal float64) float64

DefaultFloat returns the float64 value for a given key. if err != nil return defaultVal

func (*ConfigContainer) DefaultInt

func (c *ConfigContainer) DefaultInt(key string, defaultVal int) int

DefaultInt returns the integer value for a given key. if err != nil return defaultVal

func (*ConfigContainer) DefaultInt64

func (c *ConfigContainer) DefaultInt64(key string, defaultVal int64) int64

DefaultInt64 returns the int64 value for a given key. if err != nil return defaultVal

func (*ConfigContainer) DefaultString

func (c *ConfigContainer) DefaultString(key string, defaultVal string) string

DefaultString returns the string value for a given key. if err != nil return defaultVal

func (*ConfigContainer) DefaultStrings

func (c *ConfigContainer) DefaultStrings(key string, defaultVal []string) []string

DefaultStrings returns the []string value for a given key. if err != nil return defaultVal

func (*ConfigContainer) Float

func (c *ConfigContainer) Float(key string) (float64, error)

Float returns the float value for a given key.

func (*ConfigContainer) GetSection

func (c *ConfigContainer) GetSection(section string) (map[string]string, error)

GetSection returns map for the given section

func (*ConfigContainer) Int

func (c *ConfigContainer) Int(key string) (int, error)

Int returns the integer value for a given key.

func (*ConfigContainer) Int64

func (c *ConfigContainer) Int64(key string) (int64, error)

Int64 returns the int64 value for a given key.

func (*ConfigContainer) OnChange

func (*ConfigContainer) OnChange(_ string, _ func(value string))

func (*ConfigContainer) SaveConfigFile

func (c *ConfigContainer) SaveConfigFile(filename string) (err error)

SaveConfigFile save the config into file

func (*ConfigContainer) Set

func (c *ConfigContainer) Set(key, val string) error

Set writes a new value for key.

func (*ConfigContainer) String

func (c *ConfigContainer) String(key string) (string, error)

String returns the string value for a given key.

func (*ConfigContainer) Strings

func (c *ConfigContainer) Strings(key string) ([]string, error)

Strings returns the []string value for a given key.

func (*ConfigContainer) Sub

func (c *ConfigContainer) Sub(key string) (config.Configer, error)

func (*ConfigContainer) Unmarshaler

func (c *ConfigContainer) Unmarshaler(prefix string, obj interface{}, _ ...config.DecodeOption) error

Unmarshaler is similar to Sub

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL