-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstringscanner.go
303 lines (268 loc) · 7.02 KB
/
stringscanner.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
package function
import (
"encoding"
"encoding/json"
"errors"
"fmt"
"reflect"
"strings"
"time"
)
// ScanString uses the configured DefaultStringScanner
// to scan sourceStr to destPtr.
func ScanString(sourceStr string, destPtr any) error {
return StringScanners.ScanString(sourceStr, destPtr)
}
// ScanStrings uses the configured DefaultStringScanner
// to scan sourceStrings to destPtrs.
// If the number of sourceStrings and destPtrs is not identical
// then only the lower number of either will be scanned.
func ScanStrings(sourceStrings []string, destPtrs ...any) error {
l := len(sourceStrings)
if ll := len(destPtrs); ll < l {
l = ll
}
for i := 0; i < l; i++ {
err := ScanString(sourceStrings[i], destPtrs[i])
if err != nil {
return err
}
}
return nil
}
type StringScanner interface {
ScanString(sourceStr string, destPtr any) error
}
type StringScannerFunc func(sourceStr string, destPtr any) error
func (f StringScannerFunc) ScanString(sourceStr string, destPtr any) error {
return f(sourceStr, destPtr)
}
func DefaultScanString(sourceStr string, destPtr any) (err error) {
if destPtr == nil {
return errors.New("destination pointer is nil")
}
destPtrVal := reflect.ValueOf(destPtr)
if destPtrVal.Kind() != reflect.Pointer {
return fmt.Errorf("expected destination pointer type but got: %s", destPtrVal.Type())
}
if destPtrVal.IsNil() {
return errors.New("destination pointer is nil")
}
return scanString(sourceStr, destPtrVal.Elem())
}
func scanString(sourceStr string, destVal reflect.Value) (err error) {
var (
destPtr = destVal.Addr().Interface()
trimmedSrc = strings.TrimSpace(sourceStr)
nilSrc = trimmedSrc == "" ||
strings.EqualFold(trimmedSrc, "nil") ||
strings.EqualFold(trimmedSrc, "null")
)
if n, ok := destPtr.(interface{ SetNull() }); ok && nilSrc {
n.SetNull()
return nil
}
switch dest := destPtr.(type) {
case *string:
*dest = sourceStr
return nil
case *error:
if nilSrc {
*dest = nil
} else {
*dest = errors.New(trimmedSrc)
}
return nil
case *time.Time:
if nilSrc {
*dest = time.Time{}
return nil
}
for _, format := range TimeFormats {
t, err := time.ParseInLocation(format, trimmedSrc, time.Local)
if err == nil {
*dest = t
return nil
}
}
return fmt.Errorf("can't parse %q as time.Time using formats %#v", trimmedSrc, TimeFormats)
case interface{ Set(time.Time) }:
if nilSrc {
dest.Set(time.Time{})
return nil
}
for _, format := range TimeFormats {
t, err := time.ParseInLocation(format, trimmedSrc, time.Local)
if err == nil {
dest.Set(t)
return nil
}
}
return fmt.Errorf("can't parse %q as time.Time using formats %#v", trimmedSrc, TimeFormats)
case *time.Duration:
if nilSrc {
*dest = 0
return nil
}
duration, err := time.ParseDuration(trimmedSrc)
if err != nil {
return fmt.Errorf("can't parse %q as time.Duration because of: %w", trimmedSrc, err)
}
*dest = duration
return nil
case encoding.TextUnmarshaler:
return dest.UnmarshalText([]byte(sourceStr))
case json.Unmarshaler:
source := []byte(trimmedSrc)
if !json.Valid(source) {
// sourceStr is not already valid JSON
// then escape it as JSON string
source, err = json.Marshal(sourceStr)
if err != nil {
return fmt.Errorf("can't marshal %q as JSON string: %w", sourceStr, err)
}
}
return dest.UnmarshalJSON(source)
case *map[string]any:
return json.Unmarshal([]byte(trimmedSrc), destPtr)
case *[]any:
return json.Unmarshal([]byte(trimmedSrc), destPtr)
case *[]byte:
*dest = []byte(sourceStr)
return nil
}
switch destVal.Kind() {
case reflect.String:
destVal.SetString(sourceStr)
return nil
case reflect.Pointer:
if nilSrc {
destVal.SetZero()
return nil
}
ptr := destVal
if ptr.IsNil() {
ptr = reflect.New(destVal.Type().Elem())
}
err := scanString(sourceStr, ptr.Elem())
if err != nil {
return err
}
destVal.Set(ptr)
return nil
case reflect.Struct:
// JSON might not be the best format for command line arguments,
// but it could have also come from a HTTP request body or other sources
return json.Unmarshal([]byte(trimmedSrc), destPtr)
case reflect.Slice:
if nilSrc {
destVal.SetZero()
return nil
}
var sourceStrings []string
if strings.HasPrefix(trimmedSrc, "[") && strings.HasSuffix(trimmedSrc, "]") {
sourceStrings, err = sliceLiteralFields(trimmedSrc)
if err != nil {
return err
}
} else {
// Treat non-slice literals as single element slice
sourceStrings = []string{trimmedSrc}
}
sliceLen := len(sourceStrings)
destVal.Set(reflect.MakeSlice(destVal.Type(), sliceLen, sliceLen))
for i := 0; i < sliceLen; i++ {
err = scanString(sourceStrings[i], destVal.Index(i))
if err != nil {
return err
}
}
return nil
case reflect.Array:
var sourceStrings []string
if strings.HasPrefix(trimmedSrc, "[") && strings.HasSuffix(trimmedSrc, "]") {
sourceStrings, err = sliceLiteralFields(trimmedSrc)
if err != nil {
return err
}
} else {
// Treat non-slice literals as single element slice
sourceStrings = []string{trimmedSrc}
}
arrayLen := destVal.Len()
if len(sourceStrings) != arrayLen {
return fmt.Errorf("array value %q needs to have %d elements, but has %d", sourceStr, arrayLen, len(sourceStrings))
}
for i := 0; i < arrayLen; i++ {
err := scanString(sourceStrings[i], destVal.Index(i))
if err != nil {
return err
}
}
return nil
case reflect.Map, reflect.Chan, reflect.Func:
if nilSrc {
destVal.SetZero()
return nil
}
return fmt.Errorf("%w: %s", ErrTypeNotSupported, destVal.Type())
}
// If all else fails, use fmt scanning
// for generic type conversation from string
_, err = fmt.Sscan(sourceStr, destPtr)
if err != nil {
return fmt.Errorf("%w: %s, fmt.Sscan error: %s", ErrTypeNotSupported, destVal.Type(), err)
}
return nil
}
func sliceLiteralFields(sourceStr string) (fields []string, err error) {
if !strings.HasPrefix(sourceStr, "[") {
return nil, fmt.Errorf("slice value %q does not begin with '['", sourceStr)
}
if !strings.HasSuffix(sourceStr, "]") {
return nil, fmt.Errorf("slice value %q does not end with ']'", sourceStr)
}
var (
objectDepth = 0
bracketDepth = 0
rLast rune
withinQuote rune
begin = 1
)
for i, r := range sourceStr {
if withinQuote != 0 {
if r == '"' && rLast != '\\' {
withinQuote = 0
}
continue
}
switch r {
case '{':
objectDepth++
case '}':
objectDepth--
if objectDepth < 0 {
return nil, fmt.Errorf("slice value %q has too many '}'", sourceStr)
}
case '[':
bracketDepth++
case ']':
bracketDepth--
if bracketDepth < 0 {
return nil, fmt.Errorf("slice value %q has too many ']'", sourceStr)
}
if objectDepth == 0 && bracketDepth == 0 && i-begin > 0 {
fields = append(fields, strings.TrimSpace(sourceStr[begin:i]))
}
case ',':
if objectDepth == 0 && bracketDepth == 1 {
fields = append(fields, strings.TrimSpace(sourceStr[begin:i]))
begin = i + 1
}
case '"':
withinQuote = r
}
rLast = r
}
return fields, nil
}