Skip to content

Commit dcd69eb

Browse files
committed
Try to quit the child process only after internal errors were accounted for
1 parent 2e8b260 commit dcd69eb

File tree

7 files changed

+76
-1
lines changed

7 files changed

+76
-1
lines changed

.github/workflows/e2e-tests.yml

+7
Original file line numberDiff line numberDiff line change
@@ -248,6 +248,13 @@ jobs:
248248
cd e2e/bad-exclude-paths
249249
OUTPUT=$(../../bin/phpstan analyse -c ignoreReportUnmatchedFalse.neon)
250250
echo "$OUTPUT"
251+
- script: |
252+
cd e2e/bug-11826
253+
composer install
254+
OUTPUT=$(../bashunit -a exit_code "1" "../../bin/phpstan")
255+
echo "$OUTPUT"
256+
../bashunit -a contains 'Child process error (exit code 255): PHP Fatal error' "$OUTPUT"
257+
../bashunit -a contains 'Result is incomplete because of severe errors.' "$OUTPUT"
251258
252259
steps:
253260
- name: "Checkout"

e2e/bug-11826/.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/vendor
2+
/composer.lock

e2e/bug-11826/composer.json

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"autoload": {
3+
"psr-4": {
4+
"App\\": "src/",
5+
"Rules\\": "rules/"
6+
}
7+
}
8+
}

e2e/bug-11826/phpstan.neon.dist

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
parameters:
2+
level: 9
3+
paths:
4+
- src
5+
- rules
6+
7+
rules:
8+
- Rules\DummyRule

e2e/bug-11826/rules/DummyRule.php

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
<?php declare(strict_types = 1);
2+
3+
namespace Rules;
4+
5+
use App\FatalErrorWhenAutoloaded;
6+
use PhpParser\Node;
7+
use PHPStan\Analyser\Scope;
8+
use PHPStan\Node\InClassNode;
9+
use PHPStan\Rules\IdentifierRuleError;
10+
use PHPStan\Rules\Rule;
11+
12+
/**
13+
* @implements Rule<InClassNode>
14+
*/
15+
class DummyRule implements Rule
16+
{
17+
18+
public function getNodeType(): string
19+
{
20+
return InClassNode::class;
21+
}
22+
23+
/**
24+
* @param InClassNode $node
25+
* @return list<IdentifierRuleError>
26+
*/
27+
public function processNode(
28+
Node $node,
29+
Scope $scope,
30+
): array
31+
{
32+
return [FatalErrorWhenAutoloaded::AUTOLOAD];
33+
}
34+
35+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<?php declare(strict_types = 1);
2+
3+
namespace App;
4+
5+
interface FatalErrorWhenAutoloaded
6+
{
7+
8+
public const AUTOLOAD = 'autoload';
9+
public const CLASS = 'error';
10+
11+
}

src/Parallel/ParallelAnalyser.php

+5-1
Original file line numberDiff line numberDiff line change
@@ -279,11 +279,12 @@ public function analyse(
279279
}
280280
$someChildEnded = true;
281281

282-
$this->processPool->tryQuitProcess($processIdentifier);
283282
if ($exitCode === 0) {
283+
$this->processPool->tryQuitProcess($processIdentifier);
284284
return;
285285
}
286286
if ($exitCode === null) {
287+
$this->processPool->tryQuitProcess($processIdentifier);
287288
return;
288289
}
289290

@@ -294,6 +295,7 @@ public function analyse(
294295
continue;
295296
}
296297

298+
$this->processPool->tryQuitProcess($processIdentifier);
297299
return;
298300
}
299301
$internalErrors[] = new InternalError(sprintf(
@@ -303,11 +305,13 @@ public function analyse(
303305
'Increase your memory limit in php.ini or run PHPStan with --memory-limit CLI option.',
304306
), 'running parallel worker', [], null, false);
305307
$internalErrorsCount++;
308+
$this->processPool->tryQuitProcess($processIdentifier);
306309
return;
307310
}
308311

309312
$internalErrors[] = new InternalError(sprintf('Child process error (exit code %d): %s', $exitCode, $output), 'running parallel worker', [], null, true);
310313
$internalErrorsCount++;
314+
$this->processPool->tryQuitProcess($processIdentifier);
311315
});
312316
$this->processPool->attachProcess($processIdentifier, $process);
313317
}

0 commit comments

Comments
 (0)