. * */ namespace Friendica\Core\Config\Type; use Friendica\Core\Config\ValueObject\Cache; use Friendica\Core\Config\Repository\Config; /** * This class implements the Just-In-Time configuration, which will cache * config values in a cache, once they are retrieved. * * Default Configuration type. * Provides the best performance for pages loading few configuration variables. */ class JitConfig extends AbstractConfig { /** * @var array Array of already loaded db values (even if there was no value) */ private $db_loaded; /** * @param Cache $configCache The configuration cache (based on the config-files) * @param Config $configRepo The configuration model */ public function __construct(Cache $configCache, Config $configRepo) { parent::__construct($configCache, $configRepo); $this->db_loaded = []; $this->load(); } /** * {@inheritDoc} */ public function load(string $cat = 'config') { // If not connected, do nothing if (!$this->configRepo->isConnected()) { return; } $config = $this->configRepo->load($cat); if (!empty($config[$cat])) { foreach ($config[$cat] as $key => $value) { $this->db_loaded[$cat][$key] = true; } } // load the whole category out of the DB into the cache $this->configCache->load($config, Cache::SOURCE_DB); } /** * {@inheritDoc} */ public function get(string $cat, string $key, $default_value = null, bool $refresh = false) { // if the value isn't loaded or refresh is needed, load it to the cache if ($this->configRepo->isConnected() && (empty($this->db_loaded[$cat][$key]) || $refresh)) { $dbValue = $this->configRepo->get($cat, $key); if (isset($dbValue)) { $this->configCache->set($cat, $key, $dbValue, Cache::SOURCE_DB); unset($dbValue); } $this->db_loaded[$cat][$key] = true; } // use the config cache for return $result = $this->configCache->get($cat, $key); return (isset($result)) ? $result : $default_value; } /** * {@inheritDoc} */ public function set(string $cat, string $key, $value): bool { // set the cache first $cached = $this->configCache->set($cat, $key, $value, Cache::SOURCE_DB); // If there is no connected adapter, we're finished if (!$this->configRepo->isConnected()) { return $cached; } $stored = $this->configRepo->set($cat, $key, $value); $this->db_loaded[$cat][$key] = $stored; return $cached && $stored; } /** * {@inheritDoc} */ public function delete(string $cat, string $key): bool { $cacheRemoved = $this->configCache->delete($cat, $key); if (isset($this->db_loaded[$cat][$key])) { unset($this->db_loaded[$cat][$key]); } if (!$this->configRepo->isConnected()) { return $cacheRemoved; } $storeRemoved = $this->configRepo->delete($cat, $key); return $cacheRemoved || $storeRemoved; } }