1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
use std::sync::atomic::Ordering;
use std::sync::{Arc, Mutex};
use downcast::Downcast;
use wayland_commons::map::ObjectMap;
use wayland_commons::wire::Message;
use wayland_commons::MessageGroup;
use {Interface, NewProxy, Proxy};
mod connection;
mod display;
mod proxy;
mod queues;
pub(crate) use self::display::DisplayInner;
pub(crate) use self::proxy::{NewProxyInner, ProxyInner};
pub(crate) use self::queues::EventQueueInner;
pub struct ProxyMap {
map: Arc<Mutex<ObjectMap<self::proxy::ObjectMeta>>>,
connection: Arc<Mutex<self::connection::Connection>>,
}
impl ProxyMap {
pub(crate) fn make(
map: Arc<Mutex<ObjectMap<self::proxy::ObjectMeta>>>,
connection: Arc<Mutex<self::connection::Connection>>,
) -> ProxyMap {
ProxyMap { map, connection }
}
pub fn get<I: Interface>(&mut self, id: u32) -> Option<Proxy<I>> {
ProxyInner::from_id(id, self.map.clone(), self.connection.clone()).map(|object| {
debug_assert!(I::NAME == "<anonymous>" || object.is_interface::<I>());
Proxy::wrap(object)
})
}
pub fn get_new<I: Interface>(&mut self, id: u32) -> Option<NewProxy<I>> {
debug_assert!(self
.map
.lock()
.unwrap()
.find(id)
.map(|obj| obj.is_interface::<I>())
.unwrap_or(true));
NewProxyInner::from_id(id, self.map.clone(), self.connection.clone())
.map(|object| NewProxy::wrap(object))
}
}
pub(crate) trait Dispatcher: Downcast + Send {
fn dispatch(&mut self, msg: Message, proxy: ProxyInner, map: &mut ProxyMap) -> Result<(), ()>;
}
mod dispatcher_impl {
#![allow(dead_code)]
use super::Dispatcher;
impl_downcast!(Dispatcher);
}
pub(crate) struct ImplDispatcher<I: Interface, F: FnMut(I::Event, Proxy<I>) + 'static> {
_i: ::std::marker::PhantomData<&'static I>,
implementation: F,
}
unsafe impl<I, F> Send for ImplDispatcher<I, F>
where
I: Interface,
F: FnMut(I::Event, Proxy<I>) + 'static,
I::Event: MessageGroup<Map = ProxyMap>,
{
}
impl<I, F> Dispatcher for ImplDispatcher<I, F>
where
I: Interface,
F: FnMut(I::Event, Proxy<I>) + 'static,
I::Event: MessageGroup<Map = ProxyMap>,
{
fn dispatch(&mut self, msg: Message, proxy: ProxyInner, map: &mut ProxyMap) -> Result<(), ()> {
if ::std::env::var_os("WAYLAND_DEBUG").is_some() {
println!(
" <- {}@{}: {} {:?}",
proxy.object.interface, proxy.id, proxy.object.events[msg.opcode as usize].name, msg.args
);
}
let message = I::Event::from_raw(msg, map)?;
if message.is_destructor() {
proxy.object.meta.alive.store(false, Ordering::Release);
{
let mut map = proxy.map.lock().unwrap();
let server_destroyed = map
.with(proxy.id, |obj| {
obj.meta.client_destroyed = true;
obj.meta.server_destroyed
})
.unwrap_or(false);
if server_destroyed {
map.remove(proxy.id);
}
}
(self.implementation)(message, Proxy::<I>::wrap(proxy.clone()));
} else {
(self.implementation)(message, Proxy::<I>::wrap(proxy));
}
Ok(())
}
}
pub(crate) unsafe fn make_dispatcher<I, F>(implementation: F) -> Arc<Mutex<Dispatcher + Send>>
where
I: Interface,
F: FnMut(I::Event, Proxy<I>) + 'static,
I::Event: MessageGroup<Map = ProxyMap>,
{
Arc::new(Mutex::new(ImplDispatcher {
_i: ::std::marker::PhantomData,
implementation,
}))
}
pub(crate) fn default_dispatcher() -> Arc<Mutex<Dispatcher + Send>> {
struct DefaultDisp;
impl Dispatcher for DefaultDisp {
fn dispatch(&mut self, _msg: Message, proxy: ProxyInner, _map: &mut ProxyMap) -> Result<(), ()> {
eprintln!(
"[wayland-client] Received an event for unimplemented object {}@{}.",
proxy.object.interface, proxy.id
);
Err(())
}
}
Arc::new(Mutex::new(DefaultDisp))
}