-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfield.go
250 lines (230 loc) · 6.54 KB
/
field.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
/*
* Copyright (c) 2014, Robert Bieber
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
*
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* Neither the name of the project's author nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
* TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package conflag
import (
"errors"
"fmt"
"reflect"
"regexp"
"strings"
)
type fieldType int
const (
invalidFieldType fieldType = iota
boolFieldType
intFieldType
uintFieldType
floatFieldType
stringFieldType
)
var allowedTypes = map[fieldType]map[reflect.Kind]bool{
boolFieldType: map[reflect.Kind]bool{
reflect.Bool: true,
},
intFieldType: map[reflect.Kind]bool{
reflect.Int: true,
reflect.Int8: true,
reflect.Int16: true,
reflect.Int32: true,
reflect.Int64: true,
},
uintFieldType: map[reflect.Kind]bool{
reflect.Uint: true,
reflect.Uint8: true,
reflect.Uint16: true,
reflect.Uint32: true,
reflect.Uint64: true,
},
floatFieldType: map[reflect.Kind]bool{
reflect.Float32: true,
reflect.Float64: true,
},
stringFieldType: map[reflect.Kind]bool{
reflect.String: true,
},
}
// Field represents a single field in a configuration. You can get it
// from the Config struct using its Field() method, and then set
// command-line and config-file properties of the field with it.
type Field struct {
destination reflect.Value
kind fieldType
description string
required bool
found bool
parsedValue string
longFlag string
shortFlag rune
inverseLongFlag string
inverseShortFlag rune
fileCategory string
fileKey string
}
func processField(
fields map[string]*Field,
fieldKeysInOrder *[]string,
field reflect.Value,
prefix string,
name string,
) error {
if field.Type().Kind() == reflect.Struct {
if prefix != "" {
return errors.New(
"conflag: Configuration structs may only be nested one level.",
)
}
for i := 0; i < field.NumField(); i++ {
err := processField(
fields,
fieldKeysInOrder,
field.FieldByIndex([]int{i}),
name,
field.Type().Field(i).Name,
)
if err != nil {
return err
}
}
return nil
}
kind := invalidFieldType
for currentKind, subMap := range allowedTypes {
if _, ok := subMap[field.Type().Kind()]; ok {
kind = currentKind
break
}
}
if kind == invalidFieldType {
return fmt.Errorf(
"conflag: Type %s is not allowed in configuration structs.",
field.Type().Kind().String(),
)
}
caseTransition, err := regexp.Compile("([a-z0-9])([A-Z])|([a-z])([A-Z0-9])")
if err != nil {
return err
}
fileCategory := ""
fileKey := strings.ToLower(
caseTransition.ReplaceAllString(name, "${1}${3}_${2}${4}"),
)
longFlag := strings.Replace(fileKey, "_", "-", -1)
if prefix != "" {
fileCategory = strings.ToLower(
caseTransition.ReplaceAllString(prefix, "${1}${3}_${2}${4}"),
)
longFlag = strings.Replace(fileCategory, "_", "-", -1) + "." + longFlag
}
key := name
if prefix != "" {
key = prefix + "." + key
}
fields[key] = &Field{
description: "",
destination: field,
kind: kind,
required: false,
found: false,
parsedValue: "",
longFlag: longFlag,
shortFlag: 0,
fileCategory: fileCategory,
fileKey: fileKey,
}
*fieldKeysInOrder = append(*fieldKeysInOrder, key)
return nil
}
// Description sets the description to use in the usage text for the
// given field.
func (f *Field) Description(description string) *Field {
f.description = description
return f
}
// Required indicates that the field must be specified in either the
// config file or a command-line parameter.
func (f *Field) Required() *Field {
f.required = true
return f
}
// LongFlag sets the long command-line flag for the option, to be
// found on the command line in the form --long-flag.
func (f *Field) LongFlag(flag string) *Field {
f.longFlag = flag
return f
}
// InverseLongFlag sets the command-line flag to set the option to
// false, to be found on the command line in the form
// --inverse-long-flag. Only usable on boolean fields.
func (f *Field) InverseLongFlag(flag string) *Field {
f.inverseLongFlag = flag
if f.kind != boolFieldType {
panic(errors.New("Only boolean fields may have inverse flags."))
}
return f
}
// ShortFlag sets the short command-line flag for the option, to be
// found on the command line in the form -f.
func (f *Field) ShortFlag(flag rune) *Field {
f.shortFlag = flag
return f
}
// InverseShortFlag sets the short command-line flag to set the option
// to false, to be found on the command line in the form -i. Only
// usable on boolean fields.
func (f *Field) InverseShortFlag(flag rune) *Field {
f.inverseShortFlag = flag
if f.kind != boolFieldType {
panic(
errors.New("conflag: Only boolean fields may have inverse flags."),
)
}
return f
}
// FileCategory sets the config file category the option will be found
// under. An empty string indicates none.
func (f *Field) FileCategory(category string) *Field {
if strings.Contains(category, ".") {
panic(
errors.New("conflag: File category names cannot include '.'"),
)
}
f.fileCategory = category
return f
}
// FileKey sets the key in the config file for the option.
func (f *Field) FileKey(key string) *Field {
if strings.Contains(key, ".") {
panic(errors.New("File key names cannot include '.'"))
}
f.fileKey = key
return f
}