-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathprocess.go
130 lines (109 loc) · 2.74 KB
/
process.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
// Copyright 2012 by sdm. All rights reserved.
// license that can be found in the LICENSE file.
package wk
import (
"strings"
)
// HttpProcessor is interface that handle http request
type HttpProcessor interface {
// Execute handle request
Execute(ctx *HttpContext)
// Register is called once when create a new HttpServer
Register(server *HttpServer)
}
// Process is wrap of HttpProcessor
type Process struct {
// Name
Name string
// Path is url to match, / or empty to match all
// change to regex? containers muti ?
Path string
// Method is http method to match, * or empty to match all
Method string
// Handler is the HttpProcessor
Handler HttpProcessor
}
// match
func (p *Process) match(ctx *HttpContext) bool {
if !strings.HasPrefix(ctx.RequestPath, p.Path) {
return false
}
if p.Method == "*" || p.Method == "" || strings.Contains(p.Method, ctx.Method) {
return true
}
return false
}
// ProcessTable is alias of []*Process
type ProcessTable []*Process
// Append add a *Process at end
func (pt *ProcessTable) Append(p *Process) {
*pt = append(*pt, p)
}
// InsertBefore add a *Process before name
func (pt *ProcessTable) InsertBefore(name string, p *Process) {
for i := 0; i < len(*pt); {
if (*pt)[i].Name == name {
*pt = append(*pt, p)
copy((*pt)[i+1:], (*pt)[i:])
(*pt)[i] = p
return
} else {
i++
}
}
}
// InsertAfter add a *Process after name
func (pt *ProcessTable) InsertAfter(name string, p *Process) {
for i := 0; i < len(*pt); {
if (*pt)[i].Name == name {
*pt = append(*pt, p)
copy((*pt)[i+1:], (*pt)[i+1:])
(*pt)[i+1] = p
return
} else {
i++
}
}
}
// Remove delete a *Process from ProcessTable
func (pt *ProcessTable) Remove(name string) {
for i := 0; i < len(*pt); {
if (*pt)[i].Name == name {
//*pt = append((*pt)[:i], (*pt)[i+1:]...)
copy((*pt)[i:], (*pt)[i+1:])
(*pt)[len((*pt))-1] = nil
(*pt) = (*pt)[:len((*pt))-1]
} else {
i++
}
}
}
// Processes is global ProcessTable configration
var Processes ProcessTable
// init Processes
func init() {
Processes = make([]*Process, 0, 11)
RegisterProcessor(_static, newStaticProcessor())
RegisterProcessor(_route, newRouteProcessor())
RegisterProcessor(_render, newRenderProcessor())
}
// RegisterProcessor append a HttpProcessor to global ProcessTable
func RegisterProcessor(name string, p HttpProcessor) {
process := &Process{
Name: name,
Path: _root,
Method: _any,
Handler: p,
}
Processes.Append(process)
}
// RegisterProcessorWith append a HttpProcessor to global ProcessTable, with field method and path
func RegisterProcessorWith(name string, p HttpProcessor, method, path string) {
process := &Process{
Name: name,
Path: method,
Method: path,
Handler: p,
}
Processes.Append(process)
}