-
Notifications
You must be signed in to change notification settings - Fork 7
/
StompContext.php
233 lines (188 loc) · 6.24 KB
/
StompContext.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
<?php
declare(strict_types=1);
namespace Enqueue\Stomp;
use Interop\Queue\Consumer;
use Interop\Queue\Context;
use Interop\Queue\Destination;
use Interop\Queue\Exception\InvalidDestinationException;
use Interop\Queue\Exception\PurgeQueueNotSupportedException;
use Interop\Queue\Exception\SubscriptionConsumerNotSupportedException;
use Interop\Queue\Message;
use Interop\Queue\Producer;
use Interop\Queue\Queue;
use Interop\Queue\SubscriptionConsumer;
use Interop\Queue\Topic;
class StompContext implements Context
{
/**
* @var BufferedStompClient
*/
private $stomp;
/**
* @var string
*/
private $extensionType;
/**
* @var bool
*/
private $useExchangePrefix;
/**
* @var callable
*/
private $stompFactory;
/**
* @var bool
*/
private $transient;
/**
* @param BufferedStompClient|callable $stomp
*/
public function __construct($stomp, string $extensionType, bool $detectTransientConnections = false)
{
if ($stomp instanceof BufferedStompClient) {
$this->stomp = $stomp;
} elseif (is_callable($stomp)) {
$this->stompFactory = $stomp;
} else {
throw new \InvalidArgumentException('The stomp argument must be either BufferedStompClient or callable that return BufferedStompClient.');
}
$this->extensionType = $extensionType;
$this->useExchangePrefix = ExtensionType::RABBITMQ === $extensionType;
$this->transient = $detectTransientConnections;
}
/**
* @return StompMessage
*/
public function createMessage(string $body = '', array $properties = [], array $headers = []): Message
{
return new StompMessage($body, $properties, $headers);
}
/**
* @return StompDestination
*/
public function createQueue(string $name): Queue
{
if (0 !== strpos($name, '/')) {
$destination = new StompDestination($this->extensionType);
$destination->setType(StompDestination::TYPE_QUEUE);
$destination->setStompName($name);
return $destination;
}
return $this->createDestination($name);
}
/**
* @return StompDestination
*/
public function createTemporaryQueue(): Queue
{
$queue = $this->createQueue(uniqid('', true));
$queue->setType(StompDestination::TYPE_TEMP_QUEUE);
return $queue;
}
/**
* @return StompDestination
*/
public function createTopic(string $name): Topic
{
if (0 !== strpos($name, '/')) {
$destination = new StompDestination($this->extensionType);
$destination->setType($this->useExchangePrefix ? StompDestination::TYPE_EXCHANGE : StompDestination::TYPE_TOPIC);
$destination->setStompName($name);
return $destination;
}
return $this->createDestination($name);
}
public function createDestination(string $destination): StompDestination
{
$types = [
StompDestination::TYPE_TOPIC,
StompDestination::TYPE_EXCHANGE,
StompDestination::TYPE_QUEUE,
StompDestination::TYPE_AMQ_QUEUE,
StompDestination::TYPE_TEMP_QUEUE,
StompDestination::TYPE_REPLY_QUEUE,
];
$dest = $destination;
$type = null;
$name = null;
$routingKey = null;
foreach ($types as $_type) {
$typePrefix = '/'.$_type.'/';
if (0 === strpos($dest, $typePrefix)) {
$type = $_type;
$dest = substr($dest, strlen($typePrefix));
break;
}
}
if (null === $type) {
throw new \LogicException(sprintf('Destination name is invalid, cant find type: "%s"', $destination));
}
$pieces = explode('/', $dest);
if (count($pieces) > 2) {
throw new \LogicException(sprintf('Destination name is invalid, found extra / char: "%s"', $destination));
}
if (empty($pieces[0])) {
throw new \LogicException(sprintf('Destination name is invalid, name is empty: "%s"', $destination));
}
$name = $pieces[0];
if (isset($pieces[1])) {
if (empty($pieces[1])) {
throw new \LogicException(sprintf('Destination name is invalid, routing key is empty: "%s"', $destination));
}
$routingKey = $pieces[1];
}
$destination = new StompDestination($this->extensionType);
$destination->setType($type);
$destination->setStompName($name);
$destination->setRoutingKey($routingKey);
return $destination;
}
/**
* @param StompDestination $destination
*
* @return StompConsumer
*/
public function createConsumer(Destination $destination): Consumer
{
InvalidDestinationException::assertDestinationInstanceOf($destination, StompDestination::class);
$this->transient = false;
return new StompConsumer($this->getStomp(), $destination);
}
/**
* @return StompProducer
*/
public function createProducer(): Producer
{
if ($this->transient && $this->stomp) {
$this->stomp->disconnect();
}
return new StompProducer($this->getStomp());
}
public function close(): void
{
$this->getStomp()->disconnect();
}
public function createSubscriptionConsumer(): SubscriptionConsumer
{
throw SubscriptionConsumerNotSupportedException::providerDoestNotSupportIt();
}
public function purgeQueue(Queue $queue): void
{
throw PurgeQueueNotSupportedException::providerDoestNotSupportIt();
}
public function getStomp(): BufferedStompClient
{
if (false == $this->stomp) {
$this->stomp = $this->createStomp();
}
return $this->stomp;
}
private function createStomp(): BufferedStompClient
{
$stomp = call_user_func($this->stompFactory);
if (false == $stomp instanceof BufferedStompClient) {
throw new \LogicException(sprintf('The factory must return instance of BufferedStompClient. It returns %s', is_object($stomp) ? get_class($stomp) : gettype($stomp)));
}
return $stomp;
}
}