forked from glitchdotcom/mini
-
Notifications
You must be signed in to change notification settings - Fork 8
/
mini.go
616 lines (480 loc) · 13.5 KB
/
mini.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
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
package mini
import (
"bufio"
"errors"
"fmt"
"io"
"os"
"reflect"
"sort"
"strconv"
"strings"
)
type configSection struct {
name string
values map[string]interface{}
}
/*
Config holds the contents of an ini file organized into sections.
*/
type Config struct {
configSection
sections map[string]*configSection
}
/*
LoadConfiguration takes a path, treats it as a file and scans it for an ini configuration.
*/
func LoadConfiguration(path string) (*Config, error) {
config := new(Config)
err := config.InitializeFromPath(path)
if err != nil {
return nil, err
}
return config, nil
}
/*
LoadConfigurationFromReader takes a reader and scans it for an ini configuration.
The caller should close the reader.
*/
func LoadConfigurationFromReader(input io.Reader) (*Config, error) {
config := new(Config)
err := config.InitializeFromReader(input)
if err != nil {
return nil, err
}
return config, nil
}
/*
InitializeFromPath takes a path, treats it as a file and scans it for an ini configuration.
*/
func (config *Config) InitializeFromPath(path string) error {
f, err := os.Open(path)
if err != nil {
return err
}
defer f.Close()
return config.InitializeFromReader(bufio.NewReader(f))
}
/*
InitializeFromReader takes a reader and scans it for an ini configuration.
The caller should close the reader.
*/
func (config *Config) InitializeFromReader(input io.Reader) error {
var currentSection *configSection
scanner := bufio.NewScanner(input)
config.values = make(map[string]interface{})
config.sections = make(map[string]*configSection)
for scanner.Scan() {
curLine := scanner.Text()
curLine = strings.TrimSpace(curLine)
if len(curLine) == 0 {
continue // ignore empty lines
}
if strings.HasPrefix(curLine, ";") || strings.HasPrefix(curLine, "#") {
continue // comment
}
if strings.HasPrefix(curLine, "[") {
if !strings.HasSuffix(curLine, "]") {
return errors.New("mini: section names must be surrounded by [ and ], as in [section]")
}
sectionName := curLine[1 : len(curLine)-1]
if sect, ok := config.sections[sectionName]; !ok { //reuse sections
currentSection = new(configSection)
currentSection.name = sectionName
currentSection.values = make(map[string]interface{})
config.sections[currentSection.name] = currentSection
} else {
currentSection = sect
}
continue
}
index := strings.Index(curLine, "=")
if index <= 0 {
return errors.New("mini: configuration format requires an equals between the key and value")
}
key := strings.ToLower(strings.TrimSpace(curLine[0:index]))
isArray := strings.HasSuffix(key, "[]")
if isArray {
key = key[0 : len(key)-2]
}
value := strings.TrimSpace(curLine[index+1:])
value = strings.Trim(value, "\"'") //clear quotes
valueMap := config.values
if currentSection != nil {
valueMap = currentSection.values
}
if isArray {
arr := valueMap[key]
if arr == nil {
arr = make([]interface{}, 0)
valueMap[key] = arr
}
valueMap[key] = append(arr.([]interface{}), value)
} else {
valueMap[key] = value
}
}
return scanner.Err()
}
/*
SetName sets the config's name, which allows it to be returned in SectionNames, or in get functions that take a name.
*/
func (config *Config) SetName(name string) {
config.name = name
}
//Return non-array values
func get(values map[string]interface{}, key string) interface{} {
if len(key) == 0 || values == nil {
return nil
}
key = strings.ToLower(key)
val, ok := values[key]
if ok {
switch val.(type) {
case []interface{}:
return nil
default:
return val
}
}
return nil
}
//Return array values
func getArray(values map[string]interface{}, key string) []interface{} {
if len(key) == 0 || values == nil {
return nil
}
key = strings.ToLower(key)
val, ok := values[key]
if ok {
switch v := val.(type) {
case []interface{}:
return v
default:
retVal := make([]interface{}, 1)
retVal[0] = val
return retVal
}
}
return nil
}
func getString(values map[string]interface{}, key string, def string) string {
val := get(values, key)
if val != nil {
str, err := strconv.Unquote(fmt.Sprintf("\"%v\"", val))
if err == nil {
return str
}
return def
}
return def
}
func getBoolean(values map[string]interface{}, key string, def bool) bool {
val := get(values, key)
if val != nil {
retVal, err := strconv.ParseBool(fmt.Sprint(val))
if err != nil {
return def
}
return retVal
}
return def
}
func getInteger(values map[string]interface{}, key string, def int64) int64 {
val := get(values, key)
if val != nil {
retVal, err := strconv.ParseInt(fmt.Sprint(val), 0, 64)
if err != nil {
return def
}
return retVal
}
return def
}
func getFloat(values map[string]interface{}, key string, def float64) float64 {
val := get(values, key)
if val != nil {
retVal, err := strconv.ParseFloat(fmt.Sprint(val), 64)
if err != nil {
return def
}
return retVal
}
return def
}
func getStrings(values map[string]interface{}, key string) []string {
val := getArray(values, key)
if val != nil {
retVal := make([]string, len(val))
var err error
for i, v := range val {
retVal[i], err = strconv.Unquote(fmt.Sprintf("\"%v\"", v))
if err != nil {
return nil
}
}
return retVal
}
return nil
}
func getIntegers(values map[string]interface{}, key string) []int64 {
val := getArray(values, key)
if val != nil {
retVal := make([]int64, len(val))
var err error
for i, v := range val {
retVal[i], err = strconv.ParseInt(fmt.Sprint(v), 0, 64)
if err != nil {
return nil
}
}
return retVal
}
return nil
}
func getFloats(values map[string]interface{}, key string) []float64 {
val := getArray(values, key)
if val != nil {
retVal := make([]float64, len(val))
var err error
for i, v := range val {
retVal[i], err = strconv.ParseFloat(fmt.Sprint(v), 64)
if err != nil {
return nil
}
}
return retVal
}
return nil
}
/*
String looks for the specified key and returns it as a string. If not found the default value def is returned.
*/
func (config *Config) String(key string, def string) string {
return getString(config.values, key, def)
}
/*
Boolean looks for the specified key and returns it as a bool. If not found the default value def is returned.
*/
func (config *Config) Boolean(key string, def bool) bool {
return getBoolean(config.values, key, def)
}
/*
Integer looks for the specified key and returns it as an int. If not found the default value def is returned.
*/
func (config *Config) Integer(key string, def int64) int64 {
return getInteger(config.values, key, def)
}
/*
Float looks for the specified key and returns it as a float. If not found the default value def is returned.
*/
func (config *Config) Float(key string, def float64) float64 {
return getFloat(config.values, key, def)
}
/*
Strings looks for an array of strings under the provided key.
If no matches are found nil is returned. If only one matches an array of 1 is returned.
*/
func (config *Config) Strings(key string) []string {
return getStrings(config.values, key)
}
/*
Integers looks for an array of ints under the provided key.
If no matches are found nil is returned.
*/
func (config *Config) Integers(key string) []int64 {
return getIntegers(config.values, key)
}
/*
Floats looks for an array of floats under the provided key.
If no matches are found nil is returned.
*/
func (config *Config) Floats(key string) []float64 {
return getFloats(config.values, key)
}
func (config *Config) sectionForName(sectionName string) *configSection {
if len(sectionName) == 0 || sectionName == config.name {
return &(config.configSection)
}
return config.sections[sectionName]
}
/*
StringFromSection looks for the specified key and returns it as a string. If not found the default value def is returned.
If the section name matches the config.name or "" the global data is searched.
*/
func (config *Config) StringFromSection(sectionName string, key string, def string) string {
section := config.sectionForName(sectionName)
if section != nil {
return getString(section.values, key, def)
}
return def
}
/*
BooleanFromSection looks for the specified key and returns it as a boolean. If not found the default value def is returned.
If the section name matches the config.name or "" the global data is searched.
*/
func (config *Config) BooleanFromSection(sectionName string, key string, def bool) bool {
section := config.sectionForName(sectionName)
if section != nil {
return getBoolean(section.values, key, def)
}
return def
}
/*
IntegerFromSection looks for the specified key and returns it as an int64. If not found the default value def is returned.
If the section name matches the config.name or "" the global data is searched.
*/
func (config *Config) IntegerFromSection(sectionName string, key string, def int64) int64 {
section := config.sectionForName(sectionName)
if section != nil {
return getInteger(section.values, key, def)
}
return def
}
/*
FloatFromSection looks for the specified key and returns it as a float. If not found the default value def is returned.
If the section name matches the config.name or "" the global data is searched.
*/
func (config *Config) FloatFromSection(sectionName string, key string, def float64) float64 {
section := config.sectionForName(sectionName)
if section != nil {
return getFloat(section.values, key, def)
}
return def
}
/*
StringsFromSection returns the value of an array key, if the value of the key is a non-array, then
that value is returned in an array of length 1.
If the section name matches the config.name or "" the global data is searched.
*/
func (config *Config) StringsFromSection(sectionName string, key string) []string {
section := config.sectionForName(sectionName)
if section != nil {
return getStrings(section.values, key)
}
return nil
}
/*
IntegersFromSection looks for an array of integers in the provided section and under the provided key.
If no matches are found nil is returned.
*/
func (config *Config) IntegersFromSection(sectionName string, key string) []int64 {
section := config.sectionForName(sectionName)
if section != nil {
return getIntegers(section.values, key)
}
return nil
}
/*
FloatsFromSection looks for an array of floats in the provided section and under the provided key.
If no matches are found nil is returned.
If the section name matches the config.name or "" the global data is searched.
*/
func (config *Config) FloatsFromSection(sectionName string, key string) []float64 {
section := config.sectionForName(sectionName)
if section != nil {
return getFloats(section.values, key)
}
return nil
}
/*
DataFromSection reads the values of a section into a struct. The values should be of the types:
bool
string
[]string
int64
[]int64
float64
[]float64
Values that are missing in the section are not set, and values that are missing in the
struct but present in the section are ignored.
If the section name matches the config.name or "" the global data is searched.
*/
func (config *Config) DataFromSection(sectionName string, data interface{}) bool {
section := config.sectionForName(sectionName)
if section == nil {
return false
}
values := section.values
fields := reflect.ValueOf(data).Elem()
dataType := fields.Type()
for i := 0; i < fields.NumField(); i++ {
field := fields.Field(i)
if !field.CanSet() {
continue
}
fieldType := dataType.Field(i)
fieldName := fieldType.Name
switch field.Type().Kind() {
case reflect.Bool:
field.SetBool(getBoolean(values, fieldName, field.Interface().(bool)))
case reflect.Int64:
field.SetInt(getInteger(values, fieldName, field.Interface().(int64)))
case reflect.Float64:
field.SetFloat(getFloat(values, fieldName, field.Interface().(float64)))
case reflect.String:
field.SetString(getString(values, fieldName, field.Interface().(string)))
case reflect.Array, reflect.Slice:
switch fieldType.Type.Elem().Kind() {
case reflect.Int64:
ints := getIntegers(values, fieldName)
if ints != nil {
field.Set(reflect.ValueOf(ints))
}
case reflect.Float64:
floats := getFloats(values, fieldName)
if floats != nil {
field.Set(reflect.ValueOf(floats))
}
case reflect.String:
strings := getStrings(values, fieldName)
if strings != nil {
field.Set(reflect.ValueOf(strings))
}
}
}
}
return true
}
/*
Keys returns all of the global keys in the config.
*/
func (config *Config) Keys() []string {
keys := make([]string, 0, len(config.values))
for key := range config.values {
keys = append(keys, key)
}
sort.Strings(keys)
return keys
}
/*
KeysForSection returns all of the keys found in the section named sectionName.
If the section name matches the config.name or "" the global data is searched.
*/
func (config *Config) KeysForSection(sectionName string) []string {
section := config.sectionForName(sectionName)
if section != nil {
keys := make([]string, 0, len(section.values))
for key := range section.values {
keys = append(keys, key)
}
sort.Strings(keys)
return keys
}
return nil
}
/*
SectionNames returns the names for each of the sections in a config structure. If the config was assigned
a name, that name is included in the list. If the name is not set, then only explicitely named sections are returned.
*/
func (config *Config) SectionNames() []string {
sectionNames := make([]string, 0, len(config.sections))
for name := range config.sections {
sectionNames = append(sectionNames, name)
}
if len(config.name) > 0 {
sectionNames = append(sectionNames, config.name)
}
sort.Strings(sectionNames)
return sectionNames
}