forked from hanguofeng/taiji
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathhttp_action_rest.go
264 lines (211 loc) · 6.79 KB
/
http_action_rest.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
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
package main
import (
"net/http"
"strconv"
"strings"
"github.com/gorilla/mux"
)
type callbackManagerData struct {
Url string `json:"url"`
GroupName string `json:"group"`
Topics []string `json:"topics"`
}
type topicPartitionsData struct {
Url string `json:"url"`
GroupName string `json:"group"`
Topic string `json:"topic"`
Partitions []int32 `json:"partitions"`
}
type partitionManagerData struct {
Url string `json:"url"`
GroupName string `json:"group"`
Topic string `json:"topic"`
Partition int32 `json:"partition"`
PartitionConsumer interface{} `json:"partition_consumer"`
Arbiter interface{} `json:"arbiter"`
Transporter interface{} `json:"transporter"`
}
type offsetStorageData struct {
Master interface{} `json:"master"`
Slaves map[string]interface{} `json:"slaves"`
}
func findCallbackManagerByGroup(groupName string) *CallbackManager {
if groupName == "" {
return nil
}
groupName = strings.ToLower(groupName)
for _, manager := range GetServer().GetCallbackManagers() {
if manager.GroupName == groupName {
return manager
}
}
return nil
}
func findPartitionManagerByTopic(manager *CallbackManager, topic string) []*PartitionManager {
if topic == "" || manager == nil {
return nil
}
found := false
var res []*PartitionManager
for _, t := range manager.Topics {
if t == topic {
found = true
break
}
}
if found {
for _, partitionManager := range manager.GetPartitionManagers() {
if partitionManager.Topic == topic {
res = append(res, partitionManager)
}
}
}
return res
}
func init() {
// new REST interface
// /config, Get config object
GetServer().GetAdminServerRouter().HandleFunc("/config", func(w http.ResponseWriter, r *http.Request) {
code := 0
jsonify(w, r, GetServer().GetConfig(), code)
})
// /callbacks, Get CallbackManagers
GetServer().GetAdminServerRouter().HandleFunc("/callbacks", func(w http.ResponseWriter, r *http.Request) {
code := 0
var res []callbackManagerData
for _, manager := range GetServer().GetCallbackManagers() {
res = append(res, callbackManagerData{
Url: manager.Url,
GroupName: manager.GroupName,
Topics: manager.Topics,
})
}
jsonify(w, r, res, code)
})
// /callbacks/{group}, Get specified CallbackManager
GetServer().GetAdminServerRouter().HandleFunc("/callbacks/{group}", func(w http.ResponseWriter, r *http.Request) {
if manager := findCallbackManagerByGroup(mux.Vars(r)["group"]); manager != nil {
code := 0
jsonify(w, r, callbackManagerData{
Url: manager.Url,
GroupName: manager.GroupName,
Topics: manager.Topics,
}, code)
return
}
http.NotFound(w, r)
})
// /callbacks/{group}/topics/{topic}, Get subscribed partitions of specified topics
GetServer().GetAdminServerRouter().HandleFunc("/callbacks/{group}/topics/{topic}", func(w http.ResponseWriter, r *http.Request) {
muxVars := mux.Vars(r)
if manager := findCallbackManagerByGroup(muxVars["group"]); manager != nil {
var topics []string
switch muxVars["topic"] {
case "*", "":
// get first topic
topics = manager.Topics
default:
topics = append(topics, muxVars["topic"])
}
var result []topicPartitionsData
code := 0
for _, topic := range topics {
if partitionManagers := findPartitionManagerByTopic(manager, topic); len(partitionManagers) > 0 {
// found partitionManager matches this topic
var res topicPartitionsData
res.Url = manager.Url
res.GroupName = manager.GroupName
res.Topic = topic
for _, partitionManager := range partitionManagers {
res.Partitions = append(res.Partitions, partitionManager.Partition)
}
result = append(result, res)
}
}
jsonify(w, r, result, code)
return
}
http.NotFound(w, r)
})
// /callbacks/{group}/topics/{topic}/partitions/{partition}, Get PartitionManager
GetServer().GetAdminServerRouter().HandleFunc("/callbacks/{group}/topics/{topic}/partitions/{partition}", func(w http.ResponseWriter, r *http.Request) {
muxVars := mux.Vars(r)
if manager := findCallbackManagerByGroup(muxVars["group"]); manager != nil {
var topics []string
switch muxVars["topic"] {
case "*", "":
// get all topics
topics = manager.Topics
default:
topics = append(topics, muxVars["topic"])
}
var result []partitionManagerData
code := 0
for _, topic := range topics {
if partitionManagers := findPartitionManagerByTopic(manager, topic); len(partitionManagers) > 0 {
// found partitionManager matches this topic
// find partitions matches our need
applyFilter := false
switch muxVars["partition"] {
case "*", "":
// get all partitions
applyFilter = false
default:
applyFilter = true
}
var partitionFilter int32
if applyFilter {
if partition, err := strconv.ParseInt(muxVars["partition"], 10, 32 /* partition in int32 */); err != nil {
applyFilter = false
} else {
partitionFilter = int32(partition)
}
}
for _, partitionManager := range partitionManagers {
if !applyFilter || partitionManager.Partition == partitionFilter {
var res partitionManagerData
res.Url = manager.Url
res.GroupName = manager.GroupName
res.Topic = topic
res.Partition = partitionManager.Partition
res.Arbiter = partitionManager.GetArbiter().GetStat()
res.PartitionConsumer = partitionManager.GetPartitionConsumer().GetStat()
res.Transporter = partitionManager.GetTransporter().GetStat()
result = append(result, res)
}
}
}
}
jsonify(w, r, result, code)
return
}
http.NotFound(w, r)
})
// /callbacks/{group}/offsets, Get OffsetManager
GetServer().GetAdminServerRouter().HandleFunc("/callbacks/{group}/offsets", func(w http.ResponseWriter, r *http.Request) {
muxVars := mux.Vars(r)
if manager := findCallbackManagerByGroup(muxVars["group"]); manager != nil {
code := 0
offsets := stringKeyOffsetMap(manager.GetOffsetManager().GetOffsets())
jsonify(w, r, offsets, code)
return
}
http.NotFound(w, r)
})
// /callbacks/{group}/offsets/storages, Get OffsetStorage
GetServer().GetAdminServerRouter().HandleFunc("/callbacks/{group}/offsets/storages", func(w http.ResponseWriter, r *http.Request) {
muxVars := mux.Vars(r)
if manager := findCallbackManagerByGroup(muxVars["group"]); manager != nil {
var res offsetStorageData
res.Master = manager.GetOffsetManager().GetMasterOffsetStorage().GetStat()
res.Slaves = make(map[string]interface{})
for name, offsetStorage := range manager.GetOffsetManager().GetSlaveOffsetStorage() {
res.Slaves[name] = offsetStorage.GetStat()
}
code := 0
jsonify(w, r, res, code)
return
}
http.NotFound(w, r)
})
}