-
Notifications
You must be signed in to change notification settings - Fork 0
/
item.go
325 lines (275 loc) · 7.42 KB
/
item.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
package pubsubjobs
import (
"context"
stderr "errors"
"fmt"
"maps"
"strconv"
"sync/atomic"
"time"
"cloud.google.com/go/pubsub"
"github.com/goccy/go-json"
"go.uber.org/zap"
"github.com/roadrunner-server/api/v4/plugins/v4/jobs"
"github.com/roadrunner-server/errors"
)
var _ jobs.Job = (*Item)(nil)
type Item struct {
// Job contains the pluginName of job broker (usually PHP class).
Job string `json:"job"`
// Ident is a unique identifier of the job, should be provided from outside
Ident string `json:"id"`
// Payload is string data (usually JSON) passed to Job broker.
Payload []byte `json:"payload"`
// Headers with key-values pairs
headers map[string][]string
// Options contain a set of PipelineOptions specific to job execution. Can be empty.
Options *Options `json:"options,omitempty"`
}
// Options carry information about how to handle a given job.
type Options struct {
// Priority is job priority, default - 10
// pointer to distinguish 0 as a priority and nil as a priority not set
Priority int64 `json:"priority"`
// Pipeline manually specified pipeline.
Pipeline string `json:"pipeline,omitempty"`
// Delay defines time duration to delay execution for. Defaults to none.
Delay int64 `json:"delay,omitempty"`
// AutoAck option
AutoAck bool `json:"auto_ack"`
// AMQP Queue
Queue string `json:"queue,omitempty"`
// Private ================
requeueFn func(ctx context.Context, job *Item) error
message *pubsub.Message
stopped *uint64
}
// DelayDuration returns delay duration in the form of time.Duration.
func (o *Options) DelayDuration() time.Duration {
return time.Second * time.Duration(o.Delay)
}
func (i *Item) ID() string {
return i.Ident
}
func (i *Item) Priority() int64 {
return i.Options.Priority
}
func (i *Item) GroupID() string {
return i.Options.Pipeline
}
// Body packs job payload into binary payload.
func (i *Item) Body() []byte {
return i.Payload
}
func (i *Item) Headers() map[string][]string {
return i.headers
}
// Context packs job context (job, id) into binary payload.
// Not used in the amqp, amqp.Table used instead
func (i *Item) Context() ([]byte, error) {
ctx, err := json.Marshal(
struct {
ID string `json:"id"`
Job string `json:"job"`
Driver string `json:"driver"`
Queue string `json:"queue"`
Headers map[string][]string `json:"headers"`
Pipeline string `json:"pipeline"`
}{
ID: i.Ident,
Job: i.Job,
Driver: pluginName,
Headers: i.headers,
Queue: i.Options.Queue,
Pipeline: i.Options.Pipeline,
},
)
if err != nil {
return nil, err
}
return ctx, nil
}
func (i *Item) Ack() error {
if atomic.LoadUint64(i.Options.stopped) == 1 {
return errors.Str("failed to acknowledge the JOB, the pipeline is probably stopped")
}
// return in case of auto-ack
if i.Options.AutoAck {
return nil
}
i.Options.message.Ack()
return nil
}
func (i *Item) Nack() error {
if atomic.LoadUint64(i.Options.stopped) == 1 {
return errors.Str("failed to acknowledge the JOB, the pipeline is probably stopped")
}
// message already deleted
if i.Options.AutoAck {
return nil
}
i.Options.message.Nack()
return nil
}
func (i *Item) NackWithOptions(requeue bool, _ int) error {
if atomic.LoadUint64(i.Options.stopped) == 1 {
return errors.Str("failed to acknowledge the JOB, the pipeline is probably stopped")
}
// message already deleted
if i.Options.AutoAck {
return nil
}
if requeue {
err := i.Requeue(nil, 0)
if err != nil {
return err
}
// ack the previous message
ctx, cancel := context.WithTimeout(context.Background(), time.Minute)
ar, err := i.Options.message.AckWithResult().Get(ctx)
cancel()
if err != nil {
return handleResult(err, ar)
}
return nil
}
ctx, cancel := context.WithTimeout(context.Background(), time.Minute)
nr, err := i.Options.message.NackWithResult().Get(ctx)
cancel()
if err != nil {
return handleResult(err, nr)
}
return nil
}
// Requeue is a non-native method, it's used to requeue the message back to the queue but with new headers
func (i *Item) Requeue(headers map[string][]string, _ int) error {
if atomic.LoadUint64(i.Options.stopped) == 1 {
return errors.Str("failed to acknowledge the JOB, the pipeline is probably stopped")
}
// message already deleted
if i.Options.AutoAck {
return nil
}
if i.headers == nil {
i.headers = make(map[string][]string, 2)
}
if len(headers) > 0 {
maps.Copy(i.headers, headers)
}
// requeue the message
err := i.Options.requeueFn(context.Background(), i)
if err != nil {
// Nack on fail
ctx, cancel := context.WithTimeout(context.Background(), time.Minute)
nr, err2 := i.Options.message.NackWithResult().Get(ctx)
cancel()
return handleResult(stderr.Join(err, err2), nr)
}
ctx, cancel := context.WithTimeout(context.Background(), time.Minute)
ar, err := i.Options.message.AckWithResult().Get(ctx)
cancel()
if err != nil {
return handleResult(err, ar)
}
return nil
}
func (i *Item) Respond(_ []byte, _ string) error {
return nil
}
func fromJob(job jobs.Message) *Item {
return &Item{
Job: job.Name(),
Ident: job.ID(),
Payload: job.Payload(),
headers: job.Headers(),
Options: &Options{
Priority: job.Priority(),
Pipeline: job.GroupID(),
Delay: job.Delay(),
AutoAck: job.AutoAck(),
},
}
}
func (d *Driver) unpack(message *pubsub.Message) *Item {
attributes := message.Attributes
var rrid string
if val, ok := attributes[jobs.RRID]; ok {
rrid = val
}
var rrj string
if val, ok := attributes[jobs.RRJob]; ok {
rrj = val
}
h := make(map[string][]string)
if val, ok := attributes[jobs.RRHeaders]; ok {
err := json.Unmarshal([]byte(val), &h)
if err != nil {
d.log.Debug("failed to unpack the headers, not a JSON", zap.Error(err))
}
}
var autoAck bool
if val, ok := attributes[jobs.RRAutoAck]; ok {
autoAck = stob(val)
}
var dl int
var err error
if val, ok := attributes[jobs.RRDelay]; ok {
dl, err = strconv.Atoi(val)
if err != nil {
d.log.Debug("failed to unpack the delay, not a number", zap.Error(err))
}
}
var priority int
if val, ok := attributes[jobs.RRPriority]; ok {
priority, err = strconv.Atoi(val)
if err != nil {
priority = int((*d.pipeline.Load()).Priority())
d.log.Debug("failed to unpack the priority; inheriting the pipeline's default priority", zap.Error(err))
}
}
return &Item{
Job: rrj,
Ident: rrid,
Payload: message.Data,
headers: h,
Options: &Options{
AutoAck: autoAck,
Delay: int64(dl),
Priority: int64(priority),
Pipeline: (*d.pipeline.Load()).Name(),
// private
message: message,
stopped: &d.stopped,
requeueFn: d.handlePush,
},
}
}
func btos(b bool) string {
if b {
return "true"
}
return "false"
}
func stob(s string) bool {
if s != "" {
return s == "true"
}
return false
}
func handleResult(err error, ar pubsub.AcknowledgeStatus) error {
switch ar {
case pubsub.AcknowledgeStatusSuccess:
// no error
return nil
case pubsub.AcknowledgeStatusPermissionDenied:
return fmt.Errorf("acknowledge status: PermissionDenied, err: %w", err)
case pubsub.AcknowledgeStatusFailedPrecondition:
return fmt.Errorf("acknowledge status: FailedPrecondition, err: %w", err)
case pubsub.AcknowledgeStatusInvalidAckID:
return fmt.Errorf("acknowledge status: InvalidAckID, err: %w", err)
case pubsub.AcknowledgeStatusOther:
return fmt.Errorf("acknowledge status: Other, err: %w", err)
default:
return err
}
}