-
Notifications
You must be signed in to change notification settings - Fork 13
/
simpleyaml.go
192 lines (159 loc) · 3.82 KB
/
simpleyaml.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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
// Package simpleyaml: a Go package to interact with arbitrary YAML.
//
// Example:
// var data = []byte(`
// name: smallfish
// age: 99
// bool: true
// bb:
// cc:
// dd:
// - 111
// - 222
// - 333
// `
//
// y, err := simpleyaml.NewYaml(data)
// if err != nil {
// // ERROR
// }
//
// if v, err := y.Get("name").String(); err == nil {
// fmt.Println("value:", v)
// }
//
// // y.Get("age").Int()
// // y.Get("bool").Bool()
// // y.Get("bb").Get("cc").Get("dd").Array()
// // y.Get("bb").Get("cc").Get("dd").GetIndex(1).Int()
// // y.GetPath("bb", "cc", "ee").String()
package simpleyaml
import (
"errors"
"gopkg.in/yaml.v2"
)
type Yaml struct {
data interface{}
}
// NewYaml returns a pointer to a new `Yaml` object after unmarshaling `body` bytes
func NewYaml(body []byte) (*Yaml, error) {
var val interface{}
if err := yaml.Unmarshal(body, &val); err != nil {
return nil, errors.New("unmarshal []byte to yaml failed: " + err.Error())
}
return &Yaml{val}, nil
}
// IsFound Check if the given branch was found
func (y *Yaml) IsFound() bool {
return y.data != nil
}
// Get returns a pointer to a new `Yaml` object for `key` in its `map` representation
//
// Example:
// y.Get("xx").Get("yy").Int()
func (y *Yaml) Get(key interface{}) *Yaml {
m, err := y.Map()
if err == nil {
if val, ok := m[key]; ok {
return &Yaml{val}
}
}
return &Yaml{nil}
}
// GetPath searches for the item as specified by the branch
//
// Example:
// y.GetPath("bb", "cc").Int()
func (y *Yaml) GetPath(branch ...interface{}) *Yaml {
yin := y
for _, p := range branch {
yin = yin.Get(p)
}
return yin
}
// Array type asserts to an `array`
func (y *Yaml) Array() ([]interface{}, error) {
if a, ok := (y.data).([]interface{}); ok {
return a, nil
}
return nil, errors.New("type assertion to []interface{} failed")
}
func (y *Yaml) IsArray() bool {
_, err := y.Array()
return err == nil
}
// GetArraySize return the size of array
func (y *Yaml) GetArraySize() (int, error) {
a, err := y.Array()
if err != nil {
return 0, err
}
return len(a), nil
}
// GetIndex returns a pointer to a new `Yaml` object.
// for `index` in its `array` representation
//
// Example:
// y.Get("xx").GetIndex(1).String()
func (y *Yaml) GetIndex(index int) *Yaml {
a, err := y.Array()
if err == nil {
if len(a) > index {
return &Yaml{a[index]}
}
}
return &Yaml{nil}
}
// Int type asserts to `int`
func (y *Yaml) Int() (int, error) {
if v, ok := (y.data).(int); ok {
return v, nil
}
return 0, errors.New("type assertion to int failed")
}
// Bool type asserts to `bool`
func (y *Yaml) Bool() (bool, error) {
if v, ok := (y.data).(bool); ok {
return v, nil
}
return false, errors.New("type assertion to bool failed")
}
// String type asserts to `string`
func (y *Yaml) String() (string, error) {
if v, ok := (y.data).(string); ok {
return v, nil
}
return "", errors.New("type assertion to string failed")
}
func (y *Yaml) Float() (float64, error) {
if v, ok := (y.data).(float64); ok {
return v, nil
}
return 0, errors.New("type assertion to float64 failed")
}
// Map type asserts to `map`
func (y *Yaml) Map() (map[interface{}]interface{}, error) {
if m, ok := (y.data).(map[interface{}]interface{}); ok {
return m, nil
}
return nil, errors.New("type assertion to map[interface]interface{} failed")
}
// IsMap Check if it is a map
func (y *Yaml) IsMap() bool {
_, err := y.Map()
return err == nil
}
// GetMapKeys Get all the keys of the map
func (y *Yaml) GetMapKeys() ([]string, error) {
m, err := y.Map()
if err != nil {
return nil, err
}
keys := make([]string, 0)
for k, _ := range m {
if s, ok := k.(string); ok {
keys = append(keys, s)
}
}
return keys, nil
}