2018-11-06 03:57:36 +01:00
|
|
|
<?php
|
|
|
|
namespace Psalm;
|
|
|
|
|
2019-07-05 22:24:00 +02:00
|
|
|
use function array_filter;
|
2019-06-26 22:52:29 +02:00
|
|
|
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;
|
2019-06-26 22:52:29 +02:00
|
|
|
use function preg_match_all;
|
2019-07-05 22:24:00 +02:00
|
|
|
use const PREG_OFFSET_CAPTURE;
|
|
|
|
use function preg_replace;
|
2019-06-26 22:52:29 +02:00
|
|
|
use const PREG_SET_ORDER;
|
2019-07-05 22:24:00 +02:00
|
|
|
use Psalm\Exception\DocblockParseException;
|
|
|
|
use function rtrim;
|
2019-06-26 22:52:29 +02:00
|
|
|
use function str_repeat;
|
2019-07-05 22:24:00 +02:00
|
|
|
use function str_replace;
|
|
|
|
use function strlen;
|
2019-06-26 22:52:29 +02:00
|
|
|
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
|
|
|
|
{
|
2020-04-03 04:38:10 +02:00
|
|
|
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',
|
|
|
|
'remove-taint', 'allow-private-mutation', 'readonly-allow-private-mutation',
|
2020-04-06 18:42:22 +02:00
|
|
|
'yield', 'trace',
|
2020-04-03 04:38:10 +02:00
|
|
|
];
|
|
|
|
|
2020-03-13 17:40:08 +01:00
|
|
|
/**
|
|
|
|
* @var bool
|
|
|
|
*/
|
|
|
|
private static $shouldAddNewLineBetweenAnnotations = true;
|
|
|
|
|
2019-06-02 00:44:59 +02:00
|
|
|
/**
|
|
|
|
* 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
|
2019-06-02 00:44:59 +02:00
|
|
|
* @param bool $preserve_format
|
|
|
|
*
|
|
|
|
* @return array Array of the main comment and specials
|
|
|
|
* @psalm-return array{description:string, specials:array<string, array<int, string>>}
|
|
|
|
*/
|
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);
|
|
|
|
}
|
2019-06-02 00:44:59 +02:00
|
|
|
|
|
|
|
$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,
|
2020-04-03 04:38:10 +02:00
|
|
|
self::PSALM_ANNOTATIONS,
|
2019-07-05 22:24:00 +02:00
|
|
|
true
|
2019-06-02 00:44:59 +02:00
|
|
|
)) {
|
|
|
|
throw new DocblockParseException('Unrecognised annotation @psalm-' . $special_key);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return [
|
|
|
|
'description' => $docblock,
|
|
|
|
'specials' => $special,
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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
|
|
|
|
*
|
|
|
|
* @param \PhpParser\Comment\Doc $docblock
|
|
|
|
* @param bool $preserve_format
|
|
|
|
*
|
|
|
|
* @return array Array of the main comment and specials
|
|
|
|
* @psalm-return array{description:string, specials:array<string, array<int, string>>}
|
|
|
|
*/
|
|
|
|
public static function parsePreservingLength(\PhpParser\Comment\Doc $docblock)
|
|
|
|
{
|
|
|
|
$docblock = $docblock->getText();
|
|
|
|
|
|
|
|
// Strip off comments.
|
|
|
|
$docblock = trim($docblock);
|
|
|
|
|
|
|
|
$docblock = preg_replace('@^/\*\*@', '', $docblock);
|
2020-02-10 21:30:06 +01:00
|
|
|
$docblock = preg_replace('@\*\*?/$@', '', $docblock);
|
2019-06-02 00:44:59 +02:00
|
|
|
|
|
|
|
// Normalize multi-line @specials.
|
|
|
|
$lines = explode("\n", $docblock);
|
|
|
|
|
|
|
|
$special = [];
|
|
|
|
|
|
|
|
$last = false;
|
|
|
|
foreach ($lines as $k => $line) {
|
|
|
|
if (preg_match('/^[ \t]*\*?\s?@\w/i', $line)) {
|
|
|
|
$last = $k;
|
2020-03-10 18:28:42 +01:00
|
|
|
} elseif (preg_match('/^\s*\r?$/', $line)) {
|
2019-06-02 00:44:59 +02:00
|
|
|
$last = false;
|
|
|
|
} elseif ($last !== false) {
|
|
|
|
$old_last_line = $lines[$last];
|
|
|
|
$lines[$last] = $old_last_line . "\n" . $line;
|
|
|
|
|
|
|
|
unset($lines[$k]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$line_offset = 0;
|
|
|
|
|
|
|
|
foreach ($lines as $line) {
|
2020-03-10 18:28:42 +01:00
|
|
|
$original_line_length = strlen($line);
|
|
|
|
|
|
|
|
$line = str_replace("\r", '', $line);
|
|
|
|
|
2019-06-02 00:44:59 +02:00
|
|
|
if (preg_match('/^[ \t]*\*?\s?@([\w\-:]+)[\t ]*(.*)$/sm', $line, $matches, PREG_OFFSET_CAPTURE)) {
|
|
|
|
/** @var array<int, array{string, int}> $matches */
|
|
|
|
list($full_match_info, $type_info, $data_info) = $matches;
|
|
|
|
|
|
|
|
list($full_match) = $full_match_info;
|
|
|
|
list($type) = $type_info;
|
|
|
|
list($data, $data_offset) = $data_info;
|
|
|
|
|
2019-06-03 18:13:38 +02:00
|
|
|
if (strpos($data, '*')) {
|
2020-03-01 23:48:44 +01:00
|
|
|
$data = rtrim(preg_replace('/^[ \t]*\*\s*$/m', '', $data));
|
2019-06-03 18:13:38 +02:00
|
|
|
}
|
|
|
|
|
2019-06-02 00:44:59 +02:00
|
|
|
$docblock = str_replace($full_match, '', $docblock);
|
|
|
|
|
|
|
|
if (empty($special[$type])) {
|
|
|
|
$special[$type] = [];
|
|
|
|
}
|
|
|
|
|
|
|
|
$data_offset += $line_offset;
|
|
|
|
|
|
|
|
$special[$type][$data_offset + 3] = $data;
|
|
|
|
}
|
|
|
|
|
2020-03-10 18:28:42 +01:00
|
|
|
$line_offset += $original_line_length + 1;
|
2019-06-02 00:44:59 +02: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);
|
|
|
|
}
|
2018-11-06 03:57:36 +01:00
|
|
|
|
|
|
|
$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);
|
|
|
|
|
2018-12-01 21:29:14 +01:00
|
|
|
foreach ($special as $special_key => $_) {
|
|
|
|
if (substr($special_key, 0, 6) === 'psalm-') {
|
|
|
|
$special_key = substr($special_key, 6);
|
|
|
|
|
|
|
|
if (!in_array(
|
|
|
|
$special_key,
|
2020-04-03 04:38:10 +02:00
|
|
|
self::PSALM_ANNOTATIONS,
|
2019-07-05 22:24:00 +02:00
|
|
|
true
|
2018-12-01 21:29:14 +01:00
|
|
|
)) {
|
|
|
|
throw new DocblockParseException('Unrecognised annotation @psalm-' . $special_key);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-06 03:57:36 +01:00
|
|
|
return [
|
|
|
|
'description' => $docblock,
|
|
|
|
'specials' => $special,
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param array{description:string,specials:array<string,array<string>>} $parsed_doc_comment
|
|
|
|
* @param string $left_padding
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public static function render(array $parsed_doc_comment, $left_padding)
|
|
|
|
{
|
|
|
|
$doc_comment_text = '/**' . "\n";
|
|
|
|
|
|
|
|
$description_lines = null;
|
|
|
|
|
|
|
|
$trimmed_description = trim($parsed_doc_comment['description']);
|
|
|
|
|
|
|
|
if (!empty($trimmed_description)) {
|
|
|
|
$description_lines = explode("\n", $parsed_doc_comment['description']);
|
|
|
|
|
|
|
|
foreach ($description_lines as $line) {
|
|
|
|
$doc_comment_text .= $left_padding . ' *' . (trim($line) ? ' ' . $line : '') . "\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($description_lines && $parsed_doc_comment['specials']) {
|
|
|
|
$doc_comment_text .= $left_padding . ' *' . "\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($parsed_doc_comment['specials']) {
|
|
|
|
$last_type = null;
|
|
|
|
|
|
|
|
foreach ($parsed_doc_comment['specials'] as $type => $lines) {
|
2020-03-13 17:40:08 +01:00
|
|
|
if ($last_type !== null
|
|
|
|
&& $last_type !== 'psalm-return'
|
|
|
|
&& static::shouldAddNewLineBetweenAnnotations()
|
|
|
|
) {
|
2018-11-06 03:57:36 +01:00
|
|
|
$doc_comment_text .= $left_padding . ' *' . "\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach ($lines as $line) {
|
|
|
|
$doc_comment_text .= $left_padding . ' * @' . $type . ' '
|
|
|
|
. str_replace("\n", "\n" . $left_padding . ' *', $line) . "\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
$last_type = $type;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$doc_comment_text .= $left_padding . ' */' . "\n" . $left_padding;
|
|
|
|
|
|
|
|
return $doc_comment_text;
|
|
|
|
}
|
2020-03-13 17:40:08 +01:00
|
|
|
|
|
|
|
private static function shouldAddNewLineBetweenAnnotations(): bool
|
|
|
|
{
|
|
|
|
return static::$shouldAddNewLineBetweenAnnotations;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets whether a new line should be added between the annotations or not.
|
|
|
|
*
|
|
|
|
* @param bool $should
|
|
|
|
*/
|
|
|
|
public static function addNewLineBetweenAnnotations(bool $should = true): void
|
|
|
|
{
|
|
|
|
static::$shouldAddNewLineBetweenAnnotations = $should;
|
|
|
|
}
|
2018-11-06 03:57:36 +01:00
|
|
|
}
|