GitXplorerGitXplorer
S

signal-handler

public
179 stars
3 forks
0 issues

Commits

List of commits on branch main.
Verified
606a192bf4783dd811b906e4a64b0866d16e61a9

Fix deprecated usages

SSeldaek committed 5 months ago
Verified
ac83a27d47266de225f02486ad0480eba60b9e78

Bump deps

SSeldaek committed 5 months ago
Verified
ec6daf7567b4ad1d42464cb40a2e3c4ad0e2f399

Allow phpunit 9

SSeldaek committed 5 months ago
Verified
fc27f191e02186f1a5504318fb9cdae0d6411fbb

Try phpunit 8.5.38

SSeldaek committed 5 months ago
Verified
9a7861a007aed58ed399371828aeee08b63ab106

Bypass composer runner

SSeldaek committed 5 months ago
Verified
4773a07621e0cdf803516cf29fada2b8612cd891

Upgrade CI

SSeldaek committed 5 months ago

README

The README file for this repository.

Signal Handler

A simple cross-platform1 signal handler.

1 Windows support is only possible on PHP 7.4+ and only supports catching SIGINT/SIGBREAK (ctrl+c / ctrl+break respectively). On older PHP versions it will simply silently fail to work on Windows so you can use it but signals will just interrupt PHP as if the library was not in use.

Continuous Integration

Usage

Note: To maximize cross-platform support all signals are available as constants on the SignalHandler class and it is recommended to use those instead of the PHP constants as the constants are not available on all platforms.

Default usage, listen to SIGTERM and SIGINT (i.e. Ctrl+C / ^C interrupts)

use Seld\Signal\SignalHandler;

$signal = SignalHandler::create();

while (true) {
    // do some work here ...

    // exit gracefully at the end of an iteration if the process interruption was called for
    if ($signal->isTriggered()) {
        $signal->exitWithLastSignal();
    }
}

Nesting/stacking and unregistering signal handlers

If you create multiple SignalHandler instances they will be kept on a stack and only the top-most / last created one will be triggered when a signal comes in.

When you unregister the top one the previous one becomes active again, etc.

For this to work well however you need to make sure you properly unregister the signal handler when you are done with it. On PHP 8.0+ this is done automatically whenever the signal handler is garbage collected as the stack uses WeakReference instances to keep track of the handlers. On PHP 7 however you need to call $signal->unregister(); explicitly to remove it from the global handler stack.

Typically it would look something like this if you need PHP 7 support:

use Seld\Signal\SignalHandler;

$signal = SignalHandler::create();

try {
    // do things
} finally {
    $signal->unregister();
}

Listen to custom signals and reset the handler to handle the same signal multiple times

use Seld\Signal\SignalHandler;

// using strings for the constant names makes sure the code will run on Windows and
// OSX even if the signal is missing on those platforms
$signal = SignalHandler::create([SignalHandler::SIGHUP, SignalHandler::SIGUSR1]);

while (true) {
    // do some work here ...

    // reload the config when the signal was triggered
    if ($signal->isTriggered()) {
        $this->reloadConfiguration();

        // reset the handler so next time you check isTriggered() it
        // will be false, until SIGHUP/SIGUSR1 is signaled again
        $signal->reset();
    }
}

Passing in a PSR-3 Logger will make it log ->info('Received '.$signalName)

use Seld\Signal\SignalHandler;

$signal = SignalHandler::create(null, new PSR3Logger());

Passing in a callback you can react to the signal as well

use Seld\Signal\SignalHandler;

$signal = SignalHandler::create([SignalHandler::SIGINT], function (string $signalName, SignalHandler $self) {
    echo 'Received ' . $signalName . PHP_EOL;

    // you can optionally receive the SignalHandler instance as second arg to do things on it like
    // resetting its state or exiting to handle the signal
    $self->reset();
    $self->exitWithLastSignal();
});

Warning: As described above on PHP 8.0+ this library uses weak references to keep track of the handlers, so if you do not store the result of ::create() into a variable that you keep around as long as you need the handler, it will not work and your callback function will never be called.

Installation

For a quick install with Composer use:

$ composer require seld/signal-handler

Requirements

  • PHP 7.2+ (or PHP 5.4+ for v1 which is EOL now)

Submitting bugs and feature requests

Bugs and feature request are tracked on GitHub

Author

Jordi Boggiano - j.boggiano@seld.be - http://twitter.com/seldaek

License

signal-handler is licensed under the MIT License - see the LICENSE file for details