forked from phpstan/phpstan-src
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSpawnedProcessPromise.php
More file actions
98 lines (81 loc) · 2.45 KB
/
Copy pathSpawnedProcessPromise.php
File metadata and controls
98 lines (81 loc) · 2.45 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
<?php declare(strict_types = 1);
namespace PHPStan\Process;
use PHPStan\ShouldNotHappenException;
use React\ChildProcess\Process;
use React\EventLoop\LoopInterface;
use React\Promise\Deferred;
use React\Promise\PromiseInterface;
use function fclose;
use function rewind;
use function stream_get_contents;
use function tmpfile;
/**
* ProcessPromise backed by a freshly spawned PHP process (react/child-process).
*
* @see ForkedProcessPromise for the pcntl_fork()-based alternative that skips
* the per-worker application re-boot.
*/
final class SpawnedProcessPromise implements ProcessPromise
{
/** @var Deferred<string> */
private Deferred $deferred;
private ?Process $process = null;
private bool $canceled = false;
public function __construct(private LoopInterface $loop, private string $command)
{
$this->deferred = new Deferred(function (): void {
$this->cancel();
});
}
/**
* @return PromiseInterface<string>
*/
public function run(): PromiseInterface
{
$tmpStdOutResource = tmpfile();
if ($tmpStdOutResource === false) {
throw new ShouldNotHappenException('Failed creating temp file for stdout.');
}
$tmpStdErrResource = tmpfile();
if ($tmpStdErrResource === false) {
throw new ShouldNotHappenException('Failed creating temp file for stderr.');
}
$this->process = new Process($this->command, fds: [
1 => $tmpStdOutResource,
2 => $tmpStdErrResource,
]);
$this->process->start($this->loop);
$this->process->on('exit', function ($exitCode) use ($tmpStdOutResource, $tmpStdErrResource): void {
if ($this->canceled) {
fclose($tmpStdOutResource);
fclose($tmpStdErrResource);
return;
}
rewind($tmpStdOutResource);
$stdOut = stream_get_contents($tmpStdOutResource);
fclose($tmpStdOutResource);
rewind($tmpStdErrResource);
$stdErr = stream_get_contents($tmpStdErrResource);
fclose($tmpStdErrResource);
if ($exitCode === null) {
$this->deferred->reject(new ProcessCrashedException($stdOut . $stdErr));
return;
}
if ($exitCode === 0) {
$this->deferred->resolve($stdOut);
return;
}
$this->deferred->reject(new ProcessCrashedException($stdOut . $stdErr));
});
return $this->deferred->promise();
}
private function cancel(): void
{
if ($this->process === null) {
throw new ShouldNotHappenException('Cancelling process before running');
}
$this->canceled = true;
$this->process->terminate();
$this->deferred->reject(new ProcessCanceledException());
}
}