-
Notifications
You must be signed in to change notification settings - Fork 1
/
client.go
261 lines (236 loc) · 7.33 KB
/
client.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
package tasq
import (
"bytes"
"encoding/json"
"io"
"net/http"
"net/url"
"path"
"strconv"
"strings"
"time"
"github.com/pkg/errors"
)
const DefaultKeepaliveInterval = time.Second * 30
// A Task stores information about a popped task.
type Task struct {
ID string `json:"id"`
Contents string `json:"contents"`
}
// QueueCounts stores the number of in-progress, pending, and completed tasks.
type QueueCounts struct {
Completed int64 `json:"completed"`
Pending int64 `json:"pending"`
Expired int64 `json:"expired"`
Running int64 `json:"running"`
}
// A Client makes API calls to a tasq server.
//
// The server is identified as a URL. For example, you might provide a parsed
// URL "http://myserver.com:8080". The path in the URL is appended with API
// endpoint paths, but the protocol, host, and port are retained.
type Client struct {
URL *url.URL
// Provide to enable basic auth.
Username string
Password string
// KeepaliveInterval is used for the keepalive Goroutine created by the
// PopRunningTask method. Defaults to DefaultKeepaliveInterval.
KeepaliveInterval time.Duration
}
// NewClient creates a client with a base server URL.
//
// Optionally, a context name can be passed to scope the task queue,
// as well as a username and password.
//
// Returns an error if the URL fails to parse.
func NewClient(baseURL string, contextUserPass ...string) (*Client, error) {
if len(contextUserPass) != 1 && len(contextUserPass) != 3 {
panic("zero or one context arguments expected")
}
parsed, err := url.Parse(baseURL)
if err != nil {
return nil, errors.Wrap(err, "new client")
}
if len(contextUserPass) > 0 {
parsed.RawQuery = (url.Values{"context": contextUserPass[:1]}).Encode()
}
res := &Client{URL: parsed}
if len(contextUserPass) == 3 {
res.Username = contextUserPass[1]
res.Password = contextUserPass[2]
}
return res, nil
}
// Push adds a task to the queue and returns its ID.
func (c *Client) Push(contents string) (string, error) {
var response string
err := c.postForm("/task/push", "contents", contents, &response)
return response, err
}
// PushBatch adds a batch of tasks to the queue and return their IDs.
func (c *Client) PushBatch(contents []string) ([]string, error) {
var response []string
err := c.postJSON("/task/push_batch", contents, &response)
return response, err
}
// Pop retrieves a pending task from the queue.
//
// If no task is returned, a retry time may be returned indicating the number
// of seconds until the next in-progress task will expire. If this retry time
// is also nil, then the queue has been exhausted.
func (c *Client) Pop() (*Task, *float64, error) {
var response struct {
ID *string `json:"id"`
Contents *string `json:"contents"`
Done bool `json:"done"`
Retry float64 `json:"retry"`
}
if err := c.get("/task/pop", &response); err != nil {
return nil, nil, err
}
if response.ID != nil && response.Contents != nil {
return &Task{ID: *response.ID, Contents: *response.Contents}, nil, nil
} else if response.Done {
return nil, nil, nil
} else {
return nil, &response.Retry, nil
}
}
// PopBatch retrieves at most n tasks from the queue.
//
// If fewer than n tasks are returned, then a retry time (in seconds) may be
// returned to indicate when the next pending task will expire.
//
// If no tasks are returned and the retry time is nil, then the queue has been
// exhausted.
func (c *Client) PopBatch(n int) ([]*Task, *float64, error) {
var response struct {
Done bool `json:"done"`
Retry float64 `json:"retry"`
Tasks []*Task `json:"tasks"`
}
if err := c.postForm("/task/pop_batch", "count", strconv.Itoa(n), &response); err != nil {
return nil, nil, err
}
if response.Done {
return nil, nil, nil
} else {
return response.Tasks, &response.Retry, nil
}
}
// PopRunningTask pops a task from the queue, potentially blocking until a task
// becomes available, and returns a new *RunningTask.
//
// If no tasks are pending, nil is returned.
//
// If a *RunningTask is successfully returned, the caller must call Completed()
// or Cancel() on it to clean up resources.
func (c *Client) PopRunningTask() (*RunningTask, error) {
for {
task, wait, err := c.Pop()
if err != nil {
return nil, err
} else if task != nil {
interval := c.KeepaliveInterval
if interval == 0 {
interval = DefaultKeepaliveInterval
}
return newRunningTask(c, task.Contents, task.ID, interval), nil
} else if wait != nil {
time.Sleep(time.Duration(float64(time.Second) * (*wait)))
} else {
return nil, nil
}
}
}
// Completed tells the server that the identified task was completed.
func (c *Client) Completed(id string) error {
return c.postForm("/task/completed", "id", id, nil)
}
// CompletedBatch tells the server that the identified tasks were completed.
func (c *Client) CompletedBatch(ids []string) error {
return c.postJSON("/task/completed_batch", ids, nil)
}
// Completed tells the server to restart the timeout window for an in-progress
// task.
func (c *Client) Keepalive(id string) error {
return c.postForm("/task/keepalive", "id", id, nil)
}
// QueueCounts gets the number of tasks in each queue.
func (c *Client) QueueCounts() (*QueueCounts, error) {
var result QueueCounts
if err := c.get("/counts", &result); err != nil {
return nil, err
}
return &result, nil
}
func (c *Client) get(path string, output interface{}) error {
reqURL := c.urlForPath(path)
req, err := http.NewRequest("GET", reqURL.String(), nil)
if err != nil {
return errors.Wrap(err, "get "+path)
}
if c.Username != "" || c.Password != "" {
req.SetBasicAuth(c.Username, c.Password)
}
resp, err := http.DefaultClient.Do(req)
if err := c.handleResponse(resp, err, output); err != nil {
return errors.Wrap(err, "get "+path)
}
return nil
}
func (c *Client) postForm(path, key, value string, output interface{}) error {
postBody := strings.NewReader(url.QueryEscape(key) + "=" + url.QueryEscape(value))
return c.post(path, "application/x-www-form-urlencoded", postBody, output)
}
func (c *Client) postJSON(path string, input, output interface{}) error {
data, err := json.Marshal(input)
if err != nil {
return errors.Wrap(err, "post "+path)
}
return c.post(path, "application/json", bytes.NewReader(data), output)
}
func (c *Client) post(path string, contentType string, input io.Reader, output interface{}) error {
reqURL := c.urlForPath(path)
req, err := http.NewRequest("POST", reqURL.String(), input)
if err != nil {
return errors.Wrap(err, "get "+path)
}
req.Header.Set("content-type", contentType)
if c.Username != "" || c.Password != "" {
req.SetBasicAuth(c.Username, c.Password)
}
resp, err := http.DefaultClient.Do(req)
if err := c.handleResponse(resp, err, output); err != nil {
return errors.Wrap(err, "post "+path)
}
return nil
}
func (c *Client) handleResponse(resp *http.Response, err error, output interface{}) error {
if err != nil {
return err
}
defer resp.Body.Close()
var response struct {
Error *string `json:"error"`
Data interface{} `json:"data"`
}
response.Data = output
if err := json.NewDecoder(resp.Body).Decode(&response); err != nil {
return err
} else if response.Error != nil {
return errors.New("remote error: " + *response.Error)
} else {
return nil
}
}
func (c *Client) urlForPath(p string) *url.URL {
u := *c.URL
if u.Path == "/" || u.Path == "" {
u.Path = p
} else {
u.Path = path.Join(u.Path, p)
}
return &u
}