-
-
Notifications
You must be signed in to change notification settings - Fork 588
Expand file tree
/
Copy pathContext.php
More file actions
281 lines (225 loc) · 6.33 KB
/
Context.php
File metadata and controls
281 lines (225 loc) · 6.33 KB
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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
<?php
declare(strict_types=1);
namespace JMS\Serializer;
use JMS\Serializer\Exception\LogicException;
use JMS\Serializer\Exclusion\DepthExclusionStrategy;
use JMS\Serializer\Exclusion\DisjunctExclusionStrategy;
use JMS\Serializer\Exclusion\ExclusionStrategyInterface;
use JMS\Serializer\Exclusion\GroupsExclusionStrategy;
use JMS\Serializer\Exclusion\VersionExclusionStrategy;
use JMS\Serializer\Metadata\ClassMetadata;
use JMS\Serializer\Metadata\PropertyMetadata;
use Metadata\MetadataFactoryInterface;
abstract class Context
{
/**
* @var array
*/
private $attributes = [];
/**
* @var string
*/
private $format;
/**
* @var VisitorInterface
*/
private $visitor;
/**
* @var GraphNavigatorInterface
*/
private $navigator;
/**
* @var MetadataFactoryInterface
*/
private $metadataFactory;
/** @var ExclusionStrategyInterface */
private $exclusionStrategy;
/**
* @var bool
*/
private $initialized = false;
/** @var array<ClassMetadata|PropertyMetadata> */
private array $metadataStack = [];
public function __construct()
{
}
public function initialize(string $format, VisitorInterface $visitor, GraphNavigatorInterface $navigator, MetadataFactoryInterface $factory): void
{
if ($this->initialized) {
throw new LogicException('This context was already initialized, and cannot be re-used.');
}
$this->format = $format;
$this->visitor = $visitor;
$this->navigator = $navigator;
$this->metadataFactory = $factory;
$this->metadataStack = [];
if (isset($this->attributes['groups'])) {
$this->addExclusionStrategy(new GroupsExclusionStrategy($this->attributes['groups']));
}
if (isset($this->attributes['version'])) {
$this->addExclusionStrategy(new VersionExclusionStrategy($this->attributes['version']));
}
if (!empty($this->attributes['max_depth_checks'])) {
$this->addExclusionStrategy(new DepthExclusionStrategy());
}
$this->initialized = true;
}
public function getMetadataFactory(): MetadataFactoryInterface
{
return $this->metadataFactory;
}
public function getVisitor(): VisitorInterface
{
return $this->visitor;
}
public function getNavigator(): GraphNavigatorInterface
{
return $this->navigator;
}
public function getExclusionStrategy(): ?ExclusionStrategyInterface
{
return $this->exclusionStrategy;
}
/**
* @return mixed
*/
public function getAttribute(string $key)
{
return $this->attributes[$key];
}
public function hasAttribute(string $key): bool
{
return isset($this->attributes[$key]);
}
/**
* @param mixed $value
*
* @return $this
*/
public function setAttribute(string $key, $value): self
{
$this->assertMutable();
$this->attributes[$key] = $value;
return $this;
}
final protected function assertMutable(): void
{
if (!$this->initialized) {
return;
}
throw new LogicException('This context was already initialized and is immutable; you cannot modify it anymore.');
}
/**
* @return $this
*/
public function addExclusionStrategy(ExclusionStrategyInterface $strategy): self
{
$this->assertMutable();
if (null === $this->exclusionStrategy) {
$this->exclusionStrategy = $strategy;
return $this;
}
if ($this->exclusionStrategy instanceof DisjunctExclusionStrategy) {
$this->exclusionStrategy->addStrategy($strategy);
return $this;
}
$this->exclusionStrategy = new DisjunctExclusionStrategy([
$this->exclusionStrategy,
$strategy,
]);
return $this;
}
/**
* @return $this
*/
public function setVersion(string $version): self
{
$this->attributes['version'] = $version;
return $this;
}
/**
* @param array|string $groups
*
* @return $this
*/
public function setGroups($groups): self
{
if (empty($groups)) {
throw new LogicException('The groups must not be empty.');
}
$this->attributes['groups'] = (array) $groups;
return $this;
}
/**
* @return $this
*/
public function enableMaxDepthChecks(): self
{
$this->attributes['max_depth_checks'] = true;
return $this;
}
public function getFormat(): string
{
return $this->format;
}
public function pushClassMetadata(ClassMetadata $metadata): void
{
$this->metadataStack[] = $metadata;
}
public function pushPropertyMetadata(PropertyMetadata $metadata): void
{
$this->metadataStack[] = $metadata;
}
public function popPropertyMetadata(): void
{
array_pop($this->metadataStack);
}
public function popClassMetadata(): void
{
array_pop($this->metadataStack);
}
/**
* Returns the metadata stack count without creating a copy.
*/
public function getMetadataStackSize(): int
{
return \count($this->metadataStack);
}
/**
* Returns the top element of the metadata stack.
*
* @return ClassMetadata|PropertyMetadata
*/
public function getMetadataStackTop()
{
return $this->metadataStack[\count($this->metadataStack) - 1];
}
/**
* Returns the metadata stack as an array with LIFO index order (0 = top/most recent).
*
* @return array<ClassMetadata|PropertyMetadata>
*/
public function getMetadataStack(): array
{
return array_reverse($this->metadataStack);
}
public function getCurrentPath(): array
{
if (!$this->metadataStack) {
return [];
}
$paths = [];
foreach ($this->metadataStack as $metadata) {
if ($metadata instanceof PropertyMetadata) {
$paths[] = $metadata->name;
}
}
return $paths;
}
abstract public function getDepth(): int;
abstract public function getDirection(): int;
public function close(): void
{
unset($this->visitor, $this->navigator);
}
}