-
Notifications
You must be signed in to change notification settings - Fork 7
/
StompDestination.php
179 lines (143 loc) · 3.82 KB
/
StompDestination.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
<?php
declare(strict_types=1);
namespace Enqueue\Stomp;
use Interop\Queue\Queue;
use Interop\Queue\Topic;
class StompDestination implements Topic, Queue
{
const TYPE_TOPIC = 'topic';
const TYPE_EXCHANGE = 'exchange';
const TYPE_QUEUE = 'queue';
const TYPE_AMQ_QUEUE = 'amq/queue';
const TYPE_TEMP_QUEUE = 'temp-queue';
const TYPE_REPLY_QUEUE = 'reply-queue';
const HEADER_DURABLE = 'durable';
const HEADER_AUTO_DELETE = 'auto-delete';
const HEADER_EXCLUSIVE = 'exclusive';
/**
* @var string
*/
private $name;
/**
* @var string
*/
private $type;
/**
* @var string
*/
private $routingKey;
/**
* @var array
*/
private $headers;
/**
* @var string
*/
private $extensionType;
public function __construct(string $extensionType)
{
$this->headers = [
self::HEADER_DURABLE => false,
self::HEADER_AUTO_DELETE => true,
self::HEADER_EXCLUSIVE => false,
];
$this->extensionType = $extensionType;
}
public function getExtensionType(): string
{
return $this->extensionType;
}
public function getStompName(): string
{
return $this->name;
}
public function setStompName(string $name): void
{
$this->name = $name;
}
public function getQueueName(): string
{
if (empty($this->getStompName())) {
throw new \LogicException('Destination name is not set');
}
if (ExtensionType::ARTEMIS === $this->extensionType) {
return $this->getStompName();
}
$name = '/'.$this->getType().'/'.$this->getStompName();
if ($this->getRoutingKey()) {
$name .= '/'.$this->getRoutingKey();
}
return $name;
}
public function getTopicName(): string
{
return $this->getQueueName();
}
public function getType(): string
{
return $this->type;
}
public function setType(string $type): void
{
$types = [
self::TYPE_TOPIC,
self::TYPE_EXCHANGE,
self::TYPE_QUEUE,
self::TYPE_AMQ_QUEUE,
self::TYPE_TEMP_QUEUE,
self::TYPE_REPLY_QUEUE,
];
if (false == in_array($type, $types, true)) {
throw new \LogicException(sprintf('Invalid destination type: "%s"', $type));
}
$this->type = $type;
}
public function getRoutingKey(): ?string
{
return $this->routingKey;
}
public function setRoutingKey(string $routingKey = null): void
{
$this->routingKey = $routingKey;
}
public function isDurable(): bool
{
return $this->getHeader(self::HEADER_DURABLE, false);
}
public function setDurable(bool $durable): void
{
$this->setHeader(self::HEADER_DURABLE, $durable);
}
public function isAutoDelete(): bool
{
return $this->getHeader(self::HEADER_AUTO_DELETE, false);
}
public function setAutoDelete(bool $autoDelete): void
{
$this->setHeader(self::HEADER_AUTO_DELETE, $autoDelete);
}
public function isExclusive(): bool
{
return $this->getHeader(self::HEADER_EXCLUSIVE, false);
}
public function setExclusive(bool $exclusive): void
{
$this->setHeader(self::HEADER_EXCLUSIVE, $exclusive);
}
public function setHeaders(array $headers): void
{
$this->headers = $headers;
}
public function getHeaders(): array
{
return $this->headers;
}
public function getHeader(string $name, $default = null)
{
return array_key_exists($name, $this->headers) ? $this->headers[$name] : $default;
}
public function setHeader(string $name, $value): void
{
$this->headers[$name] = $value;
}
}