1
0
Fork 0
forked from wry/wry
wry/src/ifs/jay_idle.rs
2024-02-06 12:05:03 +01:00

79 lines
2.1 KiB
Rust

use {
crate::{
client::{Client, ClientError},
ifs::wl_surface::zwp_idle_inhibitor_v1::ZwpIdleInhibitorV1,
leaks::Tracker,
object::Object,
utils::buffd::{MsgParser, MsgParserError},
wire::{jay_idle::*, JayIdleId},
},
std::{rc::Rc, time::Duration},
thiserror::Error,
};
pub struct JayIdle {
pub id: JayIdleId,
pub client: Rc<Client>,
pub tracker: Tracker<Self>,
}
impl JayIdle {
fn send_interval(&self) {
let to = self.client.state.idle.timeout.get();
self.client.event(Interval {
self_id: self.id,
interval: to.as_secs(),
});
}
fn send_inhibitor(&self, surface: &ZwpIdleInhibitorV1) {
let surface = &surface.surface;
self.client.event(Inhibitor {
self_id: self.id,
surface: surface.id,
client_id: surface.client.id.raw(),
pid: surface.client.pid_info.pid as _,
comm: &surface.client.pid_info.comm,
});
}
fn get_status(&self, parser: MsgParser<'_, '_>) -> Result<(), JayIdleError> {
let _req: GetStatus = self.client.parse(self, parser)?;
self.send_interval();
{
let inhibitors = self.client.state.idle.inhibitors.lock();
for inhibitor in inhibitors.values() {
self.send_inhibitor(inhibitor);
}
}
Ok(())
}
fn set_interval(&self, parser: MsgParser<'_, '_>) -> Result<(), JayIdleError> {
let req: SetInterval = self.client.parse(self, parser)?;
let interval = Duration::from_secs(req.interval);
self.client.state.idle.set_timeout(interval);
Ok(())
}
}
object_base! {
self = JayIdle;
GET_STATUS => get_status,
SET_INTERVAL => set_interval,
}
impl Object for JayIdle {}
simple_add_obj!(JayIdle);
#[derive(Debug, Error)]
pub enum JayIdleError {
#[error("Parsing failed")]
MsgParserError(#[source] Box<MsgParserError>),
#[error(transparent)]
ClientError(Box<ClientError>),
}
efrom!(JayIdleError, ClientError);
efrom!(JayIdleError, MsgParserError);