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
|
package ephemeral
import (
"github.com/google/uuid"
"github.com/spiral/errors"
priorityqueue "github.com/spiral/roadrunner/v2/common/priority_queue"
"github.com/spiral/roadrunner/v2/plugins/jobs/pipeline"
"github.com/spiral/roadrunner/v2/plugins/jobs/structs"
)
type JobBroker struct {
queues map[string]bool
pq priorityqueue.Queue
}
func NewJobBroker(q priorityqueue.Queue) (*JobBroker, error) {
jb := &JobBroker{
queues: make(map[string]bool),
pq: q,
}
return jb, nil
}
func (j *JobBroker) Push(job *structs.Job) (string, error) {
const op = errors.Op("ephemeral_push")
// check if the pipeline registered
if b, ok := j.queues[job.Options.Pipeline]; ok {
if !b {
return "", errors.E(op, errors.Errorf("pipeline disabled: %s", job.Options.Pipeline))
}
if job.Options.Priority == nil {
job.Options.Priority = intPtr(10)
}
job.Options.ID = uuid.NewString()
j.pq.Insert(job)
return job.Options.ID, nil
}
return "", errors.E(op, errors.Errorf("no such pipeline: %s", job.Options.Pipeline))
}
func (j *JobBroker) Stat() {
panic("implement me")
}
func (j *JobBroker) Consume(pipe *pipeline.Pipeline) {
panic("implement me")
}
func (j *JobBroker) Register(pipeline string) error {
const op = errors.Op("ephemeral_register")
if _, ok := j.queues[pipeline]; ok {
return errors.E(op, errors.Errorf("queue %s has already been registered", pipeline))
}
j.queues[pipeline] = true
return nil
}
func intPtr(val uint64) *uint64 {
if val == 0 {
val = 10
}
return &val
}
|