Skip to content

Commit

Permalink
WIP cosmic-screencopy-v2
Browse files Browse the repository at this point in the history
  • Loading branch information
ids1024 committed Mar 19, 2024
1 parent b554dc3 commit 39f51c8
Show file tree
Hide file tree
Showing 6 changed files with 149 additions and 112 deletions.
5 changes: 3 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,3 +44,7 @@ opt-level = 1
# [patch."https://github.com/pop-os/libcosmic"]
# libcosmic = { path = "../libcosmic" }
# cosmic-config = { path = "../libcosmic/cosmic-config" }

[patch."https://github.com/pop-os/cosmic-protocols"]
cosmic-protocols = { git = "https://github.com/pop-os/cosmic-protocols//", branch = "ext-screencopy" }
cosmic-client-toolkit = { git = "https://github.com/pop-os/cosmic-protocols//", branch = "ext-screencopy" }
82 changes: 36 additions & 46 deletions src/wayland/buffer.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
use cctk::{
cosmic_protocols::screencopy::v1::client::zcosmic_screencopy_session_v1::BufferType,
screencopy::BufferInfo,
screencopy::Formats,
wayland_client::{
protocol::{wl_buffer, wl_shm, wl_shm_pool},
Connection, Dispatch, QueueHandle, WEnum,
Expand Down Expand Up @@ -68,34 +67,30 @@ fn create_memfile() -> rustix::io::Result<OwnedFd> {
pub struct Buffer {
pub backing: Arc<BufferSource>,
pub buffer: wl_buffer::WlBuffer,
pub buffer_info: BufferInfo,
node: Option<PathBuf>,
pub size: (u32, u32),
}

impl AppData {
fn create_shm_buffer(&self, buffer_info: &BufferInfo) -> Buffer {
fn create_shm_buffer(&self, format: u32, (width, height): (u32, u32)) -> Buffer {
let fd = create_memfile().unwrap(); // XXX?
rustix::fs::ftruncate(&fd, buffer_info.stride as u64 * buffer_info.height as u64).unwrap();
rustix::fs::ftruncate(&fd, width as u64 * height as u64 * 4).unwrap();

let pool = self.shm_state.wl_shm().create_pool(
fd.as_fd(),
buffer_info.stride as i32 * buffer_info.height as i32,
width as i32 * height as i32 * 4,
&self.qh,
(),
);

pool.destroy();

// XXX
let fd = rustix::fs::memfd_create("shm-buffer", rustix::fs::MemfdFlags::CLOEXEC).unwrap();
rustix::fs::ftruncate(&fd, buffer_info.stride as u64 * buffer_info.height as u64).unwrap();

let format = wl_shm::Format::try_from(buffer_info.format).unwrap();
let format = wl_shm::Format::try_from(format).unwrap();
let buffer = pool.create_buffer(
0,
buffer_info.width as i32,
buffer_info.height as i32,
buffer_info.stride as i32,
width as i32,
height as i32,
width as i32 * 4,
format,
&self.qh,
(),
Expand All @@ -106,23 +101,24 @@ impl AppData {
Shmbuf {
fd,
offset: 0,
width: buffer_info.width as i32,
height: buffer_info.height as i32,
stride: buffer_info.stride as i32,
width: width as i32,
height: height as i32,
stride: width as i32 * 4,
format,
}
.into(),
),
buffer,
buffer_info: buffer_info.clone(),
node: None,
size: (width, height),
}
}

#[allow(dead_code)]
fn create_gbm_buffer(
&self,
buffer_info: &BufferInfo,
format: u32,
(width, height): (u32, u32),
needs_linear: bool,
) -> anyhow::Result<Option<Buffer>> {
let (Some((node, gbm)), Some(feedback)) =
Expand All @@ -138,7 +134,7 @@ impl AppData {
.flat_map(|x| &x.formats)
.filter_map(|x| formats.get(*x as usize))
.filter(|x| {
x.format == buffer_info.format
x.format == format
&& (!needs_linear || x.modifier == u64::from(gbm::Modifier::Linear))
})
.filter_map(|x| gbm::Modifier::try_from(x.modifier).ok())
Expand All @@ -147,21 +143,21 @@ impl AppData {
if modifiers.is_empty() {
return Ok(None);
};
let format = gbm::Format::try_from(buffer_info.format)?;
let gbm_format = gbm::Format::try_from(format)?;
//dbg!(format, modifiers);
let bo = if !modifiers.iter().all(|x| *x == gbm::Modifier::Invalid) {
gbm.create_buffer_object_with_modifiers::<()>(
buffer_info.width,
buffer_info.height,
format,
width,
height,
gbm_format,
modifiers.iter().copied(),
)?
} else {
// TODO make sure this isn't used across different GPUs
gbm.create_buffer_object::<()>(
buffer_info.width,
buffer_info.height,
format,
width,
height,
gbm_format,
gbm::BufferObjectFlags::empty(),
)?
};
Expand Down Expand Up @@ -190,9 +186,9 @@ impl AppData {
}
let buffer = params
.create_immed(
buffer_info.width as i32,
buffer_info.height as i32,
buffer_info.format,
width as i32,
height as i32,
format,
zwp_linux_buffer_params_v1::Flags::empty(),
&self.qh,
)
Expand All @@ -201,29 +197,26 @@ impl AppData {
Ok(Some(Buffer {
backing: Arc::new(
Dmabuf {
width: buffer_info.width as i32,
height: buffer_info.height as i32,
width: width as i32,
height: height as i32,
planes,
format: buffer_info.format,
format,
modifier: modifier.into(),
}
.into(),
),
buffer,
buffer_info: buffer_info.clone(),
node: Some(node.clone()),
size: (width, height),
}))
}

pub fn create_buffer(&self, buffer_infos: &[BufferInfo]) -> Buffer {
pub fn create_buffer(&self, formats: &Formats) -> Buffer {
// XXX Handle other formats?
let format = wl_shm::Format::Abgr8888.into();
let format = u32::from(wl_shm::Format::Abgr8888);

if let Some(buffer_info) = buffer_infos
.iter()
.find(|x| x.type_ == WEnum::Value(BufferType::Dmabuf) && x.format == format)
{
match self.create_gbm_buffer(buffer_info, false) {
if let Some((_, modifiers)) = formats.dmabuf_formats.iter().find(|(f, _)| *f == format) {
match self.create_gbm_buffer(format, formats.buffer_size, false) {
Ok(Some(buffer)) => {
return buffer;
}
Expand All @@ -234,11 +227,8 @@ impl AppData {

// Fallback to shm buffer
// Assume format is already known to be valid
let buffer_info = buffer_infos
.iter()
.find(|x| x.type_ == WEnum::Value(BufferType::WlShm) && x.format == format)
.unwrap();
self.create_shm_buffer(buffer_info)
assert!(formats.shm_formats.contains(&format));
self.create_shm_buffer(format, formats.buffer_size)
}
}

Expand Down
13 changes: 5 additions & 8 deletions src/wayland/capture.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
use cctk::{
cosmic_protocols::{
screencopy::v1::client::{zcosmic_screencopy_manager_v1, zcosmic_screencopy_session_v1},
screencopy::v2::client::{zcosmic_screencopy_manager_v2, zcosmic_screencopy_session_v2},
toplevel_info::v1::client::zcosmic_toplevel_handle_v1,
workspace::v1::client::zcosmic_workspace_handle_v1,
},
screencopy::ScreencopyState,
wayland_client::{protocol::wl_output, Proxy, QueueHandle},
};
use cosmic::cctk;
Expand Down Expand Up @@ -43,20 +44,16 @@ impl Capture {
// Returns `None` if capture is destroyed
// (or if `session` wasn't created with `SessionData`)
pub fn for_session(
session: &zcosmic_screencopy_session_v1::ZcosmicScreencopySessionV1,
session: &zcosmic_screencopy_session_v2::ZcosmicScreencopySessionV2,
) -> Option<Arc<Self>> {
session.data::<SessionData>()?.capture.upgrade()
}

// Start capturing frames
pub fn start(
self: &Arc<Self>,
manager: &zcosmic_screencopy_manager_v1::ZcosmicScreencopyManagerV1,
qh: &QueueHandle<AppData>,
) {
pub fn start(self: &Arc<Self>, screencopy_state: &ScreencopyState, qh: &QueueHandle<AppData>) {
let mut session = self.session.lock().unwrap();
if session.is_none() {
*session = Some(ScreencopySession::new(self, manager, qh));
*session = Some(ScreencopySession::new(self, screencopy_state, qh));
}
}

Expand Down
4 changes: 2 additions & 2 deletions src/wayland/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ impl AppData {
for (source, capture) in self.captures.borrow_mut().iter_mut() {
let matches = self.matches_capture_filter(source);
if matches {
capture.start(&self.screencopy_state.screencopy_manager, &self.qh);
capture.start(&self.screencopy_state, &self.qh);
} else {
capture.stop();
}
Expand All @@ -167,7 +167,7 @@ impl AppData {
let matches = self.matches_capture_filter(&source);
let capture = Capture::new(source);
if matches {
capture.start(&self.screencopy_state.screencopy_manager, &self.qh);
capture.start(&self.screencopy_state, &self.qh);
}
capture
});
Expand Down
Loading

0 comments on commit 39f51c8

Please sign in to comment.