-
Notifications
You must be signed in to change notification settings - Fork 31
/
util.go
396 lines (315 loc) · 7.8 KB
/
util.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
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
package tachyon
import (
"bytes"
"encoding/json"
"fmt"
"github.com/flynn/go-shlex"
"gopkg.in/yaml.v1"
"io/ioutil"
"os"
"os/exec"
"os/user"
"reflect"
"sort"
"strconv"
"strings"
)
func HomeDir() (string, error) {
u, err := user.Current()
if err != nil {
su := os.Getenv("SUDO_USER")
var out []byte
var nerr error
if su != "" {
out, nerr = exec.Command("sh", "-c", "getent passwd "+su).Output()
} else {
out, nerr = exec.Command("sh", "-c", "getent passwd `id -u`").Output()
}
if nerr != nil {
return "", err
}
fields := bytes.Split(out, []byte(`:`))
if len(fields) >= 6 {
return string(fields[5]), nil
}
return "", fmt.Errorf("Unable to figure out the home dir")
}
return u.HomeDir, nil
}
func dbg(format string, args ...interface{}) {
fmt.Printf("[DBG] "+format+"\n", args...)
}
func yamlFile(path string, v interface{}) error {
data, err := ioutil.ReadFile(path)
if err != nil {
return err
}
return yaml.Unmarshal(data, v)
}
func mapToStruct(m map[string]interface{}, tag string, v interface{}) error {
e := reflect.ValueOf(v).Elem()
t := e.Type()
for i := 0; i < t.NumField(); i++ {
f := t.Field(i)
name := strings.ToLower(f.Name)
required := false
parts := strings.Split(f.Tag.Get(tag), ",")
switch len(parts) {
case 0:
// nothing
case 1:
name = parts[0]
case 2:
name = parts[0]
switch parts[1] {
case "required":
required = true
default:
return fmt.Errorf("Unsupported tag flag: %s", parts[1])
}
}
if val, ok := m[name]; ok {
e.Field(i).Set(reflect.ValueOf(val))
} else if required {
return fmt.Errorf("Missing value for %s", f.Name)
}
}
return nil
}
func ParseSimpleMap(s Scope, args string) (Vars, error) {
args, err := ExpandVars(s, args)
if err != nil {
return nil, err
}
sm := make(Vars)
parts, err := shlex.Split(args)
if err != nil {
return nil, err
}
for _, part := range parts {
ec := strings.SplitN(part, "=", 2)
if len(ec) == 2 {
sm[ec[0]] = Any(inferString(ec[1]))
} else {
sm[part] = Any(true)
}
}
return sm, nil
}
func split2(s, sep string) (string, string, bool) {
parts := strings.SplitN(s, sep, 2)
if len(parts) == 0 {
return "", "", false
} else if len(parts) == 1 {
return parts[0], "", false
} else {
return parts[0], parts[1], true
}
}
func inferString(s string) interface{} {
switch strings.ToLower(s) {
case "true", "yes":
return true
case "false", "no":
return false
}
if i, err := strconv.ParseInt(s, 0, 0); err == nil {
return i
}
return s
}
func indentedYAML(v interface{}, indent string) (string, error) {
str, err := yaml.Marshal(v)
if err != nil {
return "", err
}
lines := strings.Split(string(str), "\n")
out := make([]string, len(lines))
for idx, l := range lines {
if l == "" {
out[idx] = l
} else {
out[idx] = indent + l
}
}
return strings.Join(out, "\n"), nil
}
func arrayVal(v interface{}, indent string) string {
switch sv := v.(type) {
case string:
var out string
if strings.Index(sv, "\n") != -1 {
sub := strings.Split(sv, "\n")
out = strings.Join(sub, "\n"+indent+" | ")
return fmt.Sprintf("%s-\\\n%s | %s", indent, indent, out)
} else {
return fmt.Sprintf("%s- \"%s\"", indent, sv)
}
case int, uint, int32, uint32, int64, uint64:
return fmt.Sprintf("%s- %d", indent, sv)
case bool:
return fmt.Sprintf("%s- %t", indent, sv)
case map[string]interface{}:
mv := indentedMap(sv, indent+" ")
return fmt.Sprintf("%s-\n%s", indent, mv)
}
return fmt.Sprintf("%s- %v", indent, v)
}
func indentedMap(m map[string]interface{}, indent string) string {
var keys []string
for k, _ := range m {
keys = append(keys, k)
}
sort.Strings(keys)
var lines []string
for _, k := range keys {
v := m[k]
switch sv := v.(type) {
case string:
var out string
if strings.Index(sv, "\n") != -1 {
sub := strings.Split(sv, "\n")
out = strings.Join(sub, "\n"+indent+" | ")
lines = append(lines, fmt.Sprintf("%s%s:\n%s | %s",
indent, k, indent, out))
} else {
lines = append(lines, fmt.Sprintf("%s%s: \"%s\"", indent, k, sv))
}
case int, uint, int32, uint32, int64, uint64:
lines = append(lines, fmt.Sprintf("%s%s: %d", indent, k, sv))
case bool:
lines = append(lines, fmt.Sprintf("%s%s: %t", indent, k, sv))
case map[string]interface{}:
mv := indentedMap(sv, indent+" ")
lines = append(lines, fmt.Sprintf("%s%s:\n%s", indent, k, mv))
default:
lines = append(lines, fmt.Sprintf("%s%s: %v", indent, k, sv))
}
}
return strings.Join(lines, "\n")
}
func indentedVars(m Vars, indent string) string {
var keys []string
for k, _ := range m {
keys = append(keys, k)
}
sort.Strings(keys)
var lines []string
for _, k := range keys {
v := m[k]
switch sv := v.Read().(type) {
case string:
var out string
if strings.Index(sv, "\n") != -1 {
sub := strings.Split(sv, "\n")
out = strings.Join(sub, "\n"+indent+" | ")
lines = append(lines, fmt.Sprintf("%s%s:\n%s | %s",
indent, k, indent, out))
} else {
lines = append(lines, fmt.Sprintf("%s%s: \"%s\"", indent, k, sv))
}
case int, uint, int32, uint32, int64, uint64:
lines = append(lines, fmt.Sprintf("%s%s: %d", indent, k, sv))
case bool:
lines = append(lines, fmt.Sprintf("%s%s: %t", indent, k, sv))
case map[string]interface{}:
mv := indentedMap(sv, indent+" ")
lines = append(lines, fmt.Sprintf("%s%s:\n%s", indent, k, mv))
default:
lines = append(lines, fmt.Sprintf("%s%s: %v", indent, k, sv))
}
}
return strings.Join(lines, "\n")
}
func inlineMap(m map[string]interface{}) string {
var keys []string
for k, _ := range m {
keys = append(keys, k)
}
// Minor special case. If there is only one key and it's
// named "command", just return the value.
if len(keys) == 1 && keys[0] == "command" {
for _, v := range m {
if sv, ok := v.(string); ok {
return sv
}
}
}
sort.Strings(keys)
var lines []string
for _, k := range keys {
v := m[k]
switch sv := v.(type) {
case string:
lines = append(lines, fmt.Sprintf("%s=%s", k, strconv.Quote(sv)))
case int, uint, int32, uint32, int64, uint64:
lines = append(lines, fmt.Sprintf("%s=%d", k, sv))
case bool:
lines = append(lines, fmt.Sprintf("%s=%t", k, sv))
case map[string]interface{}:
lines = append(lines, fmt.Sprintf("%s=(%s)", k, inlineMap(sv)))
default:
lines = append(lines, fmt.Sprintf("%s=`%v`", k, sv))
}
}
return strings.Join(lines, " ")
}
func inlineVars(m Vars) string {
var keys []string
for k, _ := range m {
keys = append(keys, k)
}
// Minor special case. If there is only one key and it's
// named "command", just return the value.
if len(keys) == 1 && keys[0] == "command" {
for _, v := range m {
if sv, ok := v.Read().(string); ok {
return sv
}
}
}
sort.Strings(keys)
var lines []string
for _, k := range keys {
v := m[k]
switch sv := v.Read().(type) {
case string:
lines = append(lines, fmt.Sprintf("%s=%s", k, strconv.Quote(sv)))
case int, uint, int32, uint32, int64, uint64:
lines = append(lines, fmt.Sprintf("%s=%d", k, sv))
case bool:
lines = append(lines, fmt.Sprintf("%s=%t", k, sv))
case map[string]interface{}:
lines = append(lines, fmt.Sprintf("%s=(%s)", k, inlineMap(sv)))
default:
lines = append(lines, fmt.Sprintf("%s=`%v`", k, sv))
}
}
return strings.Join(lines, " ")
}
func fileExist(path string) bool {
fi, err := os.Stat(path)
if err != nil {
return false
}
return !fi.IsDir()
}
func gmap(args ...interface{}) map[string]interface{} {
m := make(map[string]interface{})
if len(args)%2 != 0 {
panic(fmt.Sprintf("Specify an even number of args: %d", len(args)))
}
i := 0
for i < len(args) {
m[args[i].(string)] = args[i+1]
i += 2
}
return m
}
func ijson(args ...interface{}) []byte {
b, err := json.Marshal(gmap(args...))
if err != nil {
panic(err)
}
return b
}