-
Notifications
You must be signed in to change notification settings - Fork 0
/
Context.php
134 lines (108 loc) · 3.67 KB
/
Context.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
<?php
declare(strict_types=1);
namespace OpenTelemetry\Context;
use function assert;
use const FILTER_VALIDATE_BOOLEAN;
use function filter_var;
use function spl_object_id;
/**
* @see https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/context/README.md#context
*/
final class Context implements ContextInterface
{
private const OTEL_PHP_DEBUG_SCOPES_DISABLED = 'OTEL_PHP_DEBUG_SCOPES_DISABLED';
private static ContextStorageInterface&ExecutionContextAwareInterface $storage;
// Optimization for spans to avoid copying the context array.
private static ContextKeyInterface $spanContextKey;
private ?object $span = null;
/** @var array<int, mixed> */
private array $context = [];
/** @var array<int, ContextKeyInterface> */
private array $contextKeys = [];
private function __construct()
{
self::$spanContextKey = ContextKeys::span();
}
public static function createKey(string $key): ContextKeyInterface
{
return new ContextKey($key);
}
public static function setStorage(ContextStorageInterface&ExecutionContextAwareInterface $storage): void
{
self::$storage = $storage;
}
public static function storage(): ContextStorageInterface&ExecutionContextAwareInterface
{
/** @psalm-suppress RedundantPropertyInitializationCheck */
return self::$storage ??= new FiberBoundContextStorageExecutionAwareBC();
}
/**
* @internal OpenTelemetry
*/
public static function resolve(ContextInterface|false|null $context, ?ContextStorageInterface $contextStorage = null): ContextInterface
{
return $context
?? ($contextStorage ?? self::storage())->current()
?: self::getRoot();
}
/**
* @internal
*/
public static function getRoot(): ContextInterface
{
static $empty;
return $empty ??= new self();
}
public static function getCurrent(): ContextInterface
{
return self::storage()->current();
}
public function activate(): ScopeInterface
{
$scope = self::storage()->attach($this);
/** @psalm-suppress RedundantCondition @phpstan-ignore-next-line */
assert(self::debugScopesDisabled() || $scope = new DebugScope($scope));
return $scope;
}
private static function debugScopesDisabled(): bool
{
return filter_var(
$_SERVER[self::OTEL_PHP_DEBUG_SCOPES_DISABLED] ?? \getenv(self::OTEL_PHP_DEBUG_SCOPES_DISABLED) ?: \ini_get(self::OTEL_PHP_DEBUG_SCOPES_DISABLED),
FILTER_VALIDATE_BOOLEAN
);
}
public function withContextValue(ImplicitContextKeyedInterface $value): ContextInterface
{
return $value->storeInContext($this);
}
public function with(ContextKeyInterface $key, $value): self
{
if ($this->get($key) === $value) {
return $this;
}
$self = clone $this;
if ($key === self::$spanContextKey) {
$self->span = $value; // @phan-suppress-current-line PhanTypeMismatchPropertyReal
return $self;
}
$id = spl_object_id($key);
if ($value !== null) {
$self->context[$id] = $value;
$self->contextKeys[$id] ??= $key;
} else {
unset(
$self->context[$id],
$self->contextKeys[$id],
);
}
return $self;
}
public function get(ContextKeyInterface $key)
{
if ($key === self::$spanContextKey) {
/** @psalm-suppress InvalidReturnStatement */
return $this->span;
}
return $this->context[spl_object_id($key)] ?? null;
}
}