|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
namespace WyriHaximus\React\ChildProcess\Messenger; |
|
4
|
|
|
|
|
5
|
|
|
use React\ChildProcess\Process; |
|
|
|
|
|
|
6
|
|
|
use React\EventLoop\LoopInterface; |
|
7
|
|
|
use React\Promise; |
|
8
|
|
|
use React\Socket\ConnectionInterface; |
|
9
|
|
|
use React\Socket\Connector; |
|
10
|
|
|
use React\Socket\Server; |
|
11
|
|
|
use WyriHaximus\FileDescriptors\Factory as FileDescriptorsFactory; |
|
12
|
|
|
use WyriHaximus\FileDescriptors\ListerInterface; |
|
13
|
|
|
use WyriHaximus\React\ChildProcess\Messenger\Messages\Factory as MessengesFactory; |
|
14
|
|
|
use WyriHaximus\React\ChildProcess\Messenger\Messages\Payload; |
|
15
|
|
|
|
|
16
|
|
|
final class Factory |
|
17
|
|
|
{ |
|
18
|
|
|
const INTERVAL = 0.1; |
|
19
|
|
|
const TIMEOUT = 13; |
|
20
|
|
|
const TERMINATE_TIMEOUT = 1; |
|
21
|
|
|
const PROCESS_REGISTER = 'wyrihaximus.react.child-process.messenger.child.register'; |
|
22
|
|
|
|
|
23
|
|
|
public static function parent( |
|
24
|
|
|
Process $process, |
|
25
|
|
|
LoopInterface $loop, |
|
26
|
|
|
array $options = [] |
|
27
|
|
|
) { |
|
28
|
|
|
return new Promise\Promise(function ($resolve, $reject) use ($process, $loop, $options) { |
|
29
|
|
|
$server = new Server('127.0.0.1:0', $loop); |
|
30
|
|
|
$argvString = \escapeshellarg(ArgvEncoder::encode([ |
|
31
|
|
|
'address' => $server->getAddress(), |
|
32
|
|
|
])); |
|
33
|
|
|
|
|
34
|
|
|
$process = new Process($process->getCommand() . ' ' . $argvString); |
|
|
|
|
|
|
35
|
|
|
|
|
36
|
|
|
self::startParent($process, $server, $loop, $options)->done($resolve, $reject); |
|
|
|
|
|
|
37
|
|
|
}); |
|
38
|
|
|
} |
|
39
|
|
|
|
|
40
|
|
|
/** |
|
41
|
|
|
* @param string $class |
|
42
|
|
|
* @param LoopInterface $loop |
|
43
|
|
|
* @param array $options |
|
44
|
|
|
* @return Promise\PromiseInterface<Messenger> |
|
|
|
|
|
|
45
|
2 |
|
*/ |
|
46
|
|
|
public static function parentFromClass( |
|
47
|
|
|
$class, |
|
48
|
|
|
LoopInterface $loop, |
|
49
|
|
|
array $options = [] |
|
50
|
2 |
|
) { |
|
51
|
1 |
|
if (!is_subclass_of($class, 'WyriHaximus\React\ChildProcess\Messenger\ChildInterface')) { |
|
52
|
|
|
throw new \Exception('Given class doesn\'t implement ChildInterface'); |
|
53
|
|
|
} |
|
54
|
|
|
|
|
55
|
1 |
|
return new Promise\Promise(function ($resolve, $reject) use ($class, $loop, $options) { |
|
56
|
1 |
|
$server = new Server('127.0.0.1:0', $loop); |
|
57
|
1 |
|
$options['address'] = $server->getAddress(); |
|
58
|
|
|
$options['random'] = bin2hex(random_bytes(512)); |
|
59
|
1 |
|
|
|
60
|
1 |
|
$template = '%s'; |
|
61
|
|
|
if (isset($options['cmdTemplate'])) { |
|
62
|
|
|
$template = $options['cmdTemplate']; |
|
63
|
|
|
unset($options['cmdTemplate']); |
|
64
|
|
|
} |
|
65
|
1 |
|
|
|
66
|
1 |
|
$fds = []; |
|
67
|
1 |
|
if (\DIRECTORY_SEPARATOR !== '\\') { |
|
68
|
1 |
|
if (isset($options['fileDescriptorLister']) && $options['fileDescriptorLister'] instanceof ListerInterface) { |
|
69
|
1 |
|
/** @var ListerInterface $fileDescriptorLister */ |
|
70
|
1 |
|
$fileDescriptorLister = $options['fileDescriptorLister']; |
|
71
|
1 |
|
unset($options['fileDescriptorLister']); |
|
72
|
1 |
|
} |
|
73
|
|
|
|
|
74
|
|
|
if (!isset($fileDescriptorLister)) { |
|
75
|
|
|
/** @var ListerInterface $fileDescriptorLister */ |
|
76
|
|
|
$fileDescriptorLister = FileDescriptorsFactory::create(); |
|
77
|
1 |
|
} |
|
78
|
1 |
|
|
|
79
|
|
|
if (\method_exists($fileDescriptorLister, 'list')) { |
|
80
|
1 |
|
$fds = $fileDescriptorLister->list(); |
|
|
|
|
|
|
81
|
1 |
|
} else { |
|
82
|
1 |
|
$fds = $fileDescriptorLister->listFileDescriptors(); |
|
83
|
1 |
|
} |
|
84
|
|
|
foreach ($fds as $id) { |
|
85
|
|
|
$fds[(int)$id] = ['file', '/dev/null', 'r']; |
|
86
|
|
|
} |
|
87
|
|
|
} |
|
88
|
|
|
|
|
89
|
|
|
$phpBinary = \escapeshellarg(PHP_BINARY . (PHP_SAPI === 'phpdbg' ? ' -qrr --' : '')); |
|
90
|
|
|
$childProcessPath = \escapeshellarg(__DIR__ . DIRECTORY_SEPARATOR . 'child-process.php'); |
|
91
|
|
|
$argvString = \escapeshellarg(ArgvEncoder::encode($options)); |
|
92
|
|
|
$command = $phpBinary . ' ' . $childProcessPath; |
|
93
|
|
|
|
|
94
|
|
|
$process = new Process( |
|
95
|
|
|
sprintf( |
|
96
|
|
|
$template, |
|
97
|
|
|
$command . ' ' . $argvString |
|
98
|
|
|
), |
|
99
|
|
|
null, |
|
100
|
|
|
null, |
|
101
|
|
|
$fds |
|
102
|
|
|
); |
|
103
|
|
|
|
|
104
|
|
|
$connectTimeout = isset($options['connect-timeout']) ? $options['connect-timeout'] : 5; |
|
105
|
|
|
\WyriHaximus\React\futurePromise($loop)->then(function () use ($process, $server, $loop, $options, $connectTimeout) { |
|
106
|
|
|
return Promise\Timer\timeout(self::startParent($process, $server, $loop, $options), $connectTimeout, $loop); |
|
107
|
|
|
})->then(function (Messenger $messenger) use ($class) { |
|
108
|
|
|
return $messenger->rpc(MessengesFactory::rpc(Factory::PROCESS_REGISTER, [ |
|
109
|
|
|
'className' => $class, |
|
110
|
|
|
]))->then(function ($p) use ($messenger) { |
|
|
|
|
|
|
111
|
|
|
return Promise\resolve($messenger); |
|
112
|
|
|
}); |
|
113
|
|
|
})->done($resolve, $reject); |
|
114
|
|
|
}); |
|
115
|
|
|
} |
|
116
|
|
|
|
|
117
|
|
|
/** |
|
118
|
|
|
* @param LoopInterface $loop |
|
119
|
|
|
* @param array $options |
|
120
|
|
|
* @param callable $termiteCallable |
|
121
|
|
|
* @return Promise\PromiseInterface<Messenger> |
|
|
|
|
|
|
122
|
|
|
*/ |
|
123
|
|
|
public static function child(LoopInterface $loop, array $options = [], callable $termiteCallable = null) |
|
124
|
|
|
{ |
|
125
|
|
|
$connectTimeout = isset($options['connect-timeout']) ? $options['connect-timeout'] : 5; |
|
126
|
|
|
|
|
127
|
|
|
return (new Connector($loop, ['timeout' => $connectTimeout]))->connect($options['address'])->then(function (ConnectionInterface $connection) use ($options, $loop, $connectTimeout) { |
|
128
|
|
|
return new Promise\Promise(function ($resolve, $reject) use ($connection, $options, $loop, $connectTimeout) { |
|
129
|
|
|
Promise\Timer\timeout(Promise\Stream\first($connection), $connectTimeout, $loop)->then(function ($chunk) use ($resolve, $connection, $options) { |
|
130
|
|
|
list($confirmation) = explode(PHP_EOL, $chunk); |
|
131
|
|
|
if ($confirmation === 'syn') { |
|
132
|
|
|
$connection->write('ack' . PHP_EOL); |
|
133
|
|
|
$resolve(new Messenger($connection, $options)); |
|
134
|
|
|
} |
|
135
|
|
|
}, $reject); |
|
136
|
1 |
|
$connection->write(hash_hmac('sha512', $options['address'], $options['random']) . PHP_EOL); |
|
137
|
|
|
}); |
|
138
|
|
|
})->then(function (Messenger $messenger) use ($loop, $termiteCallable) { |
|
139
|
|
|
if ($termiteCallable === null) { |
|
140
|
|
|
$termiteCallable = function () use ($loop) { |
|
|
|
|
|
|
141
|
|
|
$loop->addTimer( |
|
142
|
|
|
self::TERMINATE_TIMEOUT, |
|
143
|
1 |
|
[ |
|
144
|
1 |
|
$loop, |
|
145
|
|
|
'stop', |
|
146
|
|
|
] |
|
147
|
1 |
|
); |
|
148
|
1 |
|
}; |
|
149
|
1 |
|
} |
|
150
|
1 |
|
|
|
151
|
|
|
$messenger->registerRpc( |
|
152
|
1 |
|
Messenger::TERMINATE_RPC, |
|
153
|
|
|
function (Payload $payload, Messenger $messenger) use ($termiteCallable) { |
|
154
|
|
|
$messenger->emit('terminate', [ |
|
155
|
1 |
|
$messenger, |
|
156
|
1 |
|
]); |
|
157
|
1 |
|
$termiteCallable($payload, $messenger); |
|
158
|
|
|
|
|
159
|
1 |
|
return Promise\resolve([]); |
|
160
|
1 |
|
} |
|
161
|
|
|
); |
|
162
|
|
|
|
|
163
|
|
|
return $messenger; |
|
164
|
1 |
|
}); |
|
165
|
|
|
} |
|
166
|
1 |
|
|
|
167
|
|
|
private static function startParent( |
|
168
|
1 |
|
Process $process, |
|
169
|
1 |
|
Server $server, |
|
170
|
1 |
|
LoopInterface $loop, |
|
171
|
|
|
array $options |
|
172
|
1 |
|
) { |
|
173
|
1 |
|
return (new Promise\Promise(function ($resolve, $reject) use ($process, $server, $loop, $options) { |
|
174
|
1 |
|
$server->on( |
|
175
|
|
|
'connection', |
|
176
|
|
|
function (ConnectionInterface $connection) use ($server, $resolve, $reject, $options, $loop) { |
|
177
|
|
|
Promise\Stream\first($connection)->then(function ($chunk) use ($options, $connection, $resolve) { |
|
178
|
|
|
list($confirmation) = explode(PHP_EOL, $chunk); |
|
179
|
1 |
|
if ($confirmation === hash_hmac('sha512', $options['address'], $options['random'])) { |
|
180
|
|
|
$connection->write('syn' . PHP_EOL); |
|
181
|
1 |
|
|
|
182
|
1 |
|
return Promise\Stream\first($connection); |
|
183
|
|
|
} |
|
184
|
|
|
})->then(function ($chunk) use ($options, $connection) { |
|
185
|
|
|
list($confirmation) = explode(PHP_EOL, $chunk); |
|
186
|
|
|
if ($confirmation === 'ack') { |
|
187
|
|
|
return Promise\resolve(new Messenger($connection, $options)); |
|
188
|
|
|
} |
|
189
|
|
|
|
|
190
|
|
|
return Promise\reject(new \RuntimeException('Handshake failed')); |
|
191
|
|
|
})->always(function () use ($server) { |
|
192
|
|
|
$server->close(); |
|
193
|
|
|
})->done($resolve, $reject); |
|
194
|
|
|
} |
|
195
|
|
|
); |
|
196
|
|
|
$server->on('error', function ($et) use ($reject) { |
|
197
|
|
|
$reject($et); |
|
198
|
|
|
}); |
|
199
|
|
|
|
|
200
|
|
|
$process->start($loop); |
|
201
|
|
|
}, function () use ($server, $process) { |
|
202
|
|
|
$server->close(); |
|
203
|
|
|
$process->terminate(); |
|
204
|
|
|
}))->then(function (Messenger $messenger) use ($loop, $process) { |
|
205
|
|
|
$loop->addPeriodicTimer(self::INTERVAL, function ($timer) use ($messenger, $loop, $process) { |
|
206
|
|
|
if (!$process->isRunning()) { |
|
207
|
|
|
$loop->cancelTimer($timer); |
|
208
|
|
|
|
|
209
|
|
|
$exitCode = $process->getExitCode(); |
|
210
|
|
|
if ($exitCode === 0) { |
|
211
|
|
|
return; |
|
212
|
|
|
} |
|
213
|
|
|
|
|
214
|
|
|
$messenger->crashed($exitCode); |
|
215
|
|
|
} |
|
216
|
|
|
}); |
|
217
|
|
|
|
|
218
|
|
|
return $messenger; |
|
219
|
|
|
}); |
|
220
|
|
|
} |
|
221
|
|
|
} |
|
222
|
|
|
|
Let’s assume that you have a directory layout like this:
. |-- OtherDir | |-- Bar.php | `-- Foo.php `-- SomeDir `-- Foo.phpand let’s assume the following content of
Bar.php:If both files
OtherDir/Foo.phpandSomeDir/Foo.phpare loaded in the same runtime, you will see a PHP error such as the following:PHP Fatal error: Cannot use SomeDir\Foo as Foo because the name is already in use in OtherDir/Foo.phpHowever, as
OtherDir/Foo.phpdoes not necessarily have to be loaded and the error is only triggered if it is loaded beforeOtherDir/Bar.php, this problem might go unnoticed for a while. In order to prevent this error from surfacing, you must import the namespace with a different alias: