-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathAbstractDefinition.php
More file actions
225 lines (186 loc) · 6.35 KB
/
Copy pathAbstractDefinition.php
File metadata and controls
225 lines (186 loc) · 6.35 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
<?php
declare(strict_types=1);
namespace WoohooLabs\Zen\Container\Definition;
use ReflectionClass;
use ReflectionException;
use WoohooLabs\Zen\Config\FileBasedDefinition\FileBasedDefinitionConfigInterface;
use WoohooLabs\Zen\Container\DefinitionCompilation;
use function array_key_exists;
use function array_reduce;
use function explode;
use function str_repeat;
use function str_replace;
abstract class AbstractDefinition implements DefinitionInterface
{
protected string $id;
protected string $hash;
protected bool $singleton;
private bool $entryPoint;
private bool $fileBased;
private int $singletonReferenceCount;
private int $prototypeReferenceCount;
public function __construct(
string $id,
bool $isSingleton,
bool $isEntryPoint,
bool $isFileBased,
int $singletonReferenceCount,
int $prototypeReferenceCount
) {
$this->id = $id;
$this->hash = $this->hash($id);
$this->singleton = $isSingleton;
$this->entryPoint = $isEntryPoint;
$this->fileBased = $isFileBased;
$this->singletonReferenceCount = $singletonReferenceCount;
$this->prototypeReferenceCount = $prototypeReferenceCount;
}
public function getId(string $parentId = ""): string
{
return $this->id;
}
public function getHash(string $parentId = ""): string
{
return $this->hash;
}
public function isSingleton(string $parentId = ""): bool
{
return $this->singleton;
}
public function isEntryPoint(string $parentId = ""): bool
{
return $this->entryPoint;
}
public function isFileBased(string $parentId = ""): bool
{
return $this->fileBased;
}
public function increaseReferenceCount(string $parentId, bool $isParentSingleton): DefinitionInterface
{
if ($isParentSingleton) {
$this->singletonReferenceCount++;
} else {
$this->prototypeReferenceCount++;
}
return $this;
}
public function getSingletonReferenceCount(): int
{
return $this->singletonReferenceCount;
}
public function getPrototypeReferenceCount(): int
{
return $this->prototypeReferenceCount;
}
public function isDefinitionInlinable(string $parentId = ""): bool
{
return false;
}
public function isSingletonCheckEliminable(string $parentId = ""): bool
{
if ($this->singleton === false) {
return true;
}
return $this->entryPoint === false && $this->singletonReferenceCount <= 1 && $this->prototypeReferenceCount === 0;
}
/**
* @param string[] $preloadedClasses
*/
protected function compileEntryReference(
DefinitionInterface $definition,
DefinitionCompilation $compilation,
int $indentationLevelWhenInlined,
array $preloadedClasses
): string {
if ($definition->isEntryPoint($this->id) === false) {
return $this->compileInlinedEntry($definition, $compilation, $indentationLevelWhenInlined, $preloadedClasses);
}
return $this->compileReferencedEntry($definition, $compilation->getFileBasedDefinitionConfig());
}
/**
* @param string[] $preloadedClasses
*/
private function compileInlinedEntry(
DefinitionInterface $definition,
DefinitionCompilation $compilation,
int $indentationLevelWhenInlined,
array $preloadedClasses
): string {
$id = $definition->getId($this->id);
$code = "";
if ($definition->isSingletonCheckEliminable($this->id) === false) {
$code .= "\$this->singletonEntries['$id'] ?? ";
}
$code .= $definition->compile($compilation, $this->id, $indentationLevelWhenInlined, true, $preloadedClasses);
return $code;
}
private function compileReferencedEntry(
DefinitionInterface $definition,
FileBasedDefinitionConfigInterface $fileBasedDefinitionConfig
): string {
$id = $definition->getId($this->id);
$hash = $definition->getHash($this->id);
$isFileBased = $definition->isFileBased($this->id);
if ($isFileBased) {
$path = "__DIR__ . '/";
if ($this->isFileBased($this->id) === false) {
$path .= $fileBasedDefinitionConfig->getRelativeDefinitionDirectory() . "/";
}
$path .= "$hash.php'";
if ($definition->isSingletonCheckEliminable($this->id) === false) {
return "\$this->singletonEntries['$id'] ?? require $path";
}
return "require $path";
}
if ($definition->isSingletonCheckEliminable($this->id) === false) {
return "\$this->singletonEntries['$id'] ?? \$this->$hash()";
}
return "\$this->$hash()";
}
protected function hash(string $id): string
{
return str_replace("\\", "__", $id);
}
protected function indent(int $indentationLevel): string
{
return str_repeat(" ", $indentationLevel * 4);
}
protected function indentLines(string $indentation, string $lines): string
{
return array_reduce(
explode("\n", $lines),
static function ($output, $line) use ($indentation) {
return $output . "\n" . $indentation . $line;
},
""
);
}
/**
* @param array<string, string> $relatedClasses
*/
protected function collectParentClasses(string $id, array &$relatedClasses): void
{
try {
$class = new ReflectionClass($id);
} catch (ReflectionException $exception) {
return;
}
while ($parent = $class->getParentClass()) {
$name = $parent->getName();
$relatedClasses[$name] = $name;
foreach ($class->getInterfaceNames() as $interface) {
if (array_key_exists($interface, $relatedClasses)) {
unset($relatedClasses[$interface]);
}
$relatedClasses[$interface] = $interface;
}
$class = $parent;
}
foreach ($class->getInterfaceNames() as $interface) {
if (array_key_exists($interface, $relatedClasses)) {
unset($relatedClasses[$interface]);
}
$relatedClasses[$interface] = $interface;
}
}
}