255 lines
7.2 KiB
Rust
255 lines
7.2 KiB
Rust
use {
|
|
crate::{
|
|
ifs::jay_compositor::Cap,
|
|
object::Version,
|
|
utils::clonecell::CloneCell,
|
|
wire::{JayCompositorId, jay_compositor::*},
|
|
wl_usr::{
|
|
UsrCon,
|
|
usr_ifs::{
|
|
usr_jay_ei_session_builder::UsrJayEiSessionBuilder, usr_jay_output::UsrJayOutput,
|
|
usr_jay_pointer::UsrJayPointer, usr_jay_render_ctx::UsrJayRenderCtx,
|
|
usr_jay_screencast::UsrJayScreencast,
|
|
usr_jay_select_toplevel::UsrJaySelectToplevel,
|
|
usr_jay_select_workspace::UsrJaySelectWorkspace,
|
|
usr_jay_sync_file_surface::UsrJaySyncFileSurface,
|
|
usr_jay_workspace_watcher::UsrJayWorkspaceWatcher, usr_wl_output::UsrWlOutput,
|
|
usr_wl_seat::UsrWlSeat, usr_wl_surface::UsrWlSurface,
|
|
},
|
|
usr_object::UsrObject,
|
|
},
|
|
},
|
|
std::{cell::Cell, convert::Infallible, rc::Rc},
|
|
};
|
|
|
|
pub struct UsrJayCompositor {
|
|
pub id: JayCompositorId,
|
|
pub con: Rc<UsrCon>,
|
|
pub owner: CloneCell<Option<Rc<dyn UsrJayCompositorOwner>>>,
|
|
pub caps: UsrJayCompositorCaps,
|
|
pub version: Version,
|
|
}
|
|
|
|
#[derive(Default)]
|
|
pub struct UsrJayCompositorCaps {
|
|
pub window_capture: Cell<bool>,
|
|
pub select_workspace: Cell<bool>,
|
|
}
|
|
|
|
pub trait UsrJayCompositorOwner {
|
|
fn client_id(&self, ev: ClientId) {
|
|
let _ = ev;
|
|
}
|
|
|
|
fn seat(&self, ev: Seat) {
|
|
let _ = ev;
|
|
}
|
|
}
|
|
|
|
impl UsrJayCompositor {
|
|
pub fn get_render_context(&self) -> Rc<UsrJayRenderCtx> {
|
|
let rc = Rc::new(UsrJayRenderCtx {
|
|
id: self.con.id(),
|
|
con: self.con.clone(),
|
|
owner: Default::default(),
|
|
version: self.version,
|
|
formats: Default::default(),
|
|
});
|
|
self.con.request(GetRenderCtx {
|
|
self_id: self.id,
|
|
id: rc.id,
|
|
});
|
|
self.con.add_object(rc.clone());
|
|
rc
|
|
}
|
|
|
|
pub fn create_screencast(&self) -> Rc<UsrJayScreencast> {
|
|
let sc = Rc::new(UsrJayScreencast {
|
|
id: self.con.id(),
|
|
con: self.con.clone(),
|
|
owner: Default::default(),
|
|
version: self.version,
|
|
pending_buffers: Default::default(),
|
|
pending_planes: Default::default(),
|
|
pending_config: Default::default(),
|
|
});
|
|
self.con.request(CreateScreencast {
|
|
self_id: self.id,
|
|
id: sc.id,
|
|
});
|
|
self.con.add_object(sc.clone());
|
|
sc
|
|
}
|
|
|
|
pub fn get_output(&self, output: &UsrWlOutput) -> Rc<UsrJayOutput> {
|
|
let jo = Rc::new(UsrJayOutput {
|
|
id: self.con.id(),
|
|
con: self.con.clone(),
|
|
owner: Default::default(),
|
|
version: self.version,
|
|
});
|
|
self.con.request(GetOutput {
|
|
self_id: self.id,
|
|
id: jo.id,
|
|
output: output.id,
|
|
});
|
|
self.con.add_object(jo.clone());
|
|
jo
|
|
}
|
|
|
|
pub fn watch_workspaces(&self) -> Rc<UsrJayWorkspaceWatcher> {
|
|
let ww = Rc::new(UsrJayWorkspaceWatcher {
|
|
id: self.con.id(),
|
|
con: self.con.clone(),
|
|
owner: Default::default(),
|
|
version: self.version,
|
|
});
|
|
self.con.request(WatchWorkspaces {
|
|
self_id: self.id,
|
|
id: ww.id,
|
|
});
|
|
self.con.add_object(ww.clone());
|
|
ww
|
|
}
|
|
|
|
pub fn get_pointer(&self, seat: &UsrWlSeat) -> Rc<UsrJayPointer> {
|
|
let jp = Rc::new(UsrJayPointer {
|
|
id: self.con.id(),
|
|
con: self.con.clone(),
|
|
version: self.version,
|
|
});
|
|
self.con.add_object(jp.clone());
|
|
self.con.request(GetPointer {
|
|
self_id: self.id,
|
|
id: jp.id,
|
|
seat: seat.id,
|
|
});
|
|
jp
|
|
}
|
|
|
|
pub fn select_toplevel(&self, seat: &UsrWlSeat) -> Rc<UsrJaySelectToplevel> {
|
|
let sc = Rc::new(UsrJaySelectToplevel {
|
|
id: self.con.id(),
|
|
con: self.con.clone(),
|
|
owner: Default::default(),
|
|
version: self.version,
|
|
});
|
|
self.con.request(SelectToplevel {
|
|
self_id: self.id,
|
|
id: sc.id,
|
|
seat: seat.id,
|
|
});
|
|
self.con.add_object(sc.clone());
|
|
sc
|
|
}
|
|
|
|
pub fn get_toplevel(&self, id: &str) -> Rc<UsrJaySelectToplevel> {
|
|
let sc = Rc::new(UsrJaySelectToplevel {
|
|
id: self.con.id(),
|
|
con: self.con.clone(),
|
|
owner: Default::default(),
|
|
version: self.version,
|
|
});
|
|
self.con.request(GetToplevel {
|
|
self_id: self.id,
|
|
id: sc.id,
|
|
toplevel_id: id,
|
|
});
|
|
self.con.add_object(sc.clone());
|
|
sc
|
|
}
|
|
|
|
pub fn select_workspace(&self, seat: &UsrWlSeat) -> Rc<UsrJaySelectWorkspace> {
|
|
let sc = Rc::new(UsrJaySelectWorkspace {
|
|
id: self.con.id(),
|
|
con: self.con.clone(),
|
|
owner: Default::default(),
|
|
version: self.version,
|
|
});
|
|
self.con.request(SelectWorkspace {
|
|
self_id: self.id,
|
|
id: sc.id,
|
|
seat: seat.id,
|
|
});
|
|
self.con.add_object(sc.clone());
|
|
sc
|
|
}
|
|
|
|
pub fn create_ei_session(&self) -> Rc<UsrJayEiSessionBuilder> {
|
|
let obj = Rc::new(UsrJayEiSessionBuilder {
|
|
id: self.con.id(),
|
|
con: self.con.clone(),
|
|
version: self.version,
|
|
});
|
|
self.con.request(CreateEiSession {
|
|
self_id: self.id,
|
|
id: obj.id,
|
|
});
|
|
self.con.add_object(obj.clone());
|
|
obj
|
|
}
|
|
|
|
pub fn get_sync_file_surface(&self, surface: &UsrWlSurface) -> Rc<UsrJaySyncFileSurface> {
|
|
let obj = Rc::new(UsrJaySyncFileSurface {
|
|
id: self.con.id(),
|
|
con: self.con.clone(),
|
|
version: self.version,
|
|
});
|
|
self.con.request(GetSyncFileSurface {
|
|
self_id: self.id,
|
|
id: obj.id,
|
|
surface: surface.id,
|
|
});
|
|
self.con.add_object(obj.clone());
|
|
obj
|
|
}
|
|
}
|
|
|
|
impl JayCompositorEventHandler for UsrJayCompositor {
|
|
type Error = Infallible;
|
|
|
|
fn client_id(&self, ev: ClientId, _slf: &Rc<Self>) -> Result<(), Self::Error> {
|
|
if let Some(owner) = self.owner.get() {
|
|
owner.client_id(ev);
|
|
}
|
|
Ok(())
|
|
}
|
|
|
|
fn seat(&self, ev: Seat<'_>, _slf: &Rc<Self>) -> Result<(), Self::Error> {
|
|
if let Some(owner) = self.owner.get() {
|
|
owner.seat(ev);
|
|
}
|
|
Ok(())
|
|
}
|
|
|
|
fn capabilities(&self, ev: Capabilities<'_>, _slf: &Rc<Self>) -> Result<(), Self::Error> {
|
|
for &cap in ev.cap {
|
|
match cap {
|
|
Cap::NONE => {}
|
|
Cap::WINDOW_CAPTURE => self.caps.window_capture.set(true),
|
|
Cap::SELECT_WORKSPACE => self.caps.select_workspace.set(true),
|
|
_ => {}
|
|
}
|
|
}
|
|
Ok(())
|
|
}
|
|
|
|
fn pid(&self, _ev: Pid, _slf: &Rc<Self>) -> Result<(), Self::Error> {
|
|
Ok(())
|
|
}
|
|
}
|
|
|
|
usr_object_base! {
|
|
self = UsrJayCompositor = JayCompositor;
|
|
version = self.version;
|
|
}
|
|
|
|
impl UsrObject for UsrJayCompositor {
|
|
fn destroy(&self) {
|
|
self.con.request(Destroy { self_id: self.id });
|
|
}
|
|
|
|
fn break_loops(&self) {
|
|
self.owner.take();
|
|
}
|
|
}
|