forked from osrg/namazu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.go
126 lines (106 loc) · 3.39 KB
/
config.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
122
123
124
125
126
// Copyright (C) 2015 Nippon Telegraph and Telephone Corporation.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
// implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// Package config provides the configuration registry (based on spf13/viper)
//
// For further information, please look at the source of New().
package config
import (
"strings"
"time"
"github.com/kr/pretty"
"github.com/spf13/viper"
)
type Config struct {
*viper.Viper
}
// The source of this function contains the name of the parameters and the default values.
func New() Config {
cfg := Config{viper.New()}
///// INIT and RUN
// Used for "init" command.
// "container" command ignores this.
// e.g. "init.sh"
cfg.SetDefault("init", "")
// Used for "run" command.
// "container" command ignores this.
// e.g. "run.sh"
cfg.SetDefault("run", "")
// Used for "run" command.
// "container" command ignores this.
// e.g. "clean.sh"
cfg.SetDefault("clean", "")
// Used for "run" command.
// "container" command ignores this.
// e.g. "validate.sh"
cfg.SetDefault("validate", "")
// Used for something deprecated?
// if true, skip clean.sh when validate.sh failed.
// "container" command ignores this.
cfg.SetDefault("notCleanIfValidationFail", false)
///// STORAGE
// "container" command ignores this.
// Used for "run" command
cfg.SetDefault("storageType", "naive")
///// INSPECTOR HANDLER ENDPOINT
// "container" command ignores these values.
// Used for PB inspector handler (used by Java and C inspector)
// if non-positive, PB inspector handler is disabled
// if zero, randomly assigned.
// e.g. 10000
cfg.SetDefault("pbPort", -1)
// Used for REST inspector handler
// if non-positive, REST inspector handler is disabled
// if zero, randomly assigned.
// e.g. 10080
cfg.SetDefault("restPort", -1)
///// EXPLORATION POLICY
// "container" command also uses these params
cfg.SetDefault("explorePolicy", "random")
cfg.SetDefault("explorePolicyParam", map[string]interface{}{})
///// CONTAINER
// used only in "container" command
// FIXME: https://github.com/spf13/viper/issues/71
cfg.SetDefault("container", map[string]interface{}{
"enableEthernetInspector": false,
"enableProcInspector": true,
"enableFSInspector": true,
"ethernetNFQNumber": 42,
"procWatchInterval": time.Second,
})
// if skipInitOrchestrator is true, orchestrator is disabled at its initialization time
cfg.SetDefault("skipInitOrchestrator", false)
return cfg
}
func NewFromString(s string, typ string) (Config, error) {
cfg := New()
cfg.SetConfigType(typ)
err := cfg.ReadConfig(strings.NewReader(s))
return cfg, err
}
func NewFromFile(filePath string) (Config, error) {
// viper supports JSON, YAML, and TOML
cfg := New()
cfg.SetConfigFile(filePath)
err := cfg.ReadInConfig()
return cfg, err
}
func (cfg Config) String() string {
m := make(map[string]interface{})
err := cfg.Unmarshal(&m)
if err != nil {
panic(err)
}
return pretty.Sprintf("Config{%# v}", m)
}