-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathAdapterAbstractServiceFactory.php
More file actions
124 lines (110 loc) · 3.87 KB
/
AdapterAbstractServiceFactory.php
File metadata and controls
124 lines (110 loc) · 3.87 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
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
<?php
declare(strict_types=1);
namespace PhpDb\Adapter\Pgsql\Container;
use Laminas\ServiceManager\Exception\ServiceNotCreatedException;
use Laminas\ServiceManager\Factory\AbstractFactoryInterface;
use Laminas\ServiceManager\ServiceManager;
use PhpDb\Adapter\Adapter;
use PhpDb\Adapter\AdapterInterface;
use PhpDb\Adapter\Driver\DriverInterface;
use PhpDb\Adapter\Driver\PdoDriverInterface;
use PhpDb\Adapter\Platform\PlatformInterface;
use PhpDb\Adapter\Profiler\ProfilerInterface;
use PhpDb\ResultSet\ResultSetInterface;
use Psr\Container\ContainerInterface;
use function is_array;
/**
* Database adapter abstract service factory.
*
* Allows configuring several database instances (such as writer and reader).
*
* @internal
*/
class AdapterAbstractServiceFactory implements AbstractFactoryInterface
{
protected ?array $config = null;
/**
* Can we create an adapter by the requested name?
*
* @param string $requestedName
*/
public function canCreate(ContainerInterface $container, $requestedName): bool
{
$config = $this->getConfig($container);
if ($config === []) {
return false;
}
return isset($config[$requestedName])
&& is_array($config[$requestedName])
&& ! empty($config[$requestedName]);
}
/**
* Create a DB adapter
*
* @param string $requestedName
*/
public function __invoke(
ContainerInterface|ServiceManager $container,
$requestedName,
?array $options = null
): AdapterInterface&Adapter {
/** @var string|null $driverClass */
$driverClass = $this->config[$requestedName]['driver'] ?? null;
if ($driverClass === null) {
throw new ServiceNotCreatedException(
sprintf('Cannot create adapter "%s"; no driver configured', $requestedName)
);
}
/** @var DriverInterface|PdoDriverInterface $driver */
$driver = $container->build($driverClass, $this->config[$requestedName]);
/** @var PlatformInterface&Pgsql\AdapterPlatform $platform */
$platform = $container->build(PlatformInterface::class, ['driver' => $driver]);
/** @var ResultSetInterface|null $resultSet */
$resultSet = $container->has(ResultSetInterface::class)
? $container->build(ResultSetInterface::class)
: null;
/** @var ProfilerInterface|null $profiler */
$profiler = $container->has(ProfilerInterface::class)
? $container->build(ProfilerInterface::class)
: null;
return match(true) {
$resultSet !== null && $profiler !== null => new Adapter(
driver: $driver,
platform: $platform,
queryResultSetPrototype: $resultSet,
profiler: $profiler,
),
$resultSet !== null => new Adapter(
driver: $driver,
platform: $platform,
queryResultSetPrototype: $resultSet,
),
$profiler !== null => new Adapter(
driver: $driver,
platform: $platform,
profiler: $profiler,
),
default => new Adapter(
driver: $driver,
platform: $platform,
),
};
}
/**
* Get db configuration, if any
* todo: refactor to use PhpDb\ConfigProvider::NAMED_ADAPTER_KEY instead of hardcoding 'adapters'
*/
protected function getConfig(ContainerInterface $container): array
{
if ($this->config !== null) {
return $this->config;
}
if (! $container->has('config')) {
$this->config = [];
return $this->config;
}
$config = $container->get('config');
$this->config = $config[AdapterInterface::class]['adapters'] ?? [];
return $this->config;
}
}