-
Notifications
You must be signed in to change notification settings - Fork 440
/
Copy pathRedisTransportFactory.php
136 lines (119 loc) · 4.41 KB
/
RedisTransportFactory.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
<?php
namespace Enqueue\Redis\Symfony;
use Enqueue\Redis\Client\RedisDriver;
use Enqueue\Redis\RedisConnectionFactory;
use Enqueue\Redis\RedisContext;
use Enqueue\Symfony\DriverFactoryInterface;
use Enqueue\Symfony\TransportFactoryInterface;
use Symfony\Component\Config\Definition\Builder\ArrayNodeDefinition;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\DependencyInjection\Definition;
use Symfony\Component\DependencyInjection\Reference;
class RedisTransportFactory implements TransportFactoryInterface, DriverFactoryInterface
{
/**
* @var string
*/
private $name;
/**
* @param string $name
*/
public function __construct($name = 'redis')
{
$this->name = $name;
}
/**
* {@inheritdoc}
*/
public function addConfiguration(ArrayNodeDefinition $builder)
{
$builder
->beforeNormalization()
->ifTrue(function ($node) {
return empty($node['dsn']) && (empty($node['host']) || empty($node['vendor']));
})
->thenInvalid('Invalid configuration %s')
->end()
->children()
->scalarNode('dsn')
->info('The redis connection given as DSN. For example redis://host:port?vendor=predis')
->end()
->scalarNode('host')
->cannotBeEmpty()
->info('can be a host, or the path to a unix domain socket')
->end()
->integerNode('port')->end()
->enumNode('vendor')
->values(['phpredis', 'predis', 'custom'])
->cannotBeEmpty()
->info('The library used internally to interact with Redis server')
->end()
->scalarNode('redis')
->cannotBeEmpty()
->info('A custom redis service id, used with vendor true only')
->end()
->booleanNode('persisted')
->defaultFalse()
->info('bool, Whether it use single persisted connection or open a new one for every context')
->end()
->booleanNode('lazy')
->defaultTrue()
->info('the connection will be performed as later as possible, if the option set to true')
->end()
->integerNode('database')
->defaultValue(0)
->info('Database index to select when connected.')
->end()
;
}
/**
* {@inheritdoc}
*/
public function createConnectionFactory(ContainerBuilder $container, array $config)
{
if (false == empty($config['redis'])) {
$config['redis'] = new Reference($config['redis']);
}
$factory = new Definition(RedisConnectionFactory::class);
$factory->setArguments([isset($config['dsn']) ? $config['dsn'] : $config]);
$factoryId = sprintf('enqueue.transport.%s.connection_factory', $this->getName());
$container->setDefinition($factoryId, $factory);
return $factoryId;
}
/**
* {@inheritdoc}
*/
public function createContext(ContainerBuilder $container, array $config)
{
$factoryId = sprintf('enqueue.transport.%s.connection_factory', $this->getName());
$context = new Definition(RedisContext::class);
$context->setPublic(true);
$context->setFactory([new Reference($factoryId), 'createContext']);
$contextId = sprintf('enqueue.transport.%s.context', $this->getName());
$container->setDefinition($contextId, $context);
return $contextId;
}
/**
* {@inheritdoc}
*/
public function createDriver(ContainerBuilder $container, array $config)
{
$driver = new Definition(RedisDriver::class);
$driver->setPublic(true);
$driver->setArguments([
new Reference(sprintf('enqueue.transport.%s.context', $this->getName())),
new Reference('enqueue.client.config'),
new Reference('enqueue.client.meta.queue_meta_registry'),
]);
$driverId = sprintf('enqueue.client.%s.driver', $this->getName());
$container->setDefinition($driverId, $driver);
return $driverId;
}
/**
* {@inheritdoc}
*/
public function getName()
{
return $this->name;
}
}