-
Notifications
You must be signed in to change notification settings - Fork 6
/
SimpleClient.php
350 lines (292 loc) · 11.2 KB
/
SimpleClient.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
<?php
namespace Enqueue\SimpleClient;
use Enqueue\ArrayProcessorRegistry;
use Enqueue\Client\ChainExtension as ClientChainExtensions;
use Enqueue\Client\Config;
use Enqueue\Client\ConsumptionExtension\DelayRedeliveredMessageExtension;
use Enqueue\Client\ConsumptionExtension\LogExtension;
use Enqueue\Client\ConsumptionExtension\SetRouterPropertiesExtension;
use Enqueue\Client\DelegateProcessor;
use Enqueue\Client\DriverFactory;
use Enqueue\Client\DriverInterface;
use Enqueue\Client\Message;
use Enqueue\Client\Producer;
use Enqueue\Client\ProducerInterface;
use Enqueue\Client\Route;
use Enqueue\Client\RouteCollection;
use Enqueue\Client\RouterProcessor;
use Enqueue\ConnectionFactoryFactory;
use Enqueue\Consumption\CallbackProcessor;
use Enqueue\Consumption\ChainExtension as ConsumptionChainExtension;
use Enqueue\Consumption\Extension\ReplyExtension;
use Enqueue\Consumption\Extension\SignalExtension;
use Enqueue\Consumption\ExtensionInterface;
use Enqueue\Consumption\QueueConsumer;
use Enqueue\Consumption\QueueConsumerInterface;
use Enqueue\Rpc\Promise;
use Enqueue\Rpc\RpcFactory;
use Enqueue\Symfony\Client\DependencyInjection\ClientFactory;
use Enqueue\Symfony\DependencyInjection\TransportFactory;
use Interop\Queue\Processor;
use Psr\Log\LoggerInterface;
use Psr\Log\NullLogger;
use Symfony\Component\Config\Definition\Builder\TreeBuilder;
use Symfony\Component\Config\Definition\NodeInterface;
use Symfony\Component\Config\Definition\Processor as ConfigProcessor;
final class SimpleClient
{
/**
* @var DriverInterface
*/
private $driver;
/**
* @var Producer
*/
private $producer;
/**
* @var QueueConsumer
*/
private $queueConsumer;
/**
* @var ArrayProcessorRegistry
*/
private $processorRegistry;
/**
* @var DelegateProcessor
*/
private $delegateProcessor;
/**
* @var LoggerInterface
*/
private $logger;
/**
* The config could be a transport DSN (string) or an array, here's an example of a few DSNs:.
*
* $config = amqp:
* $config = amqp://guest:guest@localhost:5672/%2f?lazy=1&persisted=1
* $config = file://foo/bar/
* $config = null:
*
* or an array:
*
* $config = [
* 'transport' => [
* 'dsn' => 'amqps://guest:guest@localhost:5672/%2f',
* 'ssl_cacert' => '/a/dir/cacert.pem',
* 'ssl_cert' => '/a/dir/cert.pem',
* 'ssl_key' => '/a/dir/key.pem',
* ]
*
* with custom connection factory class
*
* $config = [
* 'transport' => [
* 'dsn' => 'amqps://guest:guest@localhost:5672/%2f',
* 'connection_factory_class' => 'aCustomConnectionFactory',
* // other options available options are factory_class and factory_service
* ]
*
* The client config
*
* $config = [
* 'transport' => 'null:',
* 'client' => [
* 'prefix' => 'enqueue',
* 'separator' => '.',
* 'app_name' => 'app',
* 'router_topic' => 'router',
* 'router_queue' => 'default',
* 'default_queue' => 'default',
* 'redelivered_delay_time' => 0
* ],
* 'extensions' => [
* 'signal_extension' => true,
* 'reply_extension' => true,
* ]
* ]
*
*
* @param string|array $config
*/
public function __construct($config, LoggerInterface $logger = null)
{
if (is_string($config)) {
$config = [
'transport' => $config,
'client' => true,
];
}
$this->logger = $logger ?: new NullLogger();
$this->build(['enqueue' => $config]);
}
/**
* @param callable|Processor $processor
*/
public function bindTopic(string $topic, $processor, string $processorName = null): void
{
if (is_callable($processor)) {
$processor = new CallbackProcessor($processor);
}
if (false == $processor instanceof Processor) {
throw new \LogicException('The processor must be either callable or instance of Processor');
}
$processorName = $processorName ?: uniqid(get_class($processor));
$this->driver->getRouteCollection()->add(new Route($topic, Route::TOPIC, $processorName));
$this->processorRegistry->add($processorName, $processor);
}
/**
* @param callable|Processor $processor
*/
public function bindCommand(string $command, $processor, string $processorName = null): void
{
if (is_callable($processor)) {
$processor = new CallbackProcessor($processor);
}
if (false == $processor instanceof Processor) {
throw new \LogicException('The processor must be either callable or instance of Processor');
}
$processorName = $processorName ?: uniqid(get_class($processor));
$this->driver->getRouteCollection()->add(new Route($command, Route::COMMAND, $processorName));
$this->processorRegistry->add($processorName, $processor);
}
/**
* @param string|array|\JsonSerializable|Message $message
*/
public function sendCommand(string $command, $message, bool $needReply = false): ?Promise
{
return $this->producer->sendCommand($command, $message, $needReply);
}
/**
* @param string|array|Message $message
*/
public function sendEvent(string $topic, $message): void
{
$this->producer->sendEvent($topic, $message);
}
public function consume(ExtensionInterface $runtimeExtension = null): void
{
$this->setupBroker();
$boundQueues = [];
$routerQueue = $this->getDriver()->createQueue($this->getDriver()->getConfig()->getRouterQueue());
$this->queueConsumer->bind($routerQueue, $this->delegateProcessor);
$boundQueues[$routerQueue->getQueueName()] = true;
foreach ($this->driver->getRouteCollection()->all() as $route) {
$queue = $this->getDriver()->createRouteQueue($route);
if (array_key_exists($queue->getQueueName(), $boundQueues)) {
continue;
}
$this->queueConsumer->bind($queue, $this->delegateProcessor);
$boundQueues[$queue->getQueueName()] = true;
}
$this->queueConsumer->consume($runtimeExtension);
}
public function getQueueConsumer(): QueueConsumerInterface
{
return $this->queueConsumer;
}
public function getDriver(): DriverInterface
{
return $this->driver;
}
public function getProducer(bool $setupBroker = false): ProducerInterface
{
$setupBroker && $this->setupBroker();
return $this->producer;
}
public function getDelegateProcessor(): DelegateProcessor
{
return $this->delegateProcessor;
}
public function setupBroker(): void
{
$this->getDriver()->setupBroker();
}
public function build(array $configs): void
{
$configProcessor = new ConfigProcessor();
$simpleClientConfig = $configProcessor->process($this->createConfiguration(), $configs);
if (isset($simpleClientConfig['transport']['factory_service'])) {
throw new \LogicException('transport.factory_service option is not supported by simple client');
}
if (isset($simpleClientConfig['transport']['factory_class'])) {
throw new \LogicException('transport.factory_class option is not supported by simple client');
}
if (isset($simpleClientConfig['transport']['connection_factory_class'])) {
throw new \LogicException('transport.connection_factory_class option is not supported by simple client');
}
$connectionFactoryFactory = new ConnectionFactoryFactory();
$connection = $connectionFactoryFactory->create($simpleClientConfig['transport']);
$clientExtensions = new ClientChainExtensions([]);
$config = new Config(
$simpleClientConfig['client']['prefix'],
$simpleClientConfig['client']['separator'],
$simpleClientConfig['client']['app_name'],
$simpleClientConfig['client']['router_topic'],
$simpleClientConfig['client']['router_queue'],
$simpleClientConfig['client']['default_queue'],
'enqueue.client.router_processor',
$simpleClientConfig['transport'],
[]
);
$routeCollection = new RouteCollection([]);
$driverFactory = new DriverFactory();
$driver = $driverFactory->create(
$connection,
$config,
$routeCollection
);
$rpcFactory = new RpcFactory($driver->getContext());
$producer = new Producer($driver, $rpcFactory, $clientExtensions);
$processorRegistry = new ArrayProcessorRegistry([]);
$delegateProcessor = new DelegateProcessor($processorRegistry);
// consumption extensions
$consumptionExtensions = [];
if ($simpleClientConfig['client']['redelivered_delay_time']) {
$consumptionExtensions[] = new DelayRedeliveredMessageExtension($driver, $simpleClientConfig['client']['redelivered_delay_time']);
}
if ($simpleClientConfig['extensions']['signal_extension']) {
$consumptionExtensions[] = new SignalExtension();
}
if ($simpleClientConfig['extensions']['reply_extension']) {
$consumptionExtensions[] = new ReplyExtension();
}
$consumptionExtensions[] = new SetRouterPropertiesExtension($driver);
$consumptionExtensions[] = new LogExtension();
$consumptionChainExtension = new ConsumptionChainExtension($consumptionExtensions);
$queueConsumer = new QueueConsumer($driver->getContext(), $consumptionChainExtension, [], $this->logger);
$routerProcessor = new RouterProcessor($driver);
$processorRegistry->add($config->getRouterProcessor(), $routerProcessor);
$this->driver = $driver;
$this->producer = $producer;
$this->queueConsumer = $queueConsumer;
$this->delegateProcessor = $delegateProcessor;
$this->processorRegistry = $processorRegistry;
}
private function createConfiguration(): NodeInterface
{
if (method_exists(TreeBuilder::class, 'getRootNode')) {
$tb = new TreeBuilder('enqueue');
$rootNode = $tb->getRootNode();
} else {
$tb = new TreeBuilder();
$rootNode = $tb->root('enqueue');
}
$rootNode
->beforeNormalization()
->ifEmpty()->then(function () {
return ['transport' => ['dsn' => 'null:']];
});
$rootNode
->append(TransportFactory::getConfiguration())
->append(TransportFactory::getQueueConsumerConfiguration())
->append(ClientFactory::getConfiguration(false))
;
$rootNode->children()
->arrayNode('extensions')->addDefaultsIfNotSet()->children()
->booleanNode('signal_extension')->defaultValue(function_exists('pcntl_signal_dispatch'))->end()
->booleanNode('reply_extension')->defaultTrue()->end()
->end()
;
return $tb->buildTree();
}
}