-
Notifications
You must be signed in to change notification settings - Fork 2
/
pattern.go
588 lines (552 loc) · 16.4 KB
/
pattern.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
// Copyright 2023 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// Package muxpatterns is a sample implementation of enhanced
// http.ServeMux routing patterns.
// See https://github.com/golang/go/discussions/60227.
//
// The API in this package is for experimentation only.
// It is likely that none of it will be in the proposal.
package muxpatterns
import (
"errors"
"fmt"
"regexp"
"strings"
"unicode"
)
// A Pattern is something that can be matched against an HTTP request.
type Pattern struct {
str string // original string
method string
host string
// The representation of a path differs from the surface syntax.
// Paths ending in '/' are represented with an anonymous "..." wildcard.
// Paths ending in "{$}" are represented with the literal segment "/".
// This makes most algorithms simpler.
segments []segment
loc string // source location of registering call, for helpful messages
}
// A segment is a pattern piece that matches one or more path segments, or
// a trailing slash.
// If wild is false, it matches a literal segment, or, if s == "/", a trailing slash.
// If wild is true and multi is false, it matches a single path segment.
// If both wild and multi are true, it matches all remaining path segments.
type segment struct {
s string // literal or wildcard name or "/" for "/{$}".
wild bool
multi bool // "..." wildcard
}
func (p *Pattern) String() string { return p.str }
func (p *Pattern) Method() string { return p.method }
func (p *Pattern) debugString() string {
var b strings.Builder
if p.method != "" {
b.WriteString(p.method)
b.WriteByte(' ')
}
if p.host != "" {
b.WriteString(p.host)
}
for _, s := range p.segments {
b.WriteString(s.debugString())
}
return b.String()
}
func (s segment) debugString() string {
switch {
case s.multi:
return fmt.Sprintf("/{%s...}", s.s)
case s.wild:
return fmt.Sprintf("/{%s}", s.s)
case s.s == "/":
return "/"
default: // Literal.
return "/" + s.s
}
}
func (p *Pattern) lastSegment() segment {
return p.segments[len(p.segments)-1]
}
// Parse parses a string into a Pattern.
// The string's syntax is
//
// [METHOD] [HOST]/[PATH]
//
// where:
// - METHOD is the uppercase name of an HTTP method
// - HOST is a hostname
// - PATH consists of slash-separated segments, where each segment is either
// a literal or a wildcard of the form "{name}", "{name...}", or "{$}".
//
// METHOD, HOST and PATH are all optional; that is, the string can be "/".
// If METHOD is present, it must be followed by a single space.
// Wildcard names must be valid Go identifiers.
// The "{$}" and "{name...}" wildcard must occur at the end of PATH.
// PATH may end with a '/'.
// Wildcard names in a path must be distinct.
func Parse(s string) (*Pattern, error) {
if len(s) == 0 {
return nil, errors.New("empty pattern")
}
method, rest, found := strings.Cut(s, " ")
if !found {
rest = method
method = ""
}
if method != "" && !isValidHTTPToken(method) {
return nil, fmt.Errorf("bad method %q", method)
}
p := &Pattern{str: s, method: method}
i := strings.IndexByte(rest, '/')
if i < 0 {
return nil, errors.New("host/path missing /")
}
p.host = rest[:i]
rest = rest[i:]
if strings.IndexByte(p.host, '{') >= 0 {
return nil, errors.New("host contains '{' (missing initial '/'?")
}
// At this point, rest is the path.
// An unclean path with a method that is not CONNECT can never match,
// because paths are cleaned before matching.
if method != "" && method != "CONNECT" && rest != cleanPath(rest) {
return nil, errors.New("non-CONNECT pattern with unclean path can never match")
}
seenNames := map[string]bool{}
for len(rest) > 0 {
// Invariant: rest[0] == '/'.
rest = rest[1:]
if len(rest) == 0 {
// Trailing slash.
p.segments = append(p.segments, segment{wild: true, multi: true})
break
}
i := strings.IndexByte(rest, '/')
if i < 0 {
i = len(rest)
}
var seg string
seg, rest = rest[:i], rest[i:]
if i := strings.IndexByte(seg, '{'); i < 0 {
// Literal.
p.segments = append(p.segments, segment{s: seg})
} else {
// Wildcard.
if i != 0 {
return nil, errors.New("bad wildcard segment (must start with '{')")
}
if seg[len(seg)-1] != '}' {
return nil, errors.New("bad wildcard segment (must end with '}')")
}
name := seg[1 : len(seg)-1]
if name == "$" {
if len(rest) != 0 {
return nil, errors.New("{$} not at end")
}
p.segments = append(p.segments, segment{s: "/"})
break
}
var multi bool
if strings.HasSuffix(name, "...") {
multi = true
name = name[:len(name)-3]
if len(rest) != 0 {
return nil, errors.New("{...} wildcard not at end")
}
}
if name == "" {
return nil, errors.New("empty wildcard")
}
if !isValidWildcardName(name) {
return nil, fmt.Errorf("bad wildcard name %q", name)
}
if seenNames[name] {
return nil, fmt.Errorf("duplicate wildcard name %q", name)
}
seenNames[name] = true
p.segments = append(p.segments, segment{s: name, wild: true, multi: multi})
}
}
return p, nil
}
var httpTokenRegexp = regexp.MustCompile("^[-0-9A-Za-z!#$%&'*+.^_`|~]+$")
// See https://www.rfc-editor.org/rfc/rfc9110#section-5.6.2.
func isValidHTTPToken(s string) bool {
return httpTokenRegexp.MatchString(s)
}
func isValidWildcardName(s string) bool {
if s == "" {
return false
}
// Valid Go identifier.
for i, c := range s {
if !unicode.IsLetter(c) && c != '_' && (i == 0 || !unicode.IsDigit(c)) {
return false
}
}
return true
}
// HigherPrecedence reports whether p1 has higher precedence than p2.
// If p1 and p2 both match a request, then p1 will be chosen.
//
// Precedence is defined by these rules:
//
// 1. Patterns with a host win over patterns without a host.
// 2. Patterns whose method and path is more specific win. One pattern is more
// specific than another if the second matches all the (method, path) pairs
// of the first and more.
func (p1 *Pattern) HigherPrecedence(p2 *Pattern) bool {
// 1. Patterns with a host win over patterns without a host.
if (p1.host == "") != (p2.host == "") {
return p1.host != ""
}
// 2. More specific (method, path)s win.
return p1.comparePathsAndMethods(p2) == moreSpecific
}
// ConflictsWith reports whether p1 conflicts with p2, that is, whether
// there is a request that both match but where neither is higher precedence
// than the other.
func (p1 *Pattern) ConflictsWith(p2 *Pattern) bool {
if p1.host != p2.host {
// Either one host is empty and the other isn't, in which case the
// one with the host wins by rule 1, or neither host is empty
// and they differ, so they won't match the same paths.
return false
}
rel := p1.comparePathsAndMethods(p2)
return rel == equivalent || rel == overlaps
}
// relationship is a relationship between two patterns.
type relationship string
const (
moreSpecific relationship = "moreSpecific"
moreGeneral relationship = "moreGeneral"
overlaps relationship = "overlaps"
equivalent relationship = "equivalent"
disjoint relationship = "disjoint"
)
func (p1 *Pattern) comparePathsAndMethods(p2 *Pattern) relationship {
mr := p1.compareMethods(p2)
// Optimization: avoid a call to comparePaths.
if mr == disjoint {
return disjoint
}
pr := p1.comparePaths(p2)
return combineRelationships(mr, pr)
}
func combineRelationships(methodRel, pathRel relationship) relationship {
switch {
case methodRel == equivalent:
return pathRel
case methodRel == moreGeneral:
switch pathRel {
case equivalent:
return moreGeneral
case moreSpecific:
return overlaps
default:
return pathRel
}
case methodRel == moreSpecific:
// The dual of the above.
switch pathRel {
case equivalent:
return moreSpecific
case moreGeneral:
return overlaps
default:
return pathRel
}
default:
// Different non-empty methods.
return disjoint
}
}
func (p1 *Pattern) compareMethods(p2 *Pattern) relationship {
if p1.method == p2.method {
return equivalent
}
if p1.method == "" {
// p1 matches any method, but p2 does not.
return moreGeneral
}
if p2.method == "" {
return moreSpecific
}
if p1.method == "GET" && p2.method == "HEAD" {
// p1 matches GET and HEAD; p2 matches only HEAD.
return moreGeneral
}
if p2.method == "GET" && p1.method == "HEAD" {
return moreSpecific
}
return disjoint
}
// comparePaths determines the relationship between two patterns,
// as far as paths are concerned.
//
// equivalent: p1 and p2 match the same paths
// moreGeneral: p1 matches all the paths of p2 and more
// moreSpecific: p2 matches all the paths of p1 and more
// overlaps: there is a path that both match, but neither is more specific
// disjoint: there is no path that both match
func (p1 *Pattern) comparePaths(p2 *Pattern) relationship {
if len(p1.segments) != len(p2.segments) && !p1.lastSegment().multi && !p2.lastSegment().multi {
return disjoint
}
// Track whether a single (non-multi) wildcard in p1 matched
// a literal in p2, and vice versa.
// We care about these because if a wildcard matches a literal, then the
// pattern with the wildcard can't be more specific than the one with the
// literal.
wild1MatchedLit2 := false
wild2MatchedLit1 := false
var segs1, segs2 []segment
for segs1, segs2 = p1.segments, p2.segments; len(segs1) > 0 && len(segs2) > 0; segs1, segs2 = segs1[1:], segs2[1:] {
s1 := segs1[0]
s2 := segs2[0]
if s1.multi && s2.multi {
// Two multis match each other.
continue
}
if s1.multi {
// p1 matches the rest of p2.
// Does that mean it is more general than p2?
if !wild2MatchedLit1 {
// If p2 didn't have any wildcards that matched literals in p1,
// then yes, p1 is more general.
return moreGeneral
}
// Otherwise neither is more general than the other.
return overlaps
}
if s2.multi {
// p2 matches the rest of p1. The same logic as above applies.
if !wild1MatchedLit2 {
return moreSpecific
}
return overlaps
}
if s1.s == "/" && s2.s == "/" {
// Both patterns end in "/{$}"; they match.
continue
}
if s1.s == "/" || s2.s == "/" {
// One pattern ends in "/{$}", and the other doesn't, nor is the other's
// corresponding segment a multi. So they are disjoint.
return disjoint
}
if s1.wild && s2.wild {
// These single-segment wildcards match each other.
} else if s1.wild {
// p1's single wildcard matches the corresponding segment of p2.
wild1MatchedLit2 = true
} else if s2.wild {
// p2's single wildcard matches the corresponding segment of p1.
wild2MatchedLit1 = true
} else {
// Two literal segments.
if s1.s != s2.s {
return disjoint
}
}
}
// We've reached the end of the corresponding segments of the patterns.
if len(segs1) == 0 && len(segs2) == 0 {
// The patterns matched completely.
switch {
case wild1MatchedLit2 && !wild2MatchedLit1:
return moreGeneral
case wild2MatchedLit1 && !wild1MatchedLit2:
return moreSpecific
case !wild1MatchedLit2 && !wild2MatchedLit1:
return equivalent
default:
return overlaps
}
}
// One pattern has more segments than the other.
// The only way they can fail to be disjoint is if one ends in a multi, but
// we handled that case in the loop.
return disjoint
}
// DescribeRelationship returns a string that describes how pat1 and pat2
// are related.
func DescribeRelationship(pat1, pat2 string) string {
p1, err := Parse(pat1)
if err != nil {
panic(err)
}
p2, err := Parse(pat2)
if err != nil {
panic(err)
}
return describeRel(p1, p2)
}
func describeRel(p1, p2 *Pattern) string {
if p1.host != p2.host {
switch {
case p1.host == "":
return fmt.Sprintf("%s does not have a host, while %s does, so %[2]s takes precedence", p1, p2)
case p2.host == "":
return fmt.Sprintf("%s does not have a host, while %s does, so %[2]s takes precedence", p2, p1)
default:
return fmt.Sprintf("%s and %s have different hosts, so they have no requests in common", p1, p2)
}
}
methodRel := p1.compareMethods(p2)
pathRel := p1.comparePaths(p2)
rel := combineRelationships(methodRel, pathRel)
switch rel {
case disjoint:
return fmt.Sprintf("%s has no requests in common with %s.", p1, p2)
case equivalent:
return fmt.Sprintf("%s matches the same requests as %s.", p1, p2)
case moreSpecific:
return moreSpecificMessage(p1, p2, methodRel)
case moreGeneral:
if methodRel == moreGeneral {
methodRel = moreSpecific
}
return moreSpecificMessage(p2, p1, methodRel)
case overlaps:
return fmt.Sprintf(`%[1]s and %[2]s both match some paths, like %[3]q.
But neither is more specific than the other.
%[1]s matches %[4]q, but %[2]s doesn't.
%[2]s matches %[5]q, but %[1]s doesn't.`,
p1, p2, commonPath(p1, p2), differencePath(p1, p2), differencePath(p2, p1))
default: // overlap
panic(fmt.Sprintf("bad relationship %q", rel))
}
}
func moreSpecificMessage(spec, gen *Pattern, methodRel relationship) string {
// Either the method or path is more specific, or both.
over := matchingPath(spec)
if methodRel == moreSpecific {
// spec.method is not empty, gen.method is empty or is GET.
return fmt.Sprintf(`%q is more specific than %q.
Both match "%s %s".
Only %[2]s matches "%[5]s %s".`,
spec, gen,
spec.method, over,
otherMethod(spec.method, gen.method), over)
}
diff := differencePath(gen, spec)
return fmt.Sprintf(`%s is more specific than %s.
Both match path %s.
Only %[2]s matches path %[4]q.`,
spec, gen, over, diff)
}
func matchingPath(p *Pattern) string {
var b strings.Builder
writeMatchingPath(&b, p.segments)
return b.String()
}
// writeMatchingPath writes to b a path that matches the segments.
func writeMatchingPath(b *strings.Builder, segs []segment) {
for _, s := range segs {
writeSegment(b, s)
}
}
func writeSegment(b *strings.Builder, s segment) {
b.WriteByte('/')
if !s.multi && s.s != "/" {
b.WriteString(s.s)
}
}
// commonPath returns a path that both p1 and p2 match.
// It assumes there is such a path.
func commonPath(p1, p2 *Pattern) string {
var b strings.Builder
var segs1, segs2 []segment
for segs1, segs2 = p1.segments, p2.segments; len(segs1) > 0 && len(segs2) > 0; segs1, segs2 = segs1[1:], segs2[1:] {
if s1 := segs1[0]; s1.wild {
writeSegment(&b, segs2[0])
} else {
writeSegment(&b, s1)
}
}
if len(segs1) > 0 {
writeMatchingPath(&b, segs1)
} else if len(segs2) > 0 {
writeMatchingPath(&b, segs2)
}
return b.String()
}
func otherMethod(specMethod, genMethod string) string {
if specMethod == "HEAD" && genMethod == "GET" {
return "GET"
}
// Otherwise, genMethod must be empty.
if specMethod == "GET" {
return "POST"
}
return "GET"
}
// differencePath returns a path that p1 matches and p2 doesn't.
// It assumes there is such a path.
func differencePath(p1, p2 *Pattern) string {
b := new(strings.Builder)
var segs1, segs2 []segment
for segs1, segs2 = p1.segments, p2.segments; len(segs1) > 0 && len(segs2) > 0; segs1, segs2 = segs1[1:], segs2[1:] {
s1 := segs1[0]
s2 := segs2[0]
if s1.multi && s2.multi {
// From here the patterns match the same paths, so we must have found a difference earlier.
b.WriteByte('/')
return b.String()
}
if s1.multi && !s2.multi {
// s1 ends in a "..." wildcard but s2 does not.
// A trailing slash will distinguish them, unless s2 ends in "{$}",
// in which case any segment will do; prefer the wildcard name if
// it has one.
b.WriteByte('/')
if s2.s == "/" {
if s1.s != "" {
b.WriteString(s1.s)
} else {
b.WriteString("x")
}
}
return b.String()
}
if !s1.multi && s2.multi {
writeSegment(b, s1)
} else if s1.wild && s2.wild {
// Both patterns will match whatever we put here; use
// the first wildcard name.
writeSegment(b, s1)
} else if s1.wild && !s2.wild {
// s1 is a wildcard, s2 is a literal.
// Any segment other than s2.s will work.
// Prefer the wildcard name, but if it's the same as the literal,
// tweak the literal.
if s1.s != s2.s {
writeSegment(b, s1)
} else {
b.WriteByte('/')
b.WriteString(s2.s + "x")
}
} else if !s1.wild && s2.wild {
writeSegment(b, s1)
} else {
// Both are literals. A precondition of this function is that the
// patterns overlap, so they must be the same literal. Use it.
if s1.s != s2.s {
fmt.Printf("%q, %q\n", s1.s, s2.s)
panic("literals differ")
}
writeSegment(b, s1)
}
}
if len(segs1) > 0 {
// p1 is longer than p2, and p2 does not end in a multi.
// Anything that matches the rest of p1 will do.
writeMatchingPath(b, segs1)
} else if len(segs2) > 0 {
writeMatchingPath(b, segs2)
}
return b.String()
}