1
0
mirror of https://github.com/danog/psalm.git synced 2024-12-14 10:17:33 +01:00
psalm/src/Psalm/Codebase/CallMap.php

161 lines
4.2 KiB
PHP
Raw Normal View History

2018-02-04 00:52:35 +01:00
<?php
namespace Psalm\Codebase;
use Psalm\Type;
use Psalm\Storage\FunctionLikeParameter;
2018-02-04 00:52:35 +01:00
2018-02-09 23:51:49 +01:00
/**
* @internal
*
* Gets values from the call map array, which stores data about native functions and methods
*/
2018-02-04 00:52:35 +01:00
class CallMap
{
/**
* @var array<array<string,string>>|null
*/
private static $call_map = null;
/**
* @param string $function_id
*
* @return array|null
* @psalm-return array<int, array<int, FunctionLikeParameter>>|null
*/
public static function getParamsFromCallMap($function_id)
{
$call_map = self::getCallMap();
$call_map_key = strtolower($function_id);
if (!isset($call_map[$call_map_key])) {
return null;
}
$call_map_functions = [];
$call_map_functions[] = $call_map[$call_map_key];
for ($i = 1; $i < 10; ++$i) {
if (!isset($call_map[$call_map_key . '\'' . $i])) {
break;
}
$call_map_functions[] = $call_map[$call_map_key . '\'' . $i];
}
$function_type_options = [];
foreach ($call_map_functions as $call_map_function_args) {
array_shift($call_map_function_args);
$function_types = [];
/** @var string $arg_name - key type changed with above array_shift */
foreach ($call_map_function_args as $arg_name => $arg_type) {
$by_reference = false;
$optional = false;
$variadic = false;
if ($arg_name[0] === '&') {
$arg_name = substr($arg_name, 1);
$by_reference = true;
}
if (substr($arg_name, -1) === '=') {
$arg_name = substr($arg_name, 0, -1);
$optional = true;
}
if (substr($arg_name, 0, 3) === '...') {
$arg_name = substr($arg_name, 3);
$variadic = true;
}
$param_type = $arg_type
? Type::parseString($arg_type)
: Type::getMixed();
$function_types[] = new FunctionLikeParameter(
$arg_name,
$by_reference,
$param_type,
null,
null,
$optional,
false,
$variadic
);
}
$function_type_options[] = $function_types;
}
return $function_type_options;
}
/**
* @param string $function_id
*
* @return Type\Union
*/
public static function getReturnTypeFromCallMap($function_id)
{
$call_map_key = strtolower($function_id);
$call_map = self::getCallMap();
if (!isset($call_map[$call_map_key])) {
throw new \InvalidArgumentException('Function ' . $function_id . ' was not found in callmap');
}
if (!$call_map[$call_map_key][0]) {
return Type::getMixed();
}
$call_map_type = Type::parseString($call_map[$call_map_key][0]);
if ($call_map_type->isNullable()) {
$call_map_type->from_docblock = true;
}
return $call_map_type;
2018-02-04 00:52:35 +01:00
}
/**
* Gets the method/function call map
*
* @return array<string, array<int|string, string>>
* @psalm-suppress MixedInferredReturnType as the use of require buggers things up
* @psalm-suppress MixedAssignment
* @psalm-suppress MixedTypeCoercion
2018-02-04 00:52:35 +01:00
*/
public static function getCallMap()
{
if (self::$call_map !== null) {
return self::$call_map;
}
2018-02-22 00:59:31 +01:00
/** @var array<string, array<int|string, string>> */
2018-02-04 00:52:35 +01:00
$call_map = require_once(__DIR__ . '/../CallMap.php');
self::$call_map = [];
foreach ($call_map as $key => $value) {
$cased_key = strtolower($key);
self::$call_map[$cased_key] = $value;
}
return self::$call_map;
}
/**
* @param string $key
*
* @return bool
*/
public static function inCallMap($key)
{
return isset(self::getCallMap()[strtolower($key)]);
}
}