1
0
mirror of https://github.com/danog/psalm.git synced 2024-12-04 02:27:59 +01:00
psalm/src/Psalm/DocComment.php

204 lines
6.9 KiB
PHP
Raw Normal View History

2018-11-06 03:57:36 +01:00
<?php
namespace Psalm;
2019-07-05 22:24:00 +02:00
use function array_filter;
use function explode;
use function implode;
2019-07-05 22:24:00 +02:00
use function in_array;
use function min;
use function preg_match;
use function preg_match_all;
2019-07-05 22:24:00 +02:00
use const PREG_OFFSET_CAPTURE;
use function preg_replace;
use const PREG_SET_ORDER;
2020-05-29 04:14:41 +02:00
use Psalm\Internal\Scanner\ParsedDocblock;
2019-07-05 22:24:00 +02:00
use Psalm\Exception\DocblockParseException;
use function rtrim;
use function str_repeat;
2019-07-05 22:24:00 +02:00
use function str_replace;
use function strlen;
use function strpos;
2019-07-05 22:24:00 +02:00
use function substr;
use function trim;
2018-11-06 03:57:36 +01:00
class DocComment
{
private const PSALM_ANNOTATIONS = [
'return', 'param', 'template', 'var', 'type',
'template-covariant', 'property', 'property-read', 'property-write', 'method',
'assert', 'assert-if-true', 'assert-if-false', 'suppress',
'ignore-nullable-return', 'override-property-visibility',
'override-method-visibility', 'seal-properties', 'seal-methods',
'generator-return', 'ignore-falsable-return', 'variadic', 'pure',
'ignore-variable-method', 'ignore-variable-property', 'internal',
'taint-sink', 'taint-source', 'assert-untainted', 'scope-this',
'mutation-free', 'external-mutation-free', 'immutable', 'readonly',
2020-05-22 04:47:58 +02:00
'allow-private-mutation', 'readonly-allow-private-mutation',
'yield', 'trace', 'import-type', 'flow', 'taint-specialize', 'taint-add',
2020-05-22 04:47:58 +02:00
'taint-remove'
];
/**
* Parse a docblock comment into its parts.
*
* Taken from advanced api docmaker, which was taken from
* https://github.com/facebook/libphutil/blob/master/src/parser/docblock/PhutilDocblockParser.php
*
2019-06-02 07:10:50 +02:00
* @param string $docblock
* @param int $line_number
* @param bool $preserve_format
*
* @return array Array of the main comment and specials
* @psalm-return array{description:string, specials:array<string, array<int, string>>}
2020-05-29 04:14:41 +02:00
* @psalm-suppress PossiblyUnusedMethod
*
* @deprecated use parsePreservingLength instead
*/
2019-06-02 07:10:50 +02:00
public static function parse($docblock, $line_number = null, $preserve_format = false)
2018-11-06 03:57:36 +01:00
{
// Strip off comments.
$docblock = trim($docblock);
2019-06-02 07:10:50 +02:00
$docblock = preg_replace('@^/\*\*@', '', $docblock);
2018-11-06 03:57:36 +01:00
$docblock = preg_replace('@\*/$@', '', $docblock);
2019-06-02 07:10:50 +02:00
$docblock = preg_replace('@^[ \t]*\*@m', '', $docblock);
2018-11-06 03:57:36 +01:00
// Normalize multi-line @specials.
$lines = explode("\n", $docblock);
2019-06-02 07:10:50 +02:00
$line_map = [];
2018-11-06 03:57:36 +01:00
$last = false;
foreach ($lines as $k => $line) {
if (preg_match('/^\s?@\w/i', $line)) {
$last = $k;
} elseif (preg_match('/^\s*$/', $line)) {
$last = false;
} elseif ($last !== false) {
$old_last_line = $lines[$last];
2019-06-02 07:10:50 +02:00
$lines[$last] = rtrim($old_last_line)
. ($preserve_format || trim($old_last_line) === '@return' ? "\n" . $line : ' ' . trim($line));
if ($line_number) {
$old_line_number = $line_map[$old_last_line];
unset($line_map[$old_last_line]);
$line_map[$lines[$last]] = $old_line_number;
}
2018-11-06 03:57:36 +01:00
unset($lines[$k]);
}
2019-06-02 07:10:50 +02:00
if ($line_number) {
$line_map[$line] = $line_number++;
}
2018-11-06 03:57:36 +01:00
}
2019-06-02 07:10:50 +02:00
$special = [];
2018-11-06 03:57:36 +01:00
2019-06-02 07:10:50 +02:00
if ($preserve_format) {
foreach ($lines as $m => $line) {
if (preg_match('/^\s?@([\w\-:]+)[\t ]*(.*)$/sm', $line, $matches)) {
list($full_match, $type, $data) = $matches;
2018-11-06 03:57:36 +01:00
2019-06-02 07:10:50 +02:00
$docblock = str_replace($full_match, '', $docblock);
2018-11-06 03:57:36 +01:00
2019-06-02 07:10:50 +02:00
if (empty($special[$type])) {
$special[$type] = [];
}
2018-11-06 03:57:36 +01:00
2019-06-02 07:10:50 +02:00
$line_number = $line_map && isset($line_map[$full_match]) ? $line_map[$full_match] : (int)$m;
$special[$type][$line_number] = rtrim($data);
2018-11-06 03:57:36 +01:00
}
2019-06-02 07:10:50 +02:00
}
} else {
$docblock = implode("\n", $lines);
2018-11-06 03:57:36 +01:00
2019-06-02 07:10:50 +02:00
// Parse @specials.
if (preg_match_all('/^\s?@([\w\-:]+)[\t ]*([^\n]*)/m', $docblock, $matches, PREG_SET_ORDER)) {
$docblock = preg_replace('/^\s?@([\w\-:]+)\s*([^\n]*)/m', '', $docblock);
/** @var string[] $match */
foreach ($matches as $m => $match) {
list($_, $type, $data) = $match;
2018-11-06 03:57:36 +01:00
2019-06-02 07:10:50 +02:00
if (empty($special[$type])) {
$special[$type] = [];
}
$line_number = $line_map && isset($line_map[$_]) ? $line_map[$_] : (int)$m;
2019-06-01 22:57:33 +02:00
2019-06-02 07:10:50 +02:00
$special[$type][$line_number] = $data;
}
}
2018-11-06 03:57:36 +01:00
}
$docblock = str_replace("\t", ' ', $docblock);
// Smush the whole docblock to the left edge.
$min_indent = 80;
$indent = 0;
foreach (array_filter(explode("\n", $docblock)) as $line) {
for ($ii = 0; $ii < strlen($line); ++$ii) {
if ($line[$ii] != ' ') {
break;
}
++$indent;
}
$min_indent = min($indent, $min_indent);
}
$docblock = preg_replace('/^' . str_repeat(' ', $min_indent) . '/m', '', $docblock);
$docblock = rtrim($docblock);
// Trim any empty lines off the front, but leave the indent level if there
// is one.
$docblock = preg_replace('/^\s*\n/', '', $docblock);
foreach ($special as $special_key => $_) {
if (substr($special_key, 0, 6) === 'psalm-') {
$special_key = substr($special_key, 6);
if (!in_array(
$special_key,
self::PSALM_ANNOTATIONS,
2019-07-05 22:24:00 +02:00
true
)) {
throw new DocblockParseException('Unrecognised annotation @psalm-' . $special_key);
}
}
}
return [
'description' => $docblock,
'specials' => $special,
];
}
/**
* Parse a docblock comment into its parts.
*
* @param \PhpParser\Comment\Doc $docblock
* @param bool $preserve_format
*/
2020-05-29 04:14:41 +02:00
public static function parsePreservingLength(\PhpParser\Comment\Doc $docblock) : ParsedDocblock
{
2020-05-29 04:14:41 +02:00
$parsed_docblock = \Psalm\Internal\Scanner\DocblockParser::parse($docblock->getText());
2020-05-29 04:14:41 +02:00
foreach ($parsed_docblock->tags as $special_key => $_) {
if (substr($special_key, 0, 6) === 'psalm-') {
$special_key = substr($special_key, 6);
if (!in_array(
$special_key,
self::PSALM_ANNOTATIONS,
2019-07-05 22:24:00 +02:00
true
)) {
throw new DocblockParseException('Unrecognised annotation @psalm-' . $special_key);
}
}
}
2020-05-29 04:14:41 +02:00
return $parsed_docblock;
}
2018-11-06 03:57:36 +01:00
}