-
Notifications
You must be signed in to change notification settings - Fork 4
/
lentil.go
481 lines (442 loc) · 11.2 KB
/
lentil.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
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
// beanstalkd ( http://kr.github.com/beanstalkd/ ) client library that implements the beanstalkd protocol ( https://github.com/kr/beanstalkd/blob/master/doc/protocol.txt )
package lentil
import (
"bufio"
"errors"
"fmt"
"net"
"os"
"strings"
)
type Beanstalkd struct {
conn net.Conn
reader *bufio.Reader
}
// Size of the reader buffer. Increase to handle large message bodies
var ReaderSize = 4096 // bufio.defaultSize
type Job struct {
Id uint64
Body []byte
}
var Debug *os.File = nil
func (this *Beanstalkd) send(format string, args ...interface{}) error {
if Debug != nil {
fmt.Fprintf(Debug, "(%v) -> ", this.conn)
fmt.Fprintf(Debug, format, args...)
}
_, err := fmt.Fprintf(this.conn, format, args...)
return err
}
func (this *Beanstalkd) recvline() (string, error) {
reply, e := this.reader.ReadString('\n')
if e != nil {
return reply, e
}
if Debug != nil {
fmt.Fprintf(Debug, "(%v) <- %v\n", this.conn, string(reply))
}
return reply, e
}
func (this *Beanstalkd) recvslice() ([]byte, error) {
reply, e := this.reader.ReadSlice('\n')
if e != nil {
return reply, e
}
if Debug != nil {
fmt.Fprintf(Debug, "(%v) <- %v\n", this.conn, string(reply))
}
return reply, e
}
func (this *Beanstalkd) recvdata(data []byte) (int, error) {
c, e := this.reader.Read(data)
if e != nil {
return c, e
}
if Debug != nil {
fmt.Fprintf(Debug, "(%v) <- %v\n", this.conn, string(data))
}
return c, e
}
// Dial opens a connection to beanstalkd. The format of addr is 'host:port', e.g '0.0.0.0:11300'.
func Dial(addr string) (*Beanstalkd, error) {
this := new(Beanstalkd)
var e error
this.conn, e = net.Dial("tcp", addr)
if e != nil {
return nil, e
}
this.reader = bufio.NewReaderSize(this.conn, ReaderSize)
return this, nil
}
// Watch adds the named tube to a consumer's watch list for the current connection.
func (this *Beanstalkd) Watch(tube string) (int, error) {
e := this.send("watch %s\r\n", tube)
if e != nil {
return 0, e
}
reply, e := this.recvline()
if e != nil {
return 0, e
}
var watched int
_, e = fmt.Sscanf(reply, "WATCHING %d\r\n", &watched)
if e != nil {
return 0, errors.New(reply)
}
return watched, nil
}
// Ignore removes the named tube from a consumer's watch list for the current connection
func (this *Beanstalkd) Ignore(tube string) (int, error) {
e := this.send("ignore %s\r\n", tube)
if e != nil {
return 0, e
}
reply, e := this.recvline()
if e != nil {
return 0, e
}
var watched int
_, e = fmt.Sscanf(reply, "WATCHING %d\r\n", &watched)
if e != nil {
return 0, errors.New(reply)
}
return watched, nil
}
// Use is for producers.
// Subsequent Put commands will put jobs into the tube specified by this command.
// If no use command has been issued, jobs will be put into the tube named "default".
func (this *Beanstalkd) Use(tube string) error {
e := this.send("use %s\r\n", tube)
if e != nil {
return e
}
reply, e := this.recvline()
if e != nil {
return e
}
var usedTube string
_, e = fmt.Sscanf(reply, "USING %s\r\n", &usedTube)
if e != nil || tube != usedTube {
return errors.New(reply)
}
return nil
}
// Put inserts a job into the queue.
func (this *Beanstalkd) Put(priority, delay, ttr int, data []byte) (uint64, error) {
e := this.send("put %d %d %d %d\r\n%s\r\n", priority, delay, ttr, len(data), data)
if e != nil {
return 0, e
}
reply, e := this.recvline()
if e != nil {
return 0, e
}
var id uint64
_, e = fmt.Sscanf(reply, "INSERTED %d\r\n", &id)
if e != nil {
return 0, errors.New(reply)
}
return id, nil
}
// Reserve is for processes that want to consume jobs from the queue.
func (this *Beanstalkd) Reserve() (*Job, error) {
e := this.send("reserve\r\n")
if e != nil {
return nil, e
}
return this.handleReserveReply()
}
// ReserveWithTimeout is for processes that want to consume jobs from the queue.
// A timeout value of 0 will cause the server to immediately return either a response or TIMED_OUT.
// A positive timeout value will limit the amount of time the client will block on the reserve request.
func (this *Beanstalkd) ReserveWithTimeout(seconds int) (*Job, error) {
e := this.send("reserve-with-timeout %d\r\n", seconds)
if e != nil {
return nil, e
}
return this.handleReserveReply()
}
func (this *Beanstalkd) handleReserveReply() (*Job, error) {
reply, e := this.recvline()
if e != nil {
return nil, e
}
var id uint64
var bodylen int
_, e = fmt.Sscanf(reply, "RESERVED %d %d\r\n", &id, &bodylen)
if e != nil {
return nil, errors.New(reply)
}
body, e := this.recvslice()
if e != nil {
return nil, e
}
body = body[0 : len(body)-2] // throw away \r\n suffix
if len(body) != bodylen {
return nil, errors.New(fmt.Sprintf("Job body length missmatch %d/%d", len(body), bodylen))
}
job := new(Job)
job.Id = id
job.Body = make([]byte, len(body))
copy(job.Body, body)
return job, nil
}
// Delete removes a job from the server entirely.
// It is normally used by the client when the job has successfully run to completion.
func (this *Beanstalkd) Delete(id uint64) error {
e := this.send("delete %d\r\n", id)
if e != nil {
return e
}
reply, e := this.recvline()
if e != nil {
return e
}
_, e = fmt.Sscanf(reply, "DELETED\r\n")
if e != nil {
return errors.New(reply)
}
return nil
}
// Release puts a reserved job back into the ready queue.
func (this *Beanstalkd) Release(id uint64, pri, delay int) error {
e := this.send("release %d %d %d\r\n", id, pri, delay)
if e != nil {
return e
}
reply, e := this.recvline()
if e != nil {
return e
}
_, e = fmt.Sscanf(reply, "RELEASED\r\n")
if e != nil {
return errors.New(reply)
}
return nil
}
// Bury puts a job into the "buried" state.
func (this *Beanstalkd) Bury(id uint64, pri int) error {
e := this.send("bury %d %d\r\n", id, pri)
if e != nil {
return e
}
reply, e := this.recvline()
if e != nil {
return e
}
_, e = fmt.Sscanf(reply, "BURIED\r\n")
if e != nil {
return errors.New(reply)
}
return nil
}
// Touch allows a worker to request more time to work on a job.
func (this *Beanstalkd) Touch(id uint64) error {
e := this.send("touch %d\r\n", id)
if e != nil {
return e
}
reply, e := this.recvline()
if e != nil {
return e
}
_, e = fmt.Sscanf(reply, "TOUCHED\r\n")
if e != nil {
return errors.New(reply)
}
return nil
}
// Peek lets the client inspect a job in the system.
func (this *Beanstalkd) Peek(id uint64) (*Job, error) {
e := this.send("peek %d\r\n", id)
if e != nil {
return nil, e
}
return this.handlePeekReply()
}
// PeekReady lets the client inspect the first "ready" job.
func (this *Beanstalkd) PeekReady() (*Job, error) {
fmt.Fprintf(this.conn, "peek-ready\r\n")
return this.handlePeekReply()
}
// PeekDelayed lets the client inspect the first "delayed" job.
func (this *Beanstalkd) PeekDelayed() (*Job, error) {
fmt.Fprintf(this.conn, "peek-delayed\r\n")
return this.handlePeekReply()
}
// PeekBuried lets the client inspect the first "buried" job.
func (this *Beanstalkd) PeekBuried() (*Job, error) {
fmt.Fprintf(this.conn, "peek-buried\r\n")
return this.handlePeekReply()
}
func (this *Beanstalkd) handlePeekReply() (*Job, error) {
reply, e := this.recvline()
if e != nil {
return nil, e
}
var id uint64
var bodylen int
_, e = fmt.Sscanf(reply, "FOUND %d %d\r\n", &id, &bodylen)
if e != nil {
return nil, errors.New(reply)
}
body, e := this.recvslice()
if e != nil {
return nil, e
}
body = body[0 : len(body)-2] // throw away \r\n suffix
if len(body) != bodylen {
return nil, errors.New(fmt.Sprintf("Job body length missmatch %d/%d", len(body), bodylen))
}
job := new(Job)
job.Id = id
job.Body = make([]byte, len(body))
copy(job.Body, body)
return job, nil
}
// Kick moves a job to the "ready" queue.
func (this *Beanstalkd) Kick(bound int) (int, error) {
e := this.send("kick %d\r\n", bound)
if e != nil {
return 0, e
}
reply, e := this.recvline()
if e != nil {
return -1, e
}
var count int
_, e = fmt.Sscanf(reply, "KICKED %d\r\n", &count)
if e != nil {
return -1, errors.New(reply)
}
return count, nil
}
// StatsJob returns statistical information about a job.
func (this *Beanstalkd) StatsJob(id uint64) (map[string]string, error) {
e := this.send("stats-job %d\r\n", id)
if e != nil {
return nil, e
}
return this.handleMapResponse()
}
// StatsTube returns statistical information about a tube.
func (this *Beanstalkd) StatsTube(tube string) (map[string]string, error) {
e := this.send("stats-tube %s\r\n", tube)
if e != nil {
return nil, e
}
return this.handleMapResponse()
}
// Stats returns statistical information about the queue.
func (this *Beanstalkd) Stats() (map[string]string, error) {
e := this.send("stats\r\n")
if e != nil {
return nil, e
}
return this.handleMapResponse()
}
func (this *Beanstalkd) handleMapResponse() (map[string]string, error) {
reply, e := this.recvline()
if e != nil {
return nil, e
}
var datalen int
_, e = fmt.Sscanf(reply, "OK %d\r\n", &datalen)
if e != nil {
return nil, errors.New(reply)
}
data := make([]byte, datalen+2) // Add 2 for the trailing \r\n
_, e = this.recvdata(data)
if e != nil {
return nil, e
}
dict := make(map[string]string)
for _, line := range strings.Split(string(data), "\n") {
if strings.Index(line, ":") != -1 {
keyvalue := strings.Split(line, ":")
dict[keyvalue[0]] = strings.TrimSpace(keyvalue[1])
}
}
return dict, nil
}
// ListTubes returns a list of all the existing tubes.
func (this *Beanstalkd) ListTubes() ([]string, error) {
e := this.send("list-tubes\r\n")
if e != nil {
return nil, e
}
return this.handleListResponse()
}
func (this *Beanstalkd) handleListResponse() ([]string, error) {
reply, e := this.recvline()
if e != nil {
return nil, e
}
var datalen int
_, e = fmt.Sscanf(reply, "OK %d\r\n", &datalen)
if e != nil {
return nil, errors.New(reply)
}
data := make([]byte, datalen+2) // Add 2 for the trailing \r\n
_, e = this.recvdata(data)
if e != nil {
return nil, e
}
lines := strings.Split(string(data), "\n")
tubes := make([]string, 0)
for _, line := range lines[1 : len(lines)-2] {
tube := strings.TrimSpace(line)
tube = strings.TrimLeft(tube, "- ")
tubes = append(tubes, tube)
}
return tubes, nil
}
// ListTubeUsed returns the tube currently used by a producer.
func (this *Beanstalkd) ListTubeUsed() (string, error) {
e := this.send("list-tube-used\r\n")
if e != nil {
return "", e
}
var tube string
reply, e := this.recvline()
if e != nil {
return "", e
}
_, e = fmt.Sscanf(reply, "USING %s\r\n", &tube)
if e != nil {
return "", errors.New(reply)
}
return tube, nil
}
// ListTubesWatched returns the list of tubes watched by a consumer.
func (this *Beanstalkd) ListTubesWatched() ([]string, error) {
e := this.send("list-tubes-watched\r\n")
if e != nil {
return nil, e
}
return this.handleListResponse()
}
// Quit closes the connection to the queue.
func (this *Beanstalkd) Quit() error {
e := this.send("quit\r\n")
if e != nil {
return e
}
return this.conn.Close()
}
// PauseTube delays any new job being reserved for a given time.
func (this *Beanstalkd) PauseTube(tube string, delay int) error {
e := this.send("pause-tube %s %d\r\n", tube, delay)
if e != nil {
return e
}
reply, e := this.recvline()
if e != nil {
return e
}
_, e = fmt.Sscanf(reply, "PAUSED\r\n")
if e != nil {
return errors.New(reply)
}
return nil
}