1
0
mirror of https://tt-rss.org/git/tt-rss.git synced 2024-07-26 16:37:33 +02:00
ttrss/vendor/open-telemetry/context/FiberBoundContextStorageScope.php
2023-10-20 21:13:39 +03:00

68 lines
1.5 KiB
PHP

<?php
/** @noinspection PhpElementIsNotAvailableInCurrentPhpVersionInspection */
declare(strict_types=1);
namespace OpenTelemetry\Context;
use function assert;
use function class_exists;
use Fiber;
/**
* @internal
*
* @phan-file-suppress PhanUndeclaredClassReference
* @phan-file-suppress PhanUndeclaredClassMethod
*/
final class FiberBoundContextStorageScope implements ScopeInterface, ContextStorageScopeInterface
{
private ContextStorageScopeInterface $scope;
public function __construct(ContextStorageScopeInterface $scope)
{
$this->scope = $scope;
}
public function offsetExists($offset): bool
{
return $this->scope->offsetExists($offset);
}
/**
* @phan-suppress PhanUndeclaredClassAttribute
*/
#[\ReturnTypeWillChange]
public function offsetGet($offset)
{
return $this->scope->offsetGet($offset);
}
public function offsetSet($offset, $value): void
{
$this->scope->offsetSet($offset, $value);
}
public function offsetUnset($offset): void
{
$this->scope->offsetUnset($offset);
}
public function context(): ContextInterface
{
return $this->scope->context();
}
public function detach(): int
{
$flags = $this->scope->detach();
assert(class_exists(Fiber::class, false));
if ($this->scope[Fiber::class] !== Fiber::getCurrent()) {
$flags |= ScopeInterface::INACTIVE;
}
return $flags;
}
}