-
Notifications
You must be signed in to change notification settings - Fork 13
/
ManagerRegistryConnectionFactory.php
67 lines (55 loc) · 1.58 KB
/
ManagerRegistryConnectionFactory.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
<?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
{
$connection = $this->registry->getConnection($this->config['connection_name']);
$connection->connect();
return $connection;
}
}