|
| 1 | +<?php |
| 2 | + |
| 3 | +declare(strict_types=1); |
| 4 | + |
| 5 | +namespace TypeLang\Mapper\Meta\Reader; |
| 6 | + |
| 7 | +use TypeLang\Mapper\Exception\Environment\ComposerPackageRequiredException; |
| 8 | +use TypeLang\Mapper\Exception\TypeNotFoundException; |
| 9 | +use TypeLang\Mapper\Meta\ClassMetadata; |
| 10 | +use TypeLang\Mapper\Meta\PropertyMetadata; |
| 11 | +use TypeLang\Mapper\Meta\Reader\DocBlockReader\ClassPropertyTypeReader; |
| 12 | +use TypeLang\Mapper\Meta\Reader\DocBlockReader\PromotedPropertyTypeReader; |
| 13 | +use TypeLang\Mapper\Registry\RegistryInterface; |
| 14 | +use TypeLang\Parser\Node\Stmt\TypeStatement; |
| 15 | +use TypeLang\PHPDoc\Parser; |
| 16 | +use TypeLang\PHPDoc\Standard\ParamTagFactory; |
| 17 | +use TypeLang\PHPDoc\Standard\VarTagFactory; |
| 18 | +use TypeLang\PHPDoc\Tag\Factory\TagFactory; |
| 19 | +use TypeLang\Reader\Exception\ReaderExceptionInterface; |
| 20 | + |
| 21 | +final class DocBlockReader extends Reader |
| 22 | +{ |
| 23 | + /** |
| 24 | + * @var non-empty-string |
| 25 | + */ |
| 26 | + private const DEFAULT_PARAM_TAG_NAME = 'param'; |
| 27 | + |
| 28 | + /** |
| 29 | + * @var non-empty-string |
| 30 | + */ |
| 31 | + private const DEFAULT_VAR_TAG_NAME = 'var'; |
| 32 | + |
| 33 | + private readonly PromotedPropertyTypeReader $promotedProperties; |
| 34 | + |
| 35 | + private readonly ClassPropertyTypeReader $classProperties; |
| 36 | + |
| 37 | + /** |
| 38 | + * @param non-empty-string $paramTagName |
| 39 | + * @param non-empty-string $varTagName |
| 40 | + * @throws ComposerPackageRequiredException |
| 41 | + */ |
| 42 | + public function __construct( |
| 43 | + private readonly ReaderInterface $delegate = new ReflectionReader(), |
| 44 | + string $paramTagName = self::DEFAULT_PARAM_TAG_NAME, |
| 45 | + string $varTagName = self::DEFAULT_VAR_TAG_NAME, |
| 46 | + ) { |
| 47 | + self::assertKernelPackageIsInstalled(); |
| 48 | + |
| 49 | + $parser = new Parser(new TagFactory([ |
| 50 | + $paramTagName => new ParamTagFactory(), |
| 51 | + $varTagName => new VarTagFactory(), |
| 52 | + ])); |
| 53 | + |
| 54 | + $this->promotedProperties = new PromotedPropertyTypeReader($paramTagName, $parser); |
| 55 | + $this->classProperties = new ClassPropertyTypeReader($varTagName, $parser); |
| 56 | + } |
| 57 | + |
| 58 | + /** |
| 59 | + * @throws ComposerPackageRequiredException |
| 60 | + */ |
| 61 | + private static function assertKernelPackageIsInstalled(): void |
| 62 | + { |
| 63 | + if (!\class_exists(Parser::class)) { |
| 64 | + throw ComposerPackageRequiredException::becausePackageNotInstalled( |
| 65 | + package: 'type-lang/phpdoc', |
| 66 | + for: 'docblock support' |
| 67 | + ); |
| 68 | + } |
| 69 | + |
| 70 | + if (!\class_exists(ParamTagFactory::class)) { |
| 71 | + throw ComposerPackageRequiredException::becausePackageNotInstalled( |
| 72 | + package: 'type-lang/phpdoc-standard-tags', |
| 73 | + for: '"@param" tag support' |
| 74 | + ); |
| 75 | + } |
| 76 | + |
| 77 | + if (!\class_exists(VarTagFactory::class)) { |
| 78 | + throw ComposerPackageRequiredException::becausePackageNotInstalled( |
| 79 | + package: 'type-lang/phpdoc-standard-tags', |
| 80 | + for: '"@var" tag support' |
| 81 | + ); |
| 82 | + } |
| 83 | + } |
| 84 | + |
| 85 | + /** |
| 86 | + * @param \ReflectionClass<object> $class |
| 87 | + * @throws \ReflectionException |
| 88 | + */ |
| 89 | + private function findType(\ReflectionClass $class, PropertyMetadata $meta): ?TypeStatement |
| 90 | + { |
| 91 | + $property = $meta->getReflection($class); |
| 92 | + |
| 93 | + if ($property->isPromoted()) { |
| 94 | + return $this->promotedProperties->findType($property, $meta); |
| 95 | + } |
| 96 | + |
| 97 | + return $this->classProperties->findType($property); |
| 98 | + } |
| 99 | + |
| 100 | + /** |
| 101 | + * @throws ReaderExceptionInterface |
| 102 | + * @throws \ReflectionException |
| 103 | + * @throws TypeNotFoundException |
| 104 | + */ |
| 105 | + public function getClassMetadata(\ReflectionClass $class, RegistryInterface $types): ClassMetadata |
| 106 | + { |
| 107 | + $metadata = $this->delegate->getClassMetadata($class, $types); |
| 108 | + |
| 109 | + foreach ($class->getProperties() as $reflection) { |
| 110 | + $property = $metadata->findPropertyByName($reflection->getName()) |
| 111 | + ?? new PropertyMetadata($reflection->getName()); |
| 112 | + |
| 113 | + $type = $this->findType($class, $property); |
| 114 | + |
| 115 | + if ($type !== null) { |
| 116 | + $property = $property->withType( |
| 117 | + type: $types->get($type), |
| 118 | + statement: $type, |
| 119 | + ); |
| 120 | + } |
| 121 | + |
| 122 | + $metadata = $metadata->withAddedProperty($property); |
| 123 | + } |
| 124 | + |
| 125 | + $this->promotedProperties->cleanup(); |
| 126 | + |
| 127 | + return $metadata; |
| 128 | + } |
| 129 | +} |
0 commit comments