-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathClassMetadata.php
More file actions
103 lines (89 loc) · 2.88 KB
/
Copy pathClassMetadata.php
File metadata and controls
103 lines (89 loc) · 2.88 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
<?php
declare(strict_types=1);
namespace Patchlevel\Hydrator\Metadata;
use ReflectionClass;
use RuntimeException;
/**
* @psalm-type serialized array{
* className: class-string,
* properties: list<PropertyMetadata>,
* postHydrateCallbacks: list<CallbackMetadata>,
* preExtractCallbacks: list<CallbackMetadata>,
* lazy: bool|null,
* }
* @template T of object = object
*/
final class ClassMetadata
{
/**
* @param ReflectionClass<T> $reflection
* @param list<PropertyMetadata> $properties
* @param list<CallbackMetadata> $postHydrateCallbacks
* @param list<CallbackMetadata> $preExtractCallbacks
*/
public function __construct(
public readonly ReflectionClass $reflection,
public readonly array $properties = [],
public readonly array $postHydrateCallbacks = [],
public readonly array $preExtractCallbacks = [],
public readonly bool|null $lazy = null,
) {
}
/** @return class-string<T> */
public function className(): string
{
return $this->reflection->getName();
}
public function propertyForField(string $name): PropertyMetadata
{
foreach ($this->properties as $property) {
if ($property->fieldName === $name) {
return $property;
}
}
throw PropertyMetadataNotFound::withName($name);
}
public function hasSubjectIdIdentifier(string $subjectIdIdentifier): bool
{
foreach ($this->properties as $property) {
if ($property->subjectIdName === $subjectIdIdentifier) {
return true;
}
}
return false;
}
public function getSubjectIdFieldName(string $subjectIdIdentifier): string
{
foreach ($this->properties as $property) {
if ($property->subjectIdName === $subjectIdIdentifier) {
return $property->fieldName;
}
}
throw new RuntimeException('No subject id');
}
/** @return T */
public function newInstance(): object
{
return $this->reflection->newInstanceWithoutConstructor();
}
/** @return serialized */
public function __serialize(): array
{
return [
'className' => $this->reflection->getName(),
'properties' => $this->properties,
'postHydrateCallbacks' => $this->postHydrateCallbacks,
'preExtractCallbacks' => $this->preExtractCallbacks,
'lazy' => $this->lazy,
];
}
/** @param serialized $data */
public function __unserialize(array $data): void
{
$this->reflection = new ReflectionClass($data['className']);
$this->properties = $data['properties'];
$this->postHydrateCallbacks = $data['postHydrateCallbacks'];
$this->preExtractCallbacks = $data['preExtractCallbacks'];
$this->lazy = $data['lazy'];
}
}