#[cfg(feature = "no_std")]
core::compile_error!("no_std is not supported for timerfd implementation");
use crate::std::io;
use core::future::Future;
use core::pin::Pin;
use core::{mem, ptr, task, time};
use libc::c_int;
#[cfg(target_os = "android")]
mod sys {
#[repr(C)]
pub struct itimerspec {
pub it_interval: libc::timespec,
pub it_value: libc::timespec,
}
extern "C" {
pub fn timerfd_create(clockid: libc::clockid_t, flags: libc::c_int) -> libc::c_int;
pub fn timerfd_settime(timerid: libc::c_int, flags: libc::c_int, new_value: *const itimerspec, old_value: *mut itimerspec) -> libc::c_int;
}
pub const TFD_NONBLOCK: libc::c_int = libc::O_NONBLOCK;
}
#[cfg(not(target_os = "android"))]
use libc as sys;
struct RawTimer(c_int);
impl RawTimer {
fn new() -> Self {
let fd = unsafe { sys::timerfd_create(libc::CLOCK_MONOTONIC, sys::TFD_NONBLOCK) };
os_assert!(fd != -1);
Self(fd)
}
fn set(&self, timer: sys::itimerspec) {
let ret = unsafe { sys::timerfd_settime(self.0, 0, &timer, ptr::null_mut()) };
os_assert!(ret != -1);
}
fn read(&self) -> usize {
let mut read_num = 0u64;
match unsafe { libc::read(self.0, &mut read_num as *mut u64 as *mut _, 8) } {
-1 => {
let error = io::Error::last_os_error();
match error.kind() {
io::ErrorKind::WouldBlock => 0,
_ => panic!("Unexpected read error: {}", error),
}
}
_ => read_num as usize,
}
}
}
impl mio::Evented for RawTimer {
fn register(&self, poll: &mio::Poll, token: mio::Token, interest: mio::Ready, opts: mio::PollOpt) -> io::Result<()> {
mio::unix::EventedFd(&self.0).register(poll, token, interest, opts)
}
fn reregister(&self, poll: &mio::Poll, token: mio::Token, interest: mio::Ready, opts: mio::PollOpt) -> io::Result<()> {
mio::unix::EventedFd(&self.0).reregister(poll, token, interest, opts)
}
fn deregister(&self, poll: &mio::Poll) -> io::Result<()> {
mio::unix::EventedFd(&self.0).deregister(poll)
}
}
impl Drop for RawTimer {
fn drop(&mut self) {
unsafe { libc::close(self.0) };
}
}
enum State {
Init(time::Duration),
Running(bool),
}
fn set_timer_value(fd: &RawTimer, timeout: time::Duration) {
#[cfg(not(target_pointer_width = "64"))]
use core::convert::TryFrom;
let it_value = libc::timespec {
tv_sec: timeout.as_secs() as libc::time_t,
#[cfg(target_pointer_width = "64")]
tv_nsec: libc::suseconds_t::from(timeout.subsec_nanos()),
#[cfg(not(target_pointer_width = "64"))]
tv_nsec: libc::suseconds_t::try_from(timeout.subsec_nanos()).unwrap_or(libc::suseconds_t::max_value()),
};
let new_value = sys::itimerspec {
it_interval: unsafe { mem::zeroed() },
it_value,
};
fd.set(new_value);
}
pub struct TimerFd {
fd: tokio::io::PollEvented<RawTimer>,
state: State,
}
impl super::Oneshot for TimerFd {
fn new(timeout: time::Duration) -> Self {
debug_assert!(!(timeout.as_secs() == 0 && timeout.subsec_nanos() == 0), "Zero timeout makes no sense");
Self {
fd: tokio::io::PollEvented::new(RawTimer::new()).expect("To create PollEvented"),
state: State::Init(timeout),
}
}
fn is_ticking(&self) -> bool {
match &self.state {
State::Init(_) => false,
State::Running(is_finished) => !*is_finished,
}
}
fn is_expired(&self) -> bool {
match &self.state {
State::Init(_) => false,
State::Running(is_finished) => *is_finished,
}
}
fn cancel(&mut self) {
self.fd.get_mut().set(unsafe { mem::zeroed() });
}
fn restart(&mut self, new_value: time::Duration, _: &task::Waker) {
debug_assert!(!(new_value.as_secs() == 0 && new_value.subsec_nanos() == 0), "Zero timeout makes no sense");
match &mut self.state {
State::Init(ref mut timeout) => {
*timeout = new_value;
}
State::Running(ref mut is_finished) => {
*is_finished = false;
set_timer_value(&self.fd.get_ref(), new_value);
}
}
}
}
impl Future for TimerFd {
type Output = ();
fn poll(mut self: Pin<&mut Self>, ctx: &mut task::Context) -> task::Poll<Self::Output> {
loop {
self.state = match &self.state {
State::Init(ref timeout) => {
set_timer_value(self.fd.get_ref(), *timeout);
State::Running(false)
}
State::Running(false) => {
match Pin::new(&mut self.fd).poll_read_ready(ctx, mio::Ready::readable()) {
task::Poll::Pending => return task::Poll::Pending,
task::Poll::Ready(ready) => match ready.map(|ready| ready.is_readable()).expect("timerfd cannot be ready") {
true => {
let _ = Pin::new(&mut self.fd).clear_read_ready(ctx, mio::Ready::readable());
match self.fd.get_mut().read() {
0 => return task::Poll::Pending,
_ => return task::Poll::Ready(()),
}
}
false => return task::Poll::Pending,
},
}
}
State::Running(true) => return task::Poll::Ready(()),
}
}
}
}