forked from labstack/echo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
router.go
239 lines (217 loc) · 4.17 KB
/
router.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
package echo
import "net/http"
type (
router struct {
trees map[string]*node
echo *Echo
}
node struct {
label byte
prefix string
has ntype // Type of node it contains
handler HandlerFunc
echo *Echo
edges edges
}
edges []*node
ntype byte
param struct {
Name string
Value string
}
Params []param
)
const (
snode ntype = iota // Static node
pnode // Param node
anode // Catch-all node
)
func NewRouter(e *Echo) (r *router) {
r = &router{
trees: make(map[string]*node),
echo: e,
}
for _, m := range methods {
r.trees[m] = &node{
prefix: "",
edges: edges{},
}
}
return
}
func (r *router) Add(method, path string, h HandlerFunc, echo *Echo) {
i := 0
l := len(path)
for ; i < l; i++ {
if path[i] == ':' {
r.insert(method, path[:i], nil, echo, pnode)
for ; i < l && path[i] != '/'; i++ {
}
if i == l {
r.insert(method, path[:i], h, echo, snode)
return
}
r.insert(method, path[:i], nil, echo, snode)
} else if path[i] == '*' {
r.insert(method, path[:i], h, echo, anode)
}
}
r.insert(method, path, h, echo, snode)
}
func (r *router) insert(method, path string, h HandlerFunc, echo *Echo, has ntype) {
cn := r.trees[method] // Current node as root
search := path
for {
sl := len(search)
pl := len(cn.prefix)
l := lcp(search, cn.prefix)
if l == 0 {
// At root node
cn.label = search[0]
cn.prefix = search
cn.has = has
if h != nil {
cn.handler = h
cn.echo = echo
}
return
} else if l < pl {
// Split the node
n := newNode(cn.prefix[l:], cn.has, cn.handler, cn.echo, cn.edges)
cn.edges = edges{n} // Add to parent
// Reset parent node
cn.label = cn.prefix[0]
cn.prefix = cn.prefix[:l]
cn.has = snode
cn.handler = nil
cn.echo = nil
if l == sl {
// At parent node
cn.handler = h
cn.echo = echo
} else {
// Need to fork a node
n = newNode(search[l:], has, h, echo, edges{})
cn.edges = append(cn.edges, n)
}
break
} else if l < sl {
search = search[l:]
e := cn.findEdge(search[0])
if e == nil {
n := newNode(search, has, h, echo, edges{})
cn.edges = append(cn.edges, n)
break
} else {
cn = e
}
} else {
// Node already exists
if h != nil {
cn.handler = h
cn.echo = echo
}
break
}
}
}
func newNode(pfx string, has ntype, h HandlerFunc, echo *Echo, e edges) (n *node) {
n = &node{
label: pfx[0],
prefix: pfx,
has: has,
handler: h,
echo: echo,
edges: e,
}
return
}
func (n *node) findEdge(l byte) *node {
for _, e := range n.edges {
if e.label == l {
return e
}
}
return nil
}
// Length of longest common prefix
func lcp(a, b string) (i int) {
max := len(a)
l := len(b)
if l < max {
max = l
}
for ; i < max && a[i] == b[i]; i++ {
}
return
}
func (r *router) Find(method, path string) (h HandlerFunc, c *Context, echo *Echo) {
c = r.echo.pool.Get().(*Context)
cn := r.trees[method] // Current node as root
search := path
n := 0 // Param count
for {
if search == "" || search == cn.prefix {
h = cn.handler
echo = cn.echo
return
}
pl := len(cn.prefix)
l := lcp(search, cn.prefix)
if l == pl {
search = search[l:]
switch cn.has {
case pnode:
cn = cn.edges[0]
i := 0
l = len(search)
for ; i < l && search[i] != '/'; i++ {
}
p := c.params[:n+1]
p[n].Name = cn.prefix[1:]
p[n].Value = search[:i]
n++
search = search[i:]
if i == l {
// All params read
continue
}
case anode:
p := c.params[:n+1]
p[n].Name = "_name"
p[n].Value = search
search = "" // End search
continue
}
e := cn.findEdge(search[0])
if e == nil {
// Not found
return
}
cn = e
continue
} else {
// Not found
return
}
}
}
// Get returns path parameter by name.
func (ps Params) Get(n string) (v string) {
for _, p := range ps {
if p.Name == n {
v = p.Value
}
}
return
}
func (r *router) ServeHTTP(rw http.ResponseWriter, req *http.Request) {
h, c, _ := r.Find(req.Method, req.URL.Path)
c.Response.ResponseWriter = rw
if h != nil {
h(c)
} else {
r.echo.notFoundHandler(c)
}
r.echo.pool.Put(c)
}