This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Component/Cache/CacheItem.php

207 lines
5.7 KiB
PHP
Raw Normal View History

2016-01-18 14:59:30 +00:00
<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Symfony\Component\Cache;
2016-01-25 19:16:47 +00:00
use Psr\Log\LoggerInterface;
2016-01-18 14:59:30 +00:00
use Symfony\Component\Cache\Exception\InvalidArgumentException;
use Symfony\Component\Cache\Exception\LogicException;
2018-08-01 09:02:13 +01:00
use Symfony\Contracts\Cache\ItemInterface;
2016-01-18 14:59:30 +00:00
/**
* @author Nicolas Grekas <p@tchwork.com>
*/
2018-08-01 09:02:13 +01:00
final class CacheItem implements ItemInterface
2016-01-18 14:59:30 +00:00
{
private const METADATA_EXPIRY_OFFSET = 1527506807;
protected $key;
protected $value;
protected $isHit = false;
protected $expiry;
protected $defaultLifetime;
2019-01-16 20:35:37 +00:00
protected $metadata = [];
protected $newMetadata = [];
protected $innerItem;
protected $poolHash;
protected $isTaggable = false;
2016-01-18 14:59:30 +00:00
/**
* {@inheritdoc}
*/
public function getKey()
{
return $this->key;
}
/**
* {@inheritdoc}
*/
public function get()
{
return $this->value;
}
/**
* {@inheritdoc}
*/
public function isHit()
{
return $this->isHit;
}
/**
* {@inheritdoc}
2019-08-20 21:53:36 +01:00
*
* @return $this
2016-01-18 14:59:30 +00:00
*/
public function set($value)
{
$this->value = $value;
return $this;
}
/**
* {@inheritdoc}
2019-08-20 21:53:36 +01:00
*
* @return $this
2016-01-18 14:59:30 +00:00
*/
public function expiresAt($expiration)
{
if (null === $expiration) {
$this->expiry = $this->defaultLifetime > 0 ? microtime(true) + $this->defaultLifetime : null;
2016-01-18 14:59:30 +00:00
} elseif ($expiration instanceof \DateTimeInterface) {
$this->expiry = (float) $expiration->format('U.u');
2016-01-18 14:59:30 +00:00
} else {
throw new InvalidArgumentException(sprintf('Expiration date must implement DateTimeInterface or be null, "%s" given', \is_object($expiration) ? \get_class($expiration) : \gettype($expiration)));
2016-01-18 14:59:30 +00:00
}
return $this;
}
/**
* {@inheritdoc}
2019-08-20 21:53:36 +01:00
*
* @return $this
2016-01-18 14:59:30 +00:00
*/
public function expiresAfter($time)
{
if (null === $time) {
$this->expiry = $this->defaultLifetime > 0 ? microtime(true) + $this->defaultLifetime : null;
2016-01-18 14:59:30 +00:00
} elseif ($time instanceof \DateInterval) {
$this->expiry = microtime(true) + \DateTime::createFromFormat('U', 0)->add($time)->format('U.u');
2018-04-19 15:46:47 +01:00
} elseif (\is_int($time)) {
$this->expiry = $time + microtime(true);
2016-01-18 14:59:30 +00:00
} else {
throw new InvalidArgumentException(sprintf('Expiration date must be an integer, a DateInterval or null, "%s" given', \is_object($time) ? \get_class($time) : \gettype($time)));
2016-01-18 14:59:30 +00:00
}
return $this;
}
2016-01-25 19:16:47 +00:00
/**
2018-08-01 09:02:13 +01:00
* {@inheritdoc}
*/
2018-08-01 09:02:13 +01:00
public function tag($tags): ItemInterface
{
if (!$this->isTaggable) {
throw new LogicException(sprintf('Cache item "%s" comes from a non tag-aware pool: you cannot tag it.', $this->key));
}
2019-06-13 11:57:15 +01:00
if (!is_iterable($tags)) {
2019-01-16 20:35:37 +00:00
$tags = [$tags];
}
foreach ($tags as $tag) {
2018-04-19 15:46:47 +01:00
if (!\is_string($tag)) {
throw new InvalidArgumentException(sprintf('Cache tag must be string, "%s" given', \is_object($tag) ? \get_class($tag) : \gettype($tag)));
}
if (isset($this->newMetadata[self::METADATA_TAGS][$tag])) {
continue;
}
2018-04-19 15:46:47 +01:00
if ('' === $tag) {
throw new InvalidArgumentException('Cache tag length must be greater than zero');
}
if (false !== strpbrk($tag, '{}()/\@:')) {
throw new InvalidArgumentException(sprintf('Cache tag "%s" contains reserved characters {}()/\@:', $tag));
}
$this->newMetadata[self::METADATA_TAGS][$tag] = $tag;
}
return $this;
}
2018-08-01 09:02:13 +01:00
/**
* {@inheritdoc}
*/
public function getMetadata(): array
{
return $this->metadata;
}
/**
* Returns the list of tags bound to the value coming from the pool storage if any.
*
* @return array
*
* @deprecated since Symfony 4.2, use the "getMetadata()" method instead.
*/
public function getPreviousTags()
{
2018-07-06 13:02:59 +01:00
@trigger_error(sprintf('The "%s()" method is deprecated since Symfony 4.2, use the "getMetadata()" method instead.', __METHOD__), E_USER_DEPRECATED);
2019-01-16 20:35:37 +00:00
return $this->metadata[self::METADATA_TAGS] ?? [];
}
/**
* Validates a cache key according to PSR-6.
*
2016-06-29 06:42:25 +01:00
* @param string $key The key to validate
*
* @return string
*
* @throws InvalidArgumentException When $key is not valid
*/
public static function validateKey($key)
{
2018-04-19 15:46:47 +01:00
if (!\is_string($key)) {
throw new InvalidArgumentException(sprintf('Cache key must be string, "%s" given', \is_object($key) ? \get_class($key) : \gettype($key)));
}
2018-04-19 15:46:47 +01:00
if ('' === $key) {
throw new InvalidArgumentException('Cache key length must be greater than zero');
}
if (false !== strpbrk($key, '{}()/\@:')) {
2016-04-27 07:45:20 +01:00
throw new InvalidArgumentException(sprintf('Cache key "%s" contains reserved characters {}()/\@:', $key));
}
return $key;
}
2016-01-25 19:16:47 +00:00
/**
* Internal logging helper.
*
* @internal
*/
2019-01-16 20:35:37 +00:00
public static function log(LoggerInterface $logger = null, $message, $context = [])
2016-01-25 19:16:47 +00:00
{
if ($logger) {
$logger->warning($message, $context);
} else {
2019-01-16 20:35:37 +00:00
$replace = [];
2016-01-25 19:16:47 +00:00
foreach ($context as $k => $v) {
if (is_scalar($v)) {
$replace['{'.$k.'}'] = $v;
}
}
@trigger_error(strtr($message, $replace), E_USER_WARNING);
}
}
2016-01-18 14:59:30 +00:00
}