-
Notifications
You must be signed in to change notification settings - Fork 17
/
master.go
257 lines (217 loc) · 4.41 KB
/
master.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
// weed master
package weedo
import (
"errors"
"io"
"log"
"net/http"
"net/url"
"strconv"
)
type Master struct {
Url string
}
func NewMaster(addr string) *Master {
return &Master{
Url: addr,
}
}
// Assign a file key
func (m *Master) Assign() (string, error) {
return m.AssignArgs(url.Values{})
}
// Assign multi file keys
func (m *Master) AssignN(count int) (fid string, err error) {
args := url.Values{}
if count > 0 {
args.Set("count", strconv.Itoa(count))
}
return m.AssignArgs(args)
}
type assignResp struct {
Count int
Fid string
Url string
PublicUrl string
Size int64
Error string
}
// v0.4 or later only
func (m *Master) AssignArgs(args url.Values) (fid string, err error) {
u := url.URL{
Scheme: "http",
Host: m.Url,
Path: "/dir/assign",
RawQuery: args.Encode(),
}
resp, err := http.Get(u.String())
if err != nil {
return
}
defer resp.Body.Close()
assign := new(assignResp)
if err = decodeJson(resp.Body, assign); err != nil {
log.Println(err)
return
}
if assign.Error != "" {
err = errors.New(assign.Error)
log.Println(err)
return
}
fid = assign.Fid
return
}
type lookupResp struct {
Locations []Location
Error string
}
type Location struct {
Url string
PublicUrl string
}
// Lookup Volume
func (m *Master) lookup(volumeId, collection string) (*Volume, error) {
args := url.Values{}
args.Set("volumeId", volumeId)
args.Set("collection", collection)
u := url.URL{
Scheme: "http",
Host: m.Url,
Path: "/dir/lookup",
RawQuery: args.Encode(),
}
resp, err := http.Get(u.String())
if err != nil {
return nil, err
}
defer resp.Body.Close()
lookup := new(lookupResp)
if err = decodeJson(resp.Body, lookup); err != nil {
log.Println(err)
return nil, err
}
if lookup.Error != "" {
return nil, errors.New(lookup.Error)
}
return NewVolume(lookup.Locations), nil
}
// Force Garbage Collection
func (m *Master) GC(threshold float64) error {
args := url.Values{}
args.Set("garbageThreshold", strconv.FormatFloat(threshold, 'f', -1, 64))
u := url.URL{
Scheme: "http",
Host: m.Url,
Path: "/vol/vacuum",
RawQuery: args.Encode(),
}
resp, err := http.Get(u.String())
if err != nil {
return err
}
defer resp.Body.Close()
// TODO: handle result
return nil
}
// Pre-Allocate Volumes
func (m *Master) Grow(count int, collection, replication, dataCenter string) error {
args := url.Values{}
if count > 0 {
args.Set("count", strconv.Itoa(count))
}
args.Set("collection", collection)
args.Set("replication", replication)
args.Set("dataCenter", dataCenter)
return m.GrowArgs(args)
}
// v0.4 or later only
func (m *Master) GrowArgs(args url.Values) error {
u := url.URL{
Scheme: "http",
Host: m.Url,
Path: "/vol/grow",
RawQuery: args.Encode(),
}
resp, err := http.Get(u.String())
resp.Body.Close()
return err
}
func (m *Master) Submit(filename, mimeType string, file io.Reader) (fid string, size int64, err error) {
return m.SubmitArgs(filename, mimeType, file, url.Values{})
}
// Upload File Directly
func (m *Master) SubmitArgs(filename, mimeType string, file io.Reader, args url.Values) (fid string, size int64, err error) {
data, contentType, err := makeFormData(filename, mimeType, file)
if err != nil {
return
}
u := url.URL{
Scheme: "http",
Host: m.Url,
Path: "/submit",
RawQuery: args.Encode(),
}
resp, err := upload(u.String(), contentType, data)
if err == nil {
fid = resp.Fid
size = resp.Size
}
return
}
type systemStatus struct {
Topology topology
Version string
Error string
}
type topology struct {
DataCenters []dataCenter
Free int
Max int
Layouts []layout
}
type dataCenter struct {
Free int
Max int
Racks []rack
}
type rack struct {
DataNodes []dataNode
Free int
Max int
}
type dataNode struct {
Free int
Max int
PublicUrl string
Url string
Volumes int
}
type layout struct {
Replication string
Writables []uint64
}
// Check System Status
func (m *Master) Status() (err error) {
u := url.URL{
Scheme: "http",
Host: m.Url,
Path: "/dir/status",
}
resp, err := http.Get(u.String())
if err != nil {
return
}
defer resp.Body.Close()
status := new(systemStatus)
if err = decodeJson(resp.Body, status); err != nil {
log.Println(err)
return
}
if status.Error != "" {
err = errors.New(status.Error)
log.Println(err)
return
}
return
}