-
Notifications
You must be signed in to change notification settings - Fork 587
Expand file tree
/
Copy pathStaticCallHandler.php
More file actions
484 lines (439 loc) · 19 KB
/
Copy pathStaticCallHandler.php
File metadata and controls
484 lines (439 loc) · 19 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
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
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
<?php declare(strict_types = 1);
namespace PHPStan\Analyser\ExprHandler;
use PhpParser\Node\Expr;
use PhpParser\Node\Expr\BinaryOp\Identical;
use PhpParser\Node\Expr\New_;
use PhpParser\Node\Expr\StaticCall;
use PhpParser\Node\Expr\Variable;
use PhpParser\Node\Identifier;
use PhpParser\Node\Name;
use PhpParser\Node\Scalar\String_;
use PhpParser\Node\Stmt;
use PHPStan\Analyser\ArgumentsNormalizer;
use PHPStan\Analyser\ExpressionContext;
use PHPStan\Analyser\ExpressionResult;
use PHPStan\Analyser\ExpressionResultFactory;
use PHPStan\Analyser\ExpressionResultStorage;
use PHPStan\Analyser\ExprHandler;
use PHPStan\Analyser\ExprHandler\Helper\EarlyTerminatingCallHelper;
use PHPStan\Analyser\ExprHandler\Helper\MethodCallReturnTypeHelper;
use PHPStan\Analyser\ExprHandler\Helper\MethodThrowPointHelper;
use PHPStan\Analyser\ExprHandler\Helper\NullsafeShortCircuitingHelper;
use PHPStan\Analyser\ImpurePoint;
use PHPStan\Analyser\InternalThrowPoint;
use PHPStan\Analyser\MutatingScope;
use PHPStan\Analyser\NodeScopeResolver;
use PHPStan\Analyser\NoopNodeCallback;
use PHPStan\Analyser\Scope;
use PHPStan\Analyser\SpecifiedTypes;
use PHPStan\Analyser\TypeSpecifier;
use PHPStan\Analyser\TypeSpecifierContext;
use PHPStan\DependencyInjection\AutowiredParameter;
use PHPStan\DependencyInjection\AutowiredService;
use PHPStan\Node\Expr\PossiblyImpureCallExpr;
use PHPStan\Reflection\Callables\SimpleImpurePoint;
use PHPStan\Reflection\ExtendedParametersAcceptor;
use PHPStan\Reflection\MethodReflection;
use PHPStan\Reflection\ParametersAcceptorSelector;
use PHPStan\Reflection\ReflectionProvider;
use PHPStan\Type\ErrorType;
use PHPStan\Type\Generic\TemplateTypeHelper;
use PHPStan\Type\Generic\TemplateTypeVariance;
use PHPStan\Type\Generic\TemplateTypeVarianceMap;
use PHPStan\Type\MixedType;
use PHPStan\Type\NeverType;
use PHPStan\Type\ObjectType;
use PHPStan\Type\StaticType;
use PHPStan\Type\Type;
use PHPStan\Type\TypeCombinator;
use PHPStan\Type\TypeWithClassName;
use ReflectionProperty;
use function array_map;
use function array_merge;
use function count;
use function in_array;
use function sprintf;
use function strtolower;
/**
* @implements ExprHandler<StaticCall>
*/
#[AutowiredService]
final class StaticCallHandler implements ExprHandler
{
public function __construct(
private EarlyTerminatingCallHelper $earlyTerminatingCallHelper,
private MethodCallReturnTypeHelper $methodCallReturnTypeHelper,
private MethodThrowPointHelper $methodThrowPointHelper,
private ReflectionProvider $reflectionProvider,
#[AutowiredParameter]
private bool $rememberPossiblyImpureFunctionValues,
private ExpressionResultFactory $expressionResultFactory,
)
{
}
public function supports(Expr $expr): bool
{
return $expr instanceof StaticCall && !$expr->isFirstClassCallable();
}
public function processExpr(NodeScopeResolver $nodeScopeResolver, Stmt $stmt, Expr $expr, MutatingScope $scope, ExpressionResultStorage $storage, callable $nodeCallback, ExpressionContext $context): ExpressionResult
{
$beforeScope = $scope;
$hasYield = false;
$throwPoints = [];
$impurePoints = [];
$isAlwaysTerminating = false;
$containsNullsafe = false;
if ($expr->class instanceof Expr) {
$classResult = $nodeScopeResolver->processExprNode($stmt, $expr->class, $scope, $storage, $nodeCallback, $context->enterDeep());
$hasYield = $classResult->hasYield();
$throwPoints = array_merge($throwPoints, $classResult->getThrowPoints());
$impurePoints = array_merge($impurePoints, $classResult->getImpurePoints());
$isAlwaysTerminating = $classResult->isAlwaysTerminating();
$scope = $classResult->getScope();
$containsNullsafe = $classResult->containsNullsafe();
}
$parametersAcceptor = null;
$variants = [];
$namedArgumentsVariants = null;
$methodReflection = null;
$closureBindScopeFactory = null;
if ($expr->name instanceof Identifier) {
if ($expr->class instanceof Name) {
$classType = $scope->resolveTypeByName($expr->class);
$methodName = $expr->name->name;
if ($classType->hasMethod($methodName)->yes()) {
$methodReflection = $classType->getMethod($methodName, $scope);
$variants = $methodReflection->getVariants();
$namedArgumentsVariants = $methodReflection->getNamedArgumentsVariants();
// A structural acceptor (names/positions/variadic) drives argument
// normalization, the impure point and the throw point - generics are
// resolved type-driven by processArgs() into $resolvedParametersAcceptor.
$parametersAcceptor = ParametersAcceptorSelector::combineVariantsForNormalization($expr->getArgs(), $variants, $namedArgumentsVariants);
$declaringClass = $methodReflection->getDeclaringClass();
if (
$declaringClass->getName() === 'Closure'
&& strtolower($methodName) === 'bind'
) {
// deferred until the closure argument is processed: with
// closures processed last, the bound $this/scope arguments
// are already evaluated on the scope the factory receives
$closureBindScopeFactory = static function (MutatingScope $boundScope) use ($expr): MutatingScope {
$thisType = null;
$nativeThisType = null;
if (isset($expr->getArgs()[1])) {
$argType = $boundScope->getType($expr->getArgs()[1]->value);
if ($argType->isNull()->yes()) {
$thisType = null;
} else {
$thisType = $argType;
}
$nativeArgType = $boundScope->getNativeType($expr->getArgs()[1]->value);
if ($nativeArgType->isNull()->yes()) {
$nativeThisType = null;
} else {
$nativeThisType = $nativeArgType;
}
}
$scopeClasses = ['static'];
if (isset($expr->getArgs()[2])) {
$argValue = $expr->getArgs()[2]->value;
$argValueType = $boundScope->getType($argValue);
$directClassNames = $argValueType->getObjectClassNames();
if (count($directClassNames) > 0) {
$scopeClasses = $directClassNames;
$thisTypes = [];
foreach ($directClassNames as $directClassName) {
$thisTypes[] = new ObjectType($directClassName);
}
$thisType = TypeCombinator::union(...$thisTypes);
} else {
$thisType = $argValueType->getClassStringObjectType();
$scopeClasses = $thisType->getObjectClassNames();
}
}
return $boundScope->enterClosureBind($thisType, $nativeThisType, $scopeClasses);
};
}
} else {
$throwPoints[] = InternalThrowPoint::createImplicit($scope, $expr);
}
} elseif ($expr->class instanceof Expr) {
$classType = $scope->getType($expr->class)->getObjectTypeOrClassStringObjectType();
$methodName = $expr->name->name;
$methodReflection = $scope->getMethodReflection($classType, $methodName);
if ($methodReflection !== null) {
$variants = $methodReflection->getVariants();
$namedArgumentsVariants = $methodReflection->getNamedArgumentsVariants();
$parametersAcceptor = ParametersAcceptorSelector::combineVariantsForNormalization($expr->getArgs(), $variants, $namedArgumentsVariants);
}
}
} else {
$nameResult = $nodeScopeResolver->processExprNode($stmt, $expr->name, $scope, $storage, $nodeCallback, $context->enterDeep());
$hasYield = $hasYield || $nameResult->hasYield();
$throwPoints = array_merge($throwPoints, $nameResult->getThrowPoints());
$impurePoints = array_merge($impurePoints, $nameResult->getImpurePoints());
$scope = $nameResult->getScope();
}
if ($expr->class instanceof Expr) {
$objectClasses = $scope->getType($expr->class)->getObjectClassNames();
if (count($objectClasses) !== 1) {
$objectClasses = $scope->getType(new New_($expr->class))->getObjectClassNames();
}
if (count($objectClasses) === 1) {
$objectExprResult = $nodeScopeResolver->processExprNode($stmt, new StaticCall(new Name($objectClasses[0]), $expr->name, []), $scope, $storage, new NoopNodeCallback(), $context->enterDeep());
$additionalThrowPoints = $objectExprResult->getThrowPoints();
} else {
$additionalThrowPoints = [InternalThrowPoint::createImplicit($scope, $expr)];
}
foreach ($additionalThrowPoints as $throwPoint) {
$throwPoints[] = $throwPoint;
}
}
if ($methodReflection !== null) {
$impurePoint = SimpleImpurePoint::createFromVariant($methodReflection, $parametersAcceptor, $scope, $expr->getArgs());
if ($impurePoint !== null) {
$impurePoints[] = new ImpurePoint($scope, $expr, $impurePoint->getIdentifier(), $impurePoint->getDescription(), $impurePoint->isCertain());
}
} else {
$impurePoints[] = new ImpurePoint(
$scope,
$expr,
'methodCall',
'call to unknown method',
false,
);
}
$normalizedExpr = $expr;
if ($parametersAcceptor !== null) {
$normalizedExpr = ArgumentsNormalizer::reorderStaticCallArguments($parametersAcceptor, $expr) ?? $expr;
$returnType = $parametersAcceptor->getReturnType();
$isAlwaysTerminating = $isAlwaysTerminating || ($returnType instanceof NeverType && $returnType->isExplicit());
}
$argsResult = $nodeScopeResolver->processArgs($stmt, $methodReflection, null, $variants, $namedArgumentsVariants, $normalizedExpr, $scope, $storage, $nodeCallback, $context, $closureBindScopeFactory);
$resolvedParametersAcceptor = $argsResult->getResolvedParametersAcceptor();
$scope = $argsResult->getScope();
$scopeFunction = $scope->getFunction();
if ($methodReflection !== null) {
// The early structural check above only sees the unresolved acceptor
// return type; a conditional-return never (e.g. `($x is Foo ? never :
// string)`) only resolves to never once the actual argument types are
// folded in by the type-driven resolved acceptor.
if ($resolvedParametersAcceptor !== null) {
$resolvedReturnType = $resolvedParametersAcceptor->getReturnType();
$isAlwaysTerminating = $isAlwaysTerminating || ($resolvedReturnType instanceof NeverType && $resolvedReturnType->isExplicit());
}
$methodThrowPoint = $this->methodThrowPointHelper->getThrowPoint($methodReflection, $parametersAcceptor, $normalizedExpr, $scope, $context);
if ($methodThrowPoint !== null) {
$throwPoints[] = $methodThrowPoint;
}
}
if (
$expr->class instanceof Name
&& $methodReflection !== null
&& (
(
!$methodReflection->isStatic()
&& $methodReflection->getName() === '__construct'
)
|| $methodReflection->hasSideEffects()->yes()
)
&& $scope->isInClass()
&& $scope->getClassReflection()->is($methodReflection->getDeclaringClass()->getName())
) {
// a static method never receives $this, so property fetches on it survive
$scope = $scope->invalidateExpression(new Variable('this'), true, $methodReflection->getDeclaringClass(), $methodReflection->isStatic());
} elseif (
$expr->class instanceof Name
&& $methodReflection !== null
&& $this->rememberPossiblyImpureFunctionValues
&& $scope->isInClass()
&& $scope->getClassReflection()->is($methodReflection->getDeclaringClass()->getName())
&& $methodReflection->hasSideEffects()->maybe()
&& !$methodReflection->getDeclaringClass()->isBuiltin()
) {
// the remembered call value is generic-sensitive: resolve it from the
// type-driven acceptor processArgs() selected (generics resolved against
// the actual arg types), falling back to the structural acceptor.
$acceptorForGenerics = $resolvedParametersAcceptor ?? $parametersAcceptor;
$scope = $scope->assignExpression(
new PossiblyImpureCallExpr($normalizedExpr, new Variable('this'), sprintf('%s::%s()', $methodReflection->getDeclaringClass()->getDisplayName(), $methodReflection->getName())),
$acceptorForGenerics->getReturnType(),
new MixedType(),
);
}
if (
$expr->class instanceof Name
&& $methodReflection !== null
&& !$methodReflection->isStatic()
&& $methodReflection->getName() === '__construct'
&& $scopeFunction instanceof MethodReflection
&& !$scopeFunction->isStatic()
&& $scope->isInClass()
&& $scope->getClassReflection()->isSubclassOfClass($methodReflection->getDeclaringClass())
) {
$thisType = $scope->getType(new Variable('this'));
$methodClassReflection = $methodReflection->getDeclaringClass();
foreach ($methodClassReflection->getNativeReflection()->getProperties(ReflectionProperty::IS_PUBLIC | ReflectionProperty::IS_PROTECTED) as $property) {
if (!$property->isPromoted() || $property->getDeclaringClass()->getName() !== $methodClassReflection->getName()) {
continue;
}
$scope = $scope->assignInitializedProperty($thisType, $property->getName());
}
}
if (
$methodReflection === null
|| (!$methodReflection->getDeclaringClass()->isBuiltin() && !$methodReflection->hasSideEffects()->no())
) {
$scope = $scope->invalidateVolatileExpressions();
}
$hasYield = $hasYield || $argsResult->hasYield();
$throwPoints = array_merge($throwPoints, $argsResult->getThrowPoints());
$impurePoints = array_merge($impurePoints, $argsResult->getImpurePoints());
$isAlwaysTerminating = $isAlwaysTerminating || $argsResult->isAlwaysTerminating();
return $this->expressionResultFactory->create(
$scope,
beforeScope: $beforeScope,
expr: $expr,
hasYield: $hasYield,
isAlwaysTerminating: $isAlwaysTerminating,
throwPoints: $throwPoints,
impurePoints: $impurePoints,
containsNullsafe: $containsNullsafe,
);
}
public function resolveType(MutatingScope $scope, Expr $expr): Type
{
if ($expr->name instanceof Identifier) {
$earlyTerminatingClassType = $expr->class instanceof Name
? $scope->resolveTypeByName($expr->class)
: $scope->getType($expr->class);
if ($this->earlyTerminatingCallHelper->isEarlyTerminatingMethodCall($expr->name->name, $earlyTerminatingClassType)) {
return new NeverType(true);
}
}
if ($expr->name instanceof Identifier) {
if ($scope->nativeTypesPromoted) {
if ($expr->class instanceof Name) {
$staticMethodCalledOnType = $this->resolveTypeByNameWithLateStaticBinding($scope, $expr->class, $expr->name);
} else {
$staticMethodCalledOnType = $scope->getNativeType($expr->class);
}
$methodReflection = $scope->getMethodReflection(
$staticMethodCalledOnType,
$expr->name->name,
);
if ($methodReflection === null) {
$callType = new ErrorType();
} else {
$callType = ParametersAcceptorSelector::combineAcceptors($methodReflection->getVariants())->getNativeReturnType();
}
if ($expr->class instanceof Expr) {
return NullsafeShortCircuitingHelper::getType($scope, $expr->class, $callType);
}
return $callType;
}
if ($expr->class instanceof Name) {
$staticMethodCalledOnType = $this->resolveTypeByNameWithLateStaticBinding($scope, $expr->class, $expr->name);
} else {
$staticMethodCalledOnType = TypeCombinator::removeNull($scope->getType($expr->class))->getObjectTypeOrClassStringObjectType();
}
$callType = $this->methodCallReturnTypeHelper->methodCallReturnType(
$scope,
$staticMethodCalledOnType,
$expr->name->toString(),
$expr,
);
if ($callType === null) {
$callType = new ErrorType();
}
if ($expr->class instanceof Expr) {
return NullsafeShortCircuitingHelper::getType($scope, $expr->class, $callType);
}
return $callType;
}
$nameType = $scope->getType($expr->name);
if (count($nameType->getConstantStrings()) > 0) {
return TypeCombinator::union(
...array_map(static fn ($constantString) => $constantString->getValue() === '' ? new ErrorType() : $scope
->filterByTruthyValue(new Identical($expr->name, new String_($constantString->getValue())))
->getType(new Expr\StaticCall($expr->class, new Identifier($constantString->getValue()), $expr->args)), $nameType->getConstantStrings()),
);
}
return new MixedType();
}
private function resolveTypeByNameWithLateStaticBinding(MutatingScope $scope, Name $class, Identifier $name): TypeWithClassName
{
$classType = $scope->resolveTypeByName($class);
if (
$classType instanceof StaticType
&& !in_array($class->toLowerString(), ['self', 'static', 'parent'], true)
) {
$methodReflectionCandidate = $scope->getMethodReflection(
$classType,
$name->name,
);
if ($methodReflectionCandidate !== null && $methodReflectionCandidate->isStatic()) {
$classType = $classType->getStaticObjectType();
}
}
return $classType;
}
public function specifyTypes(TypeSpecifier $typeSpecifier, Scope $scope, Expr $expr, TypeSpecifierContext $context): SpecifiedTypes
{
if (!$expr->name instanceof Identifier) {
return $typeSpecifier->specifyDefaultTypes($scope, $expr, $context);
}
if ($expr->class instanceof Name) {
$calleeType = $scope->resolveTypeByName($expr->class);
} else {
$calleeType = $scope->getType($expr->class);
}
$staticMethodReflection = $scope->getMethodReflection($calleeType, $expr->name->name);
if ($staticMethodReflection !== null) {
// lazy create parametersAcceptor, as creation can be expensive
$parametersAcceptor = null;
$normalizedExpr = $expr;
$args = $expr->getArgs();
if (count($args) > 0) {
$parametersAcceptor = ParametersAcceptorSelector::selectFromArgs($scope, $args, $staticMethodReflection->getVariants(), $staticMethodReflection->getNamedArgumentsVariants());
$normalizedExpr = ArgumentsNormalizer::reorderStaticCallArguments($parametersAcceptor, $expr) ?? $expr;
}
$referencedClasses = $calleeType->getObjectClassNames();
if (
count($referencedClasses) === 1
&& $this->reflectionProvider->hasClass($referencedClasses[0])
) {
$staticMethodClassReflection = $this->reflectionProvider->getClass($referencedClasses[0]);
foreach ($typeSpecifier->getStaticMethodTypeSpecifyingExtensionsForClass($staticMethodClassReflection->getName()) as $extension) {
if (!$extension->isStaticMethodSupported($staticMethodReflection, $normalizedExpr, $context)) {
continue;
}
return $extension->specifyTypes($staticMethodReflection, $normalizedExpr, $scope, $context);
}
}
if (count($args) > 0) {
$specifiedTypes = $typeSpecifier->specifyTypesFromConditionalReturnType($context, $expr, $parametersAcceptor, $scope);
if ($specifiedTypes !== null) {
return $specifiedTypes;
}
}
$assertions = $staticMethodReflection->getAsserts();
if ($assertions->getAll() !== []) {
$parametersAcceptor ??= ParametersAcceptorSelector::selectFromArgs($scope, $args, $staticMethodReflection->getVariants(), $staticMethodReflection->getNamedArgumentsVariants());
$asserts = $assertions->mapTypes(static fn (Type $type) => TemplateTypeHelper::resolveTemplateTypes(
$type,
$parametersAcceptor->getResolvedTemplateTypeMap(),
$parametersAcceptor instanceof ExtendedParametersAcceptor ? $parametersAcceptor->getCallSiteVarianceMap() : TemplateTypeVarianceMap::createEmpty(),
TemplateTypeVariance::createInvariant(),
));
$specifiedTypes = $typeSpecifier->specifyTypesFromAsserts($context, $expr, $asserts, $parametersAcceptor, $scope);
if ($specifiedTypes !== null) {
return $specifiedTypes
->unionWith($typeSpecifier->handleDefaultTruthyOrFalseyContext($context, $expr, $scope))
->setRootExpr($specifiedTypes->getRootExpr());
}
}
}
return $typeSpecifier->handleDefaultTruthyOrFalseyContext($context, $expr, $scope);
}
}