-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
wayland: implement wp_content_type_manager_v1
- Loading branch information
Showing
7 changed files
with
229 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,116 @@ | ||
use { | ||
crate::{ | ||
client::{Client, ClientError}, | ||
globals::{Global, GlobalName}, | ||
ifs::wp_content_type_v1::WpContentTypeV1, | ||
leaks::Tracker, | ||
object::Object, | ||
utils::buffd::{MsgParser, MsgParserError}, | ||
wire::{wp_content_type_manager_v1::*, WpContentTypeManagerV1Id}, | ||
}, | ||
std::rc::Rc, | ||
thiserror::Error, | ||
}; | ||
|
||
pub struct WpContentTypeManagerV1Global { | ||
pub name: GlobalName, | ||
} | ||
|
||
impl WpContentTypeManagerV1Global { | ||
pub fn new(name: GlobalName) -> Self { | ||
Self { name } | ||
} | ||
|
||
fn bind_( | ||
self: Rc<Self>, | ||
id: WpContentTypeManagerV1Id, | ||
client: &Rc<Client>, | ||
version: u32, | ||
) -> Result<(), WpContentTypeManagerV1Error> { | ||
let mgr = Rc::new(WpContentTypeManagerV1 { | ||
id, | ||
client: client.clone(), | ||
tracker: Default::default(), | ||
version, | ||
}); | ||
track!(client, mgr); | ||
client.add_client_obj(&mgr)?; | ||
Ok(()) | ||
} | ||
} | ||
|
||
global_base!( | ||
WpContentTypeManagerV1Global, | ||
WpContentTypeManagerV1, | ||
WpContentTypeManagerV1Error | ||
); | ||
|
||
simple_add_global!(WpContentTypeManagerV1Global); | ||
|
||
impl Global for WpContentTypeManagerV1Global { | ||
fn singleton(&self) -> bool { | ||
true | ||
} | ||
|
||
fn version(&self) -> u32 { | ||
1 | ||
} | ||
} | ||
|
||
pub struct WpContentTypeManagerV1 { | ||
pub id: WpContentTypeManagerV1Id, | ||
pub client: Rc<Client>, | ||
pub tracker: Tracker<Self>, | ||
pub version: u32, | ||
} | ||
|
||
impl WpContentTypeManagerV1 { | ||
fn destroy(&self, parser: MsgParser<'_, '_>) -> Result<(), WpContentTypeManagerV1Error> { | ||
let _req: Destroy = self.client.parse(self, parser)?; | ||
self.client.remove_obj(self)?; | ||
Ok(()) | ||
} | ||
|
||
fn get_surface_content_type( | ||
&self, | ||
parser: MsgParser<'_, '_>, | ||
) -> Result<(), WpContentTypeManagerV1Error> { | ||
let req: GetSurfaceContentType = self.client.parse(self, parser)?; | ||
let surface = self.client.lookup(req.surface)?; | ||
if surface.has_content_type_manager.replace(true) { | ||
return Err(WpContentTypeManagerV1Error::DuplicateContentType); | ||
} | ||
let device = Rc::new(WpContentTypeV1 { | ||
id: req.id, | ||
client: self.client.clone(), | ||
surface, | ||
tracker: Default::default(), | ||
}); | ||
track!(self.client, device); | ||
self.client.add_client_obj(&device)?; | ||
Ok(()) | ||
} | ||
} | ||
|
||
object_base! { | ||
self = WpContentTypeManagerV1; | ||
|
||
DESTROY => destroy, | ||
GET_SURFACE_CONTENT_TYPE => get_surface_content_type, | ||
} | ||
|
||
impl Object for WpContentTypeManagerV1 {} | ||
|
||
simple_add_obj!(WpContentTypeManagerV1); | ||
|
||
#[derive(Debug, Error)] | ||
pub enum WpContentTypeManagerV1Error { | ||
#[error(transparent)] | ||
ClientError(Box<ClientError>), | ||
#[error("Parsing failed")] | ||
MsgParserError(#[source] Box<MsgParserError>), | ||
#[error("Surface already has a content type object")] | ||
DuplicateContentType, | ||
} | ||
efrom!(WpContentTypeManagerV1Error, ClientError); | ||
efrom!(WpContentTypeManagerV1Error, MsgParserError); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
use { | ||
crate::{ | ||
client::{Client, ClientError}, | ||
ifs::wl_surface::WlSurface, | ||
leaks::Tracker, | ||
object::Object, | ||
utils::buffd::{MsgParser, MsgParserError}, | ||
wire::{wp_content_type_v1::*, WpContentTypeV1Id}, | ||
}, | ||
std::rc::Rc, | ||
thiserror::Error, | ||
}; | ||
|
||
const NONE: u32 = 0; | ||
const PHOTO: u32 = 1; | ||
const VIDEO: u32 = 2; | ||
const GAME: u32 = 3; | ||
|
||
#[derive(Copy, Clone, Debug, PartialEq, Eq, Hash)] | ||
pub enum ContentType { | ||
Photo, | ||
Video, | ||
Game, | ||
} | ||
|
||
pub struct WpContentTypeV1 { | ||
pub id: WpContentTypeV1Id, | ||
pub client: Rc<Client>, | ||
pub surface: Rc<WlSurface>, | ||
pub tracker: Tracker<Self>, | ||
} | ||
|
||
impl WpContentTypeV1 { | ||
fn destroy(&self, parser: MsgParser<'_, '_>) -> Result<(), WpContentTypeV1Error> { | ||
let _req: Destroy = self.client.parse(self, parser)?; | ||
self.surface.has_content_type_manager.set(false); | ||
self.client.remove_obj(self)?; | ||
Ok(()) | ||
} | ||
|
||
fn set_content_type(&self, parser: MsgParser<'_, '_>) -> Result<(), WpContentTypeV1Error> { | ||
let req: SetContentType = self.client.parse(self, parser)?; | ||
if req.content_type == NONE { | ||
self.surface.set_content_type(None); | ||
return Ok(()); | ||
} | ||
let ct = match req.content_type { | ||
PHOTO => ContentType::Photo, | ||
VIDEO => ContentType::Video, | ||
GAME => ContentType::Game, | ||
_ => return Err(WpContentTypeV1Error::UnknownContentType(req.content_type)), | ||
}; | ||
self.surface.set_content_type(Some(ct)); | ||
Ok(()) | ||
} | ||
} | ||
|
||
object_base! { | ||
self = WpContentTypeV1; | ||
|
||
DESTROY => destroy, | ||
SET_CONTENT_TYPE => set_content_type, | ||
} | ||
|
||
impl Object for WpContentTypeV1 {} | ||
|
||
simple_add_obj!(WpContentTypeV1); | ||
|
||
#[derive(Debug, Error)] | ||
pub enum WpContentTypeV1Error { | ||
#[error(transparent)] | ||
ClientError(Box<ClientError>), | ||
#[error("Parsing failed")] | ||
MsgParserError(#[source] Box<MsgParserError>), | ||
#[error("Content type {0} is unknown")] | ||
UnknownContentType(u32), | ||
} | ||
efrom!(WpContentTypeV1Error, ClientError); | ||
efrom!(WpContentTypeV1Error, MsgParserError); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# requests | ||
|
||
msg destroy = 0 { | ||
} | ||
|
||
msg get_surface_content_type = 1 { | ||
id: id(wp_content_type_v1), | ||
surface: id(wl_surface), | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# requests | ||
|
||
msg destroy = 0 { | ||
} | ||
|
||
msg set_content_type = 1 { | ||
content_type: u32, | ||
} |