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
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
use crate::config::local_commit;
use crate::listen::{ListenEvent, ListenerCreationError, MousehopListener};
use futures::StreamExt;
use input_emulation::{
EmulationHandle, InputEmulation, InputEmulationError, ReceivePostProcessing,
};
use input_event::{ClipboardEvent, Event};
use local_channel::mpsc::{Receiver, Sender, channel};
use mousehop_ipc::IncomingPeerConfig;
use mousehop_proto::{Position, ProtoEvent};
use std::{
cell::Cell,
collections::HashMap,
net::SocketAddr,
rc::Rc,
time::{Duration, Instant},
};
use tokio::{
select,
task::{JoinHandle, spawn_local},
};
fn to_pp(peer: &IncomingPeerConfig) -> ReceivePostProcessing {
ReceivePostProcessing {
natural_scroll: peer.natural_scroll,
mouse_sensitivity: peer.mouse_sensitivity,
}
}
/// emulation handling events received from a listener
pub(crate) struct Emulation {
task: JoinHandle<()>,
request_tx: Sender<EmulationRequest>,
event_rx: Receiver<EmulationEvent>,
}
pub(crate) enum EmulationEvent {
Connected {
addr: SocketAddr,
fingerprint: String,
},
ConnectionAttempt {
fingerprint: String,
},
/// new connection
Entered {
/// address of the connection
addr: SocketAddr,
/// position of the connection
pos: mousehop_ipc::Position,
/// certificate fingerprint of the connection
fingerprint: String,
},
/// connection closed
Disconnected {
addr: SocketAddr,
},
/// the port of the listener has changed
PortChanged(Result<u16, ListenerCreationError>),
/// emulation was disabled
EmulationDisabled,
/// emulation was enabled
EmulationEnabled,
/// capture should be released
ReleaseNotify,
/// peer sent us a Hello with its build commit hash. Used to
/// populate `client_manager.peer_commit` from the listen side
/// too — without this, peer-version visibility silently fails
/// whenever the outgoing connection in the *other* direction is
/// broken (one-way setups, asymmetric NAT, peer's TCP listener
/// down). The connect-side path stays as the primary source;
/// this is the defensive fallback.
PeerHello {
addr: SocketAddr,
commit: [u8; 8],
},
/// Authorized peer at `addr` delivered a clipboard frame whose
/// receive-side gate evaluated true. The local clipboard has
/// already been updated by [`ListenTask`]; Service consumes
/// this event to refresh the `ClipboardMonitor`'s
/// last-known-content (so the next poll doesn't re-emit it as a
/// fresh local change) and to fan the payload out to other
/// authorized peers whose `clipboard_send` is true.
/// `from_fingerprint` is the *originator*'s certificate
/// fingerprint stamped on the wire — distinct from the
/// fingerprint of the peer at `addr` when the message has
/// been forwarded through an intermediate hop.
ClipboardReceived {
addr: SocketAddr,
from_fingerprint: String,
content: String,
},
}
enum EmulationRequest {
Reenable,
Release(SocketAddr),
ChangePort(u16),
/// Replace the per-fingerprint receive-side post-processing
/// table. Service pushes this on startup, on every authorization
/// change, and whenever the user adjusts a peer's natural-scroll
/// or sensitivity from the GUI.
SetIncomingPeers(HashMap<String, IncomingPeerConfig>),
Terminate,
}
impl Emulation {
pub(crate) fn new(
backend: Option<input_emulation::Backend>,
listener: MousehopListener,
) -> Self {
let emulation_proxy = EmulationProxy::new(backend);
let (request_tx, request_rx) = channel();
let (event_tx, event_rx) = channel();
let emulation_task = ListenTask {
listener,
emulation_proxy,
request_rx,
event_tx,
addr_to_fingerprint: HashMap::new(),
incoming_peers: HashMap::new(),
};
let task = spawn_local(emulation_task.run());
Self {
task,
request_tx,
event_rx,
}
}
pub(crate) fn send_leave_event(&self, addr: SocketAddr) {
self.request_tx
.send(EmulationRequest::Release(addr))
.expect("channel closed");
}
pub(crate) fn reenable(&self) {
self.request_tx
.send(EmulationRequest::Reenable)
.expect("channel closed");
}
pub(crate) fn request_port_change(&self, port: u16) {
self.request_tx
.send(EmulationRequest::ChangePort(port))
.expect("channel closed")
}
/// Push the latest authorized-peers table to the receive
/// pipeline. Calls fire-and-forget; ListenTask resolves
/// per-fingerprint settings against its addr→fingerprint cache
/// and pushes per-handle post-processing into InputEmulation.
pub(crate) fn set_incoming_peers(&self, peers: HashMap<String, IncomingPeerConfig>) {
self.request_tx
.send(EmulationRequest::SetIncomingPeers(peers))
.expect("channel closed")
}
pub(crate) async fn event(&mut self) -> EmulationEvent {
self.event_rx.recv().await.expect("channel closed")
}
/// wait for termination
pub(crate) async fn terminate(&mut self) {
log::debug!("terminating emulation");
self.request_tx
.send(EmulationRequest::Terminate)
.expect("channel closed");
if let Err(e) = (&mut self.task).await {
log::warn!("{e}");
}
}
}
struct ListenTask {
listener: MousehopListener,
emulation_proxy: EmulationProxy,
request_rx: Receiver<EmulationRequest>,
event_tx: Sender<EmulationEvent>,
/// addr→fingerprint cache populated from `ListenEvent::Accept`.
/// Lets ListenTask resolve `IncomingPeerConfig` for an incoming
/// peer without a per-packet round-trip into the listener.
addr_to_fingerprint: HashMap<SocketAddr, String>,
/// Latest authorized-peers map pushed by Service. Read on Accept
/// and on `SetIncomingPeers` to build the per-handle
/// `ReceivePostProcessing` snapshots that go into InputEmulation.
incoming_peers: HashMap<String, IncomingPeerConfig>,
}
impl ListenTask {
fn post_processing_for_addr(&self, addr: SocketAddr) -> ReceivePostProcessing {
self.addr_to_fingerprint
.get(&addr)
.and_then(|fp| self.incoming_peers.get(fp))
.map(to_pp)
.unwrap_or_default()
}
async fn run(mut self) {
let mut interval = tokio::time::interval(Duration::from_secs(5));
let mut last_response = HashMap::new();
let mut rejected_connections = HashMap::new();
loop {
select! {
e = self.listener.next() => {match e {
Some(ListenEvent::Msg { event, addr }) => {
log::trace!("{event} <-<-<-<-<- {addr}");
last_response.insert(addr, Instant::now());
match event {
ProtoEvent::Enter(pos) => {
if let Some(fingerprint) = self.listener.get_certificate_fingerprint(addr).await {
log::info!("releasing capture: {addr} entered this device");
self.event_tx.send(EmulationEvent::ReleaseNotify).expect("channel closed");
self.listener.reply(addr, ProtoEvent::Ack(0)).await;
// Send the receiving device's display
// geometry so the capturing peer can
// model the guest cursor's position
// accurately. Old peers that don't
// recognize this event will skip it
// per the forward-compat fix.
if let Some((width, height)) = self.emulation_proxy.display_bounds() {
self.listener.reply(addr, ProtoEvent::Bounds { width, height }).await;
}
// Tell the capturing peer what
// sensitivity multiplier we'll
// apply to their motion deltas so
// their wall-press auto-release
// model can scale to match.
let pp = self.post_processing_for_addr(addr);
self.listener.reply(addr, ProtoEvent::ReceiverSensitivity {
mouse_sensitivity: pp.mouse_sensitivity,
}).await;
// No entry-edge midpoint warp here:
// the host's CursorPos (sent right
// after Enter) carries the
// proportional landing point and
// pins the on-axis dimension to the
// matching edge. Warping to the
// midpoint first would briefly
// place the cursor at center-edge
// — and a quick re-cross by the
// user would have the local
// CGEventTap (or equivalent) snap
// its `cursor=` field from the
// midpoint, masquerading as a
// mid-screen crossing on the next
// CursorPos sent back the other
// way. Trusts the host: if it
// can't compute a proportional
// point the cursor stays where it
// was, which is preferable to a
// forced midpoint.
self.event_tx.send(EmulationEvent::Entered{addr, pos: to_ipc_pos(pos), fingerprint}).expect("channel closed");
}
}
ProtoEvent::Leave(_) => {
self.emulation_proxy.remove(addr);
self.listener.reply(addr, ProtoEvent::Ack(0)).await;
}
ProtoEvent::Input(event) => self.emulation_proxy.consume(event, addr),
ProtoEvent::Clipboard { from_fingerprint, content } => {
let receive_ok = self.addr_to_fingerprint
.get(&addr)
.and_then(|fp| self.incoming_peers.get(fp))
.map(|peer| peer.clipboard_receive)
.unwrap_or(false);
if !receive_ok {
log::debug!(
"dropping clipboard frame from {addr}: clipboard_receive disabled or unauthorized peer"
);
} else {
// Inject locally via the same
// pipeline that handles input
// events. InputEmulation::consume
// short-circuits Clipboard events
// to its ClipboardEmulation sink.
self.emulation_proxy.consume(
Event::Clipboard(ClipboardEvent::Text(content.clone())),
addr,
);
// Hand off to Service so it can
// (a) suppress an immediate self-
// emit from the local
// ClipboardMonitor poll, and (b)
// forward to other peers honoring
// the (originator, content)
// recent-forwarded gate.
self.event_tx.send(EmulationEvent::ClipboardReceived {
addr,
from_fingerprint,
content,
}).expect("channel closed");
}
}
ProtoEvent::Ping => self.listener.reply(addr, ProtoEvent::Pong(self.emulation_proxy.emulation_active.get())).await,
// Peer's version handshake. Echo our own
// commit back so the peer's connect-side
// receive_loop populates its `peer_commit`,
// AND publish a PeerHello upward so our
// service can populate ours from the listen
// side too — the connect side is the primary
// path, but if the outbound direction is
// broken (one-way setup, NAT, peer's TCP
// listener down) the version display would
// otherwise silently say "unknown" while
// the peer is in fact happily talking to us.
ProtoEvent::Hello { commit, .. } => {
self.listener.reply(addr, ProtoEvent::hello(local_commit())).await;
self.event_tx.send(EmulationEvent::PeerHello { addr, commit }).expect("channel closed");
}
// Capturing peer told us where on its own
// screen the user's cursor was, as a
// normalized fraction (nx, ny) ∈ [0, 1]
// plus the entry side (from our frame).
// Scale against our live display bounds
// and pin the on-axis dimension to the
// matching edge so the cursor lands at
// the visually-corresponding point.
// Works without a prior Bounds round-trip,
// so the very first crossing of a session
// also lands at the visually-corresponding
// point. The cross-axis multiply is
// clamped to dim - 1 so a host edge
// (nx == 1.0 or ny == 1.0) doesn't compute
// one pixel past the addressable column.
ProtoEvent::CursorPos { pos, nx, ny } => {
if let Some((w, h)) = self.emulation_proxy.display_bounds() {
let pwi = w as i32;
let phi = h as i32;
let cx = ((nx * w as f32) as i32).clamp(0, pwi.saturating_sub(1));
let cy = ((ny * h as f32) as i32).clamp(0, phi.saturating_sub(1));
let (tx, ty) = match pos {
Position::Left => (0, cy),
Position::Right => (pwi.saturating_sub(1), cy),
Position::Top => (cx, 0),
Position::Bottom => (cx, phi.saturating_sub(1)),
};
log::info!(
"[cursor-pos] recv pos={pos:?} nx={nx:.3} ny={ny:.3} display_bounds=({w},{h}) → warp=({tx},{ty})"
);
self.emulation_proxy.warp_cursor(tx, ty);
} else {
log::info!(
"[cursor-pos] recv pos={pos:?} nx={nx:.3} ny={ny:.3} but display_bounds=None — skipping warp"
);
}
}
_ => {}
}
}
Some(ListenEvent::Accept { addr, fingerprint }) => {
self.addr_to_fingerprint.insert(addr, fingerprint.clone());
// Pre-cache the per-handle post-processing so
// EmulationTask can pick it up the moment the
// first Input from this addr arrives.
let pp = self.post_processing_for_addr(addr);
self.emulation_proxy.set_post_processing(addr, pp);
self.event_tx.send(EmulationEvent::Connected { addr, fingerprint }).expect("channel closed");
}
Some(ListenEvent::Rejected { fingerprint }) => {
if rejected_connections.insert(fingerprint.clone(), Instant::now())
.is_none_or(|i| i.elapsed() >= Duration::from_secs(2)) {
self.event_tx.send(EmulationEvent::ConnectionAttempt { fingerprint }).expect("channel closed");
}
}
None => break
}}
event = self.emulation_proxy.event() => {
self.event_tx.send(event).expect("channel closed");
}
request = self.request_rx.recv() => match request.expect("channel closed") {
// reenable emulation
EmulationRequest::Reenable => self.emulation_proxy.reenable(),
// notify the other end that we hit a barrier (should release capture)
EmulationRequest::Release(addr) => self.listener.reply(addr, ProtoEvent::Leave(0)).await,
EmulationRequest::ChangePort(port) => {
self.listener.request_port_change(port);
let result = self.listener.port_changed().await;
self.event_tx.send(EmulationEvent::PortChanged(result)).expect("channel closed");
}
EmulationRequest::SetIncomingPeers(peers) => {
self.incoming_peers = peers;
// Re-resolve every known address so the live
// backend picks up changes for currently-
// active peers, not just future ones.
let known_addrs: Vec<SocketAddr> = self.addr_to_fingerprint.keys().copied().collect();
for addr in known_addrs {
let pp = self.post_processing_for_addr(addr);
self.emulation_proxy.set_post_processing(addr, pp);
// Push the updated sensitivity to the
// capturing peer over the wire so their
// wall-press auto-release model matches
// immediately, without waiting for the
// next cross-back-then-cross-forward.
self.listener.reply(addr, ProtoEvent::ReceiverSensitivity {
mouse_sensitivity: pp.mouse_sensitivity,
}).await;
}
}
EmulationRequest::Terminate => break,
},
_ = interval.tick() => {
last_response.retain(|&addr,instant| {
if instant.elapsed() > Duration::from_secs(1) {
log::warn!("releasing keys: {addr} not responding!");
self.emulation_proxy.remove(addr);
self.event_tx.send(EmulationEvent::Disconnected { addr }).expect("channel closed");
false
} else {
true
}
});
}
}
}
self.listener.terminate().await;
self.emulation_proxy.terminate().await;
}
}
/// proxy handling the actual input emulation,
/// discarding events when it is disabled
pub(crate) struct EmulationProxy {
emulation_active: Rc<Cell<bool>>,
exit_requested: Rc<Cell<bool>>,
request_tx: Sender<ProxyRequest>,
event_rx: Receiver<EmulationEvent>,
task: JoinHandle<()>,
/// Cached display bounds. Refreshed each time the underlying
/// InputEmulation is (re)created. `None` until the first
/// successful query, or if the active backend doesn't report
/// geometry.
display_bounds: Rc<Cell<Option<(u32, u32)>>>,
}
enum ProxyRequest {
Input(Event, SocketAddr),
Remove(SocketAddr),
Terminate,
Reenable,
/// Warp the local cursor to an absolute position. Used on
/// `Enter` to seat the cursor at the entry edge so the
/// capturing peer's wall-press model is synchronized.
Warp(i32, i32),
/// Set the receive-side post-processing for events arriving
/// from `addr`. Resolved by ListenTask from the persistent
/// authorized-peers table; cached on the EmulationTask side
/// keyed by addr until a handle exists, then pushed into
/// InputEmulation by handle.
SetPostProcessing(SocketAddr, ReceivePostProcessing),
}
impl EmulationProxy {
fn new(backend: Option<input_emulation::Backend>) -> Self {
let (request_tx, request_rx) = channel();
let (event_tx, event_rx) = channel();
let emulation_active = Rc::new(Cell::new(false));
let exit_requested = Rc::new(Cell::new(false));
let display_bounds = Rc::new(Cell::new(None));
let emulation_task = EmulationTask {
backend,
exit_requested: exit_requested.clone(),
display_bounds: display_bounds.clone(),
post_processing: HashMap::new(),
request_rx,
event_tx,
handles: Default::default(),
next_id: 0,
};
let task = spawn_local(emulation_task.run());
Self {
emulation_active,
exit_requested,
request_tx,
task,
event_rx,
display_bounds,
}
}
/// Display geometry of this device (cached). Refreshed each
/// time the input emulation backend is (re)created.
pub(crate) fn display_bounds(&self) -> Option<(u32, u32)> {
self.display_bounds.get()
}
/// Fire-and-forget cursor warp. Drops silently if emulation
/// isn't currently active (no live backend to receive the
/// request).
pub(crate) fn warp_cursor(&self, x: i32, y: i32) {
if !self.emulation_active.get() {
return;
}
let _ = self.request_tx.send(ProxyRequest::Warp(x, y));
}
/// Fire-and-forget per-addr post-processing update. Persists in
/// the EmulationTask cache so settings survive backend respawns
/// (CGEventTap timeout, portal session restart, etc.) and so a
/// handle created later for this addr inherits the right values.
pub(crate) fn set_post_processing(
&self,
addr: SocketAddr,
post_processing: ReceivePostProcessing,
) {
let _ = self
.request_tx
.send(ProxyRequest::SetPostProcessing(addr, post_processing));
}
async fn event(&mut self) -> EmulationEvent {
let event = self.event_rx.recv().await.expect("channel closed");
if let EmulationEvent::EmulationEnabled = event {
self.emulation_active.replace(true);
}
if let EmulationEvent::EmulationDisabled = event {
self.emulation_active.replace(false);
}
event
}
fn consume(&self, event: Event, addr: SocketAddr) {
// ignore events if emulation is currently disabled
if self.emulation_active.get() {
self.request_tx
.send(ProxyRequest::Input(event, addr))
.expect("channel closed");
}
}
fn remove(&self, addr: SocketAddr) {
self.request_tx
.send(ProxyRequest::Remove(addr))
.expect("channel closed");
}
fn reenable(&self) {
self.request_tx
.send(ProxyRequest::Reenable)
.expect("channel closed");
}
async fn terminate(&mut self) {
self.exit_requested.replace(true);
self.request_tx
.send(ProxyRequest::Terminate)
.expect("channel closed");
let _ = (&mut self.task).await;
}
}
struct EmulationTask {
backend: Option<input_emulation::Backend>,
exit_requested: Rc<Cell<bool>>,
/// Shared cache; refreshed each time we (re)create the inner
/// InputEmulation. Read by `EmulationProxy::display_bounds`.
display_bounds: Rc<Cell<Option<(u32, u32)>>>,
/// Per-addr receive-side post-processing snapshots. Pushed by
/// ListenTask via `ProxyRequest::SetPostProcessing` whenever
/// the underlying authorized-peers table changes. Re-applied to
/// every newly created InputEmulation (handle by handle) so a
/// backend respawn doesn't drop the user's settings.
post_processing: HashMap<SocketAddr, ReceivePostProcessing>,
request_rx: Receiver<ProxyRequest>,
event_tx: Sender<EmulationEvent>,
handles: HashMap<SocketAddr, EmulationHandle>,
next_id: EmulationHandle,
}
impl EmulationTask {
async fn run(mut self) {
loop {
if let Err(e) = self.do_emulation().await {
log::warn!("input emulation exited: {e}");
}
if self.exit_requested.get() {
break;
}
// wait for reenable request
loop {
match self.request_rx.recv().await.expect("channel closed") {
ProxyRequest::Reenable => break,
ProxyRequest::Terminate => return,
ProxyRequest::Input(..) => { /* emulation inactive => ignore */ }
ProxyRequest::Remove(..) => { /* emulation inactive => ignore */ }
ProxyRequest::Warp(..) => { /* emulation inactive => ignore */ }
ProxyRequest::SetPostProcessing(addr, pp) => {
// No live backend yet, but cache the values so
// the next created backend picks them up the
// moment a handle is assigned for this addr.
self.post_processing.insert(addr, pp);
}
}
}
}
}
async fn do_emulation(&mut self) -> Result<(), InputEmulationError> {
log::info!("creating input emulation ...");
let mut emulation = tokio::select! {
r = InputEmulation::new(self.backend) => r?,
// allow termination event while requesting input emulation
_ = wait_for_termination(&mut self.request_rx) => return Ok(()),
};
// Refresh the shared display-bounds cache. Goes through
// EmulationProxy::display_bounds() so the daemon can include
// it in the ProtoEvent::Bounds reply on Enter.
self.display_bounds.set(emulation.display_bounds());
// Re-apply per-handle post-processing for any handles we
// already had before the backend was (re)created. New
// handles created from `Input` will pick up their values
// from the same cache.
for (addr, &handle) in &self.handles {
if let Some(&pp) = self.post_processing.get(addr) {
emulation.set_post_processing(handle, pp);
}
}
// used to send enabled and disabled events
let _emulation_guard = DropGuard::new(
self.event_tx.clone(),
EmulationEvent::EmulationEnabled,
EmulationEvent::EmulationDisabled,
);
// create active handles
if let Err(e) = self.create_clients(&mut emulation).await {
emulation.terminate().await;
return Err(e);
}
let res = self.do_emulation_session(&mut emulation).await;
// FIXME replace with async drop when stabilized
emulation.terminate().await;
res
}
async fn create_clients(
&mut self,
emulation: &mut InputEmulation,
) -> Result<(), InputEmulationError> {
for handle in self.handles.values() {
tokio::select! {
_ = emulation.create(*handle) => {},
_ = wait_for_termination(&mut self.request_rx) => return Ok(()),
}
}
Ok(())
}
async fn do_emulation_session(
&mut self,
emulation: &mut InputEmulation,
) -> Result<(), InputEmulationError> {
loop {
tokio::select! {
e = self.request_rx.recv() => match e.expect("channel closed") {
ProxyRequest::Input(event, addr) => {
let handle = match self.handles.get(&addr) {
Some(&handle) => handle,
None => {
let handle = self.next_id;
self.next_id += 1;
emulation.create(handle).await;
self.handles.insert(addr, handle);
// Apply any cached post-processing
// (set when the DTLS Accept arrived,
// before the first Input).
if let Some(&pp) = self.post_processing.get(&addr) {
emulation.set_post_processing(handle, pp);
}
handle
}
};
emulation.consume(event, handle).await?;
},
ProxyRequest::Remove(addr) => {
if let Some(handle) = self.handles.remove(&addr) {
emulation.destroy(handle).await;
}
// Intentionally keep `post_processing[addr]`
// alive across handle removal. `Remove` fires
// on every `ProtoEvent::Leave` (cross-back to
// the peer's screen) and on the 1-second
// heartbeat timeout, neither of which means
// the DTLS session is gone for good. The same
// SocketAddr keeps delivering Input events on
// the next cross; we want the user's per-pair
// settings to follow the addr, not the
// ephemeral handle that gets minted fresh on
// each cross. A real DTLS disconnect followed
// by a reconnect arrives with a new
// SocketAddr (new ephemeral port), so a stale
// entry doesn't shadow a fresh one.
}
ProxyRequest::Warp(x, y) => {
if let Err(e) = emulation.warp_cursor(x, y).await {
log::warn!("warp_cursor failed: {e}");
}
}
ProxyRequest::SetPostProcessing(addr, pp) => {
self.post_processing.insert(addr, pp);
if let Some(&handle) = self.handles.get(&addr) {
emulation.set_post_processing(handle, pp);
}
}
ProxyRequest::Terminate => break Ok(()),
ProxyRequest::Reenable => continue,
},
}
}
}
}
fn to_ipc_pos(pos: Position) -> mousehop_ipc::Position {
match pos {
Position::Left => mousehop_ipc::Position::Left,
Position::Right => mousehop_ipc::Position::Right,
Position::Top => mousehop_ipc::Position::Top,
Position::Bottom => mousehop_ipc::Position::Bottom,
}
}
/// Where to seat the local cursor when this device is entered.
/// `pos` is the protocol-level position in *this device's* frame
/// (already inverted from the host's perspective by the capture
/// side). For example, `Position::Left` means "the host is to my
/// left, the cursor entered from my left edge", so the cursor
/// should land at x=0. Y is centered along the entry edge for
/// Left/Right; X is centered for Top/Bottom.
async fn wait_for_termination(rx: &mut Receiver<ProxyRequest>) {
loop {
match rx.recv().await.expect("channel closed") {
ProxyRequest::Terminate => return,
ProxyRequest::Input(_, _) => continue,
ProxyRequest::Remove(_) => continue,
ProxyRequest::Warp(_, _) => continue,
ProxyRequest::SetPostProcessing(_, _) => continue,
ProxyRequest::Reenable => continue,
}
}
}
struct DropGuard<T> {
tx: Sender<T>,
on_drop: Option<T>,
}
impl<T> DropGuard<T> {
fn new(tx: Sender<T>, on_new: T, on_drop: T) -> Self {
tx.send(on_new).expect("channel closed");
let on_drop = Some(on_drop);
Self { tx, on_drop }
}
}
impl<T> Drop for DropGuard<T> {
fn drop(&mut self) {
self.tx
.send(self.on_drop.take().expect("item"))
.expect("channel closed");
}
}