19 declare(strict_types=1);
41 private const GLUE =
'|||||';
65 private const TRUE =
'true';
80 $this->data_factory =
new Factory();
82 $this->null_trafo = new \ILIAS\Refinery\Custom\Transformation(fn($value):
null =>
null);
83 $this->prefix_pattern =
'(' . implode(
'|', [
84 preg_quote(self::STRING_PREFIX,
'/'),
85 preg_quote(self::ARRAY_PREFIX,
'/'),
86 preg_quote(self::INT_PREFIX,
'/'),
87 preg_quote(self::BOOL_PREFIX,
'/'),
88 preg_quote(self::NULL_PREFIX,
'/')
92 private function pack(mixed $value): string
94 if (is_string($value)) {
95 return self::STRING_PREFIX . self::GLUE . $value;
97 if (is_array($value)) {
100 return self::ARRAY_PREFIX . self::GLUE . json_encode($value, JSON_THROW_ON_ERROR);
102 if (is_int($value)) {
103 return self::INT_PREFIX . self::GLUE . $value;
105 if (is_bool($value)) {
106 return self::BOOL_PREFIX . self::GLUE . ($value ? self::TRUE : self::FALSE);
108 if (is_null($value)) {
109 return self::NULL_PREFIX . self::GLUE;
112 throw new \InvalidArgumentException(
113 'Only strings, integers and arrays containing those values are allowed, ' . gettype($value) .
' given.' 119 array_walk($value,
function (&$item):
void {
127 $str =
'/^' . $this->prefix_pattern . preg_quote(self::GLUE,
'/') .
'(.*)/is';
128 if (!preg_match($str, $value, $matches)) {
129 return [self::NULL_PREFIX,
null];
132 return [$matches[1], $matches[2]];
138 if ($value ===
null) {
141 if ($value === self::NULL_PREFIX . self::GLUE) {
146 [$type, $unprefixed_value] = $this->
unprefix($value);
149 case self::STRING_PREFIX:
150 return $unprefixed_value;
151 case self::BOOL_PREFIX:
152 return $unprefixed_value === self::TRUE;
153 case self::ARRAY_PREFIX:
154 $unprefixed_value = json_decode((
string) $unprefixed_value,
true, 512);
155 if (!is_array($unprefixed_value)) {
160 case self::INT_PREFIX:
161 return (
int) $unprefixed_value;
171 array_walk($value,
function (&$item):
void {
194 $lock_until = $this->adaptor->get($this->request->getContainerKey(), self::LOCK_UNTIL);
195 $lock_until = $lock_until ===
null ?
null : (float) $lock_until;
197 return $lock_until !==
null && $lock_until > microtime(
true);
200 public function lock(
float $seconds): void
202 if ($seconds > 300.0 || $seconds < 0.0) {
203 throw new \InvalidArgumentException(
'Locking for more than 5 minutes is not allowed.');
205 $lock_until = (string) (microtime(
true) + $seconds);
206 $this->adaptor->set($this->request->getContainerKey(), self::LOCK_UNTIL, $lock_until, 300);
209 public function has(
string $key): bool
215 return $this->adaptor->has($this->request->getContainerKey(), $key);
223 $unpacked_values = $this->
unpack(
224 $this->adaptor->get($this->request->getContainerKey(), $key)
230 public function set(
string $key,
string|
int|array|
bool|
null $value, ?
int $ttl =
null):
void 235 $ttl = $ttl ?? $this->config->getDefaultTTL();
238 $this->request->getContainerKey(),
245 public function delete(
string $key):
void 250 $this->adaptor->delete($this->request->getContainerKey(), $key);
255 $this->adaptor->flushContainer($this->request->getContainerKey());
260 return $this->config->getAdaptorName();
265 return $this->request->getContainerKey();
has(string $key)
Returns true if the container contains a value for the given key.
flush()
Deletes all values in the container.
packRecursive(array $value)
__construct(private Request $request, private Adaptor $adaptor, private Config $config)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
lock(float $seconds)
Locks the container for a given amount of seconds (max 300), in this time, get() will return null and...
isLocked()
Returns true if the container is locked.
getAdaptorName()
Returns the name of the adaptop used (such as apc, memcache, phpstatic)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
unpackRecursive(array $value)
buildFinalTransformation(Transformation $transformation)
getContainerName()
Returns the name of the container.