-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtree.go
231 lines (199 loc) · 5.57 KB
/
tree.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
package router
import (
"errors"
"fmt"
"net/http"
"net/url"
"strings"
)
const (
GET HttpMethod = "GET"
POST HttpMethod = "POST"
PUT HttpMethod = "PUT"
PATCH HttpMethod = "PATCH"
DELETE HttpMethod = "DELETE"
WILDCARD_START_CHAR byte = '{'
)
var (
ErrUnhandledMethod error = errors.New("unhandled method")
ErrNotFound error = errors.New("not found")
)
var splitFn = func(c rune) bool {
return c == '/'
}
type HttpMethod string
type routeData struct {
Handler http.Handler
Context requestContext
}
type tree struct {
nodes [5]treeNode
}
type routePart struct {
route string
wildcard bool
}
func NewTree() *tree {
return &tree{
[5]treeNode{
{Content: string(GET), Children: make(map[string]*treeNode), WildCardChildren: []*treeNode{}},
{Content: string(POST), Children: make(map[string]*treeNode), WildCardChildren: []*treeNode{}},
{Content: string(PUT), Children: make(map[string]*treeNode), WildCardChildren: []*treeNode{}},
{Content: string(PATCH), Children: make(map[string]*treeNode), WildCardChildren: []*treeNode{}},
{Content: string(DELETE), Children: make(map[string]*treeNode), WildCardChildren: []*treeNode{}},
},
}
}
// Can panic
func (t *tree) Register(method HttpMethod, route string, handler http.Handler) {
root, found := t.GetRootNode(method)
if !found {
panic(fmt.Sprintf("%s HTTP method is not supported", method))
}
routeSplit := strings.FieldsFunc(route, splitFn)
if len(routeSplit) == 0 {
// Root path
if root.Handler == nil {
root.Handler = handler
return
} else {
panic(fmt.Sprintf("[%s] %s was already registered with another handler", method, route))
}
}
// Flag wildcard parameters and check potential duplication
routeMembers := make([]routePart, len(routeSplit))
wildcards := make(map[string]struct{})
for i, item := range routeSplit {
if item[0] != WILDCARD_START_CHAR {
routeMembers[i] = routePart{item, false}
continue
}
// Handle wildcard
if _, found := wildcards[item]; found {
panic(fmt.Sprintf("[%s] %s found duplicated wildcard parameter name: %s", method, route, item))
}
wildcards[item] = struct{}{}
// Remove '{' & '}'
routeMembers[i] = routePart{item[1 : len(item)-1], true}
}
err := root.Register(routeMembers, 0, handler)
if err != nil {
panic(fmt.Sprintf("[%s] %s %v", method, route, err))
}
}
func (t *tree) Find(method HttpMethod, url *url.URL) (routeData, error) {
root, found := t.GetRootNode(method)
if !found {
return routeData{}, ErrUnhandledMethod
}
routeSplit := strings.FieldsFunc(url.Path, splitFn)
if len(routeSplit) == 0 {
// Root path
if root.Handler != nil {
return routeData{Handler: root.Handler}, nil
} else {
return routeData{}, ErrNotFound
}
}
routeParams := map[string]string{}
node, found := root.Find(routeSplit, 0, routeParams)
if !found {
return routeData{}, ErrNotFound
}
return routeData{node.Handler, requestContext{routeParams, url.Query()}}, nil
}
func (t *tree) GetRootNode(method HttpMethod) (*treeNode, bool) {
switch method {
case GET:
return &t.nodes[0], true
case POST:
return &t.nodes[1], true
case PUT:
return &t.nodes[2], true
case PATCH:
return &t.nodes[3], true
case DELETE:
return &t.nodes[4], true
}
return nil, false
}
type treeNode struct {
Content string
Handler http.Handler
Children map[string]*treeNode
WildCardChildren []*treeNode
}
// Can panic
func (node *treeNode) Register(route []routePart, currentIndex int, handler http.Handler) error {
var currentNode *treeNode
var isWildcard bool
if !route[currentIndex].wildcard {
// Normal node
currentNode = node.Children[route[currentIndex].route]
} else {
// Wildcard node
for _, wilcardNode := range node.WildCardChildren {
if wilcardNode.Content == route[currentIndex].route {
currentNode = wilcardNode
break
}
}
isWildcard = true
}
if currentNode == nil {
// New node
currentNode = &treeNode{
Content: route[currentIndex].route,
Children: make(map[string]*treeNode),
WildCardChildren: []*treeNode{},
}
if isWildcard {
node.WildCardChildren = append(node.WildCardChildren, currentNode)
} else {
node.Children[route[currentIndex].route] = currentNode
}
if currentIndex == len(route)-1 {
// Register handler on final node
currentNode.Handler = handler
return nil
}
} else if currentIndex == len(route)-1 {
// Last node exists
if currentNode.Handler == nil {
// Register handler on final node
currentNode.Handler = handler
return nil
}
// Handler already registered on this node: panic
return errors.New("route was already registered with another handler on the same HTTP method")
}
return currentNode.Register(route, currentIndex+1, handler)
}
func (node *treeNode) Find(route []string, currentIndex int, routeParams map[string]string) (*treeNode, bool) {
if currentIndex == len(route) {
// Last index: try find handler
if node.Handler != nil {
return node, true
} else {
return nil, false
}
}
// Try find matching children
if n, found := node.Children[route[currentIndex]]; found {
foundNode, found := n.Find(route, currentIndex+1, routeParams) // Recursive find on matching node
if found {
return foundNode, true
}
}
// No matching classic children: try wildcards
for _, wildcardNode := range node.WildCardChildren {
foundNode, found := wildcardNode.Find(route, currentIndex+1, routeParams) // Recursive find on wildcard node
if found {
// Populate url parameters
routeParams[wildcardNode.Content] = route[currentIndex]
return foundNode, true
}
}
// Not found
return nil, false
}