-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathAsyncKernel.php
221 lines (194 loc) · 6.39 KB
/
AsyncKernel.php
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
<?php
/*
* This file is part of the DriftPHP Project
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* Feel free to edit as you please, and have fun.
*
* @author Marc Morera <[email protected]>
*/
declare(strict_types=1);
namespace Drift\HttpKernel;
use Drift\HttpKernel\DependencyInjection\CompilerPass\AsyncServicesCompilerPass;
use Drift\HttpKernel\DependencyInjection\CompilerPass\EventDispatcherCompilerPass;
use Drift\HttpKernel\DependencyInjection\CompilerPass\EventLoopCompilerPass;
use Drift\HttpKernel\DependencyInjection\CompilerPass\FilesystemCompilerPass;
use Drift\HttpKernel\DependencyInjection\CompilerPass\PeriodicTimersCompilerPass;
use Drift\HttpKernel\Exception\AsyncHttpKernelNeededException;
use Drift\HttpKernel\PeriodicTimer\PeriodicTimer;
use Exception;
use React\Promise\PromiseInterface;
use function React\Promise\reject;
use Symfony\Component\DependencyInjection\Compiler\CompilerPassInterface;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\DependencyInjection\Definition;
use Symfony\Component\DependencyInjection\Reference;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpKernel\Kernel;
/**
* Class AsyncKernel.
*/
abstract class AsyncKernel extends Kernel implements CompilerPassInterface
{
private string $uid;
private bool $forceCacheUsage = false;
/**
* @return void
*/
public function forceCacheUsage()
{
$this->forceCacheUsage = true;
}
/**
* {@inheritdoc}
*/
public function boot()
{
if (!$this->booted) {
$this->uid = $this->generateUID();
if (!$this->forceCacheUsage && ($_ENV['DRIFT_CACHE_ENABLED'] ?? '0') !== '1') {
// AsyncKernel loads the container only once when it loads. Storing it in the filesystem is not for cache purposes
// but more for using the same loading process as Kernel class use.
// Hence, everytime before AsyncKernel initiates the container it deletes the cache dir,
// to make sure it is building the updated kernel
$cachePath = $this->getCacheDir();
if (is_dir($cachePath)) {
$this->rrmdir($cachePath);
}
}
}
parent::boot();
}
/**
* @param $src
* @return void
*/
function rrmdir($src) {
$dir = opendir($src);
while(false !== ( $file = readdir($dir)) ) {
if (( $file != '.' ) && ( $file != '..' )) {
$full = $src . '/' . $file;
if ( is_dir($full) ) {
$this->rrmdir($full);
}
else {
unlink($full);
}
}
}
closedir($dir);
rmdir($src);
}
/**
* Preload kernel.
*/
public function preload(): PromiseInterface
{
return $this
->getHttpKernel()
->preload();
}
/**
* Shutdown kernel.
*/
public function shutdown(): PromiseInterface
{
return $this
->getHttpKernel()
->shutdown();
}
/**
* Handles a Request to convert it to a Response.
*
* When $catch is true, the implementation must catch all exceptions
* and do its best to convert them to a Response instance.
*/
public function handleAsync(Request $request): PromiseInterface
{
$httpKernel = $this->getHttpKernel();
if (!$httpKernel instanceof AsyncHttpKernel) {
reject(
new AsyncHttpKernelNeededException('In order to use this AsyncKernel, you need to have the HttpAsyncKernel installed')
);
}
return $httpKernel->handleAsync($request);
}
/**
* Build the kernel.
*
* @param ContainerBuilder $container
*/
public function build(ContainerBuilder $container)
{
$container->addCompilerPass(new PeriodicTimersCompilerPass());
$container->addCompilerPass(new EventLoopCompilerPass());
$container->addCompilerPass(new EventDispatcherCompilerPass($this->isDebug()));
$container->addCompilerPass(new FilesystemCompilerPass());
$container->addCompilerPass(new AsyncServicesCompilerPass());
}
/**
* You can modify the container here before it is dumped to PHP code.
*
* @param ContainerBuilder $container
*/
public function process(ContainerBuilder $container)
{
if ($container->has('http_kernel')) {
$container
->getDefinition('http_kernel')
->setClass(AsyncHttpKernel::class);
}
}
/**
* Get uid.
*
* @return string
*/
public function getUID(): string
{
if (!$this->booted) {
throw new Exception('You cannot check the UID of a non-booted-yet kernel');
}
return $this->uid;
}
/**
* @return string
*/
private function generateUID()
{
$characters = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ';
$charactersLength = strlen($characters);
$randomString = '';
for ($i = 0; $i < 7; ++$i) {
$randomString .= $characters[rand(0, $charactersLength - 1)];
}
return $randomString;
}
/**
* You can modify the container here before it is dumped to PHP code.
*
* @param ContainerBuilder $container
*/
public function processTimer(ContainerBuilder $container)
{
$servicesId = $container->findTaggedServiceIds('periodic_timer');
$periodicTimer = new Definition(PeriodicTimer::class);
foreach ($servicesId as $serviceId => $serviceRows) {
foreach ($serviceRows as $serviceRow) {
$frequency = $serviceRow['interval'];
if ($frequency <= 0) {
throw new \Exception('You should define an interval value (in seconds) when defining a periodic timer');
}
$method = $serviceRow['method'];
$periodicTimer->addMethodCall('addServiceCall', [
$frequency,
new Reference($serviceId),
$method,
]);
}
}
$container->setDefinition(PeriodicTimer::class, $periodicTimer);
}
}