113 lines
2.2 KiB
Go
113 lines
2.2 KiB
Go
package config
|
|
|
|
import (
|
|
"errors"
|
|
|
|
"gopkg.in/yaml.v3"
|
|
)
|
|
|
|
// This type implements a low-level get/set config that is backed by an in-memory tree of yaml
|
|
// nodes. It allows us to interact with a yaml-based config programmatically, preserving any
|
|
// comments that were present when the yaml was parsed.
|
|
type ConfigMap struct {
|
|
Root *yaml.Node
|
|
}
|
|
|
|
type ConfigEntry struct {
|
|
KeyNode *yaml.Node
|
|
ValueNode *yaml.Node
|
|
Index int
|
|
}
|
|
|
|
type NotFoundError struct {
|
|
error
|
|
}
|
|
|
|
func (cm *ConfigMap) Empty() bool {
|
|
return cm.Root == nil || len(cm.Root.Content) == 0
|
|
}
|
|
|
|
func (cm *ConfigMap) GetStringValue(key string) (string, error) {
|
|
entry, err := cm.FindEntry(key)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
return entry.ValueNode.Value, nil
|
|
}
|
|
|
|
func (cm *ConfigMap) SetStringValue(key, value string) error {
|
|
entry, err := cm.FindEntry(key)
|
|
if err == nil {
|
|
entry.ValueNode.Value = value
|
|
return nil
|
|
}
|
|
|
|
var notFound *NotFoundError
|
|
if err != nil && !errors.As(err, ¬Found) {
|
|
return err
|
|
}
|
|
|
|
keyNode := &yaml.Node{
|
|
Kind: yaml.ScalarNode,
|
|
Value: key,
|
|
}
|
|
valueNode := &yaml.Node{
|
|
Kind: yaml.ScalarNode,
|
|
Tag: "!!str",
|
|
Value: value,
|
|
}
|
|
|
|
cm.Root.Content = append(cm.Root.Content, keyNode, valueNode)
|
|
return nil
|
|
}
|
|
|
|
func (cm *ConfigMap) FindEntry(key string) (*ConfigEntry, error) {
|
|
ce := &ConfigEntry{}
|
|
|
|
if cm.Empty() {
|
|
return ce, &NotFoundError{errors.New("not found")}
|
|
}
|
|
|
|
// Content slice goes [key1, value1, key2, value2, ...].
|
|
topLevelPairs := cm.Root.Content
|
|
for i, v := range topLevelPairs {
|
|
// Skip every other slice item since we only want to check against keys.
|
|
if i%2 != 0 {
|
|
continue
|
|
}
|
|
if v.Value == key {
|
|
ce.KeyNode = v
|
|
ce.Index = i
|
|
if i+1 < len(topLevelPairs) {
|
|
ce.ValueNode = topLevelPairs[i+1]
|
|
}
|
|
return ce, nil
|
|
}
|
|
}
|
|
|
|
return ce, &NotFoundError{errors.New("not found")}
|
|
}
|
|
|
|
func (cm *ConfigMap) RemoveEntry(key string) {
|
|
if cm.Empty() {
|
|
return
|
|
}
|
|
|
|
newContent := []*yaml.Node{}
|
|
|
|
var skipNext bool
|
|
for i, v := range cm.Root.Content {
|
|
if skipNext {
|
|
skipNext = false
|
|
continue
|
|
}
|
|
if i%2 != 0 || v.Value != key {
|
|
newContent = append(newContent, v)
|
|
} else {
|
|
// Don't append current node and skip the next which is this key's value.
|
|
skipNext = true
|
|
}
|
|
}
|
|
|
|
cm.Root.Content = newContent
|
|
}
|