-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathitem.go
237 lines (200 loc) · 5.19 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
package pubsubjobs
import (
"strconv"
"sync/atomic"
"time"
"unsafe"
"cloud.google.com/go/pubsub"
"github.com/goccy/go-json"
"go.uber.org/zap"
"github.com/roadrunner-server/api/v4/plugins/v3/jobs"
"github.com/roadrunner-server/errors"
)
type Item struct {
// Job contains pluginName of job broker (usually PHP class).
Job string `json:"job"`
// Ident is 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 string `json:"payload"`
// Headers with key-values pairs
Metadata map[string][]string `json:"headers"`
// Options contains set of PipelineOptions specific to job execution. Can be empty.
Options *Options `json:"options,omitempty"`
}
// Options carry information about how to handle given job.
type Options struct {
// Priority is job priority, default - 10
// pointer to distinguish 0 as a priority and nil as 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 ================
message *pubsub.Message
stopped *uint64
}
// DelayDuration returns delay duration in a 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 strToBytes(i.Payload)
}
func (i *Item) Headers() map[string][]string {
return i.Metadata
}
// 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.Metadata,
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")
}
// just 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
}
// Requeue with the provided delay, handled by the Nack
func (i *Item) Requeue(map[string][]string, int64) error {
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: string(job.Payload()),
Metadata: job.Headers(),
Options: &Options{
Priority: job.Priority(),
Pipeline: job.GroupID(),
Delay: job.Delay(),
AutoAck: job.AutoAck(),
},
}
}
func strToBytes(data string) []byte {
if data == "" {
return nil
}
return unsafe.Slice(unsafe.StringData(data), len(data))
}
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: string(message.Data),
Metadata: h,
Options: &Options{
AutoAck: autoAck,
Delay: int64(dl),
Priority: int64(priority),
Pipeline: (*d.pipeline.Load()).Name(),
// private
message: message,
stopped: &d.stopped,
},
}
}
func btos(b bool) string {
if b {
return "true"
}
return "false"
}
func stob(s string) bool {
if s != "" {
return s == "true"
}
return false
}