1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-26 20:34:47 +01:00
psalm/tests/Internal/Provider/ParserInstanceCacheProvider.php
orklah db45ff1ba4
More return types (#4173)
* add native return types

* redundant phpdoc
2021-01-29 11:38:57 +01:00

86 lines
2.2 KiB
PHP

<?php
namespace Psalm\Tests\Internal\Provider;
use function microtime;
use PhpParser;
class ParserInstanceCacheProvider extends \Psalm\Internal\Provider\ParserCacheProvider
{
/**
* @var array<string, string>
*/
private $file_contents_cache = [];
/**
* @var array<string, string>
*/
private $file_content_hash = [];
/**
* @var array<string, list<PhpParser\Node\Stmt>>
*/
private $statements_cache = [];
/**
* @var array<string, float>
*/
private $statements_cache_time = [];
public function __construct()
{
}
public function loadStatementsFromCache(string $file_path, int $file_modified_time, string $file_content_hash): ?array
{
if (isset($this->statements_cache[$file_path])
&& $this->statements_cache_time[$file_path] >= $file_modified_time
&& $this->file_content_hash[$file_path] === $file_content_hash
) {
return $this->statements_cache[$file_path];
}
return null;
}
/**
* @return list<PhpParser\Node\Stmt>|null
*/
public function loadExistingStatementsFromCache(string $file_path): ?array
{
if (isset($this->statements_cache[$file_path])) {
return $this->statements_cache[$file_path];
}
return null;
}
/**
* @param list<PhpParser\Node\Stmt> $stmts
*
*/
public function saveStatementsToCache(string $file_path, string $file_content_hash, array $stmts, bool $touch_only): void
{
$this->statements_cache[$file_path] = $stmts;
$this->statements_cache_time[$file_path] = microtime(true);
$this->file_content_hash[$file_path] = $file_content_hash;
}
public function loadExistingFileContentsFromCache(string $file_path): ?string
{
if (isset($this->file_contents_cache[$file_path])) {
return $this->file_contents_cache[$file_path];
}
return null;
}
public function cacheFileContents(string $file_path, string $file_contents): void
{
$this->file_contents_cache[$file_path] = $file_contents;
}
public function saveFileContentHashes(): void
{
}
}