mirror of
https://github.com/rectorphp/rector.git
synced 2025-02-21 09:42:45 +01:00
446 lines
16 KiB
PHP
446 lines
16 KiB
PHP
<?php
|
|
|
|
declare (strict_types=1);
|
|
namespace Rector\BetterPhpDocParser\PhpDocInfo;
|
|
|
|
use RectorPrefix20210521\Nette\Utils\Strings;
|
|
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\PhpDocNodeVisitor\ChangedPhpDocNodeVisitor;
|
|
use Rector\BetterPhpDocParser\ValueObject\Parser\BetterTokenIterator;
|
|
use Rector\ChangesReporting\Collector\RectorChangeCollector;
|
|
use Rector\Core\Configuration\CurrentNodeProvider;
|
|
use Rector\Core\Exception\NotImplementedYetException;
|
|
use Rector\StaticTypeMapper\StaticTypeMapper;
|
|
use RectorPrefix20210521\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 = [\PHPStan\PhpDocParser\Ast\PhpDoc\ReturnTagValueNode::class => '@return', \PHPStan\PhpDocParser\Ast\PhpDoc\ParamTagValueNode::class => '@param', \PHPStan\PhpDocParser\Ast\PhpDoc\VarTagValueNode::class => '@var', \PHPStan\PhpDocParser\Ast\PhpDoc\MethodTagValueNode::class => '@method', \PHPStan\PhpDocParser\Ast\PhpDoc\PropertyTagValueNode::class => '@property'];
|
|
/**
|
|
* @var bool
|
|
*/
|
|
private $isSingleLine = \false;
|
|
/**
|
|
* @var \PHPStan\PhpDocParser\Ast\PhpDoc\PhpDocNode
|
|
*/
|
|
private $originalPhpDocNode;
|
|
/**
|
|
* @var bool
|
|
*/
|
|
private $hasChanged = \false;
|
|
/**
|
|
* @var \PHPStan\PhpDocParser\Ast\PhpDoc\PhpDocNode
|
|
*/
|
|
private $phpDocNode;
|
|
/**
|
|
* @var \Rector\BetterPhpDocParser\ValueObject\Parser\BetterTokenIterator
|
|
*/
|
|
private $betterTokenIterator;
|
|
/**
|
|
* @var \Rector\StaticTypeMapper\StaticTypeMapper
|
|
*/
|
|
private $staticTypeMapper;
|
|
/**
|
|
* @var \PhpParser\Node
|
|
*/
|
|
private $node;
|
|
/**
|
|
* @var \Rector\BetterPhpDocParser\Annotation\AnnotationNaming
|
|
*/
|
|
private $annotationNaming;
|
|
/**
|
|
* @var \Rector\Core\Configuration\CurrentNodeProvider
|
|
*/
|
|
private $currentNodeProvider;
|
|
/**
|
|
* @var \Rector\ChangesReporting\Collector\RectorChangeCollector
|
|
*/
|
|
private $rectorChangeCollector;
|
|
public function __construct(\PHPStan\PhpDocParser\Ast\PhpDoc\PhpDocNode $phpDocNode, \Rector\BetterPhpDocParser\ValueObject\Parser\BetterTokenIterator $betterTokenIterator, \Rector\StaticTypeMapper\StaticTypeMapper $staticTypeMapper, \PhpParser\Node $node, \Rector\BetterPhpDocParser\Annotation\AnnotationNaming $annotationNaming, \Rector\Core\Configuration\CurrentNodeProvider $currentNodeProvider, \Rector\ChangesReporting\Collector\RectorChangeCollector $rectorChangeCollector)
|
|
{
|
|
$this->phpDocNode = $phpDocNode;
|
|
$this->betterTokenIterator = $betterTokenIterator;
|
|
$this->staticTypeMapper = $staticTypeMapper;
|
|
$this->node = $node;
|
|
$this->annotationNaming = $annotationNaming;
|
|
$this->currentNodeProvider = $currentNodeProvider;
|
|
$this->rectorChangeCollector = $rectorChangeCollector;
|
|
$this->originalPhpDocNode = clone $phpDocNode;
|
|
if (!$betterTokenIterator->containsTokenType(\PHPStan\PhpDocParser\Lexer\Lexer::TOKEN_PHPDOC_EOL)) {
|
|
$this->isSingleLine = \true;
|
|
}
|
|
}
|
|
public function addPhpDocTagNode(\PHPStan\PhpDocParser\Ast\PhpDoc\PhpDocChildNode $phpDocChildNode) : void
|
|
{
|
|
$this->phpDocNode->children[] = $phpDocChildNode;
|
|
// to give node more space
|
|
$this->makeMultiLined();
|
|
$this->markAsChanged();
|
|
}
|
|
public function getPhpDocNode() : \PHPStan\PhpDocParser\Ast\PhpDoc\PhpDocNode
|
|
{
|
|
return $this->phpDocNode;
|
|
}
|
|
public function getOriginalPhpDocNode() : \PHPStan\PhpDocParser\Ast\PhpDoc\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() : ?\PHPStan\PhpDocParser\Ast\PhpDoc\VarTagValueNode
|
|
{
|
|
return $this->phpDocNode->getVarTagValues()[0] ?? null;
|
|
}
|
|
/**
|
|
* @return array<PhpDocTagNode>
|
|
*/
|
|
public function getTagsByName(string $name) : array
|
|
{
|
|
$name = $this->annotationNaming->normalizeName($name);
|
|
$tags = $this->phpDocNode->getTags();
|
|
$tags = \array_filter($tags, function (\PHPStan\PhpDocParser\Ast\PhpDoc\PhpDocTagNode $tag) use($name) {
|
|
return $tag->name === $name;
|
|
});
|
|
$tags = \array_values($tags);
|
|
return \array_values($tags);
|
|
}
|
|
public function getParamType(string $name) : \PHPStan\Type\Type
|
|
{
|
|
$paramTagValueNodes = $this->getParamTagValueByName($name);
|
|
return $this->getTypeOrMixed($paramTagValueNodes);
|
|
}
|
|
/**
|
|
* @return ParamTagValueNode[]
|
|
*/
|
|
public function getParamTagValueNodes() : array
|
|
{
|
|
return $this->phpDocNode->getParamTagValues();
|
|
}
|
|
public function getParamTagValueNodeByName(string $parameterName) : ?\PHPStan\PhpDocParser\Ast\PhpDoc\ParamTagValueNode
|
|
{
|
|
foreach ($this->phpDocNode->getParamTagValues() as $paramTagValueNode) {
|
|
if ($paramTagValueNode->parameterName !== '$' . $parameterName) {
|
|
continue;
|
|
}
|
|
return $paramTagValueNode;
|
|
}
|
|
return null;
|
|
}
|
|
public function getVarType() : \PHPStan\Type\Type
|
|
{
|
|
return $this->getTypeOrMixed($this->getVarTagValueNode());
|
|
}
|
|
public function getReturnType() : \PHPStan\Type\Type
|
|
{
|
|
return $this->getTypeOrMixed($this->getReturnTagValue());
|
|
}
|
|
/**
|
|
* @param class-string<TNode> $type
|
|
*/
|
|
public function hasByType(string $type) : bool
|
|
{
|
|
return (bool) $this->getByType($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) : ?\PHPStan\PhpDocParser\Ast\Node
|
|
{
|
|
return $this->getTagsByName($name)[0] ?? null;
|
|
}
|
|
/**
|
|
* @param string[] $classes
|
|
*/
|
|
public function getByAnnotationClasses(array $classes) : ?\Rector\BetterPhpDocParser\PhpDoc\DoctrineAnnotationTagValueNode
|
|
{
|
|
foreach ($classes as $class) {
|
|
$tagValueNode = $this->getByAnnotationClass($class);
|
|
if ($tagValueNode instanceof \Rector\BetterPhpDocParser\PhpDoc\DoctrineAnnotationTagValueNode) {
|
|
return $tagValueNode;
|
|
}
|
|
}
|
|
return null;
|
|
}
|
|
public function hasByAnnotationClass(string $class) : bool
|
|
{
|
|
return $this->getByAnnotationClass($class) !== null;
|
|
}
|
|
/**
|
|
* @param string[] $annotationsClasses
|
|
*/
|
|
public function hasByAnnotationClasses(array $annotationsClasses) : bool
|
|
{
|
|
return $this->getByAnnotationClasses($annotationsClasses) !== null;
|
|
}
|
|
public function getByAnnotationClass(string $desiredClass) : ?\Rector\BetterPhpDocParser\PhpDoc\DoctrineAnnotationTagValueNode
|
|
{
|
|
foreach ($this->phpDocNode->children as $phpDocChildNode) {
|
|
if (!$phpDocChildNode instanceof \PHPStan\PhpDocParser\Ast\PhpDoc\PhpDocTagNode) {
|
|
continue;
|
|
}
|
|
// new approach
|
|
if (!$phpDocChildNode->value instanceof \Rector\BetterPhpDocParser\PhpDoc\DoctrineAnnotationTagValueNode) {
|
|
continue;
|
|
}
|
|
$doctrineAnnotationTagValueNode = $phpDocChildNode->value;
|
|
$annotationClass = $doctrineAnnotationTagValueNode->getAnnotationClass();
|
|
if ($annotationClass === $desiredClass) {
|
|
return $doctrineAnnotationTagValueNode;
|
|
}
|
|
// fnmatch
|
|
if ($this->isFnmatch($annotationClass, $desiredClass)) {
|
|
return $doctrineAnnotationTagValueNode;
|
|
}
|
|
}
|
|
return null;
|
|
}
|
|
/**
|
|
* @param class-string<TNode> $type
|
|
* @return TNode|null
|
|
*/
|
|
public function getByType(string $type)
|
|
{
|
|
foreach ($this->phpDocNode->children as $phpDocChildNode) {
|
|
if (\is_a($phpDocChildNode, $type, \true)) {
|
|
return $phpDocChildNode;
|
|
}
|
|
if (!$phpDocChildNode instanceof \PHPStan\PhpDocParser\Ast\PhpDoc\PhpDocTagNode) {
|
|
continue;
|
|
}
|
|
if (!\is_a($phpDocChildNode->value, $type, \true)) {
|
|
continue;
|
|
}
|
|
return $phpDocChildNode->value;
|
|
}
|
|
return null;
|
|
}
|
|
/**
|
|
* @deprecated, should accept only strings, to make it useful for developer who don't know internal logics of tag nodes; also not each tag requires node class
|
|
* @template T of \PHPStan\PhpDocParser\Ast\Node
|
|
* @param class-string<T> $type
|
|
*/
|
|
public function removeByType(string $type) : void
|
|
{
|
|
foreach ($this->phpDocNode->children as $key => $phpDocChildNode) {
|
|
if (\is_a($phpDocChildNode, $type, \true)) {
|
|
unset($this->phpDocNode->children[$key]);
|
|
$this->markAsChanged();
|
|
}
|
|
if (!$phpDocChildNode instanceof \PHPStan\PhpDocParser\Ast\PhpDoc\PhpDocTagNode) {
|
|
continue;
|
|
}
|
|
if (!\is_a($phpDocChildNode->value, $type, \true)) {
|
|
continue;
|
|
}
|
|
unset($this->phpDocNode->children[$key]);
|
|
$this->markAsChanged();
|
|
}
|
|
}
|
|
/**
|
|
* @return array<string, Type>
|
|
*/
|
|
public function getParamTypesByName() : array
|
|
{
|
|
$paramTypesByName = [];
|
|
foreach ($this->phpDocNode->getParamTagValues() as $paramTagValueNode) {
|
|
$parameterName = $paramTagValueNode->parameterName;
|
|
$paramTypesByName[$parameterName] = $this->staticTypeMapper->mapPHPStanPhpDocTypeToPHPStanType($paramTagValueNode, $this->node);
|
|
}
|
|
return $paramTypesByName;
|
|
}
|
|
public function addTagValueNode(\PHPStan\PhpDocParser\Ast\PhpDoc\PhpDocTagValueNode $phpDocTagValueNode) : void
|
|
{
|
|
if ($phpDocTagValueNode instanceof \Rector\BetterPhpDocParser\PhpDoc\DoctrineAnnotationTagValueNode) {
|
|
$spacelessPhpDocTagNode = new \Rector\BetterPhpDocParser\PhpDoc\SpacelessPhpDocTagNode('@\\' . $phpDocTagValueNode->getAnnotationClass(), $phpDocTagValueNode);
|
|
$this->addPhpDocTagNode($spacelessPhpDocTagNode);
|
|
return;
|
|
}
|
|
$name = $this->resolveNameForPhpDocTagValueNode($phpDocTagValueNode);
|
|
$phpDocTagNode = new \PHPStan\PhpDocParser\Ast\PhpDoc\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 \PHPStan\PhpDocParser\Ast\PhpDoc\PhpDocTagNode) {
|
|
continue;
|
|
}
|
|
if ($phpDocChildNode->name !== $name) {
|
|
continue;
|
|
}
|
|
if (!$phpDocChildNode->value instanceof \PHPStan\PhpDocParser\Ast\PhpDoc\InvalidTagValueNode) {
|
|
continue;
|
|
}
|
|
return \true;
|
|
}
|
|
return \false;
|
|
}
|
|
public function getReturnTagValue() : ?\PHPStan\PhpDocParser\Ast\PhpDoc\ReturnTagValueNode
|
|
{
|
|
$returnTagValueNodes = $this->phpDocNode->getReturnTagValues();
|
|
return $returnTagValueNodes[0] ?? null;
|
|
}
|
|
public function getParamTagValueByName(string $name) : ?\PHPStan\PhpDocParser\Ast\PhpDoc\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 \RectorPrefix20210521\Symplify\SimplePhpDocParser\PhpDocNodeTraverser();
|
|
$changedPhpDocNodeVisitor = new \Rector\BetterPhpDocParser\PhpDocNodeVisitor\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;
|
|
}
|
|
private function getTypeOrMixed(?\PHPStan\PhpDocParser\Ast\PhpDoc\PhpDocTagValueNode $phpDocTagValueNode) : \PHPStan\Type\Type
|
|
{
|
|
if ($phpDocTagValueNode === null) {
|
|
return new \PHPStan\Type\MixedType();
|
|
}
|
|
return $this->staticTypeMapper->mapPHPStanPhpDocTypeToPHPStanType($phpDocTagValueNode, $this->node);
|
|
}
|
|
private function resolveNameForPhpDocTagValueNode(\PHPStan\PhpDocParser\Ast\PhpDoc\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;
|
|
}
|
|
}
|
|
throw new \Rector\Core\Exception\NotImplementedYetException(\get_class($phpDocTagValueNode));
|
|
}
|
|
private function isFnmatch(string $currentValue, string $desiredValue) : bool
|
|
{
|
|
if (!\RectorPrefix20210521\Nette\Utils\Strings::contains($desiredValue, '*')) {
|
|
return \false;
|
|
}
|
|
return \fnmatch($desiredValue, $currentValue, \FNM_NOESCAPE);
|
|
}
|
|
}
|