mirror of
https://github.com/danog/psalm.git
synced 2024-12-14 02:07:37 +01:00
138 lines
3.5 KiB
PHP
138 lines
3.5 KiB
PHP
<?php
|
||
namespace Psalm\Internal\Provider;
|
||
|
||
use InvalidArgumentException;
|
||
use LogicException;
|
||
use Psalm\Storage\ClassLikeStorage;
|
||
|
||
use function array_merge;
|
||
use function strtolower;
|
||
|
||
/**
|
||
* @internal
|
||
*/
|
||
class ClassLikeStorageProvider
|
||
{
|
||
/**
|
||
* Storing this statically is much faster (at least in PHP 7.2.1)
|
||
*
|
||
* @var array<string, ClassLikeStorage>
|
||
*/
|
||
private static $storage = [];
|
||
|
||
/**
|
||
* @var array<string, ClassLikeStorage>
|
||
*/
|
||
private static $new_storage = [];
|
||
|
||
/**
|
||
* @var ?ClassLikeStorageCacheProvider
|
||
*/
|
||
public $cache;
|
||
|
||
public function __construct(?ClassLikeStorageCacheProvider $cache = null)
|
||
{
|
||
$this->cache = $cache;
|
||
}
|
||
|
||
/**
|
||
* @throws InvalidArgumentException when class does not exist
|
||
*/
|
||
public function get(string $fq_classlike_name): ClassLikeStorage
|
||
{
|
||
$fq_classlike_name_lc = strtolower($fq_classlike_name);
|
||
if (!isset(self::$storage[$fq_classlike_name_lc])) {
|
||
throw new InvalidArgumentException('Could not get class storage for ' . $fq_classlike_name_lc);
|
||
}
|
||
|
||
return self::$storage[$fq_classlike_name_lc];
|
||
}
|
||
|
||
public function has(string $fq_classlike_name): bool
|
||
{
|
||
$fq_classlike_name_lc = strtolower($fq_classlike_name);
|
||
|
||
return isset(self::$storage[$fq_classlike_name_lc]);
|
||
}
|
||
|
||
public function exhume(string $fq_classlike_name, string $file_path, string $file_contents): ClassLikeStorage
|
||
{
|
||
$fq_classlike_name_lc = strtolower($fq_classlike_name);
|
||
|
||
if (isset(self::$storage[$fq_classlike_name_lc])) {
|
||
return self::$storage[$fq_classlike_name_lc];
|
||
}
|
||
|
||
if (!$this->cache) {
|
||
throw new LogicException('Cannot exhume when there’s no cache');
|
||
}
|
||
|
||
$cached_value = $this->cache->getLatestFromCache($fq_classlike_name_lc, $file_path, $file_contents);
|
||
|
||
self::$storage[$fq_classlike_name_lc] = $cached_value;
|
||
self::$new_storage[$fq_classlike_name_lc] = $cached_value;
|
||
|
||
return $cached_value;
|
||
}
|
||
|
||
/**
|
||
* @return array<string, ClassLikeStorage>
|
||
*/
|
||
public function getAll(): array
|
||
{
|
||
return self::$storage;
|
||
}
|
||
|
||
/**
|
||
* @return array<string, ClassLikeStorage>
|
||
*/
|
||
public function getNew(): array
|
||
{
|
||
return self::$new_storage;
|
||
}
|
||
|
||
/**
|
||
* @param array<string, ClassLikeStorage> $more
|
||
*
|
||
*/
|
||
public function addMore(array $more): void
|
||
{
|
||
self::$new_storage = array_merge(self::$new_storage, $more);
|
||
self::$storage = array_merge(self::$storage, $more);
|
||
}
|
||
|
||
public function makeNew(string $fq_classlike_name_lc): void
|
||
{
|
||
self::$new_storage[$fq_classlike_name_lc] = self::$storage[$fq_classlike_name_lc];
|
||
}
|
||
|
||
public function create(string $fq_classlike_name): ClassLikeStorage
|
||
{
|
||
$fq_classlike_name_lc = strtolower($fq_classlike_name);
|
||
|
||
$storage = new ClassLikeStorage($fq_classlike_name);
|
||
self::$storage[$fq_classlike_name_lc] = $storage;
|
||
self::$new_storage[$fq_classlike_name_lc] = $storage;
|
||
|
||
return $storage;
|
||
}
|
||
|
||
public function remove(string $fq_classlike_name): void
|
||
{
|
||
$fq_classlike_name_lc = strtolower($fq_classlike_name);
|
||
|
||
unset(self::$storage[$fq_classlike_name_lc]);
|
||
}
|
||
|
||
public static function deleteAll(): void
|
||
{
|
||
self::$storage = [];
|
||
self::$new_storage = [];
|
||
}
|
||
|
||
public static function populated(): void
|
||
{
|
||
self::$new_storage = [];
|
||
}
|
||
}
|