forked from tempestphp/tempest-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFrameworkKernel.php
More file actions
244 lines (189 loc) Β· 6.52 KB
/
FrameworkKernel.php
File metadata and controls
244 lines (189 loc) Β· 6.52 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
<?php
declare(strict_types=1);
namespace Tempest\Core;
use Dotenv\Dotenv;
use Tempest\Container\Container;
use Tempest\Container\GenericContainer;
use Tempest\Core\Kernel\FinishDeferredTasks;
use Tempest\Core\Kernel\LoadConfig;
use Tempest\Core\Kernel\LoadDiscoveryClasses;
use Tempest\Core\Kernel\LoadDiscoveryLocations;
use Tempest\Core\Kernel\RegisterEmergencyExceptionHandler;
use Tempest\EventBus\EventBus;
use Tempest\Process\GenericProcessExecutor;
final class FrameworkKernel implements Kernel
{
public readonly Container $container;
public bool $discoveryCache;
public array $discoveryClasses = [];
public string $internalStorage;
public function __construct(
public string $root,
/** @var \Tempest\Discovery\DiscoveryLocation[] $discoveryLocations */
public array $discoveryLocations = [],
?Container $container = null,
) {
$this->container = $container ?? $this->createContainer();
}
public static function boot(
string $root,
array $discoveryLocations = [],
?Container $container = null,
): self {
if (! defined('TEMPEST_START')) {
define('TEMPEST_START', value: hrtime(true));
}
return new self(
root: $root,
discoveryLocations: $discoveryLocations,
container: $container,
)
->validateRoot()
->loadEnv()
->registerEmergencyExceptionHandler()
->registerShutdownFunction()
->registerInternalStorage()
->registerKernel()
->loadComposer()
->loadDiscoveryLocations()
->loadConfig()
->loadDiscovery()
->registerExceptionHandler()
->event(KernelEvent::BOOTED);
}
public function validateRoot(): self
{
$root = realpath($this->root);
if (! is_dir($root)) {
throw new \RuntimeException('The specified root directory is not valid.');
}
$this->root = $root;
return $this;
}
public function shutdown(int|string $status = ''): never
{
$this->finishDeferredTasks()
->event(KernelEvent::SHUTDOWN);
exit($status);
}
public function createContainer(): Container
{
$container = new GenericContainer();
GenericContainer::setInstance($container);
$container->singleton(Container::class, fn () => $container);
return $container;
}
public function loadComposer(): self
{
$composer = new Composer(
root: $this->root,
executor: new GenericProcessExecutor(),
)->load();
$this->container->singleton(Composer::class, $composer);
return $this;
}
public function loadEnv(): self
{
$dotenv = Dotenv::createUnsafeImmutable($this->root);
$dotenv->safeLoad();
return $this;
}
public function registerKernel(): self
{
$this->container->singleton(Kernel::class, $this);
$this->container->singleton(self::class, $this);
return $this;
}
public function registerShutdownFunction(): self
{
// Fix for classes that don't have a proper PSR-4 namespace,
// they break discovery with an unrecoverable error,
// but you don't know why because PHP simply says "duplicate classname" instead of something reasonable.
register_shutdown_function(function (): void {
$error = error_get_last();
$message = $error['message'] ?? '';
if (str_contains($message, 'Cannot declare class')) {
echo 'Does this class have the right namespace?' . PHP_EOL;
}
});
return $this;
}
public function loadDiscoveryLocations(): self
{
$this->container->invoke(LoadDiscoveryLocations::class);
return $this;
}
public function loadDiscovery(): self
{
$this->container->addInitializer(DiscoveryCacheInitializer::class);
$this->container->invoke(LoadDiscoveryClasses::class);
return $this;
}
public function loadConfig(): self
{
$this->container->addInitializer(ConfigCacheInitializer::class);
$this->container->invoke(LoadConfig::class);
return $this;
}
public function registerInternalStorage(): self
{
$path = $this->root . '/.tempest';
if (! is_dir($path)) {
if (file_exists($path)) {
throw CouldNotRegisterInternalStorage::fileExists($path);
}
if (! mkdir($path, recursive: true)) {
throw CouldNotRegisterInternalStorage::directoryNotWritable($path);
}
} elseif (! is_writable($path)) {
throw CouldNotRegisterInternalStorage::noPermission($path);
}
$this->internalStorage = realpath($path);
return $this;
}
public function finishDeferredTasks(): self
{
$this->container->invoke(FinishDeferredTasks::class);
return $this;
}
public function event(object $event): self
{
if (interface_exists(EventBus::class)) {
$this->container->get(EventBus::class)->dispatch($event);
}
return $this;
}
public function registerEmergencyExceptionHandler(): self
{
$environment = Environment::fromEnv();
// During tests, PHPUnit registers its own error handling.
if ($environment->isTesting()) {
return $this;
}
// In development, we want to register a developer-friendly error
// handler as soon as possible to catch any kind of exception.
if (PHP_SAPI !== 'cli' && ! $environment->isProduction()) {
new RegisterEmergencyExceptionHandler()->register();
}
return $this;
}
public function registerExceptionHandler(): self
{
$appConfig = $this->container->get(AppConfig::class);
// During tests, PHPUnit registers its own error handling.
if ($appConfig->environment->isTesting()) {
return $this;
}
$handler = $this->container->get(ExceptionHandler::class);
set_exception_handler($handler->handle(...));
set_error_handler(fn (int $code, string $message, string $filename, int $line) => $handler->handle(
new \ErrorException(
message: $message,
code: $code,
filename: $filename,
line: $line,
),
), error_levels: E_ERROR);
return $this;
}
}