forked from kubernetes/kops
-
Notifications
You must be signed in to change notification settings - Fork 0
/
options.go
117 lines (116 loc) · 2.26 KB
/
options.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
package fi
//
//import (
// "fmt"
// "github.com/golang/glog"
// "sort"
// "strings"
//)
//
//type Options map[string]interface{}
//
//func NewOptions() Options {
// m := make(map[string]interface{})
// return Options(m)
//}
//
//func (o Options) Merge(r Options) error {
// return merge(o, r)
//}
//
//// TODO: What do we do about this...?
//func (o Options) Token(key string) string {
// return "secret-" + key
//}
//
//func merge(l, r map[string]interface{}) error {
// for k, v := range r {
// if v == nil {
// delete(l, k)
// continue
// }
//
// switch v := v.(type) {
// case string, int, bool:
// l[k] = v
//
// case map[string]interface{}:
// existing, found := l[k]
// if !found {
// l[k] = v
// } else {
// switch existing := existing.(type) {
// case map[string]interface{}:
// err := merge(existing, v)
// if err != nil {
// return err
// }
//
// default:
// return fmt.Errorf("cannot merge object into target of type %T", v)
//
// }
// }
//
// default:
// return fmt.Errorf("merging of option type not handled: %T", v)
// }
// }
// return nil
//}
//
//func (o Options) BuildFlags(path string) string {
// if path != "" {
// options := o.Navigate(path)
// return options.BuildFlags("")
// }
//
// var flags []string
// for k, v := range o {
// var flag string
// switch v := v.(type) {
// case string, int, bool, float32, float64:
// flag = fmt.Sprintf("--%s=%v", k, v)
//
// default:
// // TODO: Better error handling (with templates)
// glog.Exitf("BuildFlags of value type not handled: %T %s=%v", v, k, v)
// return ""
// }
// if flag != "" {
// flags = append(flags, flag)
// }
// }
// sort.Strings(flags)
//
// return strings.Join(flags, " ")
//}
//
//func (o Options) Navigate(path string) Options {
// if path == "" {
// return o
// }
//
// tokens := strings.SplitN(path, ".", 2)
//
// child, found := o[tokens[0]]
// if !found {
// return NewOptions()
// }
//
// var childOptions Options
// switch child := child.(type) {
//
// case map[string]interface{}:
// childOptions = Options(child)
//
// default:
// glog.Warningf("Navigate of chjild type not handled: %T", child)
// childOptions = NewOptions()
// }
//
// if len(tokens) == 1 {
// return childOptions
// }
// return childOptions.Navigate(tokens[1])
//}