summaryrefslogtreecommitdiff
path: root/container/config.go
blob: f1426cd63d7b6421dcff87af18364cb345afa08d (plain)
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
package container

import (
	"fmt"
	"log/slog"
	"time"

	"github.com/spf13/viper"
)

// Config defines endure container configuration.
type Config struct {
	GracePeriod time.Duration `mapstructure:"grace_period"`
	LogLevel    string        `mapstructure:"log_level"`
	WatchdogSec int           `mapstructure:"watchdog_sec"`
	PrintGraph  bool          `mapstructure:"print_graph"`
}

const (
	// endure config key
	endureKey = "endure"
	// overall grace period, after which container will be stopped forcefully
	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
	}

	cfg := &Config{
		GracePeriod: defaultGracePeriod,
		LogLevel:    "error",
		PrintGraph:  false,
	}

	if !v.IsSet(endureKey) {
		return cfg, nil
	}

	err = v.UnmarshalKey(endureKey, cfg)
	if err != nil {
		return nil, err
	}

	return cfg, nil
}

func ParseLogLevel(s string) (slog.Leveler, error) {
	switch s {
	case "debug":
		return slog.LevelDebug, nil
	case "info":
		return slog.LevelInfo, nil
	case "warn", "warning":
		return slog.LevelWarn, nil
	case "error":
		return slog.LevelError, nil
	default:
		return slog.LevelError, fmt.Errorf(`unknown log level "%s" (allowed: debug, info, warn, error)`, s)
	}
}