-
Notifications
You must be signed in to change notification settings - Fork 506
/
Copy pathPhpMethodFromParserNodeReflection.php
299 lines (262 loc) · 7.48 KB
/
PhpMethodFromParserNodeReflection.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
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
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
<?php declare(strict_types = 1);
namespace PHPStan\Reflection\Php;
use PhpParser\Node;
use PhpParser\Node\Stmt\ClassMethod;
use PHPStan\Reflection\Assertions;
use PHPStan\Reflection\AttributeReflection;
use PHPStan\Reflection\ClassMemberReflection;
use PHPStan\Reflection\ClassReflection;
use PHPStan\Reflection\ExtendedMethodReflection;
use PHPStan\Reflection\MissingMethodFromReflectionException;
use PHPStan\ShouldNotHappenException;
use PHPStan\TrinaryLogic;
use PHPStan\Type\ArrayType;
use PHPStan\Type\BooleanType;
use PHPStan\Type\Generic\TemplateTypeMap;
use PHPStan\Type\IntegerType;
use PHPStan\Type\MixedType;
use PHPStan\Type\ObjectWithoutClassType;
use PHPStan\Type\StringType;
use PHPStan\Type\Type;
use PHPStan\Type\TypeCombinator;
use PHPStan\Type\VoidType;
use function in_array;
use function sprintf;
use function strtolower;
/**
* @api
*/
final class PhpMethodFromParserNodeReflection extends PhpFunctionFromParserNodeReflection implements ExtendedMethodReflection
{
/**
* @param Type[] $realParameterTypes
* @param Type[] $phpDocParameterTypes
* @param Type[] $realParameterDefaultValues
* @param array<string, list<AttributeReflection>> $parameterAttributes
* @param array<string, bool> $immediatelyInvokedCallableParameters
* @param array<string, Type> $phpDocClosureThisTypeParameters
* @param list<AttributeReflection> $attributes
*/
public function __construct(
private ClassReflection $declaringClass,
private ClassMethod|Node\PropertyHook $classMethod,
private ?string $hookForProperty,
string $fileName,
TemplateTypeMap $templateTypeMap,
array $realParameterTypes,
array $phpDocParameterTypes,
array $realParameterDefaultValues,
array $parameterAttributes,
Type $realReturnType,
?Type $phpDocReturnType,
?Type $throwType,
?string $deprecatedDescription,
bool $isDeprecated,
bool $isInternal,
private bool $isFinal,
?bool $isPure,
bool $acceptsNamedArguments,
Assertions $assertions,
private ?Type $selfOutType,
?string $phpDocComment,
array $parameterOutTypes,
array $immediatelyInvokedCallableParameters,
array $phpDocClosureThisTypeParameters,
private bool $isConstructor,
array $attributes,
)
{
if ($this->classMethod instanceof Node\PropertyHook) {
if ($this->hookForProperty === null) {
throw new ShouldNotHappenException('Hook was provided but property was not');
}
} elseif ($this->hookForProperty !== null) {
throw new ShouldNotHappenException('Hooked property was provided but hook was not');
}
$name = strtolower($classMethod->name->name);
if ($this->isConstructor) {
$realReturnType = new VoidType();
}
if (in_array($name, ['__destruct', '__unset', '__wakeup', '__clone'], true)) {
$realReturnType = new VoidType();
}
if ($name === '__tostring') {
$realReturnType = new StringType();
}
if ($name === '__isset') {
$realReturnType = new BooleanType();
}
if ($name === '__sleep') {
$realReturnType = new ArrayType(new IntegerType(), new StringType());
}
if ($name === '__set_state') {
$realReturnType = TypeCombinator::intersect(new ObjectWithoutClassType(), $realReturnType);
}
if ($name === '__set') {
$realReturnType = new VoidType();
}
if ($name === '__debuginfo') {
$realReturnType = TypeCombinator::intersect(TypeCombinator::addNull(
new ArrayType(new MixedType(true), new MixedType(true)),
), $realReturnType);
}
if ($name === '__unserialize') {
$realReturnType = new VoidType();
}
if ($name === '__serialize') {
$realReturnType = new ArrayType(new MixedType(true), new MixedType(true));
}
parent::__construct(
$classMethod,
$fileName,
$templateTypeMap,
$realParameterTypes,
$phpDocParameterTypes,
$realParameterDefaultValues,
$parameterAttributes,
$realReturnType,
$phpDocReturnType,
$throwType,
$deprecatedDescription,
$isDeprecated,
$isInternal,
$isPure,
$acceptsNamedArguments,
$assertions,
$phpDocComment,
$parameterOutTypes,
$immediatelyInvokedCallableParameters,
$phpDocClosureThisTypeParameters,
$attributes,
);
}
public function getDeclaringClass(): ClassReflection
{
return $this->declaringClass;
}
public function getPrototype(): ClassMemberReflection
{
try {
return $this->declaringClass->getNativeMethod($this->getClassMethod()->name->name)->getPrototype();
} catch (MissingMethodFromReflectionException) {
return $this;
}
}
private function getClassMethod(): ClassMethod|Node\PropertyHook
{
/** @var Node\Stmt\ClassMethod|Node\PropertyHook $functionLike */
$functionLike = $this->getFunctionLike();
return $functionLike;
}
public function getName(): string
{
$function = $this->getFunctionLike();
if (!$function instanceof Node\PropertyHook) {
return parent::getName();
}
if ($this->hookForProperty === null) {
throw new ShouldNotHappenException('Hook was provided but property was not');
}
return sprintf('$%s::%s', $this->hookForProperty, $function->name->toString());
}
/**
* @phpstan-assert-if-true !null $this->getHookedPropertyName()
* @phpstan-assert-if-true !null $this->getPropertyHookName()
*/
public function isPropertyHook(): bool
{
return $this->hookForProperty !== null;
}
public function getHookedPropertyName(): ?string
{
return $this->hookForProperty;
}
/**
* @return 'get'|'set'|null
*/
public function getPropertyHookName(): ?string
{
$function = $this->getFunctionLike();
if (!$function instanceof Node\PropertyHook) {
return null;
}
$name = $function->name->toLowerString();
if (!in_array($name, ['get', 'set'], true)) {
throw new ShouldNotHappenException(sprintf('Unknown property hook: %s', $name));
}
return $name;
}
public function isStatic(): bool
{
$method = $this->getClassMethod();
if ($method instanceof Node\PropertyHook) {
return false;
}
return $method->isStatic();
}
public function isPrivate(): bool
{
$method = $this->getClassMethod();
if ($method instanceof Node\PropertyHook) {
return false;
}
return $method->isPrivate();
}
public function isPublic(): bool
{
$method = $this->getClassMethod();
if ($method instanceof Node\PropertyHook) {
return true;
}
return $method->isPublic();
}
public function isFinal(): TrinaryLogic
{
$method = $this->getClassMethod();
if ($method instanceof Node\PropertyHook) {
return TrinaryLogic::createFromBoolean($method->isFinal());
}
return TrinaryLogic::createFromBoolean($method->isFinal() || $this->isFinal);
}
public function isFinalByKeyword(): TrinaryLogic
{
return TrinaryLogic::createFromBoolean($this->getClassMethod()->isFinal());
}
public function isBuiltin(): bool
{
return false;
}
public function getSelfOutType(): ?Type
{
return $this->selfOutType;
}
public function returnsByReference(): TrinaryLogic
{
return TrinaryLogic::createFromBoolean($this->getClassMethod()->returnsByRef());
}
public function isAbstract(): TrinaryLogic
{
$method = $this->getClassMethod();
if ($method instanceof Node\PropertyHook) {
return TrinaryLogic::createFromBoolean($method->body === null);
}
return TrinaryLogic::createFromBoolean($method->isAbstract());
}
public function isConstructor(): bool
{
return $this->isConstructor;
}
public function hasSideEffects(): TrinaryLogic
{
if (
strtolower($this->getName()) !== '__construct'
&& $this->getReturnType()->isVoid()->yes()
) {
return TrinaryLogic::createYes();
}
if ($this->isPure !== null) {
return TrinaryLogic::createFromBoolean(!$this->isPure);
}
return TrinaryLogic::createMaybe();
}
}