mirror of
https://github.com/tokio-rs/tokio.git
synced 2026-09-08 00:00:13 +02:00
- Use `Handle::default` over `Handle::current` for consistent semantics - Make all `windows::Event` constructors lazily invoke `global_init` so they can be safely constructed off-task - Don't assume the reactor is alive and event registration will be done when calling `global_init` Add windows regression tests. Unfortunately, Windows doesn't have a reliable way of programmatically sending CTRL_C or CTRL_BREAK events to a progress, so the tests can only exercise our internal machinery by invoking the handler that we register with the OS Fixes #999
402 lines
12 KiB
Rust
402 lines
12 KiB
Rust
//! Windows-specific types for signal handling.
|
|
//!
|
|
//! This module is only defined on Windows and contains the primary `Event` type
|
|
//! for receiving notifications of events. These events are listened for via the
|
|
//! `SetConsoleCtrlHandler` function which receives events of the type
|
|
//! `CTRL_C_EVENT` and `CTRL_BREAK_EVENT`
|
|
|
|
#![cfg(windows)]
|
|
|
|
extern crate mio;
|
|
extern crate winapi;
|
|
|
|
use std::cell::RefCell;
|
|
use std::io;
|
|
use std::sync::atomic::{AtomicBool, Ordering};
|
|
use std::sync::{Once, ONCE_INIT};
|
|
|
|
use self::winapi::shared::minwindef::*;
|
|
use self::winapi::um::consoleapi::SetConsoleCtrlHandler;
|
|
use self::winapi::um::wincon::*;
|
|
use futures::future;
|
|
use futures::stream::Fuse;
|
|
use futures::sync::mpsc;
|
|
use futures::sync::oneshot;
|
|
use futures::{Async, Future, Poll, Stream};
|
|
use mio::Ready;
|
|
use tokio_reactor::{Handle, PollEvented};
|
|
|
|
use IoFuture;
|
|
|
|
static INIT: Once = ONCE_INIT;
|
|
static mut GLOBAL_STATE: *mut GlobalState = 0 as *mut _;
|
|
|
|
/// Stream of events discovered via `SetConsoleCtrlHandler`.
|
|
///
|
|
/// This structure can be used to listen for events of the type `CTRL_C_EVENT`
|
|
/// and `CTRL_BREAK_EVENT`. The `Stream` trait is implemented for this struct
|
|
/// and will resolve for each notification received by the process. Note that
|
|
/// there are few limitations with this as well:
|
|
///
|
|
/// * A notification to this process notifies *all* `Event` streams for that
|
|
/// event type.
|
|
/// * Notifications to an `Event` stream **are coalesced** if they aren't
|
|
/// processed quickly enough. This means that if two notifications are
|
|
/// received back-to-back, then the stream may only receive one item about the
|
|
/// two notifications.
|
|
pub struct Event {
|
|
reg: PollEvented<MyRegistration>,
|
|
_finished: oneshot::Sender<()>,
|
|
}
|
|
|
|
struct GlobalState {
|
|
ready: mio::SetReadiness,
|
|
tx: mpsc::UnboundedSender<Message>,
|
|
ctrl_c: GlobalEventState,
|
|
ctrl_break: GlobalEventState,
|
|
}
|
|
|
|
struct GlobalEventState {
|
|
ready: AtomicBool,
|
|
}
|
|
|
|
enum Message {
|
|
NewEvent(DWORD, oneshot::Sender<io::Result<Event>>),
|
|
}
|
|
|
|
struct DriverTask {
|
|
handle: Handle,
|
|
reg: PollEvented<MyRegistration>,
|
|
rx: Fuse<mpsc::UnboundedReceiver<Message>>,
|
|
ctrl_c: EventState,
|
|
ctrl_break: EventState,
|
|
}
|
|
|
|
struct EventState {
|
|
tasks: Vec<(RefCell<oneshot::Receiver<()>>, mio::SetReadiness)>,
|
|
}
|
|
|
|
impl Event {
|
|
/// Creates a new stream listening for the `CTRL_C_EVENT` events.
|
|
///
|
|
/// This function will register a handler via `SetConsoleCtrlHandler` and
|
|
/// deliver notifications to the returned stream.
|
|
pub fn ctrl_c() -> IoFuture<Event> {
|
|
Event::ctrl_c_handle(&Handle::default())
|
|
}
|
|
|
|
/// Creates a new stream listening for the `CTRL_C_EVENT` events.
|
|
///
|
|
/// This function will register a handler via `SetConsoleCtrlHandler` and
|
|
/// deliver notifications to the returned stream.
|
|
pub fn ctrl_c_handle(handle: &Handle) -> IoFuture<Event> {
|
|
Event::new(CTRL_C_EVENT, handle)
|
|
}
|
|
|
|
/// Creates a new stream listening for the `CTRL_BREAK_EVENT` events.
|
|
///
|
|
/// This function will register a handler via `SetConsoleCtrlHandler` and
|
|
/// deliver notifications to the returned stream.
|
|
pub fn ctrl_break() -> IoFuture<Event> {
|
|
Event::ctrl_break_handle(&Handle::default())
|
|
}
|
|
|
|
/// Creates a new stream listening for the `CTRL_BREAK_EVENT` events.
|
|
///
|
|
/// This function will register a handler via `SetConsoleCtrlHandler` and
|
|
/// deliver notifications to the returned stream.
|
|
pub fn ctrl_break_handle(handle: &Handle) -> IoFuture<Event> {
|
|
Event::new(CTRL_BREAK_EVENT, handle)
|
|
}
|
|
|
|
fn new(signum: DWORD, handle: &Handle) -> IoFuture<Event> {
|
|
let handle = handle.clone();
|
|
let new_signal = future::poll_fn(move || {
|
|
let mut init = None;
|
|
INIT.call_once(|| {
|
|
init = Some(global_init(&handle));
|
|
});
|
|
|
|
if let Some(Err(e)) = init {
|
|
return Err(e);
|
|
}
|
|
|
|
let (tx, rx) = oneshot::channel();
|
|
let msg = Message::NewEvent(signum, tx);
|
|
let res = unsafe { (*GLOBAL_STATE).tx.clone().unbounded_send(msg) };
|
|
res.expect(
|
|
"failed to request a new signal stream, did the \
|
|
first event loop go away?",
|
|
);
|
|
Ok(Async::Ready(rx.then(|r| r.unwrap())))
|
|
});
|
|
|
|
Box::new(new_signal.flatten())
|
|
}
|
|
}
|
|
|
|
impl Stream for Event {
|
|
type Item = ();
|
|
type Error = io::Error;
|
|
|
|
fn poll(&mut self) -> Poll<Option<()>, io::Error> {
|
|
if !self.reg.poll_read_ready(Ready::readable())?.is_ready() {
|
|
return Ok(Async::NotReady);
|
|
}
|
|
self.reg.clear_read_ready(Ready::readable())?;
|
|
self.reg
|
|
.get_ref()
|
|
.readiness
|
|
.set_readiness(mio::Ready::empty())
|
|
.expect("failed to set readiness");
|
|
Ok(Async::Ready(Some(())))
|
|
}
|
|
}
|
|
|
|
fn global_init(handle: &Handle) -> io::Result<()> {
|
|
let reg = MyRegistration::new();
|
|
let ready = reg.readiness.clone();
|
|
|
|
let (tx, rx) = mpsc::unbounded();
|
|
let reg = try!(PollEvented::new_with_handle(reg, handle));
|
|
|
|
unsafe {
|
|
let state = Box::new(GlobalState {
|
|
ready: ready,
|
|
ctrl_c: GlobalEventState {
|
|
ready: AtomicBool::new(false),
|
|
},
|
|
ctrl_break: GlobalEventState {
|
|
ready: AtomicBool::new(false),
|
|
},
|
|
tx: tx,
|
|
});
|
|
GLOBAL_STATE = Box::into_raw(state);
|
|
|
|
let rc = SetConsoleCtrlHandler(Some(handler), TRUE);
|
|
if rc == 0 {
|
|
Box::from_raw(GLOBAL_STATE);
|
|
GLOBAL_STATE = 0 as *mut _;
|
|
return Err(io::Error::last_os_error());
|
|
}
|
|
|
|
::tokio_executor::spawn(Box::new(DriverTask {
|
|
handle: handle.clone(),
|
|
rx: rx.fuse(),
|
|
reg: reg,
|
|
ctrl_c: EventState { tasks: Vec::new() },
|
|
ctrl_break: EventState { tasks: Vec::new() },
|
|
}));
|
|
|
|
Ok(())
|
|
}
|
|
}
|
|
|
|
impl Future for DriverTask {
|
|
type Item = ();
|
|
type Error = ();
|
|
|
|
fn poll(&mut self) -> Poll<(), ()> {
|
|
self.check_event_drops();
|
|
self.check_messages();
|
|
self.check_events().unwrap();
|
|
|
|
// TODO: when to finish this task?
|
|
Ok(Async::NotReady)
|
|
}
|
|
}
|
|
|
|
impl DriverTask {
|
|
fn check_event_drops(&mut self) {
|
|
self.ctrl_c
|
|
.tasks
|
|
.retain(|task| !task.0.borrow_mut().poll().is_err());
|
|
self.ctrl_break
|
|
.tasks
|
|
.retain(|task| !task.0.borrow_mut().poll().is_err());
|
|
}
|
|
|
|
fn check_messages(&mut self) {
|
|
loop {
|
|
// Acquire the next message
|
|
let message = match self.rx.poll().unwrap() {
|
|
Async::Ready(Some(e)) => e,
|
|
Async::Ready(None) | Async::NotReady => break,
|
|
};
|
|
let (sig, complete) = match message {
|
|
Message::NewEvent(sig, complete) => (sig, complete),
|
|
};
|
|
|
|
let event = if sig == CTRL_C_EVENT {
|
|
&mut self.ctrl_c
|
|
} else {
|
|
&mut self.ctrl_break
|
|
};
|
|
|
|
// Acquire the (registration, set_readiness) pair by... assuming
|
|
// we're on the event loop (true because of the spawn above).
|
|
let reg = MyRegistration::new();
|
|
let ready = reg.readiness.clone();
|
|
|
|
let reg = match PollEvented::new_with_handle(reg, &self.handle) {
|
|
Ok(reg) => reg,
|
|
Err(e) => {
|
|
drop(complete.send(Err(e)));
|
|
continue;
|
|
}
|
|
};
|
|
|
|
// Create the `Event` to pass back and then also keep a handle to
|
|
// the `SetReadiness` for ourselves internally.
|
|
let (tx, rx) = oneshot::channel();
|
|
drop(complete.send(Ok(Event {
|
|
reg: reg,
|
|
_finished: tx,
|
|
})));
|
|
event.tasks.push((RefCell::new(rx), ready));
|
|
}
|
|
}
|
|
|
|
fn check_events(&mut self) -> io::Result<()> {
|
|
if self.reg.poll_read_ready(Ready::readable())?.is_not_ready() {
|
|
return Ok(());
|
|
}
|
|
self.reg.clear_read_ready(Ready::readable())?;
|
|
self.reg
|
|
.get_ref()
|
|
.readiness
|
|
.set_readiness(mio::Ready::empty())
|
|
.expect("failed to set readiness");
|
|
|
|
if unsafe { (*GLOBAL_STATE).ctrl_c.ready.swap(false, Ordering::SeqCst) } {
|
|
for task in self.ctrl_c.tasks.iter() {
|
|
task.1.set_readiness(mio::Ready::readable()).unwrap();
|
|
}
|
|
}
|
|
if unsafe {
|
|
(*GLOBAL_STATE)
|
|
.ctrl_break
|
|
.ready
|
|
.swap(false, Ordering::SeqCst)
|
|
} {
|
|
for task in self.ctrl_break.tasks.iter() {
|
|
task.1.set_readiness(mio::Ready::readable()).unwrap();
|
|
}
|
|
}
|
|
Ok(())
|
|
}
|
|
}
|
|
|
|
unsafe extern "system" fn handler(ty: DWORD) -> BOOL {
|
|
let event = match ty {
|
|
CTRL_C_EVENT => &(*GLOBAL_STATE).ctrl_c,
|
|
CTRL_BREAK_EVENT => &(*GLOBAL_STATE).ctrl_break,
|
|
_ => return FALSE,
|
|
};
|
|
if event.ready.swap(true, Ordering::SeqCst) {
|
|
FALSE
|
|
} else {
|
|
drop((*GLOBAL_STATE).ready.set_readiness(mio::Ready::readable()));
|
|
// TODO(1000): this will report that we handled a CTRL_BREAK_EVENT when
|
|
// in fact we may not have any streams actually created for that
|
|
// event.
|
|
TRUE
|
|
}
|
|
}
|
|
|
|
struct MyRegistration {
|
|
registration: mio::Registration,
|
|
readiness: mio::SetReadiness,
|
|
}
|
|
|
|
impl MyRegistration {
|
|
fn new() -> Self {
|
|
let (registration, readiness) = mio::Registration::new2();
|
|
|
|
Self {
|
|
registration,
|
|
readiness,
|
|
}
|
|
}
|
|
}
|
|
|
|
impl mio::Evented for MyRegistration {
|
|
fn register(
|
|
&self,
|
|
poll: &mio::Poll,
|
|
token: mio::Token,
|
|
events: mio::Ready,
|
|
opts: mio::PollOpt,
|
|
) -> io::Result<()> {
|
|
self.registration.register(poll, token, events, opts)
|
|
}
|
|
|
|
fn reregister(
|
|
&self,
|
|
poll: &mio::Poll,
|
|
token: mio::Token,
|
|
events: mio::Ready,
|
|
opts: mio::PollOpt,
|
|
) -> io::Result<()> {
|
|
self.registration.reregister(poll, token, events, opts)
|
|
}
|
|
|
|
fn deregister(&self, poll: &mio::Poll) -> io::Result<()> {
|
|
mio::Evented::deregister(&self.registration, poll)
|
|
}
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
extern crate tokio;
|
|
|
|
use self::tokio::runtime::current_thread;
|
|
use self::tokio::timer::Timeout;
|
|
use super::*;
|
|
use std::time::Duration;
|
|
|
|
fn with_timeout<F: Future>(future: F) -> impl Future<Item = F::Item, Error = F::Error> {
|
|
Timeout::new(future, Duration::from_secs(1)).map_err(|e| {
|
|
if e.is_timer() {
|
|
panic!("failed to register timer");
|
|
} else if e.is_elapsed() {
|
|
panic!("timed out")
|
|
} else {
|
|
e.into_inner().expect("missing inner error")
|
|
}
|
|
})
|
|
}
|
|
|
|
#[test]
|
|
fn ctrl_c_and_ctrl_break() {
|
|
// FIXME(1000): combining into one test due to a restriction where the
|
|
// first event loop cannot go away
|
|
let mut rt = current_thread::Runtime::new().unwrap();
|
|
let event_ctrl_c = rt
|
|
.block_on(with_timeout(Event::ctrl_c()))
|
|
.expect("failed to run future");
|
|
|
|
// Windows doesn't have a good programmatic way of sending events
|
|
// like sending signals on Unix, so we'll stub out the actual OS
|
|
// integration and test that our handling works.
|
|
unsafe {
|
|
super::handler(CTRL_C_EVENT);
|
|
}
|
|
|
|
rt.block_on(with_timeout(event_ctrl_c.into_future()))
|
|
.ok()
|
|
.expect("failed to run event");
|
|
|
|
let event_ctrl_break = rt
|
|
.block_on(with_timeout(Event::ctrl_break()))
|
|
.expect("failed to run future");
|
|
unsafe {
|
|
super::handler(CTRL_BREAK_EVENT);
|
|
}
|
|
|
|
rt.block_on(with_timeout(event_ctrl_break.into_future()))
|
|
.ok()
|
|
.expect("failed to run event");
|
|
}
|
|
}
|