forked from php-enqueue/stomp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
StompConnectionFactory.php
175 lines (150 loc) · 5.64 KB
/
StompConnectionFactory.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
<?php
declare(strict_types=1);
namespace Enqueue\Stomp;
use Enqueue\Dsn\Dsn;
use Interop\Queue\ConnectionFactory;
use Interop\Queue\Context;
use Stomp\Network\Connection;
use Stomp\Network\Observer\HeartbeatEmitter;
use Stomp\Network\Observer\ServerAliveObserver;
class StompConnectionFactory implements ConnectionFactory
{
const SUPPORTED_SCHEMES = [
ExtensionType::ACTIVEMQ,
ExtensionType::RABBITMQ,
ExtensionType::ARTEMIS,
];
/**
* @var array
*/
private $config;
/**
* @var BufferedStompClient
*/
private $stomp;
/**
* $config = [
* 'host' => null,
* 'port' => null,
* 'login' => null,
* 'password' => null,
* 'vhost' => null,
* 'buffer_size' => 1000,
* 'connection_timeout' => 1,
* 'sync' => false,
* 'lazy' => true,
* 'ssl_on' => false,
* ].
*
* or
*
* stomp:
* stomp:?buffer_size=100
*
* @param array|string|null $config
*/
public function __construct($config = 'stomp:')
{
if (empty($config) || 'stomp:' === $config) {
$config = [];
} elseif (is_string($config)) {
$config = $this->parseDsn($config);
} elseif (is_array($config)) {
if (array_key_exists('dsn', $config)) {
$config = array_replace($config, $this->parseDsn($config['dsn']));
unset($config['dsn']);
}
} else {
throw new \LogicException('The config must be either an array of options, a DSN string or null');
}
$this->config = array_replace($this->defaultConfig(), $config);
}
/**
* @return StompContext
*/
public function createContext(): Context
{
$stomp = $this->config['lazy']
? function () { return $this->establishConnection(); }
: $this->establishConnection();
$target = $this->config['target'];
$detectTransientConnections = (bool) $this->config['detect_transient_connections'];
return new StompContext($stomp, $target, $detectTransientConnections);
}
private function establishConnection(): BufferedStompClient
{
if (false == $this->stomp) {
$config = $this->config;
$scheme = (true === $config['ssl_on']) ? 'ssl' : 'tcp';
$uri = $scheme.'://'.$config['host'].':'.$config['port'];
$connection = new Connection($uri, $config['connection_timeout']);
$connection->setWriteTimeout($config['write_timeout']);
$connection->setReadTimeout($config['read_timeout']);
if ($config['send_heartbeat']) {
$connection->getObservers()->addObserver(new HeartbeatEmitter($connection));
}
if ($config['receive_heartbeat']) {
$connection->getObservers()->addObserver(new ServerAliveObserver());
}
$this->stomp = new BufferedStompClient($connection, $config['buffer_size']);
$this->stomp->setLogin($config['login'], $config['password']);
$this->stomp->setVhostname($config['vhost']);
$this->stomp->setSync($config['sync']);
$this->stomp->setHeartbeat($config['send_heartbeat'], $config['receive_heartbeat']);
$this->stomp->connect();
}
return $this->stomp;
}
private function parseDsn(string $dsn): array
{
$dsn = Dsn::parseFirst($dsn);
if ('stomp' !== $dsn->getSchemeProtocol()) {
throw new \LogicException(sprintf('The given DSN is not supported. Must start with "stomp:".'));
}
$schemeExtension = current($dsn->getSchemeExtensions());
if (false === $schemeExtension) {
$schemeExtension = ExtensionType::RABBITMQ;
}
if (false === in_array($schemeExtension, self::SUPPORTED_SCHEMES, true)) {
throw new \LogicException(sprintf('The given DSN is not supported. The scheme extension "%s" provided is not supported. It must be one of %s.', $schemeExtension, implode(', ', self::SUPPORTED_SCHEMES)));
}
return array_filter(array_replace($dsn->getQuery(), [
'target' => $schemeExtension,
'host' => $dsn->getHost(),
'port' => $dsn->getPort(),
'login' => $dsn->getUser(),
'password' => $dsn->getPassword(),
'vhost' => null !== $dsn->getPath() ? ltrim($dsn->getPath(), '/') : null,
'buffer_size' => $dsn->getDecimal('buffer_size'),
'connection_timeout' => $dsn->getDecimal('connection_timeout'),
'sync' => $dsn->getBool('sync'),
'lazy' => $dsn->getBool('lazy'),
'ssl_on' => $dsn->getBool('ssl_on'),
'write_timeout' => $dsn->getDecimal('write_timeout'),
'read_timeout' => $dsn->getDecimal('read_timeout'),
'send_heartbeat' => $dsn->getDecimal('send_heartbeat'),
'receive_heartbeat' => $dsn->getDecimal('receive_heartbeat'),
]), function ($value) { return null !== $value; });
}
private function defaultConfig(): array
{
return [
'target' => ExtensionType::RABBITMQ,
'host' => 'localhost',
'port' => 61613,
'login' => 'guest',
'password' => 'guest',
'vhost' => '/',
'buffer_size' => 1000,
'connection_timeout' => 1,
'sync' => false,
'lazy' => true,
'ssl_on' => false,
'write_timeout' => 3,
'read_timeout' => 60,
'send_heartbeat' => 0,
'receive_heartbeat' => 0,
'detect_transient_connections' => false,
];
}
}