Skip to content

Commit 9ad8d31

Browse files
committed
Add SignalMap to map signal value to its name
1 parent 845f201 commit 9ad8d31

File tree

3 files changed

+76
-0
lines changed

3 files changed

+76
-0
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
CHANGELOG
22
=========
33

4+
6.4
5+
---
6+
7+
* Add `SignalMap` to map signal value to its name
8+
49
6.3
510
---
611

SignalRegistry/SignalMap.php

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
<?php
2+
3+
/*
4+
* This file is part of the Symfony package.
5+
*
6+
* (c) Fabien Potencier <[email protected]>
7+
*
8+
* For the full copyright and license information, please view the LICENSE
9+
* file that was distributed with this source code.
10+
*/
11+
12+
namespace Symfony\Component\Console\SignalRegistry;
13+
14+
/**
15+
* @author Grégoire Pineau <[email protected]>
16+
*/
17+
class SignalMap
18+
{
19+
private static array $map;
20+
21+
public static function getSignalName(int $signal): ?string
22+
{
23+
if (!\extension_loaded('pcntl')) {
24+
return null;
25+
}
26+
27+
if (!isset(self::$map)) {
28+
$r = new \ReflectionExtension('pcntl');
29+
$c = $r->getConstants();
30+
$map = array_filter($c, fn ($k) => str_starts_with($k, 'SIG') && !str_starts_with($k, 'SIG_'), \ARRAY_FILTER_USE_KEY);
31+
self::$map = array_flip($map);
32+
}
33+
34+
return self::$map[$signal] ?? null;
35+
}
36+
}
+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
<?php
2+
3+
/*
4+
* This file is part of the Symfony package.
5+
*
6+
* (c) Fabien Potencier <[email protected]>
7+
*
8+
* For the full copyright and license information, please view the LICENSE
9+
* file that was distributed with this source code.
10+
*/
11+
12+
namespace Symfony\Component\Console\Tests\SignalRegistry;
13+
14+
use PHPUnit\Framework\TestCase;
15+
use Symfony\Component\Console\SignalRegistry\SignalMap;
16+
17+
class SignalMapTest extends TestCase
18+
{
19+
/**
20+
* @requires extension pcntl
21+
*
22+
* @testWith [2, "SIGINT"]
23+
* [9, "SIGKILL"]
24+
* [15, "SIGTERM"]
25+
*/
26+
public function testSignalExists(int $signal, string $expected)
27+
{
28+
$this->assertSame($expected, SignalMap::getSignalName($signal));
29+
}
30+
31+
public function testSignalDoesNotExist()
32+
{
33+
$this->assertNull(SignalMap::getSignalName(999999));
34+
}
35+
}

0 commit comments

Comments
 (0)