|
| 1 | +<?php declare(strict_types = 1); |
| 2 | + |
| 3 | +namespace PHPStan\Type\Php; |
| 4 | + |
| 5 | +use PhpParser\Node\Expr\FuncCall; |
| 6 | +use PHPStan\Analyser\Scope; |
| 7 | +use PHPStan\Analyser\SpecifiedTypes; |
| 8 | +use PHPStan\Analyser\TypeSpecifier; |
| 9 | +use PHPStan\Analyser\TypeSpecifierAwareExtension; |
| 10 | +use PHPStan\Analyser\TypeSpecifierContext; |
| 11 | +use PHPStan\Reflection\FunctionReflection; |
| 12 | +use PHPStan\Type\Accessory\AccessoryNonEmptyStringType; |
| 13 | +use PHPStan\Type\Accessory\AccessoryNonFalsyStringType; |
| 14 | +use PHPStan\Type\Constant\ConstantIntegerType; |
| 15 | +use PHPStan\Type\FunctionTypeSpecifyingExtension; |
| 16 | +use PHPStan\Type\IntegerRangeType; |
| 17 | +use function count; |
| 18 | +use function in_array; |
| 19 | +use function strtolower; |
| 20 | + |
| 21 | +final class StrlenTypeSpecifyingExtension implements FunctionTypeSpecifyingExtension, TypeSpecifierAwareExtension |
| 22 | +{ |
| 23 | + |
| 24 | + private TypeSpecifier $typeSpecifier; |
| 25 | + |
| 26 | + public function setTypeSpecifier(TypeSpecifier $typeSpecifier): void |
| 27 | + { |
| 28 | + $this->typeSpecifier = $typeSpecifier; |
| 29 | + } |
| 30 | + |
| 31 | + public function isFunctionSupported(FunctionReflection $functionReflection, FuncCall $node, TypeSpecifierContext $context): bool |
| 32 | + { |
| 33 | + return in_array(strtolower($functionReflection->getName()), ['strlen', 'mb_strlen'], true) && !$context->null(); |
| 34 | + } |
| 35 | + |
| 36 | + public function specifyTypes(FunctionReflection $functionReflection, FuncCall $node, Scope $scope, TypeSpecifierContext $context): SpecifiedTypes |
| 37 | + { |
| 38 | + $args = $node->getArgs(); |
| 39 | + if ( |
| 40 | + count($args) < 1 |
| 41 | + || $context->getReturnType() === null |
| 42 | + ) { |
| 43 | + return new SpecifiedTypes(); |
| 44 | + } |
| 45 | + |
| 46 | + $argType = $scope->getType($args[0]->value); |
| 47 | + if (!$argType->isString()->yes()) { |
| 48 | + return new SpecifiedTypes(); |
| 49 | + } |
| 50 | + |
| 51 | + $returnType = $context->getReturnType(); |
| 52 | + if ( |
| 53 | + $context->true() && IntegerRangeType::createAllGreaterThanOrEqualTo(1)->isSuperTypeOf($returnType)->yes() |
| 54 | + || ($context->false() && (new ConstantIntegerType(0))->isSuperTypeOf($returnType)->yes()) |
| 55 | + ) { |
| 56 | + $accessory = new AccessoryNonEmptyStringType(); |
| 57 | + if (IntegerRangeType::createAllGreaterThanOrEqualTo(2)->isSuperTypeOf($returnType)->yes()) { |
| 58 | + $accessory = new AccessoryNonFalsyStringType(); |
| 59 | + } |
| 60 | + |
| 61 | + return $this->typeSpecifier->create($args[0]->value, $accessory, $context, $scope); |
| 62 | + } |
| 63 | + |
| 64 | + return new SpecifiedTypes(); |
| 65 | + } |
| 66 | + |
| 67 | +} |
0 commit comments