desktop: Refactor output_{enter, leave} into utils

This commit is contained in:
Victoria Brekenfeld 2022-01-19 20:41:34 +01:00
parent 3b99a2c9dd
commit 98da5fe467
3 changed files with 118 additions and 109 deletions

View File

@ -103,16 +103,7 @@ impl LayerMap {
(), (),
|_, _, _| TraversalAction::DoChildren(()), |_, _, _| TraversalAction::DoChildren(()),
|wl_surface, _, _| { |wl_surface, _, _| {
if self.surfaces.contains(wl_surface) { output_leave(&output, &mut self.surfaces, wl_surface, &self.logger);
slog::trace!(
self.logger,
"surface ({:?}) leaving output {:?}",
wl_surface,
output.name()
);
output.leave(wl_surface);
self.surfaces.retain(|s| s != wl_surface);
}
}, },
|_, _, _| true, |_, _, _| true,
); );
@ -203,16 +194,7 @@ impl LayerMap {
(), (),
|_, _, _| TraversalAction::DoChildren(()), |_, _, _| TraversalAction::DoChildren(()),
|wl_surface, _, _| { |wl_surface, _, _| {
if !surfaces_ref.contains(wl_surface) { output_enter(&output, surfaces_ref, wl_surface, logger_ref);
slog::trace!(
logger_ref,
"surface ({:?}) entering output {:?}",
wl_surface,
output.name()
);
output.enter(wl_surface);
surfaces_ref.push(wl_surface.clone());
}
}, },
|_, _, _| true, |_, _, _| true,
); );

View File

@ -2,23 +2,22 @@
//! rendering helpers to add custom elements or different clients to a space. //! rendering helpers to add custom elements or different clients to a space.
use crate::{ use crate::{
backend::renderer::{utils::SurfaceState, Frame, ImportAll, Renderer}, backend::renderer::{Frame, ImportAll, Renderer},
desktop::{ desktop::{
layer::{layer_map_for_output, LayerSurface}, layer::{layer_map_for_output, LayerSurface},
popup::PopupManager,
utils::{output_leave, output_update},
window::Window, window::Window,
}, },
utils::{Logical, Point, Rectangle, Transform}, utils::{Logical, Point, Rectangle, Transform},
wayland::{ wayland::{
compositor::{ compositor::{get_parent, is_sync_subsurface},
get_parent, is_sync_subsurface, with_surface_tree_downward, SubsurfaceCachedState,
TraversalAction,
},
output::Output, output::Output,
shell::wlr_layer::Layer as WlrLayer, shell::wlr_layer::Layer as WlrLayer,
}, },
}; };
use indexmap::{IndexMap, IndexSet}; use indexmap::{IndexMap, IndexSet};
use std::{cell::RefCell, collections::VecDeque, fmt}; use std::{collections::VecDeque, fmt};
use wayland_server::protocol::wl_surface::WlSurface; use wayland_server::protocol::wl_surface::WlSurface;
mod element; mod element;
@ -326,97 +325,39 @@ impl Space {
// the output. // the output.
if !output_geometry.overlaps(bbox) { if !output_geometry.overlaps(bbox) {
if let Some(surface) = kind.get_surface() { if let Some(surface) = kind.get_surface() {
with_surface_tree_downward( output_leave(output, &mut output_state.surfaces, surface, &self.logger);
surface,
(),
|_, _, _| TraversalAction::DoChildren(()),
|wl_surface, _, _| {
if output_state.surfaces.contains(wl_surface) {
slog::trace!(
self.logger,
"surface ({:?}) leaving output {:?}",
wl_surface,
output.name()
);
output.leave(wl_surface);
output_state.surfaces.retain(|s| s != wl_surface);
}
},
|_, _, _| true,
)
} }
continue; continue;
} }
if let Some(surface) = kind.get_surface() { if let Some(surface) = kind.get_surface() {
with_surface_tree_downward( output_update(
output,
output_geometry,
&mut output_state.surfaces,
surface, surface,
window_loc(window, &self.id), window_loc(window, &self.id),
|_, states, location| { &self.logger,
let mut location = *location; );
let data = states.data_map.get::<RefCell<SurfaceState>>();
if data.is_some() { for (popup, location) in PopupManager::popups_for_surface(surface)
if states.role == Some("subsurface") { .ok()
let current = states.cached_state.current::<SubsurfaceCachedState>(); .into_iter()
location += current.location; .flatten()
} {
if let Some(surface) = popup.get_surface() {
TraversalAction::DoChildren(location) let location = window_loc(window, &self.id) + window.geometry().loc + location
} else { - popup.geometry().loc;
// If the parent surface is unmapped, then the child surfaces are hidden as output_update(
// well, no need to consider them here. output,
TraversalAction::SkipChildren output_geometry,
} &mut output_state.surfaces,
}, surface,
|wl_surface, states, &loc| { location,
let data = states.data_map.get::<RefCell<SurfaceState>>(); &self.logger,
);
if let Some(size) = data.and_then(|d| d.borrow().surface_size()) { }
let surface_rectangle = Rectangle { loc, size }; }
if output_geometry.overlaps(surface_rectangle) {
// We found a matching output, check if we already sent enter
if !output_state.surfaces.contains(wl_surface) {
slog::trace!(
self.logger,
"surface ({:?}) entering output {:?}",
wl_surface,
output.name()
);
output.enter(wl_surface);
output_state.surfaces.push(wl_surface.clone());
}
} else {
// Surface does not match output, if we sent enter earlier
// we should now send leave
if output_state.surfaces.contains(wl_surface) {
slog::trace!(
self.logger,
"surface ({:?}) leaving output {:?}",
wl_surface,
output.name()
);
output.leave(wl_surface);
output_state.surfaces.retain(|s| s != wl_surface);
}
}
} else {
// Maybe the the surface got unmapped, send leave on output
if output_state.surfaces.contains(wl_surface) {
slog::trace!(
self.logger,
"surface ({:?}) leaving output {:?}",
wl_surface,
output.name()
);
output.leave(wl_surface);
output_state.surfaces.retain(|s| s != wl_surface);
}
}
},
|_, _, _| true,
)
} }
} }
} }

