-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathManagerRegistryConnectionFactory.php
More file actions
77 lines (65 loc) · 1.92 KB
/
ManagerRegistryConnectionFactory.php
File metadata and controls
77 lines (65 loc) · 1.92 KB
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
<?php
declare(strict_types=1);
namespace Enqueue\Dbal;
use Doctrine\DBAL\Connection;
use Doctrine\Persistence\ManagerRegistry;
use Interop\Queue\ConnectionFactory;
use Interop\Queue\Context;
class ManagerRegistryConnectionFactory implements ConnectionFactory
{
/**
* @var ManagerRegistry
*/
private $registry;
/**
* @var array
*/
private $config;
/**
* $config = [
* 'connection_name' => null, - doctrine dbal connection name
* 'table_name' => 'enqueue', - database table name.
* 'polling_interval' => 1000, - How often query for new messages (milliseconds)
* 'lazy' => true, - Use lazy database connection (boolean)
* ].
*/
public function __construct(ManagerRegistry $registry, array $config = [])
{
$this->config = array_replace([
'connection_name' => null,
'lazy' => true,
], $config);
$this->registry = $registry;
}
/**
* @return DbalContext
*/
public function createContext(): Context
{
if ($this->config['lazy']) {
return new DbalContext(function () {
return $this->establishConnection();
}, $this->config);
}
return new DbalContext($this->establishConnection(), $this->config);
}
public function close(): void
{
}
private function establishConnection(): Connection
{
/** @var Connection $connection */
$connection = $this->registry->getConnection($this->config['connection_name']);
if (
method_exists($connection, 'connect')
&& (new \ReflectionMethod($connection, 'connect'))->isPublic()
) {
// DBAL < 4
$connection->connect();
} else {
// DBAL >= 4, calls connect() internally
$connection->getServerVersion();
}
return $connection;
}
}