signal_hook_tokio/lib.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158
#![doc(test(attr(deny(warnings))))]
#![warn(missing_docs)]
#![cfg_attr(docsrs, feature(doc_cfg))]
#![cfg_attr(not(feature = "futures-v0_3"), allow(dead_code, unused_imports))]
//! A crate for integrating signal handling with the Tokio runtime.
//!
//! This provides the [`Signals`][Signals] struct which acts as a
//! [`Stream`] of signals.
//!
//! Note that the `futures-v0_3` feature of this crate must be
//! enabled for `Signals` to implement the `Stream` trait.
//!
//! # Example
//!
//! ```rust
//! # #[cfg(feature = "futures-v0_3")]
//! # mod test {
//! use std::io::Error;
//!
//! use signal_hook::consts::signal::*;
//! use signal_hook_tokio::Signals;
//!
//! use futures::stream::StreamExt;
//!
//! async fn handle_signals(mut signals: Signals) {
//! while let Some(signal) = signals.next().await {
//! match signal {
//! SIGHUP => {
//! // Reload configuration
//! // Reopen the log file
//! }
//! SIGTERM | SIGINT | SIGQUIT => {
//! // Shutdown the system;
//! },
//! _ => unreachable!(),
//! }
//! }
//! }
//!
//! #[tokio::main]
//! # pub
//! async fn main() -> Result<(), Error> {
//! let signals = Signals::new(&[
//! SIGHUP,
//! SIGTERM,
//! SIGINT,
//! SIGQUIT,
//! ])?;
//! let handle = signals.handle();
//!
//! let signals_task = tokio::spawn(handle_signals(signals));
//!
//! // Execute your main program logic
//!
//! // Terminate the signal stream.
//! handle.close();
//! signals_task.await?;
//!
//! Ok(())
//! }
//! # }
//! # fn main() -> Result<(), std::io::Error> {
//! # #[cfg(feature = "futures-v0_3")]
//! # test::main()?;
//! # Ok(())
//! # }
//! ```
use std::borrow::Borrow;
use std::io::Error;
use std::pin::Pin;
use std::task::{Context, Poll};
use libc::c_int;
use tokio::io::{AsyncRead, ReadBuf};
use tokio::net::UnixStream;
pub use signal_hook::iterator::backend::Handle;
use signal_hook::iterator::backend::{OwningSignalIterator, PollResult, SignalDelivery};
use signal_hook::iterator::exfiltrator::{Exfiltrator, SignalOnly};
#[cfg(feature = "futures-v0_3")]
use futures_core_0_3::Stream;
/// An asynchronous [`Stream`] of arriving signals.
///
/// The stream doesn't return the signals in the order they were recieved by
/// the process and may merge signals received multiple times.
pub struct SignalsInfo<E: Exfiltrator = SignalOnly>(OwningSignalIterator<UnixStream, E>);
impl<E: Exfiltrator> SignalsInfo<E> {
/// Create a `SignalsInfo` instance.
///
/// This registers all the signals listed. The same restrictions (panics, errors) apply
/// as with [`Handle::add_signal`].
pub fn new<I, S>(signals: I) -> Result<Self, Error>
where
I: IntoIterator<Item = S>,
S: Borrow<c_int>,
E: Default,
{
Self::with_exfiltrator(signals, E::default())
}
/// A constructor with explicit exfiltrator.
pub fn with_exfiltrator<I, S>(signals: I, exfiltrator: E) -> Result<Self, Error>
where
I: IntoIterator<Item = S>,
S: Borrow<c_int>,
{
let (read, write) = UnixStream::pair()?;
let inner = SignalDelivery::with_pipe(read, write, exfiltrator, signals)?;
Ok(Self(OwningSignalIterator::new(inner)))
}
/// Get a shareable [`Handle`] for this `Signals` instance.
///
/// This can be used to add further signals or close the [`Signals`] instance
/// which terminates the whole signal stream.
pub fn handle(&self) -> Handle {
self.0.handle()
}
}
/// Simplified version of the signals stream.
///
/// This one simply returns the signal numbers, while [`SignalsInfo`] can provide additional
/// information.
pub type Signals = SignalsInfo<SignalOnly>;
impl<E: Exfiltrator> SignalsInfo<E> {
fn has_signals(read: &mut UnixStream, ctx: &mut Context<'_>) -> Result<bool, Error> {
let mut buf = [0u8];
let mut read_buf = ReadBuf::new(&mut buf);
match Pin::new(read).poll_read(ctx, &mut read_buf) {
Poll::Pending => Ok(false),
Poll::Ready(Ok(())) => Ok(true),
Poll::Ready(Err(error)) => Err(error),
}
}
}
#[cfg_attr(docsrs, doc(cfg(feature = "futures-v0_3")))]
#[cfg(feature = "futures-v0_3")]
impl<E: Exfiltrator> Stream for SignalsInfo<E> {
type Item = E::Output;
fn poll_next(mut self: Pin<&mut Self>, ctx: &mut Context<'_>) -> Poll<Option<Self::Item>> {
match self.0.poll_signal(&mut |read| Self::has_signals(read, ctx)) {
PollResult::Signal(sig) => Poll::Ready(Some(sig)),
PollResult::Closed => Poll::Ready(None),
PollResult::Pending => Poll::Pending,
PollResult::Err(error) => panic!("Unexpected error: {}", error),
}
}
}