1: | <?php declare(strict_types = 1); |
2: | |
3: | namespace PHPStan\Type\Constant; |
4: | |
5: | use Nette\Utils\RegexpException; |
6: | use Nette\Utils\Strings; |
7: | use PhpParser\Node\Name; |
8: | use PHPStan\Analyser\OutOfClassScope; |
9: | use PHPStan\Php\PhpVersion; |
10: | use PHPStan\PhpDocParser\Ast\ConstExpr\ConstExprStringNode; |
11: | use PHPStan\PhpDocParser\Ast\Type\ConstTypeNode; |
12: | use PHPStan\PhpDocParser\Ast\Type\TypeNode; |
13: | use PHPStan\Reflection\Callables\FunctionCallableVariant; |
14: | use PHPStan\Reflection\ClassConstantReflection; |
15: | use PHPStan\Reflection\ClassMemberAccessAnswerer; |
16: | use PHPStan\Reflection\InaccessibleMethod; |
17: | use PHPStan\Reflection\PhpVersionStaticAccessor; |
18: | use PHPStan\Reflection\ReflectionProviderStaticAccessor; |
19: | use PHPStan\Reflection\TrivialParametersAcceptor; |
20: | use PHPStan\ShouldNotHappenException; |
21: | use PHPStan\TrinaryLogic; |
22: | use PHPStan\Type\Accessory\AccessoryLiteralStringType; |
23: | use PHPStan\Type\Accessory\AccessoryLowercaseStringType; |
24: | use PHPStan\Type\Accessory\AccessoryNonEmptyStringType; |
25: | use PHPStan\Type\Accessory\AccessoryNonFalsyStringType; |
26: | use PHPStan\Type\Accessory\AccessoryNumericStringType; |
27: | use PHPStan\Type\Accessory\AccessoryUppercaseStringType; |
28: | use PHPStan\Type\ClassStringType; |
29: | use PHPStan\Type\CompoundType; |
30: | use PHPStan\Type\ConstantScalarType; |
31: | use PHPStan\Type\ErrorType; |
32: | use PHPStan\Type\GeneralizePrecision; |
33: | use PHPStan\Type\Generic\GenericClassStringType; |
34: | use PHPStan\Type\Generic\TemplateType; |
35: | use PHPStan\Type\IntegerRangeType; |
36: | use PHPStan\Type\IntersectionType; |
37: | use PHPStan\Type\IsSuperTypeOfResult; |
38: | use PHPStan\Type\MixedType; |
39: | use PHPStan\Type\NullType; |
40: | use PHPStan\Type\ObjectType; |
41: | use PHPStan\Type\StaticType; |
42: | use PHPStan\Type\StringType; |
43: | use PHPStan\Type\Traits\ConstantScalarTypeTrait; |
44: | use PHPStan\Type\Type; |
45: | use PHPStan\Type\TypeCombinator; |
46: | use PHPStan\Type\VerbosityLevel; |
47: | use function addcslashes; |
48: | use function in_array; |
49: | use function is_float; |
50: | use function is_int; |
51: | use function is_numeric; |
52: | use function key; |
53: | use function strlen; |
54: | use function strtolower; |
55: | use function strtoupper; |
56: | use function substr; |
57: | use function substr_count; |
58: | |
59: | |
60: | class ConstantStringType extends StringType implements ConstantScalarType |
61: | { |
62: | |
63: | private const DESCRIBE_LIMIT = 20; |
64: | |
65: | use ConstantScalarTypeTrait; |
66: | use ConstantScalarToBooleanTrait; |
67: | |
68: | private ?ObjectType $objectType = null; |
69: | |
70: | private ?Type $arrayKeyType = null; |
71: | |
72: | |
73: | public function __construct(private string $value, private bool $isClassString = false) |
74: | { |
75: | parent::__construct(); |
76: | } |
77: | |
78: | public function getValue(): string |
79: | { |
80: | return $this->value; |
81: | } |
82: | |
83: | public function getConstantStrings(): array |
84: | { |
85: | return [$this]; |
86: | } |
87: | |
88: | public function isClassString(): TrinaryLogic |
89: | { |
90: | if ($this->isClassString) { |
91: | return TrinaryLogic::createYes(); |
92: | } |
93: | |
94: | $reflectionProvider = ReflectionProviderStaticAccessor::getInstance(); |
95: | |
96: | return TrinaryLogic::createFromBoolean($reflectionProvider->hasClass($this->value)); |
97: | } |
98: | |
99: | public function getClassStringObjectType(): Type |
100: | { |
101: | if ($this->isClassString()->yes()) { |
102: | return new ObjectType($this->value); |
103: | } |
104: | |
105: | return new ErrorType(); |
106: | } |
107: | |
108: | public function getObjectTypeOrClassStringObjectType(): Type |
109: | { |
110: | return $this->getClassStringObjectType(); |
111: | } |
112: | |
113: | public function describe(VerbosityLevel $level): string |
114: | { |
115: | return $level->handle( |
116: | static fn (): string => 'string', |
117: | function (): string { |
118: | $value = $this->value; |
119: | |
120: | if (!$this->isClassString) { |
121: | try { |
122: | $value = Strings::truncate($value, self::DESCRIBE_LIMIT); |
123: | } catch (RegexpException) { |
124: | $value = substr($value, 0, self::DESCRIBE_LIMIT) . "\u{2026}"; |
125: | } |
126: | } |
127: | |
128: | return self::export($value); |
129: | }, |
130: | fn (): string => self::export($this->value), |
131: | ); |
132: | } |
133: | |
134: | private function export(string $value): string |
135: | { |
136: | $escapedValue = addcslashes($value, "\0..\37"); |
137: | if ($escapedValue !== $value) { |
138: | return '"' . addcslashes($value, "\0..\37\\\"") . '"'; |
139: | } |
140: | |
141: | return "'" . addcslashes($value, '\\\'') . "'"; |
142: | } |
143: | |
144: | public function isSuperTypeOf(Type $type): IsSuperTypeOfResult |
145: | { |
146: | if ($type instanceof GenericClassStringType) { |
147: | $genericType = $type->getGenericType(); |
148: | if ($genericType instanceof MixedType) { |
149: | return IsSuperTypeOfResult::createMaybe(); |
150: | } |
151: | if ($genericType instanceof StaticType) { |
152: | $genericType = $genericType->getStaticObjectType(); |
153: | } |
154: | |
155: | |
156: | |
157: | $objectType = $this->getObjectType(); |
158: | |
159: | |
160: | |
161: | if ($genericType instanceof TemplateType) { |
162: | $isSuperType = $genericType->getBound()->isSuperTypeOf($objectType); |
163: | } else { |
164: | $isSuperType = $genericType->isSuperTypeOf($objectType); |
165: | } |
166: | |
167: | |
168: | if ($isSuperType->yes()) { |
169: | return IsSuperTypeOfResult::createMaybe(); |
170: | } |
171: | return IsSuperTypeOfResult::createNo(); |
172: | } |
173: | if ($type instanceof ClassStringType) { |
174: | return $this->isClassString()->yes() ? IsSuperTypeOfResult::createMaybe() : IsSuperTypeOfResult::createNo(); |
175: | } |
176: | |
177: | if ($type instanceof self) { |
178: | return $this->value === $type->value ? IsSuperTypeOfResult::createYes() : IsSuperTypeOfResult::createNo(); |
179: | } |
180: | |
181: | if ($type instanceof parent) { |
182: | return IsSuperTypeOfResult::createMaybe(); |
183: | } |
184: | |
185: | if ($type instanceof CompoundType) { |
186: | return $type->isSubTypeOf($this); |
187: | } |
188: | |
189: | return IsSuperTypeOfResult::createNo(); |
190: | } |
191: | |
192: | public function isCallable(): TrinaryLogic |
193: | { |
194: | if ($this->value === '') { |
195: | return TrinaryLogic::createNo(); |
196: | } |
197: | |
198: | $reflectionProvider = ReflectionProviderStaticAccessor::getInstance(); |
199: | |
200: | |
201: | if ($reflectionProvider->hasFunction(new Name($this->value), null)) { |
202: | return TrinaryLogic::createYes(); |
203: | } |
204: | |
205: | |
206: | $matches = Strings::match($this->value, '#^([a-zA-Z_\\x7f-\\xff\\\\][a-zA-Z0-9_\\x7f-\\xff\\\\]*)::([a-zA-Z_\\x7f-\\xff][a-zA-Z0-9_\\x7f-\\xff]*)\z#'); |
207: | if ($matches !== null) { |
208: | if (!$reflectionProvider->hasClass($matches[1])) { |
209: | return TrinaryLogic::createMaybe(); |
210: | } |
211: | |
212: | $phpVersion = PhpVersionStaticAccessor::getInstance(); |
213: | $classRef = $reflectionProvider->getClass($matches[1]); |
214: | if ($classRef->hasMethod($matches[2])) { |
215: | $method = $classRef->getMethod($matches[2], new OutOfClassScope()); |
216: | if ( |
217: | !$phpVersion->supportsCallableInstanceMethods() |
218: | && !$method->isStatic() |
219: | ) { |
220: | return TrinaryLogic::createNo(); |
221: | } |
222: | |
223: | return TrinaryLogic::createYes(); |
224: | } |
225: | |
226: | if (!$classRef->getNativeReflection()->isFinal()) { |
227: | return TrinaryLogic::createMaybe(); |
228: | } |
229: | |
230: | return TrinaryLogic::createNo(); |
231: | } |
232: | |
233: | return TrinaryLogic::createNo(); |
234: | } |
235: | |
236: | public function getCallableParametersAcceptors(ClassMemberAccessAnswerer $scope): array |
237: | { |
238: | if ($this->value === '') { |
239: | return []; |
240: | } |
241: | |
242: | $reflectionProvider = ReflectionProviderStaticAccessor::getInstance(); |
243: | |
244: | |
245: | $functionName = new Name($this->value); |
246: | if ($reflectionProvider->hasFunction($functionName, null)) { |
247: | $function = $reflectionProvider->getFunction($functionName, null); |
248: | return FunctionCallableVariant::createFromVariants($function, $function->getVariants()); |
249: | } |
250: | |
251: | |
252: | $matches = Strings::match($this->value, '#^([a-zA-Z_\\x7f-\\xff\\\\][a-zA-Z0-9_\\x7f-\\xff\\\\]*)::([a-zA-Z_\\x7f-\\xff][a-zA-Z0-9_\\x7f-\\xff]*)\z#'); |
253: | if ($matches !== null) { |
254: | if (!$reflectionProvider->hasClass($matches[1])) { |
255: | return [new TrivialParametersAcceptor()]; |
256: | } |
257: | |
258: | $classReflection = $reflectionProvider->getClass($matches[1]); |
259: | if ($classReflection->hasMethod($matches[2])) { |
260: | $method = $classReflection->getMethod($matches[2], $scope); |
261: | if (!$scope->canCallMethod($method)) { |
262: | return [new InaccessibleMethod($method)]; |
263: | } |
264: | |
265: | return FunctionCallableVariant::createFromVariants($method, $method->getVariants()); |
266: | } |
267: | |
268: | if (!$classReflection->getNativeReflection()->isFinal()) { |
269: | return [new TrivialParametersAcceptor()]; |
270: | } |
271: | } |
272: | |
273: | throw new ShouldNotHappenException(); |
274: | } |
275: | |
276: | public function toNumber(): Type |
277: | { |
278: | if (is_numeric($this->value)) { |
279: | $value = $this->value; |
280: | $value = +$value; |
281: | if (is_float($value)) { |
282: | return new ConstantFloatType($value); |
283: | } |
284: | |
285: | return new ConstantIntegerType($value); |
286: | } |
287: | |
288: | return new ErrorType(); |
289: | } |
290: | |
291: | public function toAbsoluteNumber(): Type |
292: | { |
293: | return $this->toNumber()->toAbsoluteNumber(); |
294: | } |
295: | |
296: | public function toInteger(): Type |
297: | { |
298: | return new ConstantIntegerType((int) $this->value); |
299: | } |
300: | |
301: | public function toFloat(): Type |
302: | { |
303: | return new ConstantFloatType((float) $this->value); |
304: | } |
305: | |
306: | public function toArrayKey(): Type |
307: | { |
308: | if ($this->arrayKeyType !== null) { |
309: | return $this->arrayKeyType; |
310: | } |
311: | |
312: | |
313: | $offsetValue = key([$this->value => null]); |
314: | return $this->arrayKeyType = is_int($offsetValue) ? new ConstantIntegerType($offsetValue) : new ConstantStringType($offsetValue); |
315: | } |
316: | |
317: | public function isString(): TrinaryLogic |
318: | { |
319: | return TrinaryLogic::createYes(); |
320: | } |
321: | |
322: | public function isNumericString(): TrinaryLogic |
323: | { |
324: | return TrinaryLogic::createFromBoolean(is_numeric($this->getValue())); |
325: | } |
326: | |
327: | public function isNonEmptyString(): TrinaryLogic |
328: | { |
329: | return TrinaryLogic::createFromBoolean($this->getValue() !== ''); |
330: | } |
331: | |
332: | public function isNonFalsyString(): TrinaryLogic |
333: | { |
334: | return TrinaryLogic::createFromBoolean(!in_array($this->getValue(), ['', '0'], true)); |
335: | } |
336: | |
337: | public function isLiteralString(): TrinaryLogic |
338: | { |
339: | return TrinaryLogic::createYes(); |
340: | } |
341: | |
342: | public function isLowercaseString(): TrinaryLogic |
343: | { |
344: | return TrinaryLogic::createFromBoolean(strtolower($this->value) === $this->value); |
345: | } |
346: | |
347: | public function isUppercaseString(): TrinaryLogic |
348: | { |
349: | return TrinaryLogic::createFromBoolean(strtoupper($this->value) === $this->value); |
350: | } |
351: | |
352: | public function hasOffsetValueType(Type $offsetType): TrinaryLogic |
353: | { |
354: | if ($offsetType->isInteger()->yes()) { |
355: | $strLenType = IntegerRangeType::fromInterval(0, strlen($this->value) - 1); |
356: | return $strLenType->isSuperTypeOf($offsetType)->result; |
357: | } |
358: | |
359: | return parent::hasOffsetValueType($offsetType); |
360: | } |
361: | |
362: | public function getOffsetValueType(Type $offsetType): Type |
363: | { |
364: | if ($offsetType->isInteger()->yes()) { |
365: | if ($offsetType instanceof ConstantIntegerType) { |
366: | if ($offsetType->getValue() < strlen($this->value)) { |
367: | return new self($this->value[$offsetType->getValue()]); |
368: | } |
369: | |
370: | return new ErrorType(); |
371: | } |
372: | |
373: | $strLenType = IntegerRangeType::fromInterval(0, strlen($this->value) - 1); |
374: | $intersected = TypeCombinator::intersect($strLenType, $offsetType); |
375: | if ($intersected instanceof IntegerRangeType) { |
376: | $finiteTypes = $intersected->getFiniteTypes(); |
377: | if ($finiteTypes === []) { |
378: | return parent::getOffsetValueType($offsetType); |
379: | } |
380: | |
381: | $chars = []; |
382: | foreach ($finiteTypes as $constantInteger) { |
383: | $chars[] = new self($this->value[$constantInteger->getValue()]); |
384: | } |
385: | if (!$strLenType->isSuperTypeOf($offsetType)->yes()) { |
386: | $chars[] = new self(''); |
387: | } |
388: | |
389: | return TypeCombinator::union(...$chars); |
390: | } |
391: | } |
392: | |
393: | return parent::getOffsetValueType($offsetType); |
394: | } |
395: | |
396: | public function setOffsetValueType(?Type $offsetType, Type $valueType, bool $unionValues = true): Type |
397: | { |
398: | $valueStringType = $valueType->toString(); |
399: | if ($valueStringType instanceof ErrorType) { |
400: | return new ErrorType(); |
401: | } |
402: | if ( |
403: | $offsetType instanceof ConstantIntegerType |
404: | && $valueStringType instanceof ConstantStringType |
405: | ) { |
406: | $value = $this->value; |
407: | $offsetValue = $offsetType->getValue(); |
408: | if ($offsetValue < 0) { |
409: | return new ErrorType(); |
410: | } |
411: | $stringValue = $valueStringType->getValue(); |
412: | if (strlen($stringValue) !== 1) { |
413: | return new ErrorType(); |
414: | } |
415: | $value[$offsetValue] = $stringValue; |
416: | |
417: | return new self($value); |
418: | } |
419: | |
420: | return parent::setOffsetValueType($offsetType, $valueType); |
421: | } |
422: | |
423: | public function setExistingOffsetValueType(Type $offsetType, Type $valueType): Type |
424: | { |
425: | return parent::setOffsetValueType($offsetType, $valueType); |
426: | } |
427: | |
428: | public function append(self $otherString): self |
429: | { |
430: | return new self($this->getValue() . $otherString->getValue()); |
431: | } |
432: | |
433: | public function generalize(GeneralizePrecision $precision): Type |
434: | { |
435: | if ($this->isClassString) { |
436: | if ($precision->isMoreSpecific()) { |
437: | return new ClassStringType(); |
438: | } |
439: | |
440: | return new StringType(); |
441: | } |
442: | |
443: | if ($this->getValue() !== '' && $precision->isMoreSpecific()) { |
444: | $accessories = [ |
445: | new StringType(), |
446: | new AccessoryLiteralStringType(), |
447: | ]; |
448: | |
449: | if (is_numeric($this->getValue())) { |
450: | $accessories[] = new AccessoryNumericStringType(); |
451: | } |
452: | |
453: | if ($this->getValue() !== '0') { |
454: | $accessories[] = new AccessoryNonFalsyStringType(); |
455: | } else { |
456: | $accessories[] = new AccessoryNonEmptyStringType(); |
457: | } |
458: | |
459: | if (strtolower($this->getValue()) === $this->getValue()) { |
460: | $accessories[] = new AccessoryLowercaseStringType(); |
461: | } |
462: | |
463: | if (strtoupper($this->getValue()) === $this->getValue()) { |
464: | $accessories[] = new AccessoryUppercaseStringType(); |
465: | } |
466: | |
467: | return new IntersectionType($accessories); |
468: | } |
469: | |
470: | if ($precision->isMoreSpecific()) { |
471: | return new IntersectionType([ |
472: | new StringType(), |
473: | new AccessoryLiteralStringType(), |
474: | ]); |
475: | } |
476: | |
477: | return new StringType(); |
478: | } |
479: | |
480: | public function getSmallerType(PhpVersion $phpVersion): Type |
481: | { |
482: | $subtractedTypes = [ |
483: | new ConstantBooleanType(true), |
484: | IntegerRangeType::createAllGreaterThanOrEqualTo((float) $this->value), |
485: | ]; |
486: | |
487: | if ($this->value === '') { |
488: | $subtractedTypes[] = new NullType(); |
489: | $subtractedTypes[] = new StringType(); |
490: | } |
491: | |
492: | if (!(bool) $this->value) { |
493: | $subtractedTypes[] = new ConstantBooleanType(false); |
494: | } |
495: | |
496: | return TypeCombinator::remove(new MixedType(), TypeCombinator::union(...$subtractedTypes)); |
497: | } |
498: | |
499: | public function getSmallerOrEqualType(PhpVersion $phpVersion): Type |
500: | { |
501: | $subtractedTypes = [ |
502: | IntegerRangeType::createAllGreaterThan((float) $this->value), |
503: | ]; |
504: | |
505: | if (!(bool) $this->value) { |
506: | $subtractedTypes[] = new ConstantBooleanType(true); |
507: | } |
508: | |
509: | return TypeCombinator::remove(new MixedType(), TypeCombinator::union(...$subtractedTypes)); |
510: | } |
511: | |
512: | public function getGreaterType(PhpVersion $phpVersion): Type |
513: | { |
514: | $subtractedTypes = [ |
515: | new ConstantBooleanType(false), |
516: | IntegerRangeType::createAllSmallerThanOrEqualTo((float) $this->value), |
517: | ]; |
518: | |
519: | if ((bool) $this->value) { |
520: | $subtractedTypes[] = new ConstantBooleanType(true); |
521: | } |
522: | |
523: | return TypeCombinator::remove(new MixedType(), TypeCombinator::union(...$subtractedTypes)); |
524: | } |
525: | |
526: | public function getGreaterOrEqualType(PhpVersion $phpVersion): Type |
527: | { |
528: | $subtractedTypes = [ |
529: | IntegerRangeType::createAllSmallerThan((float) $this->value), |
530: | ]; |
531: | |
532: | if ((bool) $this->value) { |
533: | $subtractedTypes[] = new ConstantBooleanType(false); |
534: | } |
535: | |
536: | return TypeCombinator::remove(new MixedType(), TypeCombinator::union(...$subtractedTypes)); |
537: | } |
538: | |
539: | public function canAccessConstants(): TrinaryLogic |
540: | { |
541: | return $this->isClassString(); |
542: | } |
543: | |
544: | public function hasConstant(string $constantName): TrinaryLogic |
545: | { |
546: | return $this->getObjectType()->hasConstant($constantName); |
547: | } |
548: | |
549: | public function getConstant(string $constantName): ClassConstantReflection |
550: | { |
551: | return $this->getObjectType()->getConstant($constantName); |
552: | } |
553: | |
554: | private function getObjectType(): ObjectType |
555: | { |
556: | return $this->objectType ??= new ObjectType($this->value); |
557: | } |
558: | |
559: | public function toPhpDocNode(): TypeNode |
560: | { |
561: | if (substr_count($this->value, "\n") > 0) { |
562: | return $this->generalize(GeneralizePrecision::moreSpecific())->toPhpDocNode(); |
563: | } |
564: | |
565: | return new ConstTypeNode(new ConstExprStringNode($this->value, ConstExprStringNode::SINGLE_QUOTED)); |
566: | } |
567: | |
568: | } |
569: | |