-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathAmqpContext.php
435 lines (372 loc) · 14.3 KB
/
AmqpContext.php
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
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
<?php
declare(strict_types=1);
namespace Enqueue\AmqpBunny;
use Bunny\Channel;
use Bunny\Message as BunnyMessage;
use Enqueue\AmqpTools\DelayStrategyAware;
use Enqueue\AmqpTools\DelayStrategyAwareTrait;
use Interop\Amqp\AmqpBind as InteropAmqpBind;
use Interop\Amqp\AmqpContext as InteropAmqpContext;
use Interop\Amqp\AmqpDestination;
use Interop\Amqp\AmqpMessage as InteropAmqpMessage;
use Interop\Amqp\AmqpQueue as InteropAmqpQueue;
use Interop\Amqp\AmqpTopic as InteropAmqpTopic;
use Interop\Amqp\Impl\AmqpBind;
use Interop\Amqp\Impl\AmqpMessage;
use Interop\Amqp\Impl\AmqpQueue;
use Interop\Amqp\Impl\AmqpTopic;
use Interop\Queue\Consumer;
use Interop\Queue\Destination;
use Interop\Queue\Exception\Exception;
use Interop\Queue\Exception\InvalidDestinationException;
use Interop\Queue\Message;
use Interop\Queue\Producer;
use Interop\Queue\Queue;
use Interop\Queue\SubscriptionConsumer;
use Interop\Queue\Topic;
class AmqpContext implements InteropAmqpContext, DelayStrategyAware
{
use DelayStrategyAwareTrait;
/**
* @var Channel
*/
private $bunnyChannel;
/**
* @var callable
*/
private $bunnyChannelFactory;
/**
* @var string
*/
private $config;
/**
* Callable must return instance of \Bunny\Channel once called.
*
* @param Channel|callable $bunnyChannel
*/
public function __construct($bunnyChannel, array $config)
{
$this->config = array_replace([
'qos_prefetch_size' => 0,
'qos_prefetch_count' => 1,
'qos_global' => false,
], $config);
if ($bunnyChannel instanceof Channel) {
$this->bunnyChannel = $bunnyChannel;
} elseif (is_callable($bunnyChannel)) {
$this->bunnyChannelFactory = $bunnyChannel;
} else {
throw new \InvalidArgumentException('The bunnyChannel argument must be either \Bunny\Channel or callable that return it.');
}
}
/**
* @return InteropAmqpMessage
*/
public function createMessage(string $body = '', array $properties = [], array $headers = []): Message
{
return new AmqpMessage($body, $properties, $headers);
}
/**
* @return InteropAmqpQueue
*/
public function createQueue(string $name): Queue
{
return new AmqpQueue($name);
}
/**
* @return InteropAmqpTopic
*/
public function createTopic(string $name): Topic
{
return new AmqpTopic($name);
}
/**
* @param AmqpDestination $destination
*
* @return AmqpConsumer
*/
public function createConsumer(Destination $destination): Consumer
{
$destination instanceof Topic
? InvalidDestinationException::assertDestinationInstanceOf($destination, InteropAmqpTopic::class)
: InvalidDestinationException::assertDestinationInstanceOf($destination, InteropAmqpQueue::class)
;
if ($destination instanceof AmqpTopic) {
$queue = $this->createTemporaryQueue();
$this->bind(new AmqpBind($destination, $queue, $queue->getQueueName()));
return new AmqpConsumer($this, $queue);
}
return new AmqpConsumer($this, $destination);
}
/**
* @return AmqpSubscriptionConsumer
*/
public function createSubscriptionConsumer(): SubscriptionConsumer
{
return new AmqpSubscriptionConsumer($this);
}
/**
* @return AmqpProducer
*/
public function createProducer(): Producer
{
$producer = new AmqpProducer($this->getBunnyChannel(), $this);
$producer->setDelayStrategy($this->delayStrategy);
return $producer;
}
/**
* @return InteropAmqpQueue
*/
public function createTemporaryQueue(): Queue
{
$frame = $this->getBunnyChannel()->queueDeclare('', false, false, true, false);
$queue = $this->createQueue($frame->queue);
$queue->addFlag(InteropAmqpQueue::FLAG_EXCLUSIVE);
return $queue;
}
public function declareTopic(InteropAmqpTopic $topic): void
{
$this->getBunnyChannel()->exchangeDeclare(
$topic->getTopicName(),
$topic->getType(),
(bool) ($topic->getFlags() & InteropAmqpTopic::FLAG_PASSIVE),
(bool) ($topic->getFlags() & InteropAmqpTopic::FLAG_DURABLE),
(bool) ($topic->getFlags() & InteropAmqpTopic::FLAG_AUTODELETE),
(bool) ($topic->getFlags() & InteropAmqpTopic::FLAG_INTERNAL),
(bool) ($topic->getFlags() & InteropAmqpTopic::FLAG_NOWAIT),
$topic->getArguments()
);
}
public function deleteTopic(InteropAmqpTopic $topic): void
{
$this->getBunnyChannel()->exchangeDelete(
$topic->getTopicName(),
(bool) ($topic->getFlags() & InteropAmqpTopic::FLAG_IFUNUSED),
(bool) ($topic->getFlags() & InteropAmqpTopic::FLAG_NOWAIT)
);
}
public function declareQueue(InteropAmqpQueue $queue): int
{
$frame = $this->getBunnyChannel()->queueDeclare(
$queue->getQueueName(),
(bool) ($queue->getFlags() & InteropAmqpQueue::FLAG_PASSIVE),
(bool) ($queue->getFlags() & InteropAmqpQueue::FLAG_DURABLE),
(bool) ($queue->getFlags() & InteropAmqpQueue::FLAG_EXCLUSIVE),
(bool) ($queue->getFlags() & InteropAmqpQueue::FLAG_AUTODELETE),
(bool) ($queue->getFlags() & InteropAmqpQueue::FLAG_NOWAIT),
$queue->getArguments()
);
return $frame->messageCount;
}
public function deleteQueue(InteropAmqpQueue $queue): void
{
$this->getBunnyChannel()->queueDelete(
$queue->getQueueName(),
(bool) ($queue->getFlags() & InteropAmqpQueue::FLAG_IFUNUSED),
(bool) ($queue->getFlags() & InteropAmqpQueue::FLAG_IFEMPTY),
(bool) ($queue->getFlags() & InteropAmqpQueue::FLAG_NOWAIT)
);
}
/**
* @param InteropAmqpQueue $queue
*/
public function purgeQueue(Queue $queue): void
{
$this->getBunnyChannel()->queuePurge(
$queue->getQueueName(),
(bool) ($queue->getFlags() & InteropAmqpQueue::FLAG_NOWAIT)
);
}
public function bind(InteropAmqpBind $bind): void
{
if ($bind->getSource() instanceof InteropAmqpQueue && $bind->getTarget() instanceof InteropAmqpQueue) {
throw new Exception('Is not possible to bind queue to queue. It is possible to bind topic to queue or topic to topic');
}
// bind exchange to exchange
if ($bind->getSource() instanceof InteropAmqpTopic && $bind->getTarget() instanceof InteropAmqpTopic) {
$this->getBunnyChannel()->exchangeBind(
$bind->getTarget()->getTopicName(),
$bind->getSource()->getTopicName(),
$bind->getRoutingKey(),
(bool) ($bind->getFlags() & InteropAmqpBind::FLAG_NOWAIT),
$bind->getArguments()
);
// bind queue to exchange
} elseif ($bind->getSource() instanceof InteropAmqpQueue) {
$this->getBunnyChannel()->queueBind(
$bind->getSource()->getQueueName(),
$bind->getTarget()->getTopicName(),
$bind->getRoutingKey(),
(bool) ($bind->getFlags() & InteropAmqpBind::FLAG_NOWAIT),
$bind->getArguments()
);
// bind exchange to queue
} else {
$this->getBunnyChannel()->queueBind(
$bind->getTarget()->getQueueName(),
$bind->getSource()->getTopicName(),
$bind->getRoutingKey(),
(bool) ($bind->getFlags() & InteropAmqpBind::FLAG_NOWAIT),
$bind->getArguments()
);
}
}
public function unbind(InteropAmqpBind $bind): void
{
if ($bind->getSource() instanceof InteropAmqpQueue && $bind->getTarget() instanceof InteropAmqpQueue) {
throw new Exception('Is not possible to bind queue to queue. It is possible to bind topic to queue or topic to topic');
}
// bind exchange to exchange
if ($bind->getSource() instanceof InteropAmqpTopic && $bind->getTarget() instanceof InteropAmqpTopic) {
$this->getBunnyChannel()->exchangeUnbind(
$bind->getTarget()->getTopicName(),
$bind->getSource()->getTopicName(),
$bind->getRoutingKey(),
(bool) ($bind->getFlags() & InteropAmqpBind::FLAG_NOWAIT),
$bind->getArguments()
);
// bind queue to exchange
} elseif ($bind->getSource() instanceof InteropAmqpQueue) {
$this->getBunnyChannel()->queueUnbind(
$bind->getSource()->getQueueName(),
$bind->getTarget()->getTopicName(),
$bind->getRoutingKey(),
$bind->getArguments()
);
// bind exchange to queue
} else {
$this->getBunnyChannel()->queueUnbind(
$bind->getTarget()->getQueueName(),
$bind->getSource()->getTopicName(),
$bind->getRoutingKey(),
$bind->getArguments()
);
}
}
public function close(): void
{
if ($this->bunnyChannel) {
$this->bunnyChannel->close();
}
}
public function setQos(int $prefetchSize, int $prefetchCount, bool $global): void
{
$this->getBunnyChannel()->qos($prefetchSize, $prefetchCount, $global);
}
public function getBunnyChannel(): Channel
{
if (false == $this->bunnyChannel) {
$bunnyChannel = call_user_func($this->bunnyChannelFactory);
if (false == $bunnyChannel instanceof Channel) {
throw new \LogicException(sprintf('The factory must return instance of \Bunny\Channel. It returned %s', is_object($bunnyChannel) ? $bunnyChannel::class : gettype($bunnyChannel)));
}
$this->bunnyChannel = $bunnyChannel;
}
return $this->bunnyChannel;
}
/**
* @internal It must be used here and in the consumer only
*/
public function convertMessage(BunnyMessage $bunnyMessage): InteropAmqpMessage
{
$headers = $bunnyMessage->headers;
$headers = $this->convertHeadersFromBunnyNotation($headers);
$properties = [];
if (isset($headers['application_headers'])) {
$properties = $headers['application_headers'];
}
unset($headers['application_headers']);
if (array_key_exists('timestamp', $headers) && $headers['timestamp']) {
/** @var \DateTime $date */
$date = $headers['timestamp'];
$headers['timestamp'] = (int) $date->format('U');
}
$message = new AmqpMessage($bunnyMessage->content, $properties, $headers);
$message->setDeliveryTag((int) $bunnyMessage->deliveryTag);
$message->setRedelivered($bunnyMessage->redelivered);
$message->setRoutingKey($bunnyMessage->routingKey);
return $message;
}
/** @internal It must be used here and in the producer only */
public function convertHeadersToBunnyNotation(array $headers): array
{
if (isset($headers['content_type'])) {
$headers['content-type'] = $headers['content_type'];
unset($headers['content_type']);
}
if (isset($headers['content_encoding'])) {
$headers['content-encoding'] = $headers['content_encoding'];
unset($headers['content_encoding']);
}
if (isset($headers['delivery_mode'])) {
$headers['delivery-mode'] = $headers['delivery_mode'];
unset($headers['delivery_mode']);
}
if (isset($headers['correlation_id'])) {
$headers['correlation-id'] = $headers['correlation_id'];
unset($headers['correlation_id']);
}
if (isset($headers['reply_to'])) {
$headers['reply-to'] = $headers['reply_to'];
unset($headers['reply_to']);
}
if (isset($headers['message_id'])) {
$headers['message-id'] = $headers['message_id'];
unset($headers['message_id']);
}
if (isset($headers['user_id'])) {
$headers['user-id'] = $headers['user_id'];
unset($headers['user_id']);
}
if (isset($headers['app_id'])) {
$headers['app-id'] = $headers['app_id'];
unset($headers['app_id']);
}
if (isset($headers['cluster_id'])) {
$headers['cluster-id'] = $headers['cluster_id'];
unset($headers['cluster_id']);
}
return $headers;
}
/** @internal It must be used here and in the consumer only */
public function convertHeadersFromBunnyNotation(array $bunnyHeaders): array
{
if (isset($bunnyHeaders['content-type'])) {
$bunnyHeaders['content_type'] = $bunnyHeaders['content-type'];
unset($bunnyHeaders['content-type']);
}
if (isset($bunnyHeaders['content-encoding'])) {
$bunnyHeaders['content_encoding'] = $bunnyHeaders['content-encoding'];
unset($bunnyHeaders['content-encoding']);
}
if (isset($bunnyHeaders['delivery-mode'])) {
$bunnyHeaders['delivery_mode'] = $bunnyHeaders['delivery-mode'];
unset($bunnyHeaders['delivery-mode']);
}
if (isset($bunnyHeaders['correlation-id'])) {
$bunnyHeaders['correlation_id'] = $bunnyHeaders['correlation-id'];
unset($bunnyHeaders['correlation-id']);
}
if (isset($bunnyHeaders['reply-to'])) {
$bunnyHeaders['reply_to'] = $bunnyHeaders['reply-to'];
unset($bunnyHeaders['reply-to']);
}
if (isset($bunnyHeaders['message-id'])) {
$bunnyHeaders['message_id'] = $bunnyHeaders['message-id'];
unset($bunnyHeaders['message-id']);
}
if (isset($bunnyHeaders['user-id'])) {
$bunnyHeaders['user_id'] = $bunnyHeaders['user-id'];
unset($bunnyHeaders['user-id']);
}
if (isset($bunnyHeaders['app-id'])) {
$bunnyHeaders['app_id'] = $bunnyHeaders['app-id'];
unset($bunnyHeaders['app-id']);
}
if (isset($bunnyHeaders['cluster-id'])) {
$bunnyHeaders['cluster_id'] = $bunnyHeaders['cluster-id'];
unset($bunnyHeaders['cluster-id']);
}
return $bunnyHeaders;
}
}