1
0
mirror of https://github.com/danog/psalm.git synced 2024-12-12 01:09:38 +01:00
psalm/src/Psalm/Checker/CommentChecker.php

263 lines
8.7 KiB
PHP
Raw Normal View History

2016-06-24 00:45:46 +02:00
<?php
namespace Psalm\Checker;
use Psalm\Context;
use Psalm\StatementsSource;
use Psalm\Type;
2016-06-24 00:45:46 +02:00
class CommentChecker
{
const TYPE_REGEX = '(\\\?[A-Za-z0-9_\<,\>\[\]\-\{\}:|\\\]+[A-Za-z0-9_\<,\>\[\]-\{\}:]|\$[a-zA-Z_0-9_\<,\>\|\[\]-\{\}:]+)';
2016-06-24 00:45:46 +02:00
/**
* @param string $comment
* @param Context|null $context
2016-06-24 00:45:46 +02:00
* @param StatementsSource $source
* @param string $var_id
* @return Type\Union|null
*/
public static function getTypeFromComment($comment, Context $context = null, StatementsSource $source, $var_id = null)
{
$type_in_comments_var_id = null;
$type_in_comments = null;
2016-10-28 06:11:16 +02:00
$comments = self::parseDocComment($comment);
2016-06-24 00:45:46 +02:00
2016-11-01 06:02:54 +01:00
if ($comments && isset($comments['specials']['var'][0]) && trim((string)$comments['specials']['var'][0])) {
2016-11-01 05:39:41 +01:00
try {
2016-11-01 06:02:54 +01:00
$line_parts = self::splitDocLine(trim((string)$comments['specials']['var'][0]));
2016-11-01 05:39:41 +01:00
}
catch (\Psalm\Exception\DocblockParseException $e) {
throw $e;
}
2016-06-24 00:45:46 +02:00
2016-11-01 06:02:54 +01:00
if ($line_parts && $line_parts[0]) {
2016-11-01 05:39:41 +01:00
$type_in_comments = FunctionLikeChecker::fixUpLocalType(
$line_parts[0],
$source->getAbsoluteClass(),
$source->getNamespace(),
$source->getAliasedClasses()
);
2016-06-24 00:45:46 +02:00
// support PHPStorm-style docblocks like
// @var Type $variable
2016-11-01 05:39:41 +01:00
if (count($line_parts) > 1 && $line_parts[1][0] === '$') {
$type_in_comments_var_id = $line_parts[1];
2016-06-24 00:45:46 +02:00
}
}
}
if (!$type_in_comments) {
return null;
}
$defined_type = Type::parseString($type_in_comments);
if ($context && $type_in_comments_var_id && $type_in_comments_var_id !== $var_id) {
2016-10-15 06:12:57 +02:00
$context->vars_in_scope[$type_in_comments_var_id] = $defined_type;
2016-06-24 00:45:46 +02:00
return null;
}
return $defined_type;
}
2016-10-14 06:53:43 +02:00
/**
* @param string $comment
* @psalm-return array{return_type: null|string, params: array<int, array{name:string, type:string}>, deprecated: bool, suppress: array<string>, variadic: boolean}
2016-10-14 06:53:43 +02:00
*/
2016-06-24 00:45:46 +02:00
public static function extractDocblockInfo($comment)
{
2016-10-28 06:11:16 +02:00
$comments = self::parseDocComment($comment);
2016-06-24 00:45:46 +02:00
$info = ['return_type' => null, 'params' => [], 'deprecated' => false, 'suppress' => []];
2016-06-24 00:45:46 +02:00
if (isset($comments['specials']['return']) || isset($comments['specials']['psalm-return'])) {
2016-10-28 06:11:16 +02:00
$return_block = trim(
isset($comments['specials']['psalm-return'])
2016-10-14 06:53:43 +02:00
? (string)$comments['specials']['psalm-return'][0]
: (string)$comments['specials']['return'][0]
);
2016-06-24 00:45:46 +02:00
2016-10-28 17:05:51 +02:00
try {
$line_parts = self::splitDocLine($return_block);
}
catch (\Psalm\Exception\DocblockParseException $e) {
throw $e;
}
2016-10-28 06:11:16 +02:00
if (preg_match('/^' . self::TYPE_REGEX . '$/', $line_parts[0])
&& !preg_match('/\[[^\]]+\]/', $line_parts[0])
&& !strpos($line_parts[0], '::')
) {
2016-10-28 06:11:16 +02:00
$info['return_type'] = $line_parts[0];
2016-06-24 00:45:46 +02:00
}
}
if (isset($comments['specials']['param'])) {
foreach ($comments['specials']['param'] as $param) {
2016-10-28 17:05:51 +02:00
try {
$line_parts = self::splitDocLine((string)$param);
}
catch (\Psalm\Exception\DocblockParseException $e) {
throw $e;
}
2016-06-24 00:45:46 +02:00
2016-10-28 06:11:16 +02:00
if (count($line_parts) > 1
&& preg_match('/^' . self::TYPE_REGEX . '$/', $line_parts[0])
&& !preg_match('/\[[^\]]+\]/', $line_parts[0])
&& preg_match('/^&?\$[A-Za-z0-9_]+$/', $line_parts[1])
&& !strpos($line_parts[0], '::')
2016-06-24 00:45:46 +02:00
) {
2016-10-28 06:11:16 +02:00
if ($line_parts[1][0] === '&') {
$line_parts[1] = substr($line_parts[1], 1);
2016-10-15 06:12:57 +02:00
}
2016-10-28 06:11:16 +02:00
$info['params'][] = ['name' => substr($line_parts[1], 1), 'type' => $line_parts[0]];
2016-06-24 00:45:46 +02:00
}
}
}
if (isset($comments['specials']['deprecated'])) {
$info['deprecated'] = true;
}
2016-10-11 20:17:55 +02:00
if (isset($comments['specials']['psalm-suppress'])) {
foreach ($comments['specials']['psalm-suppress'] as $suppress_entry) {
2016-10-14 06:53:43 +02:00
$info['suppress'][] = preg_split('/[\s]+/', (string)$suppress_entry)[0];
}
}
$info['variadic'] = isset($comments['specials']['psalm-variadic']);
2016-06-24 00:45:46 +02:00
return $info;
}
2016-10-28 06:11:16 +02:00
/**
* @param string $return_block
* @return array<string>
*/
protected static function splitDocLine($return_block)
{
$brackets = '';
$type = '';
for ($i = 0; $i < strlen($return_block); $i++) {
$char = $return_block[$i];
if ($char === '[' || $char === '{' || $char === '(' || $char === '<') {
$brackets .= $char;
}
elseif ($char === ']' || $char === '}' || $char === ')' || $char === '>') {
$last_bracket = substr($brackets, -1);
$brackets = substr($brackets, 0, -1);
if (($char === ']' && $last_bracket !== '[')
|| ($char === '}' && $last_bracket !== '{')
|| ($char === ')' && $last_bracket !== '(')
|| ($char === '>' && $last_bracket !== '<')
) {
throw new \Psalm\Exception\DocblockParseException('Invalid string ' . $return_block);
}
}
2016-11-01 05:39:41 +01:00
elseif ($char === ' ' || $char === "\t") {
2016-10-28 06:11:16 +02:00
if ($brackets) {
continue;
}
2016-11-01 05:39:41 +01:00
$remaining = trim(substr($return_block, $i + 1));
if ($remaining) {
return array_merge([$type], preg_split('/[\s\t]+/', $remaining));
}
return [$type];
2016-10-28 06:11:16 +02:00
}
$type .= $char;
}
return [$type];
}
/**
* 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 string $docblock
* @return array Array of the main comment and specials
*/
public static function parseDocComment($docblock)
{
// Strip off comments.
$docblock = trim($docblock);
$docblock = preg_replace('@^/\*\*@', '', $docblock);
$docblock = preg_replace('@\*/$@', '', $docblock);
$docblock = preg_replace('@^\s*\*@m', '', $docblock);
// Normalize multi-line @specials.
$lines = explode("\n", $docblock);
$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) {
$lines[$last] = rtrim($lines[$last]).' '.trim($line);
unset($lines[$k]);
}
}
$docblock = implode("\n", $lines);
$special = array();
// Parse @specials.
2016-11-01 19:14:35 +01:00
$matches = [];
2016-10-28 06:11:16 +02:00
$have_specials = preg_match_all('/^\s?@([\w\-:]+)\s*([^\n]*)/m', $docblock, $matches, PREG_SET_ORDER);
if ($have_specials) {
$docblock = preg_replace('/^\s?@([\w\-:]+)\s*([^\n]*)/m', '', $docblock);
foreach ($matches as $match) {
list($_, $type, $data) = $match;
if (empty($special[$type])) {
$special[$type] = array();
}
$special[$type][] = $data;
}
}
$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++;
}
/** @var int */
$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);
return array('description' => $docblock, 'specials' => $special);
}
2016-06-24 00:45:46 +02:00
}