-
Notifications
You must be signed in to change notification settings - Fork 63
/
defaults.go
121 lines (99 loc) · 2.57 KB
/
defaults.go
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
// SPDX-License-Identifier: BSD-3-Clause
// Copyright (c) 2022, Unikraft GmbH and The KraftKit Authors.
// Licensed under the BSD-3-Clause License (the "License").
// You may not use this file except in compliance with the License.
package config
import (
"fmt"
"path/filepath"
"reflect"
"strconv"
)
const (
DefaultManifestIndex = "https://manifests.kraftkit.sh/index.yaml"
)
func NewDefaultKraftKitConfig() (*KraftKit, error) {
c := &KraftKit{}
if err := setDefaults(c); err != nil {
return nil, fmt.Errorf("could not set defaults for config: %s", err)
}
// Add default path for plugins..
if len(c.Paths.Plugins) == 0 {
c.Paths.Plugins = filepath.Join(DataDir(), "plugins")
}
// ..for configuration files..
if len(c.Paths.Config) == 0 {
c.Paths.Config = filepath.Join(ConfigDir())
}
// ..for manifest files..
if len(c.Paths.Manifests) == 0 {
c.Paths.Manifests = filepath.Join(DataDir(), "manifests")
}
// ..for runtime files..
if len(c.RuntimeDir) == 0 {
c.RuntimeDir = filepath.Join(DataDir(), "runtime")
}
// ..for events files..
if len(c.EventsPidFile) == 0 {
c.EventsPidFile = filepath.Join(c.RuntimeDir, "events.pid")
}
// ..and for cached source files
if len(c.Paths.Sources) == 0 {
c.Paths.Sources = filepath.Join(DataDir(), "sources")
}
if len(c.Unikraft.Manifests) == 0 {
c.Unikraft.Manifests = append(c.Unikraft.Manifests, DefaultManifestIndex)
}
return c, nil
}
func setDefaults(s interface{}) error {
return setDefaultValue(reflect.ValueOf(s), "")
}
func setDefaultValue(v reflect.Value, def string) error {
if v.Kind() != reflect.Ptr {
return fmt.Errorf("not a pointer value")
}
v = reflect.Indirect(v)
switch v.Kind() {
case reflect.Int:
if len(def) > 0 {
i, err := strconv.ParseInt(def, 10, 64)
if err != nil {
return fmt.Errorf("could not parse default integer value: %s", err)
}
v.SetInt(i)
}
case reflect.String:
if len(def) > 0 {
v.SetString(def)
}
case reflect.Bool:
if len(def) > 0 {
b, err := strconv.ParseBool(def)
if err != nil {
return fmt.Errorf("could not parse default boolean value: %s", err)
}
v.SetBool(b)
} else {
// Assume false by default
v.SetBool(false)
}
case reflect.Struct:
// Iterate over the struct fields
for i := 0; i < v.NumField(); i++ {
// Use the `env` tag to look up the default value
def = v.Type().Field(i).Tag.Get("default")
if err := setDefaultValue(
v.Field(i).Addr(),
def,
); err != nil {
return err
}
}
// TODO: Arrays? Maps?
default:
// Ignore this value and property entirely
return nil
}
return nil
}