generated from yiisoft/package-template
-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathParameterDefinition.php
More file actions
223 lines (191 loc) · 6.81 KB
/
ParameterDefinition.php
File metadata and controls
223 lines (191 loc) · 6.81 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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
<?php
declare(strict_types=1);
namespace Yiisoft\Definitions;
use Psr\Container\ContainerInterface;
use ReflectionNamedType;
use ReflectionParameter;
use ReflectionUnionType;
use Throwable;
use Yiisoft\Definitions\Contract\DefinitionInterface;
use Yiisoft\Definitions\Exception\CircularReferenceException;
use Yiisoft\Definitions\Exception\NotInstantiableException;
use Yiisoft\Definitions\Exception\InvalidConfigException;
use function sprintf;
/**
* Parameter definition resolves an object based on information from `ReflectionParameter` instance.
*/
final class ParameterDefinition implements DefinitionInterface
{
public function __construct(
private readonly ReflectionParameter $parameter,
) {}
public function getReflection(): ReflectionParameter
{
return $this->parameter;
}
public function isVariadic(): bool
{
return $this->parameter->isVariadic();
}
public function isOptional(): bool
{
return $this->parameter->isOptional();
}
public function hasValue(): bool
{
return $this->parameter->isDefaultValueAvailable();
}
public function resolve(ContainerInterface $container): mixed
{
$type = $this->parameter->getType();
if ($type instanceof ReflectionUnionType) {
return $this->resolveUnionType($type, $container);
}
if (!$type instanceof ReflectionNamedType
|| $this->isVariadic()
|| $type->isBuiltin()
) {
return $this->resolveVariadicOrBuiltinOrIntersectionOrNonTyped();
}
$typeName = $type->getName();
/**
* @psalm-suppress TypeDoesNotContainType
* @see https://github.com/vimeo/psalm/issues/6756
*/
if ($typeName === 'self') {
// If type name is "self", it means that called class and
// $parameter->getDeclaringClass() returned instance of `ReflectionClass`.
/** @psalm-suppress PossiblyNullReference */
$typeName = $this->parameter->getDeclaringClass()->getName();
}
try {
$result = $container->get($typeName);
} catch (Throwable $t) {
if (
$this->parameter->isOptional()
&& (
$t instanceof CircularReferenceException
|| !$container->has($typeName)
)
) {
return $this->parameter->getDefaultValue();
}
throw $t;
}
if (!$result instanceof $typeName) {
$actualType = get_debug_type($result);
throw new InvalidConfigException(
"Container returned incorrect type \"$actualType\" for service \"{$type->getName()}\".",
);
}
return $result;
}
/**
* @throws NotInstantiableException
*/
private function resolveVariadicOrBuiltinOrIntersectionOrNonTyped(): mixed
{
if ($this->parameter->isDefaultValueAvailable()) {
return $this->parameter->getDefaultValue();
}
$type = $this->getType();
if ($type === null) {
throw new NotInstantiableException(
sprintf(
'Can not determine value of the "%s" parameter without type when instantiating "%s". ' .
'Please specify argument explicitly.',
$this->parameter->getName(),
$this->getCallable(),
),
);
}
throw new NotInstantiableException(
sprintf(
'Can not determine value of the "%s" parameter of type "%s" when instantiating "%s". ' .
'Please specify argument explicitly.',
$this->parameter->getName(),
$type,
$this->getCallable(),
),
);
}
/**
* Resolve union type string provided as a class name.
*
* @throws InvalidConfigException If an object of incorrect type was created.
* @throws Throwable
*
* @return mixed Ready to use object or null if definition can not be resolved and is marked as optional.
*/
private function resolveUnionType(ReflectionUnionType $parameterType, ContainerInterface $container): mixed
{
$types = $parameterType->getTypes();
$class = implode('|', $types);
foreach ($types as $type) {
/**
* @psalm-suppress DocblockTypeContradiction Need for PHP 8.1 only
*/
if (!$type instanceof ReflectionNamedType || $type->isBuiltin()) {
continue;
}
$typeName = $type->getName();
/**
* @psalm-suppress TypeDoesNotContainType
*
* @link https://github.com/vimeo/psalm/issues/6756
*/
if ($typeName === 'self') {
// If type name is "self", it means that called class and
// $parameter->getDeclaringClass() returned instance of `ReflectionClass`.
/** @psalm-suppress PossiblyNullReference */
$typeName = $this->parameter->getDeclaringClass()->getName();
}
try {
$result = $container->get($typeName);
$resolved = true;
} catch (Throwable $t) {
$error = $t;
$resolved = false;
}
if ($resolved) {
/** @var mixed $result Exist, because $resolved is true */
if (!$result instanceof $typeName) {
$actualType = get_debug_type($result);
throw new InvalidConfigException(
"Container returned incorrect type \"$actualType\" for service \"$class\".",
);
}
return $result;
}
/** @var Throwable $error Exist, because $resolved is false */
if (
!$error instanceof CircularReferenceException
&& $container->has($typeName)
) {
throw $error;
}
}
if ($this->parameter->isOptional()) {
return $this->parameter->getDefaultValue();
}
if (!isset($error)) {
return $this->resolveVariadicOrBuiltinOrIntersectionOrNonTyped();
}
throw $error;
}
private function getType(): ?string
{
$type = $this->parameter->getType();
return $type === null ? null : (string) $type;
}
private function getCallable(): string
{
$callable = [];
$class = $this->parameter->getDeclaringClass();
if ($class !== null) {
$callable[] = $class->getName();
}
$callable[] = $this->parameter->getDeclaringFunction()->getName() . '()';
return implode('::', $callable);
}
}