| 1: | <?php declare(strict_types = 1); |
| 2: | |
| 3: | namespace PHPStan\Type; |
| 4: | |
| 5: | use PHPStan\Type\Accessory\AccessoryArrayListType; |
| 6: | use PHPStan\Type\Accessory\AccessoryNonEmptyStringType; |
| 7: | use PHPStan\Type\Accessory\AccessoryType; |
| 8: | use PHPStan\Type\Accessory\HasOffsetType; |
| 9: | use PHPStan\Type\Accessory\HasOffsetValueType; |
| 10: | use PHPStan\Type\Accessory\HasPropertyType; |
| 11: | use PHPStan\Type\Accessory\NonEmptyArrayType; |
| 12: | use PHPStan\Type\Accessory\OversizedArrayType; |
| 13: | use PHPStan\Type\Constant\ConstantArrayType; |
| 14: | use PHPStan\Type\Constant\ConstantArrayTypeBuilder; |
| 15: | use PHPStan\Type\Constant\ConstantBooleanType; |
| 16: | use PHPStan\Type\Constant\ConstantFloatType; |
| 17: | use PHPStan\Type\Constant\ConstantIntegerType; |
| 18: | use PHPStan\Type\Constant\ConstantStringType; |
| 19: | use PHPStan\Type\Generic\GenericClassStringType; |
| 20: | use PHPStan\Type\Generic\TemplateArrayType; |
| 21: | use PHPStan\Type\Generic\TemplateBenevolentUnionType; |
| 22: | use PHPStan\Type\Generic\TemplateType; |
| 23: | use PHPStan\Type\Generic\TemplateTypeFactory; |
| 24: | use PHPStan\Type\Generic\TemplateUnionType; |
| 25: | use function array_key_exists; |
| 26: | use function array_key_first; |
| 27: | use function array_map; |
| 28: | use function array_merge; |
| 29: | use function array_slice; |
| 30: | use function array_splice; |
| 31: | use function array_values; |
| 32: | use function count; |
| 33: | use function get_class; |
| 34: | use function is_int; |
| 35: | use function md5; |
| 36: | use function sprintf; |
| 37: | use function usort; |
| 38: | |
| 39: | |
| 40: | |
| 41: | |
| 42: | final class TypeCombinator |
| 43: | { |
| 44: | |
| 45: | public static function addNull(Type $type): Type |
| 46: | { |
| 47: | $nullType = new NullType(); |
| 48: | |
| 49: | if ($nullType->isSuperTypeOf($type)->no()) { |
| 50: | return self::union($type, $nullType); |
| 51: | } |
| 52: | |
| 53: | return $type; |
| 54: | } |
| 55: | |
| 56: | public static function remove(Type $fromType, Type $typeToRemove): Type |
| 57: | { |
| 58: | if ($typeToRemove instanceof UnionType) { |
| 59: | foreach ($typeToRemove->getTypes() as $unionTypeToRemove) { |
| 60: | $fromType = self::remove($fromType, $unionTypeToRemove); |
| 61: | } |
| 62: | return $fromType; |
| 63: | } |
| 64: | |
| 65: | $isSuperType = $typeToRemove->isSuperTypeOf($fromType); |
| 66: | if ($isSuperType->yes()) { |
| 67: | return new NeverType(); |
| 68: | } |
| 69: | if ($isSuperType->no()) { |
| 70: | return $fromType; |
| 71: | } |
| 72: | |
| 73: | if ($typeToRemove instanceof MixedType) { |
| 74: | $typeToRemoveSubtractedType = $typeToRemove->getSubtractedType(); |
| 75: | if ($typeToRemoveSubtractedType !== null) { |
| 76: | return self::intersect($fromType, $typeToRemoveSubtractedType); |
| 77: | } |
| 78: | } |
| 79: | |
| 80: | $removed = $fromType->tryRemove($typeToRemove); |
| 81: | if ($removed !== null) { |
| 82: | return $removed; |
| 83: | } |
| 84: | |
| 85: | $fromFiniteTypes = $fromType->getFiniteTypes(); |
| 86: | if (count($fromFiniteTypes) > 0) { |
| 87: | $finiteTypesToRemove = $typeToRemove->getFiniteTypes(); |
| 88: | if (count($finiteTypesToRemove) === 1) { |
| 89: | $result = []; |
| 90: | foreach ($fromFiniteTypes as $finiteType) { |
| 91: | if ($finiteType->equals($finiteTypesToRemove[0])) { |
| 92: | continue; |
| 93: | } |
| 94: | |
| 95: | $result[] = $finiteType; |
| 96: | } |
| 97: | |
| 98: | if (count($result) === count($fromFiniteTypes)) { |
| 99: | return $fromType; |
| 100: | } |
| 101: | |
| 102: | if (count($result) === 0) { |
| 103: | return new NeverType(); |
| 104: | } |
| 105: | |
| 106: | if (count($result) === 1) { |
| 107: | return $result[0]; |
| 108: | } |
| 109: | |
| 110: | return new UnionType($result); |
| 111: | } |
| 112: | } |
| 113: | |
| 114: | return $fromType; |
| 115: | } |
| 116: | |
| 117: | public static function removeNull(Type $type): Type |
| 118: | { |
| 119: | if (self::containsNull($type)) { |
| 120: | return self::remove($type, new NullType()); |
| 121: | } |
| 122: | |
| 123: | return $type; |
| 124: | } |
| 125: | |
| 126: | public static function containsNull(Type $type): bool |
| 127: | { |
| 128: | if ($type instanceof UnionType) { |
| 129: | foreach ($type->getTypes() as $innerType) { |
| 130: | if ($innerType instanceof NullType) { |
| 131: | return true; |
| 132: | } |
| 133: | } |
| 134: | |
| 135: | return false; |
| 136: | } |
| 137: | |
| 138: | return $type instanceof NullType; |
| 139: | } |
| 140: | |
| 141: | public static function union(Type ...$types): Type |
| 142: | { |
| 143: | $typesCount = count($types); |
| 144: | if ($typesCount === 0) { |
| 145: | return new NeverType(); |
| 146: | } |
| 147: | |
| 148: | $benevolentTypes = []; |
| 149: | $benevolentUnionObject = null; |
| 150: | |
| 151: | for ($i = 0; $i < $typesCount; $i++) { |
| 152: | if ($types[$i] instanceof BenevolentUnionType) { |
| 153: | if ($types[$i] instanceof TemplateBenevolentUnionType && $benevolentUnionObject === null) { |
| 154: | $benevolentUnionObject = $types[$i]; |
| 155: | } |
| 156: | $benevolentTypesCount = 0; |
| 157: | $typesInner = $types[$i]->getTypes(); |
| 158: | foreach ($typesInner as $benevolentInnerType) { |
| 159: | $benevolentTypesCount++; |
| 160: | $benevolentTypes[$benevolentInnerType->describe(VerbosityLevel::value())] = $benevolentInnerType; |
| 161: | } |
| 162: | array_splice($types, $i, 1, $typesInner); |
| 163: | $typesCount += $benevolentTypesCount - 1; |
| 164: | continue; |
| 165: | } |
| 166: | if (!($types[$i] instanceof UnionType)) { |
| 167: | continue; |
| 168: | } |
| 169: | if ($types[$i] instanceof TemplateType) { |
| 170: | continue; |
| 171: | } |
| 172: | |
| 173: | $typesInner = $types[$i]->getTypes(); |
| 174: | array_splice($types, $i, 1, $typesInner); |
| 175: | $typesCount += count($typesInner) - 1; |
| 176: | } |
| 177: | |
| 178: | if ($typesCount === 1) { |
| 179: | return $types[0]; |
| 180: | } |
| 181: | |
| 182: | $arrayTypes = []; |
| 183: | $scalarTypes = []; |
| 184: | $hasGenericScalarTypes = []; |
| 185: | $enumCaseTypes = []; |
| 186: | for ($i = 0; $i < $typesCount; $i++) { |
| 187: | if ($types[$i] instanceof ConstantScalarType) { |
| 188: | $type = $types[$i]; |
| 189: | $scalarTypes[get_class($type)][md5($type->describe(VerbosityLevel::cache()))] = $type; |
| 190: | unset($types[$i]); |
| 191: | continue; |
| 192: | } |
| 193: | if ($types[$i] instanceof BooleanType) { |
| 194: | $hasGenericScalarTypes[ConstantBooleanType::class] = true; |
| 195: | } |
| 196: | if ($types[$i] instanceof FloatType) { |
| 197: | $hasGenericScalarTypes[ConstantFloatType::class] = true; |
| 198: | } |
| 199: | if ($types[$i] instanceof IntegerType && !$types[$i] instanceof IntegerRangeType) { |
| 200: | $hasGenericScalarTypes[ConstantIntegerType::class] = true; |
| 201: | } |
| 202: | if ($types[$i] instanceof StringType && !$types[$i] instanceof ClassStringType) { |
| 203: | $hasGenericScalarTypes[ConstantStringType::class] = true; |
| 204: | } |
| 205: | $enumCases = $types[$i]->getEnumCases(); |
| 206: | if (count($enumCases) === 1) { |
| 207: | $enumCaseTypes[$types[$i]->describe(VerbosityLevel::cache())] = $types[$i]; |
| 208: | |
| 209: | unset($types[$i]); |
| 210: | continue; |
| 211: | } |
| 212: | |
| 213: | if (!$types[$i]->isArray()->yes()) { |
| 214: | continue; |
| 215: | } |
| 216: | |
| 217: | $arrayTypes[] = $types[$i]; |
| 218: | unset($types[$i]); |
| 219: | } |
| 220: | |
| 221: | foreach ($scalarTypes as $classType => $scalarTypeItems) { |
| 222: | $scalarTypes[$classType] = array_values($scalarTypeItems); |
| 223: | } |
| 224: | |
| 225: | $enumCaseTypes = array_values($enumCaseTypes); |
| 226: | $types = array_values($types); |
| 227: | $typesCount = count($types); |
| 228: | |
| 229: | foreach ($scalarTypes as $classType => $scalarTypeItems) { |
| 230: | if (isset($hasGenericScalarTypes[$classType])) { |
| 231: | unset($scalarTypes[$classType]); |
| 232: | continue; |
| 233: | } |
| 234: | if ($classType === ConstantBooleanType::class && count($scalarTypeItems) === 2) { |
| 235: | $types[] = new BooleanType(); |
| 236: | $typesCount++; |
| 237: | unset($scalarTypes[$classType]); |
| 238: | continue; |
| 239: | } |
| 240: | |
| 241: | $scalarTypeItemsCount = count($scalarTypeItems); |
| 242: | for ($i = 0; $i < $typesCount; $i++) { |
| 243: | for ($j = 0; $j < $scalarTypeItemsCount; $j++) { |
| 244: | $compareResult = self::compareTypesInUnion($types[$i], $scalarTypeItems[$j]); |
| 245: | if ($compareResult === null) { |
| 246: | continue; |
| 247: | } |
| 248: | |
| 249: | [$a, $b] = $compareResult; |
| 250: | if ($a !== null) { |
| 251: | $types[$i] = $a; |
| 252: | array_splice($scalarTypeItems, $j--, 1); |
| 253: | $scalarTypeItemsCount--; |
| 254: | continue 1; |
| 255: | } |
| 256: | if ($b !== null) { |
| 257: | $scalarTypeItems[$j] = $b; |
| 258: | array_splice($types, $i--, 1); |
| 259: | $typesCount--; |
| 260: | continue 2; |
| 261: | } |
| 262: | } |
| 263: | } |
| 264: | |
| 265: | $scalarTypes[$classType] = $scalarTypeItems; |
| 266: | } |
| 267: | |
| 268: | if (count($types) > 16) { |
| 269: | $newTypes = []; |
| 270: | foreach ($types as $type) { |
| 271: | $newTypes[$type->describe(VerbosityLevel::cache())] = $type; |
| 272: | } |
| 273: | $types = array_values($newTypes); |
| 274: | } |
| 275: | |
| 276: | $types = array_merge( |
| 277: | $types, |
| 278: | self::processArrayTypes($arrayTypes), |
| 279: | ); |
| 280: | $typesCount = count($types); |
| 281: | |
| 282: | |
| 283: | |
| 284: | for ($i = 0; $i < $typesCount; $i++) { |
| 285: | for ($j = $i + 1; $j < $typesCount; $j++) { |
| 286: | $compareResult = self::compareTypesInUnion($types[$i], $types[$j]); |
| 287: | if ($compareResult === null) { |
| 288: | continue; |
| 289: | } |
| 290: | |
| 291: | [$a, $b] = $compareResult; |
| 292: | if ($a !== null) { |
| 293: | $types[$i] = $a; |
| 294: | array_splice($types, $j--, 1); |
| 295: | $typesCount--; |
| 296: | continue 1; |
| 297: | } |
| 298: | if ($b !== null) { |
| 299: | $types[$j] = $b; |
| 300: | array_splice($types, $i--, 1); |
| 301: | $typesCount--; |
| 302: | continue 2; |
| 303: | } |
| 304: | } |
| 305: | } |
| 306: | |
| 307: | $enumCasesCount = count($enumCaseTypes); |
| 308: | for ($i = 0; $i < $typesCount; $i++) { |
| 309: | for ($j = 0; $j < $enumCasesCount; $j++) { |
| 310: | $compareResult = self::compareTypesInUnion($types[$i], $enumCaseTypes[$j]); |
| 311: | if ($compareResult === null) { |
| 312: | continue; |
| 313: | } |
| 314: | |
| 315: | [$a, $b] = $compareResult; |
| 316: | if ($a !== null) { |
| 317: | $types[$i] = $a; |
| 318: | array_splice($enumCaseTypes, $j--, 1); |
| 319: | $enumCasesCount--; |
| 320: | continue 1; |
| 321: | } |
| 322: | if ($b !== null) { |
| 323: | $enumCaseTypes[$j] = $b; |
| 324: | array_splice($types, $i--, 1); |
| 325: | $typesCount--; |
| 326: | continue 2; |
| 327: | } |
| 328: | } |
| 329: | } |
| 330: | |
| 331: | foreach ($enumCaseTypes as $enumCaseType) { |
| 332: | $types[] = $enumCaseType; |
| 333: | $typesCount++; |
| 334: | } |
| 335: | |
| 336: | foreach ($scalarTypes as $scalarTypeItems) { |
| 337: | foreach ($scalarTypeItems as $scalarType) { |
| 338: | $types[] = $scalarType; |
| 339: | $typesCount++; |
| 340: | } |
| 341: | } |
| 342: | |
| 343: | if ($typesCount === 0) { |
| 344: | return new NeverType(); |
| 345: | } |
| 346: | if ($typesCount === 1) { |
| 347: | return $types[0]; |
| 348: | } |
| 349: | |
| 350: | if ($benevolentTypes !== []) { |
| 351: | $tempTypes = $types; |
| 352: | foreach ($tempTypes as $i => $type) { |
| 353: | if (!isset($benevolentTypes[$type->describe(VerbosityLevel::value())])) { |
| 354: | break; |
| 355: | } |
| 356: | |
| 357: | unset($tempTypes[$i]); |
| 358: | } |
| 359: | |
| 360: | if ($tempTypes === []) { |
| 361: | if ($benevolentUnionObject instanceof TemplateBenevolentUnionType) { |
| 362: | return $benevolentUnionObject->withTypes($types); |
| 363: | } |
| 364: | |
| 365: | return new BenevolentUnionType($types, true); |
| 366: | } |
| 367: | } |
| 368: | |
| 369: | return new UnionType($types, true); |
| 370: | } |
| 371: | |
| 372: | |
| 373: | |
| 374: | |
| 375: | private static function compareTypesInUnion(Type $a, Type $b): ?array |
| 376: | { |
| 377: | if ($a instanceof IntegerRangeType) { |
| 378: | $type = $a->tryUnion($b); |
| 379: | if ($type !== null) { |
| 380: | $a = $type; |
| 381: | return [$a, null]; |
| 382: | } |
| 383: | } |
| 384: | if ($b instanceof IntegerRangeType) { |
| 385: | $type = $b->tryUnion($a); |
| 386: | if ($type !== null) { |
| 387: | $b = $type; |
| 388: | return [null, $b]; |
| 389: | } |
| 390: | } |
| 391: | if ($a instanceof IntegerRangeType && $b instanceof IntegerRangeType) { |
| 392: | return null; |
| 393: | } |
| 394: | if ($a instanceof HasOffsetValueType && $b instanceof HasOffsetValueType) { |
| 395: | if ($a->getOffsetType()->equals($b->getOffsetType())) { |
| 396: | return [new HasOffsetValueType($a->getOffsetType(), self::union($a->getValueType(), $b->getValueType())), null]; |
| 397: | } |
| 398: | } |
| 399: | if ($a->isConstantArray()->yes() && $b->isConstantArray()->yes()) { |
| 400: | return null; |
| 401: | } |
| 402: | |
| 403: | |
| 404: | if ($a instanceof IterableType && $b instanceof IterableType) { |
| 405: | return [ |
| 406: | new IterableType( |
| 407: | self::union($a->getIterableKeyType(), $b->getIterableKeyType()), |
| 408: | self::union($a->getIterableValueType(), $b->getIterableValueType()), |
| 409: | ), |
| 410: | null, |
| 411: | ]; |
| 412: | } |
| 413: | |
| 414: | if ($a instanceof SubtractableType) { |
| 415: | $typeWithoutSubtractedTypeA = $a->getTypeWithoutSubtractedType(); |
| 416: | if ($typeWithoutSubtractedTypeA instanceof MixedType && $b instanceof MixedType) { |
| 417: | $isSuperType = $typeWithoutSubtractedTypeA->isSuperTypeOfMixed($b); |
| 418: | } else { |
| 419: | $isSuperType = $typeWithoutSubtractedTypeA->isSuperTypeOf($b); |
| 420: | } |
| 421: | if ($isSuperType->yes()) { |
| 422: | $a = self::intersectWithSubtractedType($a, $b); |
| 423: | return [$a, null]; |
| 424: | } |
| 425: | } |
| 426: | |
| 427: | if ($b instanceof SubtractableType) { |
| 428: | $typeWithoutSubtractedTypeB = $b->getTypeWithoutSubtractedType(); |
| 429: | if ($typeWithoutSubtractedTypeB instanceof MixedType && $a instanceof MixedType) { |
| 430: | $isSuperType = $typeWithoutSubtractedTypeB->isSuperTypeOfMixed($a); |
| 431: | } else { |
| 432: | $isSuperType = $typeWithoutSubtractedTypeB->isSuperTypeOf($a); |
| 433: | } |
| 434: | if ($isSuperType->yes()) { |
| 435: | $b = self::intersectWithSubtractedType($b, $a); |
| 436: | return [null, $b]; |
| 437: | } |
| 438: | } |
| 439: | |
| 440: | if ($b->isSuperTypeOf($a)->yes()) { |
| 441: | return [null, $b]; |
| 442: | } |
| 443: | |
| 444: | if ($a->isSuperTypeOf($b)->yes()) { |
| 445: | return [$a, null]; |
| 446: | } |
| 447: | |
| 448: | if ( |
| 449: | $a instanceof ConstantStringType |
| 450: | && $a->getValue() === '' |
| 451: | && ($b->describe(VerbosityLevel::value()) === 'non-empty-string' |
| 452: | || $b->describe(VerbosityLevel::value()) === 'non-falsy-string') |
| 453: | ) { |
| 454: | return [null, new StringType()]; |
| 455: | } |
| 456: | |
| 457: | if ( |
| 458: | $b instanceof ConstantStringType |
| 459: | && $b->getValue() === '' |
| 460: | && ($a->describe(VerbosityLevel::value()) === 'non-empty-string' |
| 461: | || $a->describe(VerbosityLevel::value()) === 'non-falsy-string') |
| 462: | ) { |
| 463: | return [new StringType(), null]; |
| 464: | } |
| 465: | |
| 466: | if ( |
| 467: | $a instanceof ConstantStringType |
| 468: | && $a->getValue() === '0' |
| 469: | && $b->describe(VerbosityLevel::value()) === 'non-falsy-string' |
| 470: | ) { |
| 471: | return [null, new IntersectionType([ |
| 472: | new StringType(), |
| 473: | new AccessoryNonEmptyStringType(), |
| 474: | ])]; |
| 475: | } |
| 476: | |
| 477: | if ( |
| 478: | $b instanceof ConstantStringType |
| 479: | && $b->getValue() === '0' |
| 480: | && $a->describe(VerbosityLevel::value()) === 'non-falsy-string' |
| 481: | ) { |
| 482: | return [new IntersectionType([ |
| 483: | new StringType(), |
| 484: | new AccessoryNonEmptyStringType(), |
| 485: | ]), null]; |
| 486: | } |
| 487: | |
| 488: | return null; |
| 489: | } |
| 490: | |
| 491: | private static function unionWithSubtractedType( |
| 492: | Type $type, |
| 493: | ?Type $subtractedType, |
| 494: | ): Type |
| 495: | { |
| 496: | if ($subtractedType === null) { |
| 497: | return $type; |
| 498: | } |
| 499: | |
| 500: | if ($type instanceof SubtractableType) { |
| 501: | $subtractedType = $type->getSubtractedType() === null |
| 502: | ? $subtractedType |
| 503: | : self::union($type->getSubtractedType(), $subtractedType); |
| 504: | if ($subtractedType instanceof NeverType) { |
| 505: | $subtractedType = null; |
| 506: | } |
| 507: | |
| 508: | return $type->changeSubtractedType($subtractedType); |
| 509: | } |
| 510: | |
| 511: | if ($subtractedType->isSuperTypeOf($type)->yes()) { |
| 512: | return new NeverType(); |
| 513: | } |
| 514: | |
| 515: | return self::remove($type, $subtractedType); |
| 516: | } |
| 517: | |
| 518: | private static function intersectWithSubtractedType( |
| 519: | SubtractableType $a, |
| 520: | Type $b, |
| 521: | ): Type |
| 522: | { |
| 523: | if ($a->getSubtractedType() === null) { |
| 524: | return $a; |
| 525: | } |
| 526: | |
| 527: | if ($b instanceof IntersectionType) { |
| 528: | $subtractableTypes = []; |
| 529: | foreach ($b->getTypes() as $innerType) { |
| 530: | if (!$innerType instanceof SubtractableType) { |
| 531: | continue; |
| 532: | } |
| 533: | |
| 534: | $subtractableTypes[] = $innerType; |
| 535: | } |
| 536: | |
| 537: | if (count($subtractableTypes) === 0) { |
| 538: | return $a->getTypeWithoutSubtractedType(); |
| 539: | } |
| 540: | |
| 541: | $subtractedTypes = []; |
| 542: | foreach ($subtractableTypes as $subtractableType) { |
| 543: | if ($subtractableType->getSubtractedType() === null) { |
| 544: | continue; |
| 545: | } |
| 546: | |
| 547: | $subtractedTypes[] = $subtractableType->getSubtractedType(); |
| 548: | } |
| 549: | |
| 550: | if (count($subtractedTypes) === 0) { |
| 551: | return $a->getTypeWithoutSubtractedType(); |
| 552: | |
| 553: | } |
| 554: | |
| 555: | $subtractedType = self::union(...$subtractedTypes); |
| 556: | } elseif ($b instanceof SubtractableType) { |
| 557: | $subtractedType = $b->getSubtractedType(); |
| 558: | if ($subtractedType === null) { |
| 559: | return $a->getTypeWithoutSubtractedType(); |
| 560: | } |
| 561: | } else { |
| 562: | $subtractedTypeTmp = self::intersect($a->getTypeWithoutSubtractedType(), $a->getSubtractedType()); |
| 563: | if ($b->isSuperTypeOf($subtractedTypeTmp)->yes()) { |
| 564: | return $a->getTypeWithoutSubtractedType(); |
| 565: | } |
| 566: | $subtractedType = new MixedType(false, $b); |
| 567: | } |
| 568: | |
| 569: | $subtractedType = self::intersect( |
| 570: | $a->getSubtractedType(), |
| 571: | $subtractedType, |
| 572: | ); |
| 573: | if ($subtractedType instanceof NeverType) { |
| 574: | $subtractedType = null; |
| 575: | } |
| 576: | |
| 577: | return $a->changeSubtractedType($subtractedType); |
| 578: | } |
| 579: | |
| 580: | |
| 581: | |
| 582: | |
| 583: | |
| 584: | private static function processArrayAccessoryTypes(array $arrayTypes): array |
| 585: | { |
| 586: | $accessoryTypes = []; |
| 587: | foreach ($arrayTypes as $i => $arrayType) { |
| 588: | if ($arrayType instanceof IntersectionType) { |
| 589: | foreach ($arrayType->getTypes() as $innerType) { |
| 590: | if ($innerType instanceof TemplateType) { |
| 591: | break; |
| 592: | } |
| 593: | if (!($innerType instanceof AccessoryType) && !($innerType instanceof CallableType)) { |
| 594: | continue; |
| 595: | } |
| 596: | if ($innerType instanceof HasOffsetType) { |
| 597: | $offset = $innerType->getOffsetType(); |
| 598: | if ($offset instanceof ConstantStringType || $offset instanceof ConstantIntegerType) { |
| 599: | $innerType = new HasOffsetValueType($offset, $arrayType->getIterableValueType()); |
| 600: | } |
| 601: | } |
| 602: | if ($innerType instanceof HasOffsetValueType) { |
| 603: | $accessoryTypes[sprintf('hasOffsetValue(%s)', $innerType->getOffsetType()->describe(VerbosityLevel::cache()))][$i] = $innerType; |
| 604: | continue; |
| 605: | } |
| 606: | |
| 607: | $accessoryTypes[$innerType->describe(VerbosityLevel::cache())][$i] = $innerType; |
| 608: | } |
| 609: | } |
| 610: | |
| 611: | if (!$arrayType->isConstantArray()->yes()) { |
| 612: | continue; |
| 613: | } |
| 614: | $constantArrays = $arrayType->getConstantArrays(); |
| 615: | |
| 616: | foreach ($constantArrays as $constantArray) { |
| 617: | if ($constantArray->isList()->yes()) { |
| 618: | $list = new AccessoryArrayListType(); |
| 619: | $accessoryTypes[$list->describe(VerbosityLevel::cache())][$i] = $list; |
| 620: | } |
| 621: | |
| 622: | if (!$constantArray->isIterableAtLeastOnce()->yes()) { |
| 623: | continue; |
| 624: | } |
| 625: | |
| 626: | $nonEmpty = new NonEmptyArrayType(); |
| 627: | $accessoryTypes[$nonEmpty->describe(VerbosityLevel::cache())][$i] = $nonEmpty; |
| 628: | } |
| 629: | } |
| 630: | |
| 631: | $commonAccessoryTypes = []; |
| 632: | $arrayTypeCount = count($arrayTypes); |
| 633: | foreach ($accessoryTypes as $accessoryType) { |
| 634: | if (count($accessoryType) !== $arrayTypeCount) { |
| 635: | $firstKey = array_key_first($accessoryType); |
| 636: | if ($accessoryType[$firstKey] instanceof OversizedArrayType) { |
| 637: | $commonAccessoryTypes[] = $accessoryType[$firstKey]; |
| 638: | } |
| 639: | continue; |
| 640: | } |
| 641: | |
| 642: | if ($accessoryType[0] instanceof HasOffsetValueType) { |
| 643: | $commonAccessoryTypes[] = self::union(...$accessoryType); |
| 644: | continue; |
| 645: | } |
| 646: | |
| 647: | $commonAccessoryTypes[] = $accessoryType[0]; |
| 648: | } |
| 649: | |
| 650: | return $commonAccessoryTypes; |
| 651: | } |
| 652: | |
| 653: | |
| 654: | |
| 655: | |
| 656: | |
| 657: | private static function processArrayTypes(array $arrayTypes): array |
| 658: | { |
| 659: | if ($arrayTypes === []) { |
| 660: | return []; |
| 661: | } |
| 662: | |
| 663: | $accessoryTypes = self::processArrayAccessoryTypes($arrayTypes); |
| 664: | |
| 665: | if (count($arrayTypes) === 1) { |
| 666: | return [ |
| 667: | self::intersect(...$arrayTypes, ...$accessoryTypes), |
| 668: | ]; |
| 669: | } |
| 670: | |
| 671: | $keyTypesForGeneralArray = []; |
| 672: | $valueTypesForGeneralArray = []; |
| 673: | $generalArrayOccurred = false; |
| 674: | $constantKeyTypesNumbered = []; |
| 675: | $filledArrays = 0; |
| 676: | $overflowed = false; |
| 677: | |
| 678: | |
| 679: | $nextConstantKeyTypeIndex = 1; |
| 680: | $constantArraysMap = array_map( |
| 681: | static fn (Type $t) => $t->getConstantArrays(), |
| 682: | $arrayTypes, |
| 683: | ); |
| 684: | |
| 685: | foreach ($arrayTypes as $arrayIdx => $arrayType) { |
| 686: | $constantArrays = $constantArraysMap[$arrayIdx]; |
| 687: | $isConstantArray = $constantArrays !== []; |
| 688: | if (!$isConstantArray || !$arrayType->isIterableAtLeastOnce()->no()) { |
| 689: | $filledArrays++; |
| 690: | } |
| 691: | |
| 692: | if ($generalArrayOccurred || !$isConstantArray) { |
| 693: | foreach ($arrayType->getArrays() as $type) { |
| 694: | $keyTypesForGeneralArray[] = $type->getIterableKeyType(); |
| 695: | $valueTypesForGeneralArray[] = $type->getItemType(); |
| 696: | $generalArrayOccurred = true; |
| 697: | } |
| 698: | continue; |
| 699: | } |
| 700: | |
| 701: | $constantArrays = $arrayType->getConstantArrays(); |
| 702: | foreach ($constantArrays as $constantArray) { |
| 703: | foreach ($constantArray->getKeyTypes() as $i => $keyType) { |
| 704: | $keyTypesForGeneralArray[] = $keyType; |
| 705: | $valueTypesForGeneralArray[] = $constantArray->getValueTypes()[$i]; |
| 706: | |
| 707: | $keyTypeValue = $keyType->getValue(); |
| 708: | if (array_key_exists($keyTypeValue, $constantKeyTypesNumbered)) { |
| 709: | continue; |
| 710: | } |
| 711: | |
| 712: | $constantKeyTypesNumbered[$keyTypeValue] = $nextConstantKeyTypeIndex; |
| 713: | $nextConstantKeyTypeIndex *= 2; |
| 714: | if (!is_int($nextConstantKeyTypeIndex)) { |
| 715: | $generalArrayOccurred = true; |
| 716: | $overflowed = true; |
| 717: | continue 2; |
| 718: | } |
| 719: | } |
| 720: | } |
| 721: | } |
| 722: | |
| 723: | if ($generalArrayOccurred && (!$overflowed || $filledArrays > 1)) { |
| 724: | $reducedArrayTypes = self::reduceArrays($arrayTypes, false); |
| 725: | if (count($reducedArrayTypes) === 1) { |
| 726: | return [self::intersect($reducedArrayTypes[0], ...$accessoryTypes)]; |
| 727: | } |
| 728: | $scopes = []; |
| 729: | $useTemplateArray = true; |
| 730: | foreach ($arrayTypes as $arrayType) { |
| 731: | if (!$arrayType instanceof TemplateArrayType) { |
| 732: | $useTemplateArray = false; |
| 733: | break; |
| 734: | } |
| 735: | |
| 736: | $scopes[$arrayType->getScope()->describe()] = $arrayType; |
| 737: | } |
| 738: | |
| 739: | $arrayType = new ArrayType( |
| 740: | self::union(...$keyTypesForGeneralArray), |
| 741: | self::union(...self::optimizeConstantArrays($valueTypesForGeneralArray)), |
| 742: | ); |
| 743: | |
| 744: | if ($useTemplateArray && count($scopes) === 1) { |
| 745: | $templateArray = array_values($scopes)[0]; |
| 746: | $arrayType = new TemplateArrayType( |
| 747: | $templateArray->getScope(), |
| 748: | $templateArray->getStrategy(), |
| 749: | $templateArray->getVariance(), |
| 750: | $templateArray->getName(), |
| 751: | $arrayType, |
| 752: | $templateArray->getDefault(), |
| 753: | ); |
| 754: | } |
| 755: | |
| 756: | return [ |
| 757: | self::intersect($arrayType, ...$accessoryTypes), |
| 758: | ]; |
| 759: | } |
| 760: | |
| 761: | $reducedArrayTypes = self::reduceArrays($arrayTypes, true); |
| 762: | |
| 763: | return array_map( |
| 764: | static fn (Type $arrayType) => self::intersect($arrayType, ...$accessoryTypes), |
| 765: | self::optimizeConstantArrays($reducedArrayTypes), |
| 766: | ); |
| 767: | } |
| 768: | |
| 769: | |
| 770: | |
| 771: | |
| 772: | |
| 773: | private static function optimizeConstantArrays(array $types): array |
| 774: | { |
| 775: | $constantArrayValuesCount = self::countConstantArrayValueTypes($types); |
| 776: | |
| 777: | if ($constantArrayValuesCount <= ConstantArrayTypeBuilder::ARRAY_COUNT_LIMIT) { |
| 778: | return $types; |
| 779: | } |
| 780: | |
| 781: | $results = []; |
| 782: | $eachIsOversized = true; |
| 783: | foreach ($types as $type) { |
| 784: | $isOversized = false; |
| 785: | $result = TypeTraverser::map($type, static function (Type $type, callable $traverse) use (&$isOversized): Type { |
| 786: | if (!$type instanceof ConstantArrayType) { |
| 787: | return $traverse($type); |
| 788: | } |
| 789: | |
| 790: | if ($type->isIterableAtLeastOnce()->no()) { |
| 791: | return $type; |
| 792: | } |
| 793: | |
| 794: | $isOversized = true; |
| 795: | |
| 796: | $isList = true; |
| 797: | $valueTypes = []; |
| 798: | $keyTypes = []; |
| 799: | $nextAutoIndex = 0; |
| 800: | foreach ($type->getKeyTypes() as $i => $innerKeyType) { |
| 801: | if (!$innerKeyType instanceof ConstantIntegerType) { |
| 802: | $isList = false; |
| 803: | } elseif ($innerKeyType->getValue() !== $nextAutoIndex) { |
| 804: | $isList = false; |
| 805: | $nextAutoIndex = $innerKeyType->getValue() + 1; |
| 806: | } else { |
| 807: | $nextAutoIndex++; |
| 808: | } |
| 809: | |
| 810: | $generalizedKeyType = $innerKeyType->generalize(GeneralizePrecision::moreSpecific()); |
| 811: | $keyTypes[$generalizedKeyType->describe(VerbosityLevel::precise())] = $generalizedKeyType; |
| 812: | |
| 813: | $innerValueType = $type->getValueTypes()[$i]; |
| 814: | $generalizedValueType = TypeTraverser::map($innerValueType, static function (Type $type) use ($traverse): Type { |
| 815: | if ($type instanceof ArrayType || $type instanceof ConstantArrayType) { |
| 816: | return TypeCombinator::intersect($type, new OversizedArrayType()); |
| 817: | } |
| 818: | |
| 819: | return $traverse($type); |
| 820: | }); |
| 821: | $valueTypes[$generalizedValueType->describe(VerbosityLevel::precise())] = $generalizedValueType; |
| 822: | } |
| 823: | |
| 824: | $keyType = TypeCombinator::union(...array_values($keyTypes)); |
| 825: | $valueType = TypeCombinator::union(...array_values($valueTypes)); |
| 826: | |
| 827: | $arrayType = new ArrayType($keyType, $valueType); |
| 828: | if ($isList) { |
| 829: | $arrayType = TypeCombinator::intersect($arrayType, new AccessoryArrayListType()); |
| 830: | } |
| 831: | |
| 832: | return TypeCombinator::intersect($arrayType, new NonEmptyArrayType(), new OversizedArrayType()); |
| 833: | }); |
| 834: | |
| 835: | if (!$isOversized) { |
| 836: | $eachIsOversized = false; |
| 837: | } |
| 838: | |
| 839: | $results[] = $result; |
| 840: | } |
| 841: | |
| 842: | if ($eachIsOversized) { |
| 843: | $eachIsList = true; |
| 844: | $keyTypes = []; |
| 845: | $valueTypes = []; |
| 846: | foreach ($results as $result) { |
| 847: | $keyTypes[] = $result->getIterableKeyType(); |
| 848: | $valueTypes[] = $result->getLastIterableValueType(); |
| 849: | if ($result->isList()->yes()) { |
| 850: | continue; |
| 851: | } |
| 852: | $eachIsList = false; |
| 853: | } |
| 854: | |
| 855: | $keyType = self::union(...$keyTypes); |
| 856: | $valueType = self::union(...$valueTypes); |
| 857: | |
| 858: | $arrayType = new ArrayType($keyType, $valueType); |
| 859: | if ($eachIsList) { |
| 860: | $arrayType = self::intersect($arrayType, new AccessoryArrayListType()); |
| 861: | } |
| 862: | |
| 863: | return [self::intersect($arrayType, new NonEmptyArrayType(), new OversizedArrayType())]; |
| 864: | } |
| 865: | |
| 866: | return $results; |
| 867: | } |
| 868: | |
| 869: | |
| 870: | |
| 871: | |
| 872: | public static function countConstantArrayValueTypes(array $types): int |
| 873: | { |
| 874: | $constantArrayValuesCount = 0; |
| 875: | foreach ($types as $type) { |
| 876: | TypeTraverser::map($type, static function (Type $type, callable $traverse) use (&$constantArrayValuesCount): Type { |
| 877: | if ($type instanceof ConstantArrayType) { |
| 878: | $constantArrayValuesCount += count($type->getValueTypes()); |
| 879: | } |
| 880: | |
| 881: | return $traverse($type); |
| 882: | }); |
| 883: | } |
| 884: | return $constantArrayValuesCount; |
| 885: | } |
| 886: | |
| 887: | |
| 888: | |
| 889: | |
| 890: | |
| 891: | private static function reduceArrays(array $constantArrays, bool $preserveTaggedUnions): array |
| 892: | { |
| 893: | $newArrays = []; |
| 894: | $arraysToProcess = []; |
| 895: | $emptyArray = null; |
| 896: | foreach ($constantArrays as $constantArray) { |
| 897: | if (!$constantArray->isConstantArray()->yes()) { |
| 898: | |
| 899: | |
| 900: | if (!$preserveTaggedUnions) { |
| 901: | return $constantArrays; |
| 902: | } |
| 903: | $newArrays[] = $constantArray; |
| 904: | continue; |
| 905: | } |
| 906: | |
| 907: | if ($constantArray->isIterableAtLeastOnce()->no()) { |
| 908: | $emptyArray = $constantArray; |
| 909: | continue; |
| 910: | } |
| 911: | |
| 912: | $arraysToProcess = array_merge($arraysToProcess, $constantArray->getConstantArrays()); |
| 913: | } |
| 914: | |
| 915: | if ($emptyArray !== null) { |
| 916: | $newArrays[] = $emptyArray; |
| 917: | } |
| 918: | |
| 919: | $arraysToProcessPerKey = []; |
| 920: | foreach ($arraysToProcess as $i => $arrayToProcess) { |
| 921: | foreach ($arrayToProcess->getKeyTypes() as $keyType) { |
| 922: | $arraysToProcessPerKey[$keyType->getValue()][] = $i; |
| 923: | } |
| 924: | } |
| 925: | |
| 926: | $eligibleCombinations = []; |
| 927: | |
| 928: | foreach ($arraysToProcessPerKey as $arrays) { |
| 929: | for ($i = 0, $arraysCount = count($arrays); $i < $arraysCount - 1; $i++) { |
| 930: | for ($j = $i + 1; $j < $arraysCount; $j++) { |
| 931: | $eligibleCombinations[$arrays[$i]][$arrays[$j]] ??= 0; |
| 932: | $eligibleCombinations[$arrays[$i]][$arrays[$j]]++; |
| 933: | } |
| 934: | } |
| 935: | } |
| 936: | |
| 937: | foreach ($eligibleCombinations as $i => $other) { |
| 938: | if (!array_key_exists($i, $arraysToProcess)) { |
| 939: | continue; |
| 940: | } |
| 941: | |
| 942: | foreach ($other as $j => $overlappingKeysCount) { |
| 943: | if (!array_key_exists($j, $arraysToProcess)) { |
| 944: | continue; |
| 945: | } |
| 946: | |
| 947: | if ( |
| 948: | $preserveTaggedUnions |
| 949: | && $overlappingKeysCount === count($arraysToProcess[$i]->getKeyTypes()) |
| 950: | && $arraysToProcess[$j]->isKeysSupersetOf($arraysToProcess[$i]) |
| 951: | ) { |
| 952: | $arraysToProcess[$j] = $arraysToProcess[$j]->mergeWith($arraysToProcess[$i]); |
| 953: | unset($arraysToProcess[$i]); |
| 954: | continue 2; |
| 955: | } |
| 956: | |
| 957: | if ( |
| 958: | $preserveTaggedUnions |
| 959: | && $overlappingKeysCount === count($arraysToProcess[$j]->getKeyTypes()) |
| 960: | && $arraysToProcess[$i]->isKeysSupersetOf($arraysToProcess[$j]) |
| 961: | ) { |
| 962: | $arraysToProcess[$i] = $arraysToProcess[$i]->mergeWith($arraysToProcess[$j]); |
| 963: | unset($arraysToProcess[$j]); |
| 964: | continue 1; |
| 965: | } |
| 966: | |
| 967: | if ( |
| 968: | !$preserveTaggedUnions |
| 969: | |
| 970: | && $overlappingKeysCount === count($arraysToProcess[$i]->getKeyTypes()) |
| 971: | && $overlappingKeysCount === count($arraysToProcess[$j]->getKeyTypes()) |
| 972: | ) { |
| 973: | $arraysToProcess[$j] = $arraysToProcess[$j]->mergeWith($arraysToProcess[$i]); |
| 974: | unset($arraysToProcess[$i]); |
| 975: | continue 2; |
| 976: | } |
| 977: | } |
| 978: | } |
| 979: | |
| 980: | return array_merge($newArrays, $arraysToProcess); |
| 981: | } |
| 982: | |
| 983: | public static function intersect(Type ...$types): Type |
| 984: | { |
| 985: | $types = array_values($types); |
| 986: | |
| 987: | $typesCount = count($types); |
| 988: | if ($typesCount === 0) { |
| 989: | return new NeverType(); |
| 990: | } |
| 991: | if ($typesCount === 1) { |
| 992: | return $types[0]; |
| 993: | } |
| 994: | |
| 995: | $sortTypes = static function (Type $a, Type $b): int { |
| 996: | if (!$a instanceof UnionType || !$b instanceof UnionType) { |
| 997: | return 0; |
| 998: | } |
| 999: | |
| 1000: | if ($a instanceof TemplateType) { |
| 1001: | return -1; |
| 1002: | } |
| 1003: | if ($b instanceof TemplateType) { |
| 1004: | return 1; |
| 1005: | } |
| 1006: | |
| 1007: | if ($a instanceof BenevolentUnionType) { |
| 1008: | return -1; |
| 1009: | } |
| 1010: | if ($b instanceof BenevolentUnionType) { |
| 1011: | return 1; |
| 1012: | } |
| 1013: | |
| 1014: | return 0; |
| 1015: | }; |
| 1016: | usort($types, $sortTypes); |
| 1017: | |
| 1018: | foreach ($types as $i => $type) { |
| 1019: | if (!$type instanceof UnionType) { |
| 1020: | continue; |
| 1021: | } |
| 1022: | |
| 1023: | $topLevelUnionSubTypes = []; |
| 1024: | $innerTypes = $type->getTypes(); |
| 1025: | usort($innerTypes, $sortTypes); |
| 1026: | $slice1 = array_slice($types, 0, $i); |
| 1027: | $slice2 = array_slice($types, $i + 1); |
| 1028: | foreach ($innerTypes as $innerUnionSubType) { |
| 1029: | $topLevelUnionSubTypes[] = self::intersect( |
| 1030: | $innerUnionSubType, |
| 1031: | ...$slice1, |
| 1032: | ...$slice2, |
| 1033: | ); |
| 1034: | } |
| 1035: | |
| 1036: | $union = self::union(...$topLevelUnionSubTypes); |
| 1037: | if ($union instanceof NeverType) { |
| 1038: | return $union; |
| 1039: | } |
| 1040: | |
| 1041: | if ($type instanceof BenevolentUnionType) { |
| 1042: | $union = TypeUtils::toBenevolentUnion($union); |
| 1043: | } |
| 1044: | |
| 1045: | if ($type instanceof TemplateUnionType || $type instanceof TemplateBenevolentUnionType) { |
| 1046: | $union = TemplateTypeFactory::create( |
| 1047: | $type->getScope(), |
| 1048: | $type->getName(), |
| 1049: | $union, |
| 1050: | $type->getVariance(), |
| 1051: | $type->getStrategy(), |
| 1052: | $type->getDefault(), |
| 1053: | ); |
| 1054: | } |
| 1055: | |
| 1056: | return $union; |
| 1057: | } |
| 1058: | $typesCount = count($types); |
| 1059: | |
| 1060: | |
| 1061: | for ($i = 0; $i < $typesCount; $i++) { |
| 1062: | $type = $types[$i]; |
| 1063: | |
| 1064: | if (!($type instanceof IntersectionType)) { |
| 1065: | continue; |
| 1066: | } |
| 1067: | |
| 1068: | array_splice($types, $i--, 1, $type->getTypes()); |
| 1069: | $typesCount = count($types); |
| 1070: | } |
| 1071: | |
| 1072: | $hasOffsetValueTypeCount = 0; |
| 1073: | $newTypes = []; |
| 1074: | foreach ($types as $type) { |
| 1075: | if (!$type instanceof HasOffsetValueType) { |
| 1076: | $newTypes[] = $type; |
| 1077: | continue; |
| 1078: | } |
| 1079: | |
| 1080: | $hasOffsetValueTypeCount++; |
| 1081: | } |
| 1082: | |
| 1083: | if ($hasOffsetValueTypeCount > 32) { |
| 1084: | $newTypes[] = new OversizedArrayType(); |
| 1085: | $types = $newTypes; |
| 1086: | $typesCount = count($types); |
| 1087: | } |
| 1088: | |
| 1089: | usort($types, static function (Type $a, Type $b): int { |
| 1090: | |
| 1091: | if ($a instanceof SubtractableType && $a->getSubtractedType() !== null) { |
| 1092: | return -1; |
| 1093: | } |
| 1094: | if ($b instanceof SubtractableType && $b->getSubtractedType() !== null) { |
| 1095: | return 1; |
| 1096: | } |
| 1097: | |
| 1098: | if ($a instanceof ConstantArrayType && !$b instanceof ConstantArrayType) { |
| 1099: | return -1; |
| 1100: | } |
| 1101: | if ($b instanceof ConstantArrayType && !$a instanceof ConstantArrayType) { |
| 1102: | return 1; |
| 1103: | } |
| 1104: | |
| 1105: | return 0; |
| 1106: | }); |
| 1107: | |
| 1108: | |
| 1109: | |
| 1110: | |
| 1111: | |
| 1112: | |
| 1113: | |
| 1114: | |
| 1115: | |
| 1116: | for ($i = 0; $i < $typesCount; $i++) { |
| 1117: | for ($j = $i + 1; $j < $typesCount; $j++) { |
| 1118: | if ($types[$j] instanceof SubtractableType) { |
| 1119: | $typeWithoutSubtractedTypeA = $types[$j]->getTypeWithoutSubtractedType(); |
| 1120: | |
| 1121: | if ($typeWithoutSubtractedTypeA instanceof MixedType && $types[$i] instanceof MixedType) { |
| 1122: | $isSuperTypeSubtractableA = $typeWithoutSubtractedTypeA->isSuperTypeOfMixed($types[$i]); |
| 1123: | } else { |
| 1124: | $isSuperTypeSubtractableA = $typeWithoutSubtractedTypeA->isSuperTypeOf($types[$i]); |
| 1125: | } |
| 1126: | if ($isSuperTypeSubtractableA->yes()) { |
| 1127: | $types[$i] = self::unionWithSubtractedType($types[$i], $types[$j]->getSubtractedType()); |
| 1128: | array_splice($types, $j--, 1); |
| 1129: | $typesCount--; |
| 1130: | continue 1; |
| 1131: | } |
| 1132: | } |
| 1133: | |
| 1134: | if ($types[$i] instanceof SubtractableType) { |
| 1135: | $typeWithoutSubtractedTypeB = $types[$i]->getTypeWithoutSubtractedType(); |
| 1136: | |
| 1137: | if ($typeWithoutSubtractedTypeB instanceof MixedType && $types[$j] instanceof MixedType) { |
| 1138: | $isSuperTypeSubtractableB = $typeWithoutSubtractedTypeB->isSuperTypeOfMixed($types[$j]); |
| 1139: | } else { |
| 1140: | $isSuperTypeSubtractableB = $typeWithoutSubtractedTypeB->isSuperTypeOf($types[$j]); |
| 1141: | } |
| 1142: | if ($isSuperTypeSubtractableB->yes()) { |
| 1143: | $types[$j] = self::unionWithSubtractedType($types[$j], $types[$i]->getSubtractedType()); |
| 1144: | array_splice($types, $i--, 1); |
| 1145: | $typesCount--; |
| 1146: | continue 2; |
| 1147: | } |
| 1148: | } |
| 1149: | |
| 1150: | if ($types[$i] instanceof IntegerRangeType) { |
| 1151: | $intersectionType = $types[$i]->tryIntersect($types[$j]); |
| 1152: | if ($intersectionType !== null) { |
| 1153: | $types[$j] = $intersectionType; |
| 1154: | array_splice($types, $i--, 1); |
| 1155: | $typesCount--; |
| 1156: | continue 2; |
| 1157: | } |
| 1158: | } |
| 1159: | |
| 1160: | if ($types[$j] instanceof IterableType) { |
| 1161: | $isSuperTypeA = $types[$j]->isSuperTypeOfMixed($types[$i]); |
| 1162: | } else { |
| 1163: | $isSuperTypeA = $types[$j]->isSuperTypeOf($types[$i]); |
| 1164: | } |
| 1165: | |
| 1166: | if ($isSuperTypeA->yes()) { |
| 1167: | array_splice($types, $j--, 1); |
| 1168: | $typesCount--; |
| 1169: | continue; |
| 1170: | } |
| 1171: | |
| 1172: | if ($types[$i] instanceof IterableType) { |
| 1173: | $isSuperTypeB = $types[$i]->isSuperTypeOfMixed($types[$j]); |
| 1174: | } else { |
| 1175: | $isSuperTypeB = $types[$i]->isSuperTypeOf($types[$j]); |
| 1176: | } |
| 1177: | |
| 1178: | if ($isSuperTypeB->maybe()) { |
| 1179: | if ($types[$i] instanceof ConstantArrayType && $types[$j] instanceof HasOffsetType) { |
| 1180: | $types[$i] = $types[$i]->makeOffsetRequired($types[$j]->getOffsetType()); |
| 1181: | array_splice($types, $j--, 1); |
| 1182: | $typesCount--; |
| 1183: | continue; |
| 1184: | } |
| 1185: | |
| 1186: | if ($types[$j] instanceof ConstantArrayType && $types[$i] instanceof HasOffsetType) { |
| 1187: | $types[$j] = $types[$j]->makeOffsetRequired($types[$i]->getOffsetType()); |
| 1188: | array_splice($types, $i--, 1); |
| 1189: | $typesCount--; |
| 1190: | continue 2; |
| 1191: | } |
| 1192: | |
| 1193: | if ($types[$i] instanceof ConstantArrayType && $types[$j] instanceof HasOffsetValueType) { |
| 1194: | $offsetType = $types[$j]->getOffsetType(); |
| 1195: | $valueType = $types[$j]->getValueType(); |
| 1196: | $newValueType = self::intersect($types[$i]->getOffsetValueType($offsetType), $valueType); |
| 1197: | if ($newValueType instanceof NeverType) { |
| 1198: | return $newValueType; |
| 1199: | } |
| 1200: | $types[$i] = $types[$i]->setOffsetValueType($offsetType, $newValueType); |
| 1201: | array_splice($types, $j--, 1); |
| 1202: | $typesCount--; |
| 1203: | continue; |
| 1204: | } |
| 1205: | |
| 1206: | if ($types[$j] instanceof ConstantArrayType && $types[$i] instanceof HasOffsetValueType) { |
| 1207: | $offsetType = $types[$i]->getOffsetType(); |
| 1208: | $valueType = $types[$i]->getValueType(); |
| 1209: | $newValueType = self::intersect($types[$j]->getOffsetValueType($offsetType), $valueType); |
| 1210: | if ($newValueType instanceof NeverType) { |
| 1211: | return $newValueType; |
| 1212: | } |
| 1213: | |
| 1214: | $types[$j] = $types[$j]->setOffsetValueType($offsetType, $newValueType); |
| 1215: | array_splice($types, $i--, 1); |
| 1216: | $typesCount--; |
| 1217: | continue 2; |
| 1218: | } |
| 1219: | |
| 1220: | if ($types[$i] instanceof OversizedArrayType && $types[$j] instanceof HasOffsetValueType) { |
| 1221: | array_splice($types, $j--, 1); |
| 1222: | $typesCount--; |
| 1223: | continue; |
| 1224: | } |
| 1225: | |
| 1226: | if ($types[$j] instanceof OversizedArrayType && $types[$i] instanceof HasOffsetValueType) { |
| 1227: | array_splice($types, $i--, 1); |
| 1228: | $typesCount--; |
| 1229: | continue 2; |
| 1230: | } |
| 1231: | |
| 1232: | if ($types[$i] instanceof ObjectShapeType && $types[$j] instanceof HasPropertyType) { |
| 1233: | $types[$i] = $types[$i]->makePropertyRequired($types[$j]->getPropertyName()); |
| 1234: | array_splice($types, $j--, 1); |
| 1235: | $typesCount--; |
| 1236: | continue; |
| 1237: | } |
| 1238: | |
| 1239: | if ($types[$j] instanceof ObjectShapeType && $types[$i] instanceof HasPropertyType) { |
| 1240: | $types[$j] = $types[$j]->makePropertyRequired($types[$i]->getPropertyName()); |
| 1241: | array_splice($types, $i--, 1); |
| 1242: | $typesCount--; |
| 1243: | continue 2; |
| 1244: | } |
| 1245: | |
| 1246: | if ($types[$i] instanceof ConstantArrayType && ($types[$j] instanceof ArrayType || $types[$j] instanceof ConstantArrayType)) { |
| 1247: | $newArray = ConstantArrayTypeBuilder::createEmpty(); |
| 1248: | $valueTypes = $types[$i]->getValueTypes(); |
| 1249: | foreach ($types[$i]->getKeyTypes() as $k => $keyType) { |
| 1250: | $newArray->setOffsetValueType( |
| 1251: | self::intersect($keyType, $types[$j]->getIterableKeyType()), |
| 1252: | self::intersect($valueTypes[$k], $types[$j]->getIterableValueType()), |
| 1253: | $types[$i]->isOptionalKey($k) && !$types[$j]->hasOffsetValueType($keyType)->yes(), |
| 1254: | ); |
| 1255: | } |
| 1256: | $types[$i] = $newArray->getArray(); |
| 1257: | array_splice($types, $j--, 1); |
| 1258: | $typesCount--; |
| 1259: | continue 2; |
| 1260: | } |
| 1261: | |
| 1262: | if ($types[$j] instanceof ConstantArrayType && ($types[$i] instanceof ArrayType || $types[$i] instanceof ConstantArrayType)) { |
| 1263: | $newArray = ConstantArrayTypeBuilder::createEmpty(); |
| 1264: | $valueTypes = $types[$j]->getValueTypes(); |
| 1265: | foreach ($types[$j]->getKeyTypes() as $k => $keyType) { |
| 1266: | $newArray->setOffsetValueType( |
| 1267: | self::intersect($keyType, $types[$i]->getIterableKeyType()), |
| 1268: | self::intersect($valueTypes[$k], $types[$i]->getIterableValueType()), |
| 1269: | $types[$j]->isOptionalKey($k) && !$types[$i]->hasOffsetValueType($keyType)->yes(), |
| 1270: | ); |
| 1271: | } |
| 1272: | $types[$j] = $newArray->getArray(); |
| 1273: | array_splice($types, $i--, 1); |
| 1274: | $typesCount--; |
| 1275: | continue 2; |
| 1276: | } |
| 1277: | |
| 1278: | if ( |
| 1279: | ($types[$i] instanceof ArrayType || $types[$i] instanceof ConstantArrayType || $types[$i] instanceof IterableType) && |
| 1280: | ($types[$j] instanceof ArrayType || $types[$j] instanceof ConstantArrayType || $types[$j] instanceof IterableType) |
| 1281: | ) { |
| 1282: | $keyType = self::intersect($types[$i]->getIterableKeyType(), $types[$j]->getKeyType()); |
| 1283: | $itemType = self::intersect($types[$i]->getItemType(), $types[$j]->getItemType()); |
| 1284: | if ($types[$i] instanceof IterableType && $types[$j] instanceof IterableType) { |
| 1285: | $types[$j] = new IterableType($keyType, $itemType); |
| 1286: | } else { |
| 1287: | $types[$j] = new ArrayType($keyType, $itemType); |
| 1288: | } |
| 1289: | array_splice($types, $i--, 1); |
| 1290: | $typesCount--; |
| 1291: | continue 2; |
| 1292: | } |
| 1293: | |
| 1294: | if ($types[$i] instanceof GenericClassStringType && $types[$j] instanceof GenericClassStringType) { |
| 1295: | $genericType = self::intersect($types[$i]->getGenericType(), $types[$j]->getGenericType()); |
| 1296: | $types[$i] = new GenericClassStringType($genericType); |
| 1297: | array_splice($types, $j--, 1); |
| 1298: | $typesCount--; |
| 1299: | continue; |
| 1300: | } |
| 1301: | |
| 1302: | if ( |
| 1303: | $types[$i] instanceof ArrayType |
| 1304: | && get_class($types[$i]) === ArrayType::class |
| 1305: | && $types[$j] instanceof AccessoryArrayListType |
| 1306: | && !$types[$j]->getIterableKeyType()->isSuperTypeOf($types[$i]->getIterableKeyType())->yes() |
| 1307: | ) { |
| 1308: | $keyType = self::intersect($types[$i]->getIterableKeyType(), $types[$j]->getIterableKeyType()); |
| 1309: | if ($keyType instanceof NeverType) { |
| 1310: | return $keyType; |
| 1311: | } |
| 1312: | $types[$i] = new ArrayType($keyType, $types[$i]->getItemType()); |
| 1313: | continue; |
| 1314: | } |
| 1315: | |
| 1316: | continue; |
| 1317: | } |
| 1318: | |
| 1319: | if ($isSuperTypeB->yes()) { |
| 1320: | array_splice($types, $i--, 1); |
| 1321: | $typesCount--; |
| 1322: | continue 2; |
| 1323: | } |
| 1324: | |
| 1325: | if ($isSuperTypeA->no()) { |
| 1326: | return new NeverType(); |
| 1327: | } |
| 1328: | } |
| 1329: | } |
| 1330: | |
| 1331: | if ($typesCount === 1) { |
| 1332: | return $types[0]; |
| 1333: | } |
| 1334: | |
| 1335: | return new IntersectionType($types); |
| 1336: | } |
| 1337: | |
| 1338: | public static function removeFalsey(Type $type): Type |
| 1339: | { |
| 1340: | return self::remove($type, StaticTypeFactory::falsey()); |
| 1341: | } |
| 1342: | |
| 1343: | public static function removeTruthy(Type $type): Type |
| 1344: | { |
| 1345: | return self::remove($type, StaticTypeFactory::truthy()); |
| 1346: | } |
| 1347: | |
| 1348: | } |
| 1349: | |