-
Notifications
You must be signed in to change notification settings - Fork 13
/
DbalContext.php
245 lines (205 loc) · 7.41 KB
/
DbalContext.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
<?php
declare(strict_types=1);
namespace Enqueue\Dbal;
use Doctrine\DBAL\Connection;
use Doctrine\DBAL\Schema\Table;
use Interop\Queue\Consumer;
use Interop\Queue\Context;
use Interop\Queue\Destination;
use Interop\Queue\Exception\InvalidDestinationException;
use Interop\Queue\Exception\TemporaryQueueNotSupportedException;
use Interop\Queue\Message;
use Interop\Queue\Producer;
use Interop\Queue\Queue;
use Interop\Queue\SubscriptionConsumer;
use Interop\Queue\Topic;
class DbalContext implements Context
{
/**
* @var Connection
*/
private $connection;
/**
* @var callable
*/
private $connectionFactory;
/**
* @var array
*/
private $config;
/**
* Callable must return instance of Doctrine\DBAL\Connection once called.
*
* @param Connection|callable $connection
*/
public function __construct($connection, array $config = [])
{
$this->config = array_replace([
'table_name' => 'enqueue',
'polling_interval' => null,
'subscription_polling_interval' => null,
], $config);
if ($connection instanceof Connection) {
$this->connection = $connection;
} elseif (is_callable($connection)) {
$this->connectionFactory = $connection;
} else {
throw new \InvalidArgumentException(sprintf('The connection argument must be either %s or callable that returns %s.', Connection::class, Connection::class));
}
}
/**
* {@inheritdoc}
*/
public function createMessage(string $body = '', array $properties = [], array $headers = []): Message
{
$message = new DbalMessage();
$message->setBody($body);
$message->setProperties($properties);
$message->setHeaders($headers);
return $message;
}
/**
* @return DbalDestination
*/
public function createQueue(string $name): Queue
{
return new DbalDestination($name);
}
/**
* @return DbalDestination
*/
public function createTopic(string $name): Topic
{
return new DbalDestination($name);
}
public function createTemporaryQueue(): Queue
{
throw TemporaryQueueNotSupportedException::providerDoestNotSupportIt();
}
/**
* @return DbalProducer
*/
public function createProducer(): Producer
{
return new DbalProducer($this);
}
/**
* @return DbalConsumer
*/
public function createConsumer(Destination $destination): Consumer
{
InvalidDestinationException::assertDestinationInstanceOf($destination, DbalDestination::class);
$consumer = new DbalConsumer($this, $destination);
if (isset($this->config['polling_interval'])) {
$consumer->setPollingInterval((int) $this->config['polling_interval']);
}
if (isset($this->config['redelivery_delay'])) {
$consumer->setRedeliveryDelay((int) $this->config['redelivery_delay']);
}
return $consumer;
}
public function close(): void
{
}
public function createSubscriptionConsumer(): SubscriptionConsumer
{
$consumer = new DbalSubscriptionConsumer($this);
if (isset($this->config['redelivery_delay'])) {
$consumer->setRedeliveryDelay($this->config['redelivery_delay']);
}
if (isset($this->config['subscription_polling_interval'])) {
$consumer->setPollingInterval($this->config['subscription_polling_interval']);
}
return $consumer;
}
/**
* @internal It must be used here and in the consumer only
*/
public function convertMessage(array $arrayMessage): DbalMessage
{
/** @var DbalMessage $message */
$message = $this->createMessage(
$arrayMessage['body'],
$arrayMessage['properties'] ? JSON::decode($arrayMessage['properties']) : [],
$arrayMessage['headers'] ? JSON::decode($arrayMessage['headers']) : []
);
if (isset($arrayMessage['id'])) {
$message->setMessageId($arrayMessage['id']);
}
if (isset($arrayMessage['queue'])) {
$message->setQueue($arrayMessage['queue']);
}
if (isset($arrayMessage['redelivered'])) {
$message->setRedelivered((bool) $arrayMessage['redelivered']);
}
if (isset($arrayMessage['priority'])) {
$message->setPriority((int) (-1 * $arrayMessage['priority']));
}
if (isset($arrayMessage['published_at'])) {
$message->setPublishedAt((int) $arrayMessage['published_at']);
}
if (isset($arrayMessage['delivery_id'])) {
$message->setDeliveryId($arrayMessage['delivery_id']);
}
if (isset($arrayMessage['redeliver_after'])) {
$message->setRedeliverAfter((int) $arrayMessage['redeliver_after']);
}
return $message;
}
/**
* @param DbalDestination $queue
*/
public function purgeQueue(Queue $queue): void
{
$this->getDbalConnection()->delete(
$this->getTableName(),
['queue' => $queue->getQueueName()],
['queue' => DbalType::STRING]
);
}
public function getTableName(): string
{
return $this->config['table_name'];
}
public function getConfig(): array
{
return $this->config;
}
public function getDbalConnection(): Connection
{
if (false == $this->connection) {
$connection = call_user_func($this->connectionFactory);
if (false == $connection instanceof Connection) {
throw new \LogicException(sprintf('The factory must return instance of Doctrine\DBAL\Connection. It returns %s', is_object($connection) ? get_class($connection) : gettype($connection)));
}
$this->connection = $connection;
}
return $this->connection;
}
public function createDataBaseTable(): void
{
$sm = $this->getDbalConnection()->getSchemaManager();
if ($sm->tablesExist([$this->getTableName()])) {
return;
}
$table = new Table($this->getTableName());
$table->addColumn('id', DbalType::GUID, ['length' => 16, 'fixed' => true]);
$table->addColumn('published_at', DbalType::BIGINT);
$table->addColumn('body', DbalType::TEXT, ['notnull' => false]);
$table->addColumn('headers', DbalType::TEXT, ['notnull' => false]);
$table->addColumn('properties', DbalType::TEXT, ['notnull' => false]);
$table->addColumn('redelivered', DbalType::BOOLEAN, ['notnull' => false]);
$table->addColumn('queue', DbalType::STRING);
$table->addColumn('priority', DbalType::SMALLINT, ['notnull' => false]);
$table->addColumn('delayed_until', DbalType::BIGINT, ['notnull' => false]);
$table->addColumn('time_to_live', DbalType::BIGINT, ['notnull' => false]);
$table->addColumn('delivery_id', DbalType::GUID, ['length' => 16, 'fixed' => true, 'notnull' => false]);
$table->addColumn('redeliver_after', DbalType::BIGINT, ['notnull' => false]);
$table->setPrimaryKey(['id']);
$table->addIndex(['priority', 'published_at', 'queue', 'delivery_id', 'delayed_until', 'id']);
$table->addIndex(['redeliver_after', 'delivery_id']);
$table->addIndex(['time_to_live', 'delivery_id']);
$table->addIndex(['delivery_id']);
$sm->createTable($table);
}
}