summaryrefslogtreecommitdiff
path: root/plugins/jobs/brokers/amqp/rabbit.go
blob: 41374878159e51742c652e7236fa2e34fa2a51aa (plain)
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
package amqp

import (
	"fmt"

	"github.com/google/uuid"
	"github.com/streadway/amqp"
)

func (j *JobsConsumer) initRabbitMQ() (<-chan amqp.Delivery, error) {
	// Channel opens a unique, concurrent server channel to process the bulk of AMQP
	// messages.  Any error from methods on this receiver will render the receiver
	// invalid and a new Channel should be opened.
	channel, err := j.conn.Channel()
	if err != nil {
		return nil, err
	}

	err = channel.Qos(j.prefetchCount, 0, false)
	if err != nil {
		return nil, err
	}

	// declare an exchange (idempotent operation)
	err = channel.ExchangeDeclare(
		j.exchangeName,
		j.exchangeType,
		true,
		false,
		false,
		false,
		nil,
	)
	if err != nil {
		return nil, err
	}

	// verify or declare a queue
	q, err := channel.QueueDeclare(
		fmt.Sprintf("%s.%s", j.routingKey, uuid.NewString()),
		false,
		false,
		true,
		false,
		nil,
	)
	if err != nil {
		return nil, err
	}

	// bind queue to the exchange
	err = channel.QueueBind(
		q.Name,
		j.routingKey,
		j.exchangeName,
		false,
		nil,
	)
	if err != nil {
		return nil, err
	}

	// start reading messages from the channel
	deliv, err := channel.Consume(
		q.Name,
		"",
		false,
		false,
		false,
		false,
		nil,
	)
	if err != nil {
		return nil, err
	}

	return deliv, nil
}

func (j *JobsConsumer) listener(deliv <-chan amqp.Delivery) {
	go func() {
		for {
			select {
			case msg, ok := <-deliv:
				if !ok {
					j.logger.Info("delivery channel closed, leaving the rabbit listener")
					return
				}

				// add task to the queue
				j.pq.Insert(From(msg))
			case <-j.stop:
				return
			}
		}
	}()
}