-
Notifications
You must be signed in to change notification settings - Fork 0
/
router.go
131 lines (116 loc) · 2.64 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
package router_toy
import (
"net/http"
"strings"
)
type PathNode struct {
url string
part string
children []*PathNode
isWild bool
Handle http.HandlerFunc
}
func (n *PathNode) insert(url string, fn http.HandlerFunc) {
pathArr := strings.Split(url, "/")
if len(pathArr[0]) == 0 {
pathArr = pathArr[1:]
}
head := n
for k, path := range pathArr {
for _, node := range n.children {
if node.part == path {
node.insert(url, fn)
}
}
var newNode *PathNode
if path[0] == '*' || path[0] == ':' {
newNode = &PathNode{
url: url,
part: path,
children: []*PathNode{},
isWild: true,
}
} else {
newNode = &PathNode{
url: url,
part: path,
children: []*PathNode{},
isWild: false,
}
}
if k == len(pathArr)-1 || path[0] == '*' {
newNode.Handle = fn
}
head.children = append(head.children, newNode)
head = newNode
}
}
func search(url string, root *PathNode) http.HandlerFunc {
urls := strings.Split(url, "/")
if fn := match(root, urls, 0); fn != nil {
return fn
}
return nil
}
func match(p *PathNode, urls []string, height int) http.HandlerFunc {
if urls[height] == p.part || p.isWild {
if height == len(urls)-1 || (len(p.part) > 0 && p.part[0] == '*') {
return p.Handle
}
height++
for _, v := range p.children {
if fn := match(v, urls, height); fn != nil {
return fn
}
}
}
return nil
}
type Router struct {
store map[string]*PathNode
}
func (router *Router) Get(url string, handle http.HandlerFunc) {
router.addRoute("get", url, handle)
}
func (router *Router) Post(url string, handle http.HandlerFunc) {
router.addRoute("post", url, handle)
}
func (router *Router) Put(url string, handle http.HandlerFunc) {
router.addRoute("put", url, handle)
}
func (router *Router) Delete(url string, handle http.HandlerFunc) {
router.addRoute("delete", url, handle)
}
func (router *Router) Option(url string, handle http.HandlerFunc) {
router.addRoute("option", url, handle)
}
func (router *Router) addRoute(method string, url string, handle http.HandlerFunc) {
root := router.store[method]
if root != nil {
root.insert(url, handle)
return
}
root = &PathNode{
url: url,
part: "",
children: []*PathNode{},
isWild: false,
}
root.insert(url, handle)
router.store[method] = root
}
func (router *Router) ServeHTTP(w http.ResponseWriter, r *http.Request) {
url := r.URL.Path
method := r.Method
method = strings.ToLower(method)
if root := router.store[method]; root != nil {
if handle := search(url, root); handle != nil {
handle(w, r)
}
}
}
func New() *Router {
return &Router{
store: map[string]*PathNode{},
}
}