View File

@ -231,3 +231,89 @@ pub fn send_frames_surface_tree(surface: &wl_surface::WlSurface, time: u32) {
|_, _, &()| true, |_, _, &()| true,
); );
} }
pub(crate) fn output_update(
output: &Output,
output_geometry: Rectangle<i32, Logical>,
surface_list: &mut Vec<wl_surface::WlSurface>,
surface: &wl_surface::WlSurface,
location: Point<i32, Logical>,
logger: &slog::Logger,
) {
with_surface_tree_downward(
surface,
location,
|_, states, location| {
let mut location = *location;
let data = states.data_map.get::<RefCell<SurfaceState>>();
if data.is_some() {
if states.role == Some("subsurface") {
let current = states.cached_state.current::<SubsurfaceCachedState>();
location += current.location;
}
TraversalAction::DoChildren(location)
} else {
// If the parent surface is unmapped, then the child surfaces are hidden as
// well, no need to consider them here.
TraversalAction::SkipChildren
}
},
|wl_surface, states, &loc| {
let data = states.data_map.get::<RefCell<SurfaceState>>();
if let Some(size) = data.and_then(|d| d.borrow().surface_size()) {
let surface_rectangle = Rectangle { loc, size };
if output_geometry.overlaps(surface_rectangle) {
// We found a matching output, check if we already sent enter
output_enter(output, surface_list, wl_surface, logger);
} else {
// Surface does not match output, if we sent enter earlier
// we should now send leave
output_leave(output, surface_list, wl_surface, logger);
}
} else {
// Maybe the the surface got unmapped, send leave on output
output_leave(output, surface_list, wl_surface, logger);
}
},
|_, _, _| true,
);
}
pub(crate) fn output_enter(
output: &Output,
surface_list: &mut Vec<wl_surface::WlSurface>,
surface: &wl_surface::WlSurface,
logger: &slog::Logger,
) {
if !surface_list.contains(surface) {
slog::debug!(
logger,
"surface ({:?}) entering output {:?}",
surface,
output.name()
);
output.enter(surface);
surface_list.push(surface.clone());
}
}
pub(crate) fn output_leave(
output: &Output,
surface_list: &mut Vec<wl_surface::WlSurface>,
surface: &wl_surface::WlSurface,
logger: &slog::Logger,
) {
if surface_list.contains(surface) {
slog::debug!(
logger,
"surface ({:?}) leaving output {:?}",
surface,
output.name()
);
output.leave(surface);
surface_list.retain(|s| s != surface);
}
}