forked from RobertWHurst/Velaros
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpattern.go
More file actions
292 lines (248 loc) · 6.89 KB
/
pattern.go
File metadata and controls
292 lines (248 loc) · 6.89 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
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
package velaros
import (
"errors"
"github.com/grafana/regexp"
)
// Pattern is used to compare and match request paths to route patterns.
// Patterns are used by the router to determine which handlers to execute for
// a given request.
type Pattern struct {
str string
chunks []chunk
regExp *regexp.Regexp
}
// NewPattern creates a new pattern from a string. The string should be a
// valid route pattern. If the string is not a valid route pattern, an error
// is returned.
func NewPattern(patternStr string) (*Pattern, error) {
chunks, err := parsePatternChunks(patternStr)
if err != nil {
return nil, err
}
patternRegExp, err := regExpFromChunks(chunks)
if err != nil {
return nil, err
}
pattern := &Pattern{
str: patternStr,
chunks: chunks,
regExp: patternRegExp,
}
return pattern, nil
}
// Match compares a path to the pattern and returns a map of named parameters
// extracted from the path as per the pattern. If the path matches the pattern,
// the second return value will be true. If the path does not match the pattern,
// the second return value will be false.
func (p *Pattern) Match(path string) (MessageParams, bool) {
matches := p.regExp.FindStringSubmatch(path)
if len(matches) == 0 {
return nil, false
}
keys := p.regExp.SubexpNames()
params := make(MessageParams, len(keys))
for i := 1; i < len(keys); i += 1 {
if keys[i] != "" {
params[keys[i]] = matches[i]
}
}
return params, true
}
// Path creates a path string from the pattern by replacing dynamic segments with
// the provided parameters. If a required parameter is missing, an error is
// returned. Optional segments are only included if their parameters are provided.
// Wildcard segments are replaced with values from the wildcards slice in order.
// If there are more wildcard segments than values in the slice, an error is returned.
func (p *Pattern) Path(params MessageParams, wildcards []string) (string, error) {
path := ""
wildcardIndex := 0
// Build the path from chunks
for _, currentChunk := range p.chunks {
switch currentChunk.kind {
case static:
// Static segments are always included
path += "/" + currentChunk.pattern
case dynamic:
value, exists := params[currentChunk.key]
// Check if parameter is required
if !exists {
if currentChunk.modifier == optional || currentChunk.modifier == zeroOrMore {
// Optional parameter, skip this segment
continue
}
return "", errors.New("missing required parameter: " + currentChunk.key)
}
// Add the parameter value
path += "/" + value
case wildcard:
// Use next wildcard value from slice
if wildcardIndex >= len(wildcards) {
return "", errors.New("not enough wildcard values provided")
}
path += "/" + wildcards[wildcardIndex]
wildcardIndex++
}
}
if path == "" {
path = "/"
}
return path, nil
}
func (p *Pattern) MatchInto(path string, params *MessageParams) bool {
matchIndices := p.regExp.FindStringSubmatchIndex(path)
if len(matchIndices) == 0 {
return false
}
keys := p.regExp.SubexpNames()
if *params == nil {
*params = make(map[string]string, len(keys))
}
for key := range *params {
delete(*params, key)
}
for i := 1; i < len(keys); i += 1 {
if keys[i] != "" {
(*params)[keys[i]] = path[matchIndices[i*2]:matchIndices[i*2+1]]
}
}
return true
}
// String returns the string representation of the pattern.
func (p *Pattern) String() string {
return p.str
}
type chunkKind int
const (
unknown chunkKind = iota
static
dynamic
wildcard
)
type chunkModifier int
const (
single chunkModifier = iota
optional
oneOrMore
zeroOrMore
)
type chunk = struct {
kind chunkKind
modifier chunkModifier
key string
pattern string
}
func parsePatternChunks(patternStr string) ([]chunk, error) {
patternRunes := []rune(patternStr)
patternRunesLen := len(patternRunes)
var currentChunk *chunk
chunks := make([]chunk, 0)
for i := 0; i < patternRunesLen; i += 1 {
isLastRune := i+1 == patternRunesLen
isLastRuneInChunk := isLastRune || patternRunes[i+1] == '/'
currentRune := patternRunes[i]
if currentRune == '/' {
if currentChunk != nil {
chunks = append(chunks, *currentChunk)
}
currentChunk = &chunk{}
continue
}
if currentChunk == nil {
return nil, errors.New("pattern must start with a leading slash")
}
if currentChunk.kind == unknown {
switch currentRune {
case ':':
currentChunk.kind = dynamic
case '*':
currentChunk.kind = wildcard
case '(':
currentChunk.kind = wildcard
i -= 1
default:
currentChunk.kind = static
i -= 1
}
continue
}
if currentRune == '(' {
if currentChunk.kind == dynamic && currentChunk.key == "" {
return nil, errors.New("dynamic chunks must have a name")
}
if currentChunk.pattern != "" {
return nil, errors.New("pattern chunks cannot contain multiple subpatterns")
}
for j := i + 1; j < patternRunesLen; j += 1 {
if patternRunes[j] == ')' {
currentChunk.pattern = string(patternRunes[i+1 : j])
i = j
break
}
}
continue
}
if isLastRuneInChunk {
switch currentRune {
case '?':
currentChunk.modifier = optional
case '+':
currentChunk.modifier = oneOrMore
case '*':
currentChunk.modifier = zeroOrMore
}
if currentChunk.modifier != single {
continue
}
}
switch currentChunk.kind {
case dynamic:
currentChunk.key += string(currentRune)
case static:
currentChunk.pattern += string(currentRune)
case wildcard:
}
}
if currentChunk != nil {
chunks = append(chunks, *currentChunk)
}
return chunks, nil
}
// regExpFromChunks converts parsed pattern chunks to a regular expression.
func regExpFromChunks(chunks []chunk) (*regexp.Regexp, error) {
regExpStr := "^"
for _, currentChunk := range chunks {
if currentChunk.pattern == "" {
currentChunk.pattern = "[^\\/]+"
}
switch currentChunk.kind {
case static, wildcard:
switch currentChunk.modifier {
case single:
regExpStr += "\\/" + currentChunk.pattern
case optional:
regExpStr += "(?:\\/" + currentChunk.pattern + ")?"
case oneOrMore:
regExpStr += "\\/" + currentChunk.pattern + "(?:\\/" + currentChunk.pattern + ")*"
case zeroOrMore:
regExpStr += "(?:\\/" + currentChunk.pattern + "(?:\\/" + currentChunk.pattern + ")*)?"
}
case dynamic:
switch currentChunk.modifier {
case single:
regExpStr += "\\/(?P<" + currentChunk.key + ">" + currentChunk.pattern + ")"
case optional:
regExpStr += "(?:\\/(?P<" + currentChunk.key + ">" + currentChunk.pattern + "))?"
case oneOrMore:
regExpStr += "\\/(?P<" + currentChunk.key + ">(?:" + currentChunk.pattern + ")(?:\\/" + currentChunk.pattern + ")*)"
case zeroOrMore:
regExpStr += "(?:\\/(?P<" + currentChunk.key + ">" + currentChunk.pattern + "(?:\\/" + currentChunk.pattern + ")*))?"
}
}
}
regExpStr += "\\/?$"
regExp, err := regexp.Compile(regExpStr)
if err != nil {
return nil, err
}
return regExp, nil
}