-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathPheanstalkConnectionFactory.php
117 lines (101 loc) · 2.95 KB
/
PheanstalkConnectionFactory.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
<?php
declare(strict_types=1);
namespace Enqueue\Pheanstalk;
use Interop\Queue\ConnectionFactory;
use Interop\Queue\Context;
use Pheanstalk\Pheanstalk;
class PheanstalkConnectionFactory implements ConnectionFactory
{
/**
* @var array
*/
private $config;
/**
* @var Pheanstalk
*/
private $connection;
/**
* The config could be an array, string DSN or null. In case of null it will attempt to connect to localhost with default settings.
*
* [
* 'host' => 'localhost',
* 'port' => 11300,
* 'timeout' => null,
* 'persisted' => true,
* ]
*
* or
*
* beanstalk: - connects to localhost:11300
* beanstalk://host:port
*
* @param array|string $config
*/
public function __construct($config = 'beanstalk:')
{
if (empty($config) || 'beanstalk:' === $config) {
$config = [];
} elseif (is_string($config)) {
$config = $this->parseDsn($config);
} elseif (is_array($config)) {
} 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 PheanstalkContext
*/
public function createContext(): Context
{
return new PheanstalkContext($this->establishConnection());
}
private function establishConnection(): Pheanstalk
{
if (false == $this->connection) {
$this->connection = new Pheanstalk(
$this->config['host'],
$this->config['port'],
$this->config['timeout'],
$this->config['persisted']
);
}
return $this->connection;
}
private function parseDsn(string $dsn): array
{
$dsnConfig = parse_url($dsn);
if (false === $dsnConfig) {
throw new \LogicException(sprintf('Failed to parse DSN "%s"', $dsn));
}
$dsnConfig = array_replace([
'scheme' => null,
'host' => null,
'port' => null,
'user' => null,
'pass' => null,
'path' => null,
'query' => null,
], $dsnConfig);
if ('beanstalk' !== $dsnConfig['scheme']) {
throw new \LogicException(sprintf('The given DSN scheme "%s" is not supported. Could be "beanstalk" only.', $dsnConfig['scheme']));
}
$query = [];
if ($dsnConfig['query']) {
parse_str($dsnConfig['query'], $query);
}
return array_replace($query, [
'port' => $dsnConfig['port'],
'host' => $dsnConfig['host'],
]);
}
private function defaultConfig(): array
{
return [
'host' => 'localhost',
'port' => Pheanstalk::DEFAULT_PORT,
'timeout' => null,
'persisted' => true,
];
}
}