forked from beanstalkd/go-beanstalk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
conn.go
252 lines (231 loc) · 5.95 KB
/
conn.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
package beanstalk
import (
"fmt"
"io"
"net"
"net/textproto"
"strings"
"time"
)
// A Conn represents a connection to a beanstalkd server. It consists
// of a default Tube and TubeSet as well as the underlying network
// connection. The embedded types carry methods with them; see the
// documentation of those types for details.
type Conn struct {
c *textproto.Conn
used string
watched map[string]bool
Tube
TubeSet
}
var (
space = []byte{' '}
crnl = []byte{'\r', '\n'}
yamlHead = []byte{'-', '-', '-', '\n'}
nl = []byte{'\n'}
colonSpace = []byte{':', ' '}
minusSpace = []byte{'-', ' '}
)
// NewConn returns a new Conn using conn for I/O.
func NewConn(conn io.ReadWriteCloser) *Conn {
c := new(Conn)
c.c = textproto.NewConn(conn)
c.Tube = Tube{c, "default"}
c.TubeSet = *NewTubeSet(c, "default")
c.used = "default"
c.watched = map[string]bool{"default": true}
return c
}
// Dial connects to the given address on the given network using net.Dial
// and then returns a new Conn for the connection.
func Dial(network, addr string) (*Conn, error) {
c, err := net.Dial(network, addr)
if err != nil {
return nil, err
}
return NewConn(c), nil
}
// Close closes the underlying network connection.
func (c *Conn) Close() error {
return c.c.Close()
}
func (c *Conn) cmd(t *Tube, ts *TubeSet, body []byte, op string, args ...interface{}) (req, error) {
r := req{c.c.Next(), op}
c.c.StartRequest(r.id)
err := c.adjustTubes(t, ts)
if err != nil {
return req{}, err
}
if body != nil {
args = append(args, len(body))
}
c.printLine(string(op), args...)
if body != nil {
c.c.W.Write(body)
c.c.W.Write(crnl)
}
err = c.c.W.Flush()
if err != nil {
return req{}, ConnError{c, op, err}
}
c.c.EndRequest(r.id)
return r, nil
}
func (c *Conn) adjustTubes(t *Tube, ts *TubeSet) error {
if t != nil && t.Name != c.used {
if err := checkName(t.Name); err != nil {
return err
}
c.printLine("use", t.Name)
c.used = t.Name
}
if ts != nil {
for s := range ts.Name {
if !c.watched[s] {
if err := checkName(s); err != nil {
return err
}
c.printLine("watch", s)
}
}
for s := range c.watched {
if !ts.Name[s] {
c.printLine("ignore", s)
}
}
c.watched = make(map[string]bool)
for s := range ts.Name {
c.watched[s] = true
}
}
return nil
}
// does not flush
func (c *Conn) printLine(cmd string, args ...interface{}) {
io.WriteString(c.c.W, cmd)
for _, a := range args {
c.c.W.Write(space)
fmt.Fprint(c.c.W, a)
}
c.c.W.Write(crnl)
}
func (c *Conn) readResp(r req, readBody bool, f string, a ...interface{}) (body []byte, err error) {
c.c.StartResponse(r.id)
defer c.c.EndResponse(r.id)
line, err := c.c.ReadLine()
for strings.HasPrefix(line, "WATCHING ") || strings.HasPrefix(line, "USING ") {
line, err = c.c.ReadLine()
}
if err != nil {
return nil, ConnError{c, r.op, err}
}
toScan := line
if readBody {
var size int
toScan, size, err = parseSize(toScan)
if err != nil {
return nil, ConnError{c, r.op, err}
}
body = make([]byte, size+2) // include trailing CR NL
_, err = io.ReadFull(c.c.R, body)
if err != nil {
return nil, ConnError{c, r.op, err}
}
body = body[:size] // exclude trailing CR NL
}
err = scan(toScan, f, a...)
if err != nil {
return nil, ConnError{c, r.op, err}
}
return body, nil
}
// Delete deletes the given job.
func (c *Conn) Delete(id uint64) error {
r, err := c.cmd(nil, nil, nil, "delete", id)
if err != nil {
return err
}
_, err = c.readResp(r, false, "DELETED")
return err
}
// Release tells the server to perform the following actions:
// set the priority of the given job to pri, remove it from the list of
// jobs reserved by c, wait delay seconds, then place the job in the
// ready queue, which makes it available for reservation by any client.
func (c *Conn) Release(id uint64, pri uint32, delay time.Duration) error {
r, err := c.cmd(nil, nil, nil, "release", id, pri, dur(delay))
if err != nil {
return err
}
_, err = c.readResp(r, false, "RELEASED")
return err
}
// Bury places the given job in a holding area in the job's tube and
// sets its priority to pri. The job will not be scheduled again until it
// has been kicked; see also the documentation of Kick.
func (c *Conn) Bury(id uint64, pri uint32) error {
r, err := c.cmd(nil, nil, nil, "bury", id, pri)
if err != nil {
return err
}
_, err = c.readResp(r, false, "BURIED")
return err
}
// Touch resets the reservation timer for the given job.
// It is an error if the job isn't currently reserved by c.
// See the documentation of Reserve for more details.
func (c *Conn) Touch(id uint64) error {
r, err := c.cmd(nil, nil, nil, "touch", id)
if err != nil {
return err
}
_, err = c.readResp(r, false, "TOUCHED")
return err
}
// Peek gets a copy of the specified job from the server.
func (c *Conn) Peek(id uint64) (body []byte, err error) {
r, err := c.cmd(nil, nil, nil, "peek", id)
if err != nil {
return nil, err
}
return c.readResp(r, true, "FOUND %d", &id)
}
// Stats retrieves global statistics from the server.
func (c *Conn) Stats() (map[string]string, error) {
r, err := c.cmd(nil, nil, nil, "stats")
if err != nil {
return nil, err
}
body, err := c.readResp(r, true, "OK")
return parseDict(body), err
}
// StatsJob retrieves statistics about the given job.
func (c *Conn) StatsJob(id uint64) (map[string]string, error) {
r, err := c.cmd(nil, nil, nil, "stats-job", id)
if err != nil {
return nil, err
}
body, err := c.readResp(r, true, "OK")
return parseDict(body), err
}
// ListTubes returns the names of the tubes that currently
// exist on the server.
func (c *Conn) ListTubes() ([]string, error) {
r, err := c.cmd(nil, nil, nil, "list-tubes")
if err != nil {
return nil, err
}
body, err := c.readResp(r, true, "OK")
return parseList(body), err
}
func scan(input, format string, a ...interface{}) error {
_, err := fmt.Sscanf(input, format, a...)
if err != nil {
return findRespError(input)
}
return nil
}
type req struct {
id uint
op string
}