-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathparser.go
More file actions
218 lines (184 loc) · 4.63 KB
/
parser.go
File metadata and controls
218 lines (184 loc) · 4.63 KB
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
package argoparser
import (
"fmt"
"io"
"os"
"reflect"
"strconv"
"strings"
)
func isFlag(entry *indexEntry) bool {
return entry.t.Kind() == reflect.Bool
}
func isMultiValue(entry *indexEntry) bool {
return entry.t.Kind() == reflect.Slice
}
func consumeValue(entry *indexEntry, value string) error {
castTo := entry.t
if isMultiValue(entry) {
castTo = entry.t.Elem()
}
var valueToAppend any
var err error
if castTo.Kind() == reflect.Int {
valueToAppend, err = strconv.Atoi(value)
if err != nil {
return fmt.Errorf("invalid value for int: %s", value)
}
} else if castTo.Kind() == reflect.String {
valueToAppend = value
} else {
return fmt.Errorf("unsupported type: %s", castTo.Kind())
}
if isMultiValue(entry) {
entry.v.Set(reflect.Append(entry.v, reflect.ValueOf(valueToAppend)))
} else {
entry.v.Set(reflect.ValueOf(valueToAppend))
}
entry.presented = true
return nil
}
func (p *Parser) checkRequiredFields(index fieldsIndex) error {
for _, entry := range index.requiredFields {
if !entry.presented {
// TODO: change error text
return fmt.Errorf("required field is not presented: %s", entry.m.longName)
}
}
return nil
}
func (p *Parser) parseImpl(tokens []token, result any) error {
index, err := buildIndex(result)
if err != nil {
return err
}
tokenPos := 0
positionalPos := 0
for tokenPos < len(tokens) {
token := tokens[tokenPos]
switch token.TokenType {
case typeLongKey:
entry, ok := index.fieldsByLongName[token.Value]
if !ok {
if p.SkipUnknown {
tokenPos++
continue
}
return fmt.Errorf("unknown long key: %s", token.Value)
}
if isFlag(entry) {
entry.v.SetBool(true)
entry.presented = true
tokenPos++
continue
}
if tokenPos+1 >= len(tokens) {
return fmt.Errorf("missing value for flag: %s", token.Value)
}
nextToken := tokens[tokenPos+1]
if err := consumeValue(entry, nextToken.Value); err != nil {
return err
}
tokenPos++
case typeShortGroup:
if len(token.Value) > 2 {
flags := token.Value[1:]
for _, flag := range flags {
entry, ok := index.fieldsByShortName["-"+string(flag)]
if !ok {
if p.SkipUnknown {
tokenPos++
continue
}
return fmt.Errorf("unknown short key: %s", string(flag))
}
if !isFlag(entry) {
return fmt.Errorf("value for field is flag, but field is not a flag: %s", "-"+string(flag))
}
entry.v.SetBool(true)
entry.presented = true
}
tokenPos++
continue
}
entry, ok := index.fieldsByShortName[token.Value]
// the code below is copypasted from long-key parsing
// TODO: move to common place
if !ok {
if p.SkipUnknown {
tokenPos++
continue
}
return fmt.Errorf("unknown short key: %s", token.Value)
}
if isFlag(entry) {
entry.v.SetBool(true)
entry.presented = true
tokenPos++
continue
}
if tokenPos+1 >= len(tokens) {
return fmt.Errorf("missing value for flag: %s", token.Value)
}
nextToken := tokens[tokenPos+1]
if err := consumeValue(entry, nextToken.Value); err != nil {
return err
}
tokenPos++
case typeStringValue:
if positionalByIndex, ok := index.fieldsByIndex[positionalPos]; ok {
if err := consumeValue(positionalByIndex, token.Value); err != nil {
return err
}
positionalPos++
} else {
if index.positionalsDefault != nil {
if err := consumeValue(index.positionalsDefault, token.Value); err != nil {
return err
}
} else {
if p.SkipUnknown {
tokenPos++
continue
}
return fmt.Errorf("unexpected positional parameter: %s", token.Value)
}
}
}
tokenPos++
}
if err := p.checkRequiredFields(index); err != nil {
return err
}
return nil
}
type Parser struct {
SkipUnknown bool
}
func (p *Parser) ParseString(input string, result any) error {
tokens := lex(input)
return p.parseImpl(tokens, result)
}
func (p *Parser) ParseSlice(input []string, result any) error {
return p.ParseString(strings.Join(input, " "), result)
}
func (p *Parser) ParseAppArgs(result any) error {
tokens := []token{}
for _, arg := range os.Args[1:] {
if strings.HasPrefix(arg, "--") {
tokens = append(tokens, token{TokenType: typeLongKey, Value: arg})
} else if strings.HasPrefix(arg, "-") {
tokens = append(tokens, token{TokenType: typeShortGroup, Value: arg})
} else {
tokens = append(tokens, token{TokenType: typeStringValue, Value: arg})
}
}
return p.parseImpl(tokens, result)
}
func (p *Parser) ParseReader(reader *io.Reader, result any) error {
data, err := io.ReadAll(*reader)
if err != nil {
return err
}
return p.ParseString(string(data), result)
}