#ctrl-c #signal-handler #signal #sigint

ctrlc2

Easy Ctrl-C handler version 2 for Rust projects

2 stable releases

3.5.7 Mar 10, 2024
3.5.6 Dec 15, 2023
3.5.5 Nov 21, 2023
3.5.4 Nov 20, 2023
3.5.2 Nov 5, 2023

#94 in Operating systems

Download history 206/week @ 2024-01-06 168/week @ 2024-01-13 109/week @ 2024-01-20 336/week @ 2024-01-27 398/week @ 2024-02-03 335/week @ 2024-02-10 161/week @ 2024-02-17 376/week @ 2024-02-24 192/week @ 2024-03-02 805/week @ 2024-03-09 551/week @ 2024-03-16 482/week @ 2024-03-23 441/week @ 2024-03-30 503/week @ 2024-04-06 522/week @ 2024-04-13 480/week @ 2024-04-20

1,985 downloads per month
Used in 7 crates

MIT/Apache

25KB
344 lines

CtrlC2

Version Documentation Download License

For this reason, I have decided to create a fork of ctrlc and maintain it. I will try to keep it up to date with the original repo. If you have any suggestions or want to contribute, please open an issue or a PR. Thanks! I will respond to issues and PRs as soon as possible.

A simple easy to use wrapper around Ctrl-C signal.

Documentation

Example usage

In cargo.toml:

[dependencies]
ctrlc2 = "3.5"

then, in main.rs

use std::sync::mpsc::channel;
use ctrlc2;

fn main() {
    let (tx, rx) = channel();
    
    let handle = ctrlc2::set_handler(move || {tx.send(()).expect("Could not send signal on channel."); true})
        .expect("Error setting Ctrl-C handler");
    
    println!("Waiting for Ctrl-C...");
    rx.recv().expect("Could not receive from channel.");
    println!("Got it! Exiting..."); 
    handle.join().unwrap();
}

Asynchronous support

This library now supports asynchronous operation using either the tokio runtimes.

Selecting the tokio is done using feature flags (e.g. --no-default-features --features tokio)

#[cfg(feature = "tokio")]
#[cfg_attr(feature = "tokio", tokio::main(flavor = "current_thread"))]
async fn main() {
    let (tx, mut rx) = tokio::sync::mpsc::channel::<()>(1);

    ctrlc2::set_async_handler(async move {
        tx.send(())
            .await
            .expect("Could not send signal on channel.");
    })
    .await;

    println!("Waiting for Ctrl-C...");
    rx.recv().await.expect("Could not receive from channel.");
    println!("Got it! Exiting...");
}

Try the example yourself

cargo build --examples && target/debug/examples/readme_example

Handling SIGTERM and SIGHUP

Add CtrlC to Cargo.toml using termination feature and CtrlC will handle SIGINT, SIGTERM and SIGHUP.

License

Licensed under either of

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you shall be dual licensed as above, without any additional terms or conditions.

Similar crates

There are alternatives that give you more control over the different signals and/or add async support.

Dependencies

~1–12MB
~128K SLoC