-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathEnumAdapter.php
More file actions
428 lines (352 loc) · 10.3 KB
/
EnumAdapter.php
File metadata and controls
428 lines (352 loc) · 10.3 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
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
<?php
declare(strict_types=1);
namespace Typhoon\Reflection\Internal\NativeAdapter;
use Typhoon\DeclarationId\NamedClassId;
use Typhoon\Reflection\ClassConstantReflection;
use Typhoon\Reflection\ClassReflection;
/**
* @internal
* @psalm-internal Typhoon\Reflection
* @template-covariant TEnum of \UnitEnum
* @property-read class-string<TEnum> $name
* @extends \ReflectionEnum<TEnum>
* @psalm-suppress PropertyNotSetInConstructor
*/
final class EnumAdapter extends \ReflectionEnum
{
/**
* @param ClassAdapter<TEnum> $_class
* @param ClassReflection<TEnum, NamedClassId<class-string<TEnum>>> $reflection
*/
public function __construct(
private readonly ClassAdapter $_class,
private readonly ClassReflection $reflection,
) {
unset($this->name);
}
/**
* @psalm-suppress PossiblyUnusedMethod
*/
public function __get(string $name): mixed
{
return $this->_class->__get($name);
}
public function __isset(string $name): bool
{
return $this->_class->__isset($name);
}
public function __toString(): string
{
return $this->_class->__toString();
}
public function getAttributes(?string $name = null, int $flags = 0): array
{
return $this->_class->getAttributes($name, $flags);
}
public function getBackingType(): ?\ReflectionNamedType
{
/** @var ?\ReflectionNamedType */
return $this->reflection->enumBackingType()?->accept(new ToNativeTypeConverter());
}
public function getCase(string $name): \ReflectionEnumUnitCase
{
if ($name === '') {
throw new \ReflectionException(\sprintf('Case %s:: does not exist', $this->name));
}
$case = ($this->reflection->enumCases()[$name] ?? null)
?->toNativeReflection()
?? throw new \ReflectionException(\sprintf('Case %s::%s does not exist', $this->name, $name));
\assert($case instanceof \ReflectionEnumUnitCase);
return $case;
}
public function getCases(): array
{
return $this
->reflection
->enumCases()
->map(static function (ClassConstantReflection $constant): \ReflectionEnumUnitCase {
$native = $constant->toNativeReflection();
\assert($native instanceof \ReflectionEnumUnitCase);
return $native;
})
->toList();
}
public function getConstant(string $name): mixed
{
return $this->_class->getConstant($name);
}
public function getConstants(?int $filter = null): array
{
return $this->_class->getConstants($filter);
}
public function getConstructor(): ?\ReflectionMethod
{
return $this->_class->getConstructor();
}
public function getDefaultProperties(): array
{
return $this->_class->getDefaultProperties();
}
public function getDocComment(): string|false
{
return $this->_class->getDocComment();
}
public function getEndLine(): int|false
{
return $this->_class->getEndLine();
}
public function getExtension(): ?\ReflectionExtension
{
return $this->_class->getExtension();
}
public function getExtensionName(): string|false
{
return $this->_class->getExtensionName();
}
public function getFileName(): string|false
{
return $this->_class->getFileName();
}
public function getInterfaceNames(): array
{
return $this->_class->getInterfaceNames();
}
public function getInterfaces(): array
{
return $this->_class->getInterfaces();
}
public function getMethod(string $name): \ReflectionMethod
{
return $this->_class->getMethod($name);
}
public function getMethods(?int $filter = null): array
{
return $this->_class->getMethods($filter);
}
public function getModifiers(): int
{
return $this->_class->getModifiers();
}
public function getName(): string
{
return $this->_class->name;
}
public function getNamespaceName(): string
{
return $this->_class->getNamespaceName();
}
public function getParentClass(): \ReflectionClass|false
{
return $this->_class->getParentClass();
}
public function getProperties(?int $filter = null): array
{
return $this->_class->getProperties($filter);
}
public function getProperty(string $name): \ReflectionProperty
{
return $this->_class->getProperty($name);
}
public function getReflectionConstant(string $name): \ReflectionClassConstant|false
{
return $this->_class->getReflectionConstant($name);
}
public function getReflectionConstants(?int $filter = null): array
{
return $this->_class->getReflectionConstants($filter);
}
public function getShortName(): string
{
return $this->_class->getShortName();
}
public function getStartLine(): int|false
{
return $this->_class->getStartLine();
}
public function getStaticProperties(): array
{
return $this->_class->getStaticProperties();
}
public function getStaticPropertyValue(string $name, mixed $default = null): mixed
{
return $this->_class->getStaticPropertyValue($name, $default);
}
public function getTraitAliases(): array
{
return $this->_class->getTraitAliases();
}
public function getTraitNames(): array
{
return $this->_class->getTraitNames();
}
public function getTraits(): array
{
return $this->_class->getTraits();
}
public function hasCase(string $name): bool
{
return $name !== '' && $this->reflection->enumCases()->offsetExists($name);
}
public function hasConstant(string $name): bool
{
return $this->_class->hasConstant($name);
}
public function hasMethod(string $name): bool
{
return $this->_class->hasMethod($name);
}
public function hasProperty(string $name): bool
{
return $this->_class->hasProperty($name);
}
public function implementsInterface(string|\ReflectionClass $interface): bool
{
return $this->_class->implementsInterface($interface);
}
public function inNamespace(): bool
{
return $this->_class->inNamespace();
}
public function isAbstract(): bool
{
return $this->_class->isAbstract();
}
public function isAnonymous(): bool
{
return $this->_class->isAnonymous();
}
public function isBacked(): bool
{
return $this->reflection->isBackedEnum();
}
public function isCloneable(): bool
{
return $this->_class->isCloneable();
}
public function isEnum(): bool
{
return $this->_class->isEnum();
}
public function isFinal(): bool
{
return $this->_class->isFinal();
}
public function isInstance(object $object): bool
{
return $this->_class->isInstance($object);
}
public function isInstantiable(): bool
{
return $this->_class->isInstantiable();
}
public function isInterface(): bool
{
return $this->_class->isInterface();
}
public function isInternal(): bool
{
return $this->_class->isInternal();
}
public function isIterable(): bool
{
return $this->_class->isIterable();
}
public function isIterateable(): bool
{
return $this->_class->isIterateable();
}
/**
* @psalm-suppress PossiblyUnusedMethod, UnusedPsalmSuppress
*/
public function isReadonly(): bool
{
return $this->_class->isReadonly();
}
public function isSubclassOf(string|\ReflectionClass $class): bool
{
return $this->_class->isSubclassOf($class);
}
public function isTrait(): bool
{
return $this->_class->isTrait();
}
public function isUserDefined(): bool
{
return $this->_class->isUserDefined();
}
public function newInstance(mixed ...$args): object
{
return $this->_class->newInstance(...$args);
}
/**
* @psalm-suppress MethodSignatureMismatch
*/
public function newInstanceArgs(array $args = []): object
{
return $this->_class->newInstanceArgs($args);
}
public function newInstanceWithoutConstructor(): object
{
return $this->_class->newInstanceWithoutConstructor();
}
public function setStaticPropertyValue(string $name, mixed $value): void
{
$this->_class->setStaticPropertyValue($name, $value);
}
/**
* @psalm-suppress PossiblyUnusedMethod
*/
public function newLazyGhost(callable $initializer, int $options = 0): object
{
return $this->_class->newLazyGhost($initializer, $options);
}
/**
* @psalm-suppress PossiblyUnusedMethod
*/
public function newLazyProxy(callable $factory, int $options = 0): object
{
return $this->_class->newLazyProxy($factory, $options);
}
/**
* @psalm-suppress PossiblyUnusedMethod
*/
public function resetAsLazyGhost(object $object, callable $initializer, int $options = 0): void
{
$this->_class->resetAsLazyGhost($object, $initializer, $options);
}
/**
* @psalm-suppress PossiblyUnusedMethod
*/
public function resetAsLazyProxy(object $object, callable $factory, int $options = 0): void
{
$this->_class->resetAsLazyProxy($object, $factory, $options);
}
/**
* @psalm-suppress PossiblyUnusedMethod
*/
public function initializeLazyObject(object $object): object
{
return $this->_class->initializeLazyObject($object);
}
/**
* @psalm-suppress PossiblyUnusedMethod
*/
public function markLazyObjectAsInitialized(object $object): object
{
return $this->_class->markLazyObjectAsInitialized($object);
}
/**
* @psalm-suppress PossiblyUnusedMethod
*/
public function getLazyInitializer(object $object): ?callable
{
return $this->_class->getLazyInitializer($object);
}
/**
* @psalm-suppress PossiblyUnusedMethod
*/
public function isUninitializedLazyObject(object $object): bool
{
return $this->_class->isUninitializedLazyObject($object);
}
}