-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.go
88 lines (70 loc) · 1.43 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
package exo
import (
"fmt"
"strings"
)
type Property struct {
Name string
Value any
}
func property(props []*Property, name string) *Property {
for _, p := range props {
if p.Name == name {
return p
}
}
return nil
}
type Config struct {
Properties []*Property
Blocks []*Block
}
func (c *Config) Has(name string) bool {
return property(c.Properties, name) != nil || c.Block(name) != nil
}
func (c *Config) String(name string) string {
p := c.StringList(name)
return strings.Join(p, "")
}
func (c *Config) StringList(name string) []string {
p := property(c.Properties, name)
if p == nil {
panic(fmt.Sprintf("`%s` property is not defined", name))
}
return p.Value.([]string)
}
func (c *Config) Block(name string) *Block {
for _, b := range c.Blocks {
if b.Name == name {
return b
}
}
return nil
}
type Block struct {
Name string
Properties []*Property
Blocks []*Block
}
func (b *Block) Has(name string) bool {
return property(b.Properties, name) != nil || b.Block(name) != nil
}
func (b *Block) String(name string) string {
p := b.StringList(name)
return strings.Join(p, "")
}
func (b *Block) StringList(name string) []string {
p := property(b.Properties, name)
if p == nil {
panic(fmt.Sprintf("`%s` property is not defined", name))
}
return p.Value.([]string)
}
func (b *Block) Block(name string) *Block {
for _, sb := range b.Blocks {
if sb.Name == name {
return sb
}
}
return nil
}