2017-02-16 03:02:13 +00:00
|
|
|
package config
|
|
|
|
|
2017-02-16 03:49:41 +00:00
|
|
|
// defaults
|
2017-02-16 03:02:13 +00:00
|
|
|
var switches = []*Switch{
|
|
|
|
&Switch{
|
2017-02-16 04:06:05 +00:00
|
|
|
Key: "sortReversed",
|
|
|
|
Val: false,
|
2018-09-17 01:33:52 +00:00
|
|
|
Label: "Reverse sort order",
|
2017-02-16 03:02:13 +00:00
|
|
|
},
|
|
|
|
&Switch{
|
2017-02-16 04:06:05 +00:00
|
|
|
Key: "allContainers",
|
2017-02-19 03:58:42 +00:00
|
|
|
Val: true,
|
2018-09-17 01:33:52 +00:00
|
|
|
Label: "Show all containers",
|
|
|
|
},
|
|
|
|
&Switch{
|
|
|
|
Key: "fullRowCursor",
|
|
|
|
Val: true,
|
|
|
|
Label: "Highlight entire cursor row (vs. name only)",
|
2017-02-16 03:02:13 +00:00
|
|
|
},
|
|
|
|
&Switch{
|
2017-02-16 04:06:05 +00:00
|
|
|
Key: "enableHeader",
|
2017-02-19 03:58:42 +00:00
|
|
|
Val: true,
|
2018-09-17 01:33:52 +00:00
|
|
|
Label: "Enable status header",
|
2017-02-16 03:02:13 +00:00
|
|
|
},
|
2018-01-11 15:19:00 +00:00
|
|
|
&Switch{
|
|
|
|
Key: "scaleCpu",
|
|
|
|
Val: false,
|
|
|
|
Label: "Show CPU as %% of system total",
|
|
|
|
},
|
2017-02-16 03:02:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type Switch struct {
|
2017-02-16 04:06:05 +00:00
|
|
|
Key string
|
|
|
|
Val bool
|
|
|
|
Label string
|
2017-02-16 03:02:13 +00:00
|
|
|
}
|
|
|
|
|
2017-02-16 04:06:05 +00:00
|
|
|
// Return Switch by key
|
|
|
|
func GetSwitch(k string) *Switch {
|
2017-02-16 03:49:41 +00:00
|
|
|
for _, sw := range GlobalSwitches {
|
2017-02-16 04:06:05 +00:00
|
|
|
if sw.Key == k {
|
|
|
|
return sw
|
2017-02-16 03:49:41 +00:00
|
|
|
}
|
2017-02-16 03:02:13 +00:00
|
|
|
}
|
2017-02-16 04:06:05 +00:00
|
|
|
return &Switch{} // default
|
|
|
|
}
|
|
|
|
|
|
|
|
// Return Switch value by key
|
|
|
|
func GetSwitchVal(k string) bool {
|
|
|
|
return GetSwitch(k).Val
|
2017-02-16 03:02:13 +00:00
|
|
|
}
|
|
|
|
|
2018-01-11 16:15:18 +00:00
|
|
|
func UpdateSwitch(k string, val bool) {
|
|
|
|
sw := GetSwitch(k)
|
|
|
|
if sw.Val != val {
|
|
|
|
log.Noticef("config change: %s: %t -> %t", k, sw.Val, val)
|
|
|
|
sw.Val = val
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-16 03:02:13 +00:00
|
|
|
// Toggle a boolean switch
|
|
|
|
func Toggle(k string) {
|
2017-02-16 04:06:05 +00:00
|
|
|
sw := GetSwitch(k)
|
|
|
|
newVal := sw.Val != true
|
|
|
|
log.Noticef("config change: %s: %t -> %t", k, sw.Val, newVal)
|
|
|
|
sw.Val = newVal
|
|
|
|
//log.Errorf("ignoring toggle for non-existant switch: %s", k)
|
2017-02-16 03:02:13 +00:00
|
|
|
}
|