use std::time::Duration;
mod error;
pub use error::Error;
#[cfg(all(target_os = "linux", not(feature = "dbus")))]
mod x11_impl;
#[cfg(all(target_os = "linux", feature = "dbus"))]
mod dbus_impl;
#[cfg(target_os = "windows")]
mod windows_impl;
#[cfg(target_os = "macos")]
mod quartz;
pub struct UserIdle {
seconds: u64
}
impl UserIdle {
pub fn get_time() -> Result<Self, Error> {
#[cfg(all(target_os = "linux", not(feature = "dbus")))]
let seconds = x11_impl::get_idle_time()?;
#[cfg(all(target_os = "linux", feature = "dbus"))]
let seconds = dbus_impl::get_idle_time()?;
#[cfg(target_os = "windows")]
let seconds = windows::get_idle_time()?;
#[cfg(target_os = "macos")]
let seconds = quartz::get_idle_time()?;
Ok(UserIdle {
seconds: seconds
})
}
pub fn as_seconds(&self) -> u64 {
self.seconds
}
pub fn as_minutes(&self) -> u64 {
self.as_seconds() / 60
}
pub fn as_hours(&self) -> u64 {
self.as_minutes() / 60
}
pub fn as_days(&self) -> u64 {
self.as_hours() / 24
}
pub fn as_weeks(&self) -> u64 {
self.as_days() / 7
}
pub fn as_months(&self) -> u64 {
self.as_weeks() / 4
}
pub fn as_years(&self) -> u64 {
self.as_months() / 12
}
pub fn duration(&self) -> Duration {
Duration::from_secs(self.seconds)
}
}