Files
kiri-container/Context/AsyncContext.php
T

101 lines
2.3 KiB
PHP
Raw Normal View History

2023-04-03 11:08:11 +08:00
<?php
2023-04-16 01:45:33 +08:00
declare(strict_types=1);
2023-04-03 11:08:11 +08:00
namespace Kiri\Di\Context;
class AsyncContext implements ContextInterface
{
2023-12-12 18:03:08 +08:00
/**
* @var array
*/
private static array $context = [];
2023-04-03 11:08:11 +08:00
2023-12-12 18:03:08 +08:00
/**
* @return bool
*/
public static function inCoroutine(): bool
{
return false;
}
2023-04-03 11:08:11 +08:00
2023-12-12 18:03:08 +08:00
/**
* @param string $key
* @param mixed $value
* @param int|null $coroutineId
* @return mixed
*/
public static function set(string $key, mixed $value, ?int $coroutineId = null): mixed
{
// TODO: Implement set() method.
return static::$context[$key] = $value;
}
2023-04-03 11:08:11 +08:00
2023-12-12 18:03:08 +08:00
/**
* @param string $key
* @param mixed|null $defaultValue
* @param int|null $coroutineId
* @return mixed
*/
public static function get(string $key, mixed $defaultValue = null, ?int $coroutineId = null): mixed
{
// TODO: Implement get() method.
return static::$context[$key] ?? $defaultValue;
}
2023-04-03 11:08:11 +08:00
2023-12-12 18:03:08 +08:00
/**
* @param string $key
* @param int|null $coroutineId
* @return mixed
*/
public static function exists(string $key, ?int $coroutineId = null): bool
{
// TODO: Implement exists() method.
return isset(static::$context[$key]);
}
2023-04-03 11:08:11 +08:00
2023-12-12 18:03:08 +08:00
/**
* @param string $key
* @param int|null $coroutineId
* @return void
*/
public static function remove(string $key, ?int $coroutineId = null): void
{
// TODO: Implement remove() method.
static::$context[$key] = null;
unset(static::$context[$key]);
}
/**
* @param string $id
* @param int $value
* @param int|null $coroutineId
* @return int
*/
public static function increment(string $id, int $value = 1, ?int $coroutineId = null): int
{
if (!isset(static::$context[$id])) {
static::$context[$id] = 0;
}
return static::$context[$id] += $value;
}
/**
* @param string $id
* @param int $value
* @param int|null $coroutineId
* @return int
*/
public static function decrement(string $id, int $value = 1, ?int $coroutineId = null): int
{
if (!isset(static::$context[$id])) {
static::$context[$id] = 0;
}
return static::$context[$id] -= $value;
}
2023-04-03 11:08:11 +08:00
}