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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
use std::{
cell::RefCell,
fmt::{self, Debug, Formatter},
rc::{Rc, Weak},
sync::Mutex,
};
use bitflags::bitflags;
use wayland_client::{
protocol::{wl_registry, wl_seat},
Attached, DispatchData, Main,
};
pub mod keyboard;
pub mod pointer;
type SeatCallback = dyn FnMut(Attached<wl_seat::WlSeat>, &SeatData, DispatchData) + 'static;
#[derive(Clone)]
pub struct SeatData {
pub name: String,
pub has_pointer: bool,
pub has_keyboard: bool,
pub has_touch: bool,
pub defunct: bool,
state: SeatDataState,
}
bitflags! {
struct SeatDataState: u8 {
const NEW = 0b00000000;
const GOT_NAME = 0b00000001;
const GOT_CAPABILITIES = 0b00000010;
const READY = Self::GOT_NAME.bits | Self::GOT_CAPABILITIES.bits;
}
}
impl Debug for SeatData {
fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
f.debug_struct("SeatData")
.field("name", &self.name)
.field("has_pointer", &self.has_pointer)
.field("has_keyboard", &self.has_keyboard)
.field("has_touch", &self.has_touch)
.field("defunct", &self.defunct)
.finish()
}
}
impl SeatData {
fn new() -> SeatData {
SeatData {
name: String::new(),
has_pointer: false,
has_keyboard: false,
has_touch: false,
defunct: false,
state: SeatDataState::NEW,
}
}
}
pub struct SeatHandler {
seats: Vec<(u32, Attached<wl_seat::WlSeat>)>,
listeners: Rc<RefCell<Vec<Weak<RefCell<SeatCallback>>>>>,
}
impl SeatHandler {
pub fn new() -> SeatHandler {
SeatHandler { seats: Vec::new(), listeners: Rc::new(RefCell::new(Vec::new())) }
}
}
pub struct SeatListener {
_cb: Rc<RefCell<SeatCallback>>,
}
impl crate::environment::MultiGlobalHandler<wl_seat::WlSeat> for SeatHandler {
fn created(
&mut self,
registry: Attached<wl_registry::WlRegistry>,
id: u32,
version: u32,
_: DispatchData,
) {
let version = std::cmp::min(version, 6);
let seat = registry.bind::<wl_seat::WlSeat>(version, id);
seat.as_ref().user_data().set_threadsafe(|| Mutex::new(SeatData::new()));
let cb_listeners = self.listeners.clone();
seat.quick_assign(move |seat, event, ddata| {
process_seat_event(seat, event, &cb_listeners, ddata)
});
self.seats.push((id, (*seat).clone()));
}
fn removed(&mut self, id: u32, mut ddata: DispatchData) {
let mut listeners = self.listeners.borrow_mut();
self.seats.retain(|&(i, ref seat)| {
if i != id {
true
} else {
let data = seat.as_ref().user_data().get::<Mutex<SeatData>>().unwrap();
let mut guard = data.lock().unwrap();
guard.defunct = true;
listeners.retain(|lst| {
if let Some(cb) = Weak::upgrade(lst) {
(&mut *cb.borrow_mut())(seat.clone(), &*guard, ddata.reborrow());
true
} else {
false
}
});
false
}
});
}
fn get_all(&self) -> Vec<Attached<wl_seat::WlSeat>> {
self.seats.iter().map(|(_, s)| s.clone()).collect()
}
}
fn process_seat_event(
seat: Main<wl_seat::WlSeat>,
event: wl_seat::Event,
listeners: &RefCell<Vec<Weak<RefCell<SeatCallback>>>>,
mut ddata: DispatchData,
) {
let new_data = {
let data = seat.as_ref().user_data().get::<Mutex<SeatData>>().unwrap();
let mut guard = data.lock().unwrap();
match event {
wl_seat::Event::Name { name } => {
guard.state.set(SeatDataState::GOT_NAME, true);
guard.name = name;
}
wl_seat::Event::Capabilities { capabilities } => {
guard.state.set(SeatDataState::GOT_CAPABILITIES, true);
guard.has_pointer = capabilities.contains(wl_seat::Capability::Pointer);
guard.has_keyboard = capabilities.contains(wl_seat::Capability::Keyboard);
guard.has_touch = capabilities.contains(wl_seat::Capability::Touch);
}
_ => unreachable!(),
}
guard.clone()
};
if new_data.state.contains(SeatDataState::READY) {
listeners.borrow_mut().retain(|lst| {
if let Some(cb) = Weak::upgrade(lst) {
(&mut *cb.borrow_mut())((*seat).clone(), &new_data, ddata.reborrow());
true
} else {
false
}
});
}
}
pub fn clone_seat_data(seat: &wl_seat::WlSeat) -> Option<SeatData> {
if let Some(ref udata_mutex) = seat.as_ref().user_data().get::<Mutex<SeatData>>() {
let udata = udata_mutex.lock().unwrap();
Some(udata.clone())
} else {
None
}
}
pub fn with_seat_data<T, F: FnOnce(&SeatData) -> T>(seat: &wl_seat::WlSeat, f: F) -> Option<T> {
if let Some(ref udata_mutex) = seat.as_ref().user_data().get::<Mutex<SeatData>>() {
let udata = udata_mutex.lock().unwrap();
Some(f(&*udata))
} else {
None
}
}
pub trait SeatHandling {
fn listen<F: FnMut(Attached<wl_seat::WlSeat>, &SeatData, DispatchData) + 'static>(
&mut self,
f: F,
) -> SeatListener;
}
impl SeatHandling for SeatHandler {
fn listen<F: FnMut(Attached<wl_seat::WlSeat>, &SeatData, DispatchData) + 'static>(
&mut self,
f: F,
) -> SeatListener {
let rc = Rc::new(RefCell::new(f)) as Rc<_>;
self.listeners.borrow_mut().push(Rc::downgrade(&rc));
SeatListener { _cb: rc }
}
}
impl<E: SeatHandling> crate::environment::Environment<E> {
#[must_use = "the returned SeatListener keeps your callback alive, dropping it will disable it"]
pub fn listen_for_seats<
F: FnMut(Attached<wl_seat::WlSeat>, &SeatData, DispatchData) + 'static,
>(
&self,
f: F,
) -> SeatListener {
self.with_inner(move |inner| SeatHandling::listen(inner, f))
}
}
impl<E: crate::environment::MultiGlobalHandler<wl_seat::WlSeat>>
crate::environment::Environment<E>
{
pub fn get_all_seats(&self) -> Vec<Attached<wl_seat::WlSeat>> {
self.get_all_globals::<wl_seat::WlSeat>().into_iter().collect()
}
}