You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
66 lines
1.5 KiB
66 lines
1.5 KiB
1 year ago
|
<?php
|
||
|
|
||
|
/**
|
||
|
* This file is part of CodeIgniter 4 framework.
|
||
|
*
|
||
|
* (c) CodeIgniter Foundation <admin@codeigniter.com>
|
||
|
*
|
||
|
* For the full copyright and license information, please view
|
||
|
* the LICENSE file that was distributed with this source code.
|
||
|
*/
|
||
|
|
||
|
namespace CodeIgniter\Cache;
|
||
|
|
||
|
use CodeIgniter\Cache\FactoriesCache\FileVarExportHandler;
|
||
|
use CodeIgniter\Config\Factories;
|
||
|
|
||
|
final class FactoriesCache
|
||
|
{
|
||
|
/**
|
||
|
* @var CacheInterface|FileVarExportHandler
|
||
|
*/
|
||
|
private $cache;
|
||
|
|
||
|
/**
|
||
|
* @param CacheInterface|FileVarExportHandler|null $cache
|
||
|
*/
|
||
|
public function __construct($cache = null)
|
||
|
{
|
||
|
$this->cache = $cache ?? new FileVarExportHandler();
|
||
|
}
|
||
|
|
||
|
public function save(string $component): void
|
||
|
{
|
||
|
if (! Factories::isUpdated($component)) {
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
$data = Factories::getComponentInstances($component);
|
||
|
|
||
|
$this->cache->save($this->getCacheKey($component), $data, 3600 * 24);
|
||
|
}
|
||
|
|
||
|
private function getCacheKey(string $component): string
|
||
|
{
|
||
|
return 'FactoriesCache_' . $component;
|
||
|
}
|
||
|
|
||
|
public function load(string $component): bool
|
||
|
{
|
||
|
$key = $this->getCacheKey($component);
|
||
|
|
||
|
if (! $data = $this->cache->get($key)) {
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
Factories::setComponentInstances($component, $data);
|
||
|
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
public function delete(string $component): void
|
||
|
{
|
||
|
$this->cache->delete($this->getCacheKey($component));
|
||
|
}
|
||
|
}
|