mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-08 18:44:30 +00:00
117 lines
2.5 KiB
PHP
117 lines
2.5 KiB
PHP
<?php
|
|
/*
|
|
* This file is part of Phraseanet
|
|
*
|
|
* (c) 2005-2016 Alchemy
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Alchemy\Phrasea\Databox\Caption;
|
|
|
|
use Alchemy\Phrasea\Cache\MultiAdapter;
|
|
use Doctrine\Common\Cache\Cache;
|
|
use Doctrine\Common\Cache\MultiGetCache;
|
|
use Doctrine\Common\Cache\MultiPutCache;
|
|
|
|
class CachedCaptionDataRepository implements CaptionDataRepository
|
|
{
|
|
/**
|
|
* @var CaptionDataRepository
|
|
*/
|
|
private $decorated;
|
|
/**
|
|
* @var Cache|MultiGetCache|MultiPutCache
|
|
*/
|
|
private $cache;
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $baseKey;
|
|
|
|
/**
|
|
* @var int
|
|
*/
|
|
private $lifeTime = 0;
|
|
|
|
/**
|
|
* CachedCaptionDataRepository constructor.
|
|
* @param CaptionDataRepository $decorated
|
|
* @param Cache $cache
|
|
* @param string $baseKey
|
|
*/
|
|
public function __construct(CaptionDataRepository $decorated, Cache $cache, $baseKey)
|
|
{
|
|
$this->decorated = $decorated;
|
|
$this->cache = $cache instanceof MultiGetCache && $cache instanceof MultiPutCache
|
|
? $cache
|
|
: new MultiAdapter($cache);
|
|
$this->baseKey = $baseKey;
|
|
}
|
|
|
|
/**
|
|
* @return int
|
|
*/
|
|
public function getLifeTime()
|
|
{
|
|
return $this->lifeTime;
|
|
}
|
|
|
|
/**
|
|
* @param int $lifeTime
|
|
*/
|
|
public function setLifeTime($lifeTime)
|
|
{
|
|
$this->lifeTime = (int)$lifeTime;
|
|
}
|
|
|
|
/**
|
|
* @param array $recordIds
|
|
* @return \array[]
|
|
*/
|
|
public function findByRecordIds(array $recordIds)
|
|
{
|
|
$keys = $this->computeKeys($recordIds);
|
|
|
|
$data = $this->cache->fetchMultiple($keys);
|
|
|
|
if (count($data) === count($keys)) {
|
|
return array_combine($recordIds, $data);
|
|
}
|
|
|
|
$data = $this->decorated->findByRecordIds($recordIds);
|
|
|
|
$this->cache->saveMultiple(array_combine($keys, $data));
|
|
|
|
return $data;
|
|
}
|
|
|
|
/**
|
|
* @param int $recordId
|
|
* @return void
|
|
*/
|
|
public function invalidate($recordId)
|
|
{
|
|
$this->cache->delete($this->computeKey($recordId));
|
|
}
|
|
|
|
/**
|
|
* @param int[] $recordIds
|
|
* @return string[]
|
|
*/
|
|
private function computeKeys(array $recordIds)
|
|
{
|
|
return array_map([$this, 'computeKey'], array_unique($recordIds));
|
|
}
|
|
|
|
/**
|
|
* @param int $recordId
|
|
* @return string
|
|
*/
|
|
private function computeKey($recordId)
|
|
{
|
|
return sprintf('%scaption[%d]', $this->baseKey, $recordId);
|
|
}
|
|
}
|