1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-27 04:45:20 +01:00
psalm/tests/Internal/Provider/ParserInstanceCacheProvider.php
2020-06-06 16:57:25 -04:00

105 lines
2.6 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($file_path, $file_modified_time, $file_content_hash)
{
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;
}
/**
* @param string $file_content_hash
* @param string $file_path
* @param mixed $file_modified_time
*
* @return list<PhpParser\Node\Stmt>|null
*/
public function loadExistingStatementsFromCache($file_path)
{
if (isset($this->statements_cache[$file_path])) {
return $this->statements_cache[$file_path];
}
return null;
}
/**
* @param string $file_path
* @param string $file_content_hash
* @param list<PhpParser\Node\Stmt> $stmts
* @param bool $touch_only
*
* @return void
*/
public function saveStatementsToCache($file_path, $file_content_hash, array $stmts, $touch_only)
{
$this->statements_cache[$file_path] = $stmts;
$this->statements_cache_time[$file_path] = microtime(true);
$this->file_content_hash[$file_path] = $file_content_hash;
}
/**
* @param string $file_path
*
* @return string|null
*/
public function loadExistingFileContentsFromCache($file_path)
{
if (isset($this->file_contents_cache[$file_path])) {
return $this->file_contents_cache[$file_path];
}
return null;
}
/**
* @param string $file_path
* @param string $file_contents
*
* @return void
*/
public function cacheFileContents($file_path, $file_contents)
{
$this->file_contents_cache[$file_path] = $file_contents;
}
public function saveFileContentHashes()
{
}
}