-
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathAdapter.php
More file actions
213 lines (182 loc) · 6.67 KB
/
Copy pathAdapter.php
File metadata and controls
213 lines (182 loc) · 6.67 KB
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
<?php
declare(strict_types=1);
namespace Yiisoft\Queue\Amqp;
use BackedEnum;
use InvalidArgumentException;
use PhpAmqpLib\Exchange\AMQPExchangeType;
use PhpAmqpLib\Message\AMQPMessage;
use Throwable;
use Yiisoft\Queue\Adapter\AdapterInterface;
use Yiisoft\Queue\Amqp\Settings\ExchangeSettingsInterface;
use Yiisoft\Queue\Amqp\Settings\QueueSettingsInterface;
use Yiisoft\Queue\Cli\LoopInterface;
use Yiisoft\Queue\Message\DelayEnvelope;
use Yiisoft\Queue\Message\MessageInterface;
use Yiisoft\Queue\Message\MessageSerializerInterface;
use Yiisoft\Queue\MessageStatus;
final class Adapter implements AdapterInterface
{
public function __construct(
private QueueProviderInterface $queueProvider,
private readonly MessageSerializerInterface $serializer,
private readonly LoopInterface $loop,
) {
}
public function withChannel(BackedEnum|string $channel): self
{
$instance = clone $this;
$queueName = is_string($channel) ? $channel : (string) $channel->value;
$instance->queueProvider = $this->queueProvider->withQueueName($queueName);
return $instance;
}
/**
* @param callable(MessageInterface): bool $handlerCallback
*/
public function runExisting(callable $handlerCallback): void
{
(new ExistingMessagesConsumer($this->queueProvider, $this->serializer))->consume($handlerCallback);
}
public function status(int|string $id): MessageStatus
{
return MessageStatus::NOT_FOUND;
}
public function hasStatusSupport(): bool
{
return false;
}
public function push(MessageInterface $message): MessageInterface
{
$queueProvider = $this->getQueueProviderForMessage($message);
$amqpMessage = new AMQPMessage(
'',
$queueProvider->getMessageProperties(),
);
$payload = $this->serializer->serialize($message);
$amqpMessage->setBody($payload);
$exchangeSettings = $queueProvider->getExchangeSettings();
$queueProvider
->getChannel()
->basic_publish(
$amqpMessage,
$exchangeSettings?->getName() ?? '',
$exchangeSettings ? '' : $queueProvider
->getQueueSettings()
->getName()
);
return $message;
}
public function subscribe(callable $handlerCallback): void
{
$channel = $this->queueProvider->getChannel();
$qosSettings = $this->queueProvider
->getQueueSettings()
->getQosSettings();
if ($qosSettings !== null) {
$channel->basic_qos(
$qosSettings->getPrefetchSize(),
$qosSettings->getPrefetchCount(),
$qosSettings->isGlobal(),
);
}
$channel->basic_consume(
$this->queueProvider
->getQueueSettings()
->getName(),
$this->queueProvider
->getQueueSettings()
->getName(),
false,
false,
false,
true,
function (AMQPMessage $amqpMessage) use ($handlerCallback, $channel): void {
try {
$handlerCallback($this->serializer->unserialize($amqpMessage->getBody()));
$channel->basic_ack($amqpMessage->getDeliveryTag());
} catch (Throwable $exception) {
$consumerTag = $amqpMessage->getConsumerTag();
if ($consumerTag !== null) {
$channel->basic_cancel($consumerTag);
}
throw $exception;
}
}
);
while ($this->loop->canContinue()) {
$channel->wait();
}
}
public function getQueueProvider(): QueueProviderInterface
{
return $this->queueProvider;
}
public function withQueueProvider(QueueProviderInterface $queueProvider): self
{
$new = clone $this;
$new->queueProvider = $queueProvider;
return $new;
}
public function getChannel(): string
{
return $this->queueProvider->getQueueSettings()->getName();
}
private function getQueueProviderForMessage(MessageInterface $message): QueueProviderInterface
{
$delaySeconds = DelayEnvelope::fromMessage($message)->getDelaySeconds();
if ($delaySeconds <= 0) {
return $this->queueProvider;
}
$exchangeSettings = $this->queueProvider->getExchangeSettings();
if ($exchangeSettings === null) {
throw new InvalidArgumentException('Message cannot be delayed to a queue without an exchange. Exchange is mandatory.');
}
$delayMilliseconds = (int) ceil($delaySeconds * 1000);
return $this->queueProvider
->withMessageProperties($this->getDelayMessageProperties($delayMilliseconds))
->withExchangeSettings($this->getDelayExchangeSettings($exchangeSettings))
->withQueueSettings(
$this->getDelayQueueSettings(
$this->queueProvider->getQueueSettings(),
$exchangeSettings,
$delayMilliseconds,
)
);
}
/**
* @psalm-return array{expiration: string, delivery_mode: int}&array
*/
private function getDelayMessageProperties(int $delayMilliseconds): array
{
return array_merge(
$this->queueProvider->getMessageProperties(),
[
'expiration' => (string) $delayMilliseconds,
'delivery_mode' => AMQPMessage::DELIVERY_MODE_PERSISTENT,
],
);
}
private function getDelayQueueSettings(
QueueSettingsInterface $queueSettings,
ExchangeSettingsInterface $exchangeSettings,
int $delayMilliseconds,
): QueueSettingsInterface {
$deliveryTime = time() + (int) ceil($delayMilliseconds / 1000);
return $queueSettings
->withName("{$queueSettings->getName()}.dlx.$deliveryTime")
->withAutoDeletable(true)
->withArguments(
[
'x-dead-letter-exchange' => ['S', $exchangeSettings->getName()],
'x-expires' => ['I', $delayMilliseconds + 30000],
'x-message-ttl' => ['I', $delayMilliseconds],
]
);
}
private function getDelayExchangeSettings(ExchangeSettingsInterface $exchangeSettings): ExchangeSettingsInterface
{
return $exchangeSettings
->withName("{$exchangeSettings->getName()}.dlx")
->withAutoDelete(true)
->withType(AMQPExchangeType::TOPIC);
}
}