rector/packages/BetterPhpDocParser/PhpDocInfo/PhpDocInfo.php
Abdul Malik Ikhsan fc10fce13d
[Rectify] [Php81] Enable Rectify on Readonly Property only (#1384)
* re-enable rectify and ecs

* [Rectify] [Php81] Enable Rectify on Readonly Property only

* comment

* [ci-review] Rector Rectify

* [ci-review] Rector Rectify

* [ci-review] Rector Rectify

* [ci-review] Rector Rectify

* [ci-review] Rector Rectify

Co-authored-by: GitHub Action <action@github.com>
2021-12-04 15:32:52 +03:00

519 lines
15 KiB
PHP

<?php
declare(strict_types=1);
namespace Rector\BetterPhpDocParser\PhpDocInfo;
use PHPStan\PhpDocParser\Ast\Node;
use PHPStan\PhpDocParser\Ast\PhpDoc\InvalidTagValueNode;
use PHPStan\PhpDocParser\Ast\PhpDoc\MethodTagValueNode;
use PHPStan\PhpDocParser\Ast\PhpDoc\ParamTagValueNode;
use PHPStan\PhpDocParser\Ast\PhpDoc\PhpDocChildNode;
use PHPStan\PhpDocParser\Ast\PhpDoc\PhpDocNode;
use PHPStan\PhpDocParser\Ast\PhpDoc\PhpDocTagNode;
use PHPStan\PhpDocParser\Ast\PhpDoc\PhpDocTagValueNode;
use PHPStan\PhpDocParser\Ast\PhpDoc\PropertyTagValueNode;
use PHPStan\PhpDocParser\Ast\PhpDoc\ReturnTagValueNode;
use PHPStan\PhpDocParser\Ast\PhpDoc\TemplateTagValueNode;
use PHPStan\PhpDocParser\Ast\PhpDoc\VarTagValueNode;
use PHPStan\PhpDocParser\Lexer\Lexer;
use PHPStan\Type\MixedType;
use PHPStan\Type\Type;
use Rector\BetterPhpDocParser\Annotation\AnnotationNaming;
use Rector\BetterPhpDocParser\PhpDoc\DoctrineAnnotationTagValueNode;
use Rector\BetterPhpDocParser\PhpDoc\SpacelessPhpDocTagNode;
use Rector\BetterPhpDocParser\PhpDocNodeFinder\PhpDocNodeByTypeFinder;
use Rector\BetterPhpDocParser\PhpDocNodeVisitor\ChangedPhpDocNodeVisitor;
use Rector\BetterPhpDocParser\ValueObject\Parser\BetterTokenIterator;
use Rector\ChangesReporting\Collector\RectorChangeCollector;
use Rector\Core\Configuration\CurrentNodeProvider;
use Rector\StaticTypeMapper\StaticTypeMapper;
use Symplify\SimplePhpDocParser\PhpDocNodeTraverser;
/**
* @template TNode as \PHPStan\PhpDocParser\Ast\Node
* @see \Rector\Tests\BetterPhpDocParser\PhpDocInfo\PhpDocInfo\PhpDocInfoTest
*/
final class PhpDocInfo
{
/**
* @var array<class-string<PhpDocTagValueNode>, string>
*/
private const TAGS_TYPES_TO_NAMES = [
ReturnTagValueNode::class => '@return',
ParamTagValueNode::class => '@param',
VarTagValueNode::class => '@var',
MethodTagValueNode::class => '@method',
PropertyTagValueNode::class => '@property',
];
private bool $isSingleLine = false;
private readonly PhpDocNode $originalPhpDocNode;
private bool $hasChanged = false;
public function __construct(
private readonly PhpDocNode $phpDocNode,
private readonly BetterTokenIterator $betterTokenIterator,
private readonly StaticTypeMapper $staticTypeMapper,
private readonly \PhpParser\Node $node,
private readonly AnnotationNaming $annotationNaming,
private readonly CurrentNodeProvider $currentNodeProvider,
private readonly RectorChangeCollector $rectorChangeCollector,
private readonly PhpDocNodeByTypeFinder $phpDocNodeByTypeFinder
) {
$this->originalPhpDocNode = clone $phpDocNode;
if (! $betterTokenIterator->containsTokenType(Lexer::TOKEN_PHPDOC_EOL)) {
$this->isSingleLine = true;
}
}
public function addPhpDocTagNode(PhpDocChildNode $phpDocChildNode): void
{
$this->phpDocNode->children[] = $phpDocChildNode;
// to give node more space
$this->makeMultiLined();
$this->markAsChanged();
}
public function getPhpDocNode(): PhpDocNode
{
return $this->phpDocNode;
}
public function getOriginalPhpDocNode(): PhpDocNode
{
return $this->originalPhpDocNode;
}
/**
* @return mixed[]
*/
public function getTokens(): array
{
return $this->betterTokenIterator->getTokens();
}
public function getTokenCount(): int
{
return $this->betterTokenIterator->count();
}
public function getVarTagValueNode(string $tagName = '@var'): ?VarTagValueNode
{
return $this->phpDocNode->getVarTagValues($tagName)[0] ?? null;
}
/**
* @return array<PhpDocTagNode>
*/
public function getTagsByName(string $name): array
{
// for simple tag names only
if (str_contains($name, '\\')) {
return [];
}
$tags = $this->phpDocNode->getTags();
$name = $this->annotationNaming->normalizeName($name);
$tags = array_filter($tags, fn (PhpDocTagNode $tag): bool => $tag->name === $name);
$tags = array_values($tags);
return array_values($tags);
}
public function getParamType(string $name): Type
{
$paramTagValueNodes = $this->getParamTagValueByName($name);
return $this->getTypeOrMixed($paramTagValueNodes);
}
/**
* @return ParamTagValueNode[]
*/
public function getParamTagValueNodes(): array
{
return $this->phpDocNode->getParamTagValues();
}
public function getParamTagValueNodeByName(string $parameterName): ?ParamTagValueNode
{
foreach ($this->phpDocNode->getParamTagValues() as $paramTagValueNode) {
if ($paramTagValueNode->parameterName !== '$' . $parameterName) {
continue;
}
return $paramTagValueNode;
}
return null;
}
public function getVarType(string $tagName = '@var'): Type
{
return $this->getTypeOrMixed($this->getVarTagValueNode($tagName));
}
public function getReturnType(): Type
{
return $this->getTypeOrMixed($this->getReturnTagValue());
}
/**
* @param class-string<TNode> $type
* @return TNode[]
*/
public function getByType(string $type): array
{
return $this->phpDocNodeByTypeFinder->findByType($this->phpDocNode, $type);
}
/**
* @param class-string<TNode> $type
*/
public function hasByType(string $type): bool
{
return $this->phpDocNodeByTypeFinder->findByType($this->phpDocNode, $type) !== [];
}
/**
* @param array<class-string<TNode>> $types
*/
public function hasByTypes(array $types): bool
{
foreach ($types as $type) {
if ($this->hasByType($type)) {
return true;
}
}
return false;
}
/**
* @param string[] $names
*/
public function hasByNames(array $names): bool
{
foreach ($names as $name) {
if ($this->hasByName($name)) {
return true;
}
}
return false;
}
public function hasByName(string $name): bool
{
return (bool) $this->getTagsByName($name);
}
public function getByName(string $name): ?Node
{
return $this->getTagsByName($name)[0] ?? null;
}
/**
* @param class-string[] $classes
*/
public function getByAnnotationClasses(array $classes): ?DoctrineAnnotationTagValueNode
{
$doctrineAnnotationTagValueNodes = $this->phpDocNodeByTypeFinder->findDoctrineAnnotationsByClasses(
$this->phpDocNode,
$classes
);
return $doctrineAnnotationTagValueNodes[0] ?? null;
}
/**
* @param class-string $class
*/
public function getByAnnotationClass(string $class): ?DoctrineAnnotationTagValueNode
{
$doctrineAnnotationTagValueNodes = $this->phpDocNodeByTypeFinder->findDoctrineAnnotationsByClass(
$this->phpDocNode,
$class
);
return $doctrineAnnotationTagValueNodes[0] ?? null;
}
/**
* @param class-string $class
*/
public function hasByAnnotationClass(string $class): bool
{
return $this->findByAnnotationClass($class) !== [];
}
/**
* @param string[] $annotationsClasses
*/
public function hasByAnnotationClasses(array $annotationsClasses): bool
{
return $this->getByAnnotationClasses($annotationsClasses) !== null;
}
/**
* @param string[] $desiredClasses
*/
public function findOneByAnnotationClasses(array $desiredClasses): ?DoctrineAnnotationTagValueNode
{
foreach ($desiredClasses as $desiredClass) {
$doctrineAnnotationTagValueNode = $this->findOneByAnnotationClass($desiredClass);
if (! $doctrineAnnotationTagValueNode instanceof DoctrineAnnotationTagValueNode) {
continue;
}
return $doctrineAnnotationTagValueNode;
}
return null;
}
/**
* @param class-string $desiredClass
*/
public function findOneByAnnotationClass(string $desiredClass): ?DoctrineAnnotationTagValueNode
{
$foundTagValueNodes = $this->findByAnnotationClass($desiredClass);
return $foundTagValueNodes[0] ?? null;
}
/**
* @param class-string $desiredClass
* @return DoctrineAnnotationTagValueNode[]
*/
public function findByAnnotationClass(string $desiredClass): array
{
return $this->phpDocNodeByTypeFinder->findDoctrineAnnotationsByClass($this->phpDocNode, $desiredClass);
}
/**
* @template T of \PHPStan\PhpDocParser\Ast\Node
* @param class-string<T> $typeToRemove
*/
public function removeByType(string $typeToRemove): void
{
$phpDocNodeTraverser = new PhpDocNodeTraverser();
$phpDocNodeTraverser->traverseWithCallable($this->phpDocNode, '', function (Node $node) use (
$typeToRemove
): ?int {
if ($node instanceof PhpDocTagNode && is_a($node->value, $typeToRemove, true)) {
if ($typeToRemove === VarTagValueNode::class && $node->name !== '@var') {
return null;
}
$this->markAsChanged();
return PhpDocNodeTraverser::NODE_REMOVE;
}
if (! is_a($node, $typeToRemove, true)) {
return null;
}
$this->markAsChanged();
return PhpDocNodeTraverser::NODE_REMOVE;
});
}
/**
* @return array<string, Type>
*/
public function getParamTypesByName(): array
{
$paramTypesByName = [];
foreach ($this->phpDocNode->getParamTagValues() as $paramTagValueNode) {
$parameterName = $paramTagValueNode->parameterName;
$parameterType = $this->staticTypeMapper->mapPHPStanPhpDocTypeToPHPStanType(
$paramTagValueNode,
$this->node
);
$paramTypesByName[$parameterName] = $parameterType;
}
return $paramTypesByName;
}
public function addTagValueNode(PhpDocTagValueNode $phpDocTagValueNode): void
{
if ($phpDocTagValueNode instanceof DoctrineAnnotationTagValueNode) {
$spacelessPhpDocTagNode = new SpacelessPhpDocTagNode(
'@\\' . $phpDocTagValueNode->identifierTypeNode,
$phpDocTagValueNode
);
$this->addPhpDocTagNode($spacelessPhpDocTagNode);
return;
}
$name = $this->resolveNameForPhpDocTagValueNode($phpDocTagValueNode);
if (! is_string($name)) {
return;
}
$phpDocTagNode = new PhpDocTagNode($name, $phpDocTagValueNode);
$this->addPhpDocTagNode($phpDocTagNode);
}
public function isNewNode(): bool
{
if ($this->phpDocNode->children === []) {
return false;
}
return $this->betterTokenIterator->count() === 0;
}
public function makeSingleLined(): void
{
$this->isSingleLine = true;
}
public function isSingleLine(): bool
{
return $this->isSingleLine;
}
public function hasInvalidTag(string $name): bool
{
// fallback for invalid tag value node
foreach ($this->phpDocNode->children as $phpDocChildNode) {
if (! $phpDocChildNode instanceof PhpDocTagNode) {
continue;
}
if ($phpDocChildNode->name !== $name) {
continue;
}
if (! $phpDocChildNode->value instanceof InvalidTagValueNode) {
continue;
}
return true;
}
return false;
}
public function getReturnTagValue(): ?ReturnTagValueNode
{
$returnTagValueNodes = $this->phpDocNode->getReturnTagValues();
return $returnTagValueNodes[0] ?? null;
}
public function getParamTagValueByName(string $name): ?ParamTagValueNode
{
$desiredParamNameWithDollar = '$' . ltrim($name, '$');
foreach ($this->getParamTagValueNodes() as $paramTagValueNode) {
if ($paramTagValueNode->parameterName !== $desiredParamNameWithDollar) {
continue;
}
return $paramTagValueNode;
}
return null;
}
/**
* @return TemplateTagValueNode[]
*/
public function getTemplateTagValueNodes(): array
{
return $this->phpDocNode->getTemplateTagValues();
}
public function hasInheritDoc(): bool
{
return $this->hasByNames(['inheritdoc', 'inheritDoc']);
}
/**
* @deprecated
* Should be handled by attributes of phpdoc node - if stard_and_end is missing in one of nodes, it has been changed
* Similar to missing original node in php-aprser
*/
public function markAsChanged(): void
{
$this->hasChanged = true;
$node = $this->currentNodeProvider->getNode();
if ($node !== null) {
$this->rectorChangeCollector->notifyNodeFileInfo($node);
}
}
public function hasChanged(): bool
{
if ($this->isNewNode()) {
return true;
}
if ($this->hasChanged) {
return true;
}
// has a single node with missing start_end
$phpDocNodeTraverser = new PhpDocNodeTraverser();
$changedPhpDocNodeVisitor = new ChangedPhpDocNodeVisitor();
$phpDocNodeTraverser->addPhpDocNodeVisitor($changedPhpDocNodeVisitor);
$phpDocNodeTraverser->traverse($this->phpDocNode);
return $changedPhpDocNodeVisitor->hasChanged();
}
/**
* @return string[]
*/
public function getMethodTagNames(): array
{
$methodTagNames = [];
foreach ($this->phpDocNode->getMethodTagValues() as $methodTagValueNode) {
$methodTagNames[] = $methodTagValueNode->methodName;
}
return $methodTagNames;
}
public function makeMultiLined(): void
{
$this->isSingleLine = false;
}
public function getNode(): \PhpParser\Node
{
return $this->node;
}
public function resolveNameForPhpDocTagValueNode(PhpDocTagValueNode $phpDocTagValueNode): ?string
{
foreach (self::TAGS_TYPES_TO_NAMES as $tagValueNodeType => $name) {
/** @var class-string<PhpDocTagNode> $tagValueNodeType */
if (is_a($phpDocTagValueNode, $tagValueNodeType, true)) {
return $name;
}
}
return null;
}
private function getTypeOrMixed(?PhpDocTagValueNode $phpDocTagValueNode): MixedType | Type
{
if ($phpDocTagValueNode === null) {
return new MixedType();
}
return $this->staticTypeMapper->mapPHPStanPhpDocTypeToPHPStanType($phpDocTagValueNode, $this->node);
}
}