-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathequals.go
53 lines (49 loc) · 1.19 KB
/
equals.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
// Copyright (C) 2016 Kohei YOSHIDA. All rights reserved.
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of The BSD 3-Clause License
// that can be found in the LICENSE file.
package uritemplate
type CompareFlags uint8
const (
CompareVarname CompareFlags = 1 << iota
)
// Equals reports whether or not two URI Templates t1 and t2 are equivalent.
func Equals(t1 *Template, t2 *Template, flags CompareFlags) bool {
if len(t1.exprs) != len(t2.exprs) {
return false
}
for i := 0; i < len(t1.exprs); i++ {
switch t1 := t1.exprs[i].(type) {
case literals:
t2, ok := t2.exprs[i].(literals)
if !ok {
return false
}
if t1 != t2 {
return false
}
case *expression:
t2, ok := t2.exprs[i].(*expression)
if !ok {
return false
}
if t1.op != t2.op || len(t1.vars) != len(t2.vars) {
return false
}
for n := 0; n < len(t1.vars); n++ {
v1 := t1.vars[n]
v2 := t2.vars[n]
if flags&CompareVarname == CompareVarname && v1.name != v2.name {
return false
}
if v1.maxlen != v2.maxlen || v1.explode != v2.explode {
return false
}
}
default:
panic("unhandled case")
}
}
return true
}