-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathClassMetadata.php
More file actions
132 lines (113 loc) · 3.51 KB
/
Copy pathClassMetadata.php
File metadata and controls
132 lines (113 loc) · 3.51 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
<?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(
private readonly ReflectionClass $reflection,
private readonly array $properties = [],
private readonly array $postHydrateCallbacks = [],
private readonly array $preExtractCallbacks = [],
private readonly bool|null $lazy = null,
) {
}
/** @return ReflectionClass<T> */
public function reflection(): ReflectionClass
{
return $this->reflection;
}
/** @return class-string<T> */
public function className(): string
{
return $this->reflection->getName();
}
/** @return list<PropertyMetadata> */
public function properties(): array
{
return $this->properties;
}
/** @return list<CallbackMetadata> */
public function postHydrateCallbacks(): array
{
return $this->postHydrateCallbacks;
}
/** @return list<CallbackMetadata> */
public function preExtractCallbacks(): array
{
return $this->preExtractCallbacks;
}
public function lazy(): bool|null
{
return $this->lazy;
}
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'];
}
}