Submit
Path:
~
/
/
opt
/
psa
/
admin
/
plib
/
modules
/
sslit
/
vendor
/
symfony
/
cache
/
Adapter
/
File Content:
ProxyAdapter.php
<?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 PleskSslIt\Symfony\Component\Cache\Adapter; use PleskSslIt\Psr\Cache\CacheItemInterface; use PleskSslIt\Psr\Cache\CacheItemPoolInterface; use PleskSslIt\Symfony\Component\Cache\CacheItem; use PleskSslIt\Symfony\Component\Cache\PruneableInterface; use PleskSslIt\Symfony\Component\Cache\ResettableInterface; use PleskSslIt\Symfony\Component\Cache\Traits\ContractsTrait; use PleskSslIt\Symfony\Component\Cache\Traits\ProxyTrait; use PleskSslIt\Symfony\Contracts\Cache\CacheInterface; /** * @author Nicolas Grekas <p@tchwork.com> */ class ProxyAdapter implements AdapterInterface, CacheInterface, PruneableInterface, ResettableInterface { use ContractsTrait; use ProxyTrait; private $namespace = ''; private $namespaceLen; private $poolHash; private $defaultLifetime; private static $createCacheItem; private static $setInnerItem; public function __construct(CacheItemPoolInterface $pool, string $namespace = '', int $defaultLifetime = 0) { $this->pool = $pool; $this->poolHash = $poolHash = \spl_object_hash($pool); if ('' !== $namespace) { \assert('' !== CacheItem::validateKey($namespace)); $this->namespace = $namespace; } $this->namespaceLen = \strlen($namespace); $this->defaultLifetime = $defaultLifetime; self::$createCacheItem ?? (self::$createCacheItem = \Closure::bind(static function ($key, $innerItem, $poolHash) { $item = new CacheItem(); $item->key = $key; if (null === $innerItem) { return $item; } $item->value = $v = $innerItem->get(); $item->isHit = $innerItem->isHit(); $item->innerItem = $innerItem; $item->poolHash = $poolHash; // Detect wrapped values that encode for their expiry and creation duration // For compactness, these values are packed in the key of an array using // magic numbers in the form 9D-..-..-..-..-00-..-..-..-5F if (\is_array($v) && 1 === \count($v) && 10 === \strlen($k = (string) \array_key_first($v)) && "\x9d" === $k[0] && "\x00" === $k[5] && "_" === $k[9]) { $item->value = $v[$k]; $v = \unpack('Ve/Nc', \substr($k, 1, -1)); $item->metadata[CacheItem::METADATA_EXPIRY] = $v['e'] + CacheItem::METADATA_EXPIRY_OFFSET; $item->metadata[CacheItem::METADATA_CTIME] = $v['c']; } elseif ($innerItem instanceof CacheItem) { $item->metadata = $innerItem->metadata; } $innerItem->set(null); return $item; }, null, CacheItem::class)); self::$setInnerItem ?? (self::$setInnerItem = \Closure::bind( /** * @param array $item A CacheItem cast to (array); accessing protected properties requires adding the "\0*\0" PHP prefix */ static function (CacheItemInterface $innerItem, array $item) { // Tags are stored separately, no need to account for them when considering this item's newly set metadata if (isset(($metadata = $item["\x00*\x00newMetadata"])[CacheItem::METADATA_TAGS])) { unset($metadata[CacheItem::METADATA_TAGS]); } if ($metadata) { // For compactness, expiry and creation duration are packed in the key of an array, using magic numbers as separators $item["\x00*\x00value"] = ["\x9d" . \pack('VN', (int) (0.1 + $metadata[self::METADATA_EXPIRY] - self::METADATA_EXPIRY_OFFSET), $metadata[self::METADATA_CTIME]) . "_" => $item["\x00*\x00value"]]; } $innerItem->set($item["\x00*\x00value"]); $innerItem->expiresAt(null !== $item["\x00*\x00expiry"] ? \DateTime::createFromFormat('U.u', \sprintf('%.6F', $item["\x00*\x00expiry"])) : null); }, null, CacheItem::class )); } /** * {@inheritdoc} */ public function get(string $key, callable $callback, ?float $beta = null, ?array &$metadata = null) { if (!$this->pool instanceof CacheInterface) { return $this->doGet($this, $key, $callback, $beta, $metadata); } return $this->pool->get($this->getId($key), function ($innerItem, bool &$save) use($key, $callback) { $item = (self::$createCacheItem)($key, $innerItem, $this->poolHash); $item->set($value = $callback($item, $save)); (self::$setInnerItem)($innerItem, (array) $item); return $value; }, $beta, $metadata); } /** * {@inheritdoc} */ public function getItem($key) { $item = $this->pool->getItem($this->getId($key)); return (self::$createCacheItem)($key, $item, $this->poolHash); } /** * {@inheritdoc} */ public function getItems(array $keys = []) { if ($this->namespaceLen) { foreach ($keys as $i => $key) { $keys[$i] = $this->getId($key); } } return $this->generateItems($this->pool->getItems($keys)); } /** * {@inheritdoc} * * @return bool */ public function hasItem($key) { return $this->pool->hasItem($this->getId($key)); } /** * {@inheritdoc} * * @return bool */ public function clear(string $prefix = '') { if ($this->pool instanceof AdapterInterface) { return $this->pool->clear($this->namespace . $prefix); } return $this->pool->clear(); } /** * {@inheritdoc} * * @return bool */ public function deleteItem($key) { return $this->pool->deleteItem($this->getId($key)); } /** * {@inheritdoc} * * @return bool */ public function deleteItems(array $keys) { if ($this->namespaceLen) { foreach ($keys as $i => $key) { $keys[$i] = $this->getId($key); } } return $this->pool->deleteItems($keys); } /** * {@inheritdoc} * * @return bool */ public function save(CacheItemInterface $item) { return $this->doSave($item, __FUNCTION__); } /** * {@inheritdoc} * * @return bool */ public function saveDeferred(CacheItemInterface $item) { return $this->doSave($item, __FUNCTION__); } /** * {@inheritdoc} * * @return bool */ public function commit() { return $this->pool->commit(); } private function doSave(CacheItemInterface $item, string $method) { if (!$item instanceof CacheItem) { return \false; } $item = (array) $item; if (null === $item["\x00*\x00expiry"] && 0 < $this->defaultLifetime) { $item["\x00*\x00expiry"] = \microtime(\true) + $this->defaultLifetime; } if ($item["\x00*\x00poolHash"] === $this->poolHash && $item["\x00*\x00innerItem"]) { $innerItem = $item["\x00*\x00innerItem"]; } elseif ($this->pool instanceof AdapterInterface) { // this is an optimization specific for AdapterInterface implementations // so we can save a round-trip to the backend by just creating a new item $innerItem = (self::$createCacheItem)($this->namespace . $item["\x00*\x00key"], null, $this->poolHash); } else { $innerItem = $this->pool->getItem($this->namespace . $item["\x00*\x00key"]); } (self::$setInnerItem)($innerItem, $item); return $this->pool->{$method}($innerItem); } private function generateItems(iterable $items) : \Generator { $f = self::$createCacheItem; foreach ($items as $key => $item) { if ($this->namespaceLen) { $key = \substr($key, $this->namespaceLen); } (yield $key => $f($key, $item, $this->poolHash)); } } private function getId($key) : string { \assert('' !== CacheItem::validateKey($key)); return $this->namespace . $key; } }
Edit
Rename
Chmod
Delete
FILE
FOLDER
INFO
Name
Size
Permission
Action
AbstractAdapter.php
8512 bytes
0644
AbstractTagAwareAdapter.php
12820 bytes
0644
AdapterInterface.php
1022 bytes
0644
ApcuAdapter.php
4002 bytes
0644
ArrayAdapter.php
11375 bytes
0644
ChainAdapter.php
9358 bytes
0644
CouchbaseBucketAdapter.php
7699 bytes
0644
CouchbaseCollectionAdapter.php
6749 bytes
0644
DoctrineAdapter.php
2845 bytes
0644
DoctrineDbalAdapter.php
17278 bytes
0644
FilesystemAdapter.php
987 bytes
0644
FilesystemTagAwareAdapter.php
7732 bytes
0644
MemcachedAdapter.php
13821 bytes
0644
NullAdapter.php
2747 bytes
0644
ParameterNormalizer.php
913 bytes
0644
PdoAdapter.php
21618 bytes
0644
PhpArrayAdapter.php
12669 bytes
0644
PhpFilesAdapter.php
10365 bytes
0644
ProxyAdapter.php
8470 bytes
0644
Psr16Adapter.php
1947 bytes
0644
RedisAdapter.php
1253 bytes
0644
RedisTagAwareAdapter.php
12643 bytes
0644
TagAwareAdapter.php
11267 bytes
0644
TagAwareAdapterInterface.php
789 bytes
0644
TraceableAdapter.php
7008 bytes
0644
TraceableTagAwareAdapter.php
947 bytes
0644
N4ST4R_ID | Naxtarrr