Skip to content

Commit

Permalink
Add SignalMap to map signal value to its name
Browse files Browse the repository at this point in the history
  • Loading branch information
lyrixx committed Jun 14, 2023
1 parent 52a9292 commit b2374bf
Show file tree
Hide file tree
Showing 3 changed files with 69 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/Symfony/Component/Console/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
CHANGELOG
=========

6.4
---

* Add `SignalMap` to map signal value to its name

6.3
---

Expand Down
32 changes: 32 additions & 0 deletions src/Symfony/Component/Console/SignalRegistry/SignalMap.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<?php

/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Symfony\Component\Console\SignalRegistry;

/**
* @author Grégoire Pineau <lyrixx@lyrixx.info>
*/
class SignalMap
{
private static array $map;

public static function getSignalName(int $signal): ?string
{
if (!isset(self::$map)) {
$r = new \ReflectionExtension('pcntl');
$c = $r->getConstants();
$map = array_filter($c, fn ($k) => str_starts_with($k, 'SIG') && !str_starts_with($k, 'SIG_'), \ARRAY_FILTER_USE_KEY);
self::$map = array_flip($map);
}

return self::$map[$signal] ?? null;
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<?php

/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Symfony\Component\Console\Tests\SignalRegistry;

use PHPUnit\Framework\TestCase;
use Symfony\Component\Console\SignalRegistry\SignalMap;

/**
* @requires extension pcntl
*/
class SignalMapTest extends TestCase
{
/**
* @testWith [2, "SIGINT"]
* [9, "SIGKILL"]
* [15, "SIGTERM"]
* [99999, null]
*/
public function test(int $signal, ?string $expected): void
{
$this->assertSame($expected, SignalMap::getSignalName($signal));
}
}

0 comments on commit b2374bf

Please sign in to comment.