Expand description

Module for actions setting flags.

This contains helper functions to set flags whenever a signal happens. The flags are atomic bools or numbers and the library manipulates them with the SeqCst ordering, in case someone cares about relative order to some other atomic variables. If you don’t care about the relative order, you are free to use Ordering::Relaxed when reading and resetting the flags.

When to use

The flags in this module allow for polling if a signal arrived since the previous poll. The do not allow blocking until something arrives.

Therefore, the natural way to use them is in applications that have some kind of iterative work with both some upper and lower time limit on one iteration. If one iteration could block for arbitrary time, the handling of the signal would be postponed for a long time. If the iteration didn’t block at all, the checking for the signal would turn into a busy-loop.

If what you need is blocking until a signal comes, you might find better tools in the pipe and iterator modules.

Examples

Doing something until terminated. This also knows by which signal it was terminated. In case multiple termination signals arrive before it is handled, it recognizes the last one.

extern crate signal_hook;

use std::io::Error;
use std::sync::Arc;
use std::sync::atomic::{AtomicUsize, Ordering};

use signal_hook::flag as signal_flag;

fn main() -> Result<(), Error> {
    let term = Arc::new(AtomicUsize::new(0));
    const SIGTERM: usize = signal_hook::SIGTERM as usize;
    const SIGINT: usize = signal_hook::SIGINT as usize;
    const SIGQUIT: usize = signal_hook::SIGQUIT as usize;
    signal_flag::register_usize(signal_hook::SIGTERM, Arc::clone(&term), SIGTERM)?;
    signal_flag::register_usize(signal_hook::SIGINT, Arc::clone(&term), SIGINT)?;
    signal_flag::register_usize(signal_hook::SIGQUIT, Arc::clone(&term), SIGQUIT)?;

    loop {
        match term.load(Ordering::Relaxed) {
            0 => {
                // Do some useful stuff here
            }
            SIGTERM => {
                eprintln!("Terminating on the TERM signal");
                break;
            }
            SIGINT => {
                eprintln!("Terminating on the INT signal");
                break;
            }
            SIGQUIT => {
                eprintln!("Terminating on the QUIT signal");
                break;
            }
            _ => unreachable!(),
        }
    }

    Ok(())
}

Sending a signal to self and seeing it arrived (not of a practical usage on itself):

extern crate libc;
extern crate signal_hook;

use std::io::Error;
use std::sync::Arc;
use std::sync::atomic::{AtomicBool, Ordering};
use std::thread;
use std::time::Duration;

fn main() -> Result<(), Error> {
    let got = Arc::new(AtomicBool::new(false));
    signal_hook::flag::register(signal_hook::SIGUSR1, Arc::clone(&got))?;
    unsafe {
        libc::raise(signal_hook::SIGUSR1);
    }
    // A sleep here, because it could run the signal handler in another thread and we may not
    // see the flag right away. This is still a hack and not guaranteed to work, it is just an
    // example!
    thread::sleep(Duration::from_secs(1));
    assert!(got.load(Ordering::Relaxed));
    Ok(())
}

Reloading a configuration on SIGHUP (which is a common behaviour of many UNIX daemons, together with reopening the log file).

extern crate signal_hook;

use std::io::Error;
use std::sync::Arc;
use std::sync::atomic::{AtomicBool, Ordering};

use signal_hook::flag as signal_flag;

fn main() -> Result<(), Error> {
    // We start with true, to load the configuration in the very first iteration too.
    let reload = Arc::new(AtomicBool::new(true));
    let term = Arc::new(AtomicBool::new(false));
    signal_flag::register(signal_hook::SIGHUP, Arc::clone(&reload))?;
    signal_flag::register(signal_hook::SIGINT, Arc::clone(&term))?;
    signal_flag::register(signal_hook::SIGTERM, Arc::clone(&term))?;
    signal_flag::register(signal_hook::SIGQUIT, Arc::clone(&term))?;
    while !term.load(Ordering::Relaxed) {
        // Using swap here, not load, to reset it back to false once it is reloaded.
        if reload.swap(false, Ordering::Relaxed) {
            // Reload the config here
        }
        // Serve one request
    }
    Ok(())
}

Functions

Registers an action to set the flag to true whenever the given signal arrives.
Registers an action to set the flag to the given value whenever the signal arrives.