1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
|
package container
import (
"fmt"
"time"
endure "github.com/roadrunner-server/endure/pkg/container"
"github.com/spf13/viper"
)
type Config struct {
GracePeriod time.Duration
PrintGraph bool
RetryOnFail bool // TODO check for races, disabled at this moment
LogLevel endure.Level
}
const (
endureKey = "endure"
defaultGracePeriod = time.Second * 30
)
// NewConfig creates endure container configuration.
func NewConfig(cfgFile string) (*Config, error) {
v := viper.New()
v.SetConfigFile(cfgFile)
err := v.ReadInConfig()
if err != nil {
return nil, err
}
if !v.IsSet(endureKey) {
return &Config{ // return config with defaults
GracePeriod: defaultGracePeriod,
PrintGraph: false,
RetryOnFail: false,
LogLevel: endure.ErrorLevel,
}, nil
}
rrCfgEndure := struct {
GracePeriod time.Duration `mapstructure:"grace_period"`
PrintGraph bool `mapstructure:"print_graph"`
RetryOnFail bool `mapstructure:"retry_on_fail"`
LogLevel string `mapstructure:"log_level"`
}{}
err = v.UnmarshalKey(endureKey, &rrCfgEndure)
if err != nil {
return nil, err
}
if rrCfgEndure.GracePeriod == 0 {
rrCfgEndure.GracePeriod = defaultGracePeriod
}
if rrCfgEndure.LogLevel == "" {
rrCfgEndure.LogLevel = "error"
}
logLevel, err := parseLogLevel(rrCfgEndure.LogLevel)
if err != nil {
return nil, err
}
return &Config{
GracePeriod: rrCfgEndure.GracePeriod,
PrintGraph: rrCfgEndure.PrintGraph,
RetryOnFail: rrCfgEndure.RetryOnFail,
LogLevel: logLevel,
}, nil
}
func parseLogLevel(s string) (endure.Level, error) {
switch s {
case "debug":
return endure.DebugLevel, nil
case "info":
return endure.InfoLevel, nil
case "warn", "warning":
return endure.WarnLevel, nil
case "error":
return endure.ErrorLevel, nil
case "panic":
return endure.PanicLevel, nil
case "fatal":
return endure.FatalLevel, nil
}
return endure.DebugLevel, fmt.Errorf(`unknown log level "%s" (allowed: debug, info, warn, error, panic, fatal)`, s)
}
|