Skip to main content

mx_remote/
event.rs

1// Author: Lars Op den Kamp (lars@opdenkamp-it.nl)
2// Copyright (c) 2026 Op den Kamp IT Solutions
3
4//! Events and the handler that receives them.
5
6use crate::types::*;
7use crate::wire::{
8    BayUid, DeviceUid, EdidProfile, LinkFeature, RcAction, RcKey, RcType, V2ipFpgaFeature,
9};
10
11/// Declares the event set.
12///
13/// One declaration produces the [`Event`] enum, the [`EventHandler`] trait and
14/// the dispatch that connects them, so a new event cannot reach the enum
15/// without reaching the trait, and cannot be dispatched without fanning in to
16/// the generic update. The fan-in is written once here rather than repeated at
17/// each call site.
18///
19/// The section an event is declared in decides what it fans in to: `device`
20/// events reach `on_device_update`, `bay` events reach `on_bay_update`, and
21/// `bay_and_device` events reach both. A link change concerns the bay and the
22/// device that owns it, which is why it is neither of the first two.
23macro_rules! events {
24    (
25        device {
26            $( $(#[$dmeta:meta])* $dvariant:ident => $dmethod:ident ( $($darg:ident : $dty:ty),* ); )*
27        }
28        bay {
29            $( $(#[$bmeta:meta])* $bvariant:ident => $bmethod:ident ( $($barg:ident : $bty:ty),* ); )*
30        }
31        bay_and_device {
32            $( $(#[$lmeta:meta])* $lvariant:ident => $lmethod:ident ( $($larg:ident : $lty:ty),* ); )*
33        }
34    ) => {
35        /// Something that changed, or a request that arrived.
36        ///
37        /// Events are collected while the state lock is held and dispatched
38        /// after it is released, so a handler may call back into the library.
39        #[derive(Clone, Debug, PartialEq)]
40        #[non_exhaustive]
41        pub enum Event {
42            $(
43                $(#[$dmeta])*
44                $dvariant {
45                    /// The device the event concerns.
46                    device: DeviceUid,
47                    $( #[allow(missing_docs)] $darg: $dty, )*
48                },
49            )*
50            $(
51                $(#[$bmeta])*
52                $bvariant {
53                    /// The bay the event concerns.
54                    bay: BayUid,
55                    $( #[allow(missing_docs)] $barg: $bty, )*
56                },
57            )*
58            $(
59                $(#[$lmeta])*
60                $lvariant {
61                    /// The bay the event concerns.
62                    bay: BayUid,
63                    $( #[allow(missing_docs)] $larg: $lty, )*
64                },
65            )*
66        }
67
68        /// Receives events.
69        ///
70        /// Every method has a no-op default, so an implementation names only
71        /// the events it cares about. Handlers run one at a time from the
72        /// thread that produced the event, with no lock held: calling back into
73        /// the library from one is safe, but blocking for long stalls the
74        /// receive path.
75        #[allow(unused_variables)]
76        pub trait EventHandler: Send + Sync {
77            $(
78                $(#[$dmeta])*
79                fn $dmethod(&self, device: DeviceUid $(, $darg: $dty)*) {}
80            )*
81            $(
82                $(#[$bmeta])*
83                fn $bmethod(&self, bay: BayUid $(, $barg: $bty)*) {}
84            )*
85            $(
86                $(#[$lmeta])*
87                fn $lmethod(&self, bay: BayUid $(, $larg: $lty)*) {}
88            )*
89
90            /// Fired after every device-level event above.
91            fn on_device_update(&self, device: DeviceUid) {}
92
93            /// Fired after every bay-level event above.
94            fn on_bay_update(&self, bay: BayUid) {}
95        }
96
97        impl Event {
98            /// Delivers this event to `handler`, then the generic update it
99            /// fans in to.
100            pub(crate) fn dispatch(self, handler: &dyn EventHandler) {
101                match self {
102                    $(
103                        Self::$dvariant { device $(, $darg)* } => {
104                            handler.$dmethod(device $(, $darg)*);
105                            handler.on_device_update(device);
106                        }
107                    )*
108                    $(
109                        Self::$bvariant { bay $(, $barg)* } => {
110                            handler.$bmethod(bay $(, $barg)*);
111                            handler.on_bay_update(bay);
112                        }
113                    )*
114                    $(
115                        Self::$lvariant { bay $(, $larg)* } => {
116                            handler.$lmethod(bay $(, $larg)*);
117                            handler.on_bay_update(bay);
118                            handler.on_device_update(bay.device);
119                        }
120                    )*
121                }
122            }
123        }
124    };
125}
126
127/// Ignores every event.
128///
129/// The handler a client that only reads state through [`Remote`] needs, since
130/// the trait is not optional and its methods all default to nothing.
131///
132/// [`Remote`]: crate::Remote
133impl EventHandler for () {}
134
135events! {
136    device {
137        /// The device's configuration changed.
138        DeviceConfigChanged => on_device_config_changed();
139        /// The device has reported every part of its configuration.
140        DeviceConfigComplete => on_device_config_complete();
141        /// The device started or stopped answering.
142        DeviceOnlineChanged => on_device_online_changed(online: bool);
143        /// The device reported new temperatures.
144        DeviceTemperatureChanged => on_device_temperature_changed(temperatures: Vec<u8>);
145        /// A firmware component reported its version.
146        FirmwareVersionChanged => on_firmware_version_changed(version: FirmwareVersion);
147        /// The device reported a system status.
148        SystemStatusChanged => on_system_status_changed(status: u16, message: String);
149        /// A network port reported its link state.
150        NetworkStatusChanged => on_network_status_changed(status: NetworkPortStatus);
151        /// The device reported V2IP statistics.
152        V2ipStatsChanged => on_v2ip_stats_changed(stats: V2ipDeviceStats);
153        /// The streams the device's source bays advertise changed.
154        V2ipSourcesChanged => on_v2ip_sources_changed(sources: Vec<V2ipStreamSources>);
155        /// The device's V2IP encoder configuration changed.
156        V2ipDetailsChanged => on_v2ip_details_changed(details: DeviceV2ipDetails);
157        /// The streams the device's sink is subscribed to changed. A request
158        /// addressed to it fires this too - see [`DeviceV2ipSink`].
159        V2ipSinkChanged => on_v2ip_sink_changed(sink: DeviceV2ipSink);
160        /// A multiviewer reported its state.
161        MultiviewerStatusChanged => on_multiviewer_status_changed(status: MultiviewerStatus);
162        /// The device reported its audio endpoint tree.
163        AudioEndpointsChanged => on_audio_endpoints_changed(endpoints: AudioEndpoints);
164        /// The device reported its mesh master.
165        MeshMasterChanged => on_mesh_master_changed(master: DeviceUid);
166        /// The device reported its view of the mesh topology.
167        TopologyChanged => on_topology_changed(topology: Vec<TopologyEntry>);
168        /// A ProAmp8 reported its Dolby settings.
169        AmpDolbySettingsChanged => on_amp_dolby_settings_changed(settings: AmpDolbySettings);
170        /// Installer setup was completed or cleared.
171        SetupStatusChanged => on_setup_status_changed(completed: bool);
172        /// The installer id changed.
173        InstallerIdChanged => on_installer_id_changed(installer_id: u16);
174        /// The sink was told to show a window.
175        TilingChanged => on_tiling_changed(tiling: V2ipTilingConfig);
176        /// The device reported what its video processor supports.
177        V2ipFeaturesChanged => on_v2ip_features_changed(features: V2ipFpgaFeature);
178        /// A source bay's remote-control configuration changed.
179        RcSettingsChanged => on_rc_settings_changed(settings: RcSettings);
180        /// A V2IP device was linked to a remote peer.
181        V2ipLinkChanged => on_v2ip_link_changed(target: DeviceUid);
182        /// A multiviewer command arrived.
183        MultiviewerCommand => on_multiviewer_command(command: MultiviewerCommand);
184        /// An audio endpoint was switched to a new source.
185        AudioSelectInput => on_audio_select_input(change: AudioChangeSource);
186        /// An audio endpoint was muted or unmuted.
187        AudioEndpointMute => on_audio_endpoint_mute(endpoint: u16, muted: bool);
188        /// An audio endpoint's trigger changed.
189        AudioEndpointTrigger => on_audio_endpoint_trigger(endpoint: u16, active: bool);
190        /// An audio endpoint's volume changed.
191        AudioEndpointVolume => on_audio_endpoint_volume(endpoint: u16, volume: u32);
192        /// A peer asked every device to announce itself.
193        DiscoverRequest => on_discover_request();
194        /// A peer asked a device to switch a sink.
195        SetRouteRequested => on_set_route_requested(request: SetRouteRequest);
196        /// A peer asked a device for its EDID.
197        EdidRequested => on_edid_requested(request: EdidRequest);
198        /// A device answered with its EDID.
199        EdidReceived => on_edid_received(edid: EdidRecord);
200        /// A peer asked a device to rename a bay.
201        BayNameChangeRequested => on_bay_name_change_requested(change: BayNameChange);
202        /// A peer asked a device to switch its EDID profile.
203        EdidProfileChangeRequested => on_edid_profile_change_requested(change: EdidProfileChange);
204        /// A peer asked a device to reboot.
205        RebootRequested => on_reboot_requested(request: RebootRequest);
206        /// A peer asked devices to factory-reset.
207        FactoryResetRequested => on_factory_reset_requested(request: FactoryResetRequest);
208        /// A device sent its monitoring pulse.
209        MonitoringPulse => on_monitoring_pulse();
210        /// A peer asked a device to upgrade its FPGA.
211        UpgradeFpgaRequested => on_upgrade_fpga_requested();
212        /// A peer asked a device to re-detect its bays.
213        DetectBaysRequested => on_detect_bays_requested();
214        /// A peer asked a sink to enter or leave power save.
215        PowerSaveRequested => on_power_save_requested(request: V2ipPowerSaveRequest);
216        /// A peer asked a device to send a remote-control key.
217        KeyTransmitRequested => on_key_transmit_requested(request: KeyTransmitRequest);
218        /// A peer asked a device to perform a remote-control action.
219        ActionTransmitRequested => on_action_transmit_requested(request: ActionTransmitRequest);
220        /// A peer asked a device to blast raw infrared.
221        IrTransmitRequested => on_ir_transmit_requested(request: IrTransmitRequest);
222        /// A device was added to or removed from the source blacklist.
223        BlacklistChanged => on_blacklist_changed(change: V2ipBlacklistChange);
224        /// A video wall command arrived.
225        VideoWallCommand => on_video_wall_command(command: VideoWallCommand);
226    }
227    bay {
228        /// A bay was seen for the first time.
229        BayRegistered => on_bay_registered();
230        /// The bay's routed video source changed.
231        VideoSourceChanged => on_video_source_changed(source: Option<BayUid>);
232        /// The bay's routed audio source changed.
233        AudioSourceChanged => on_audio_source_changed(source: Option<BayUid>);
234        /// The bay's volume or mute state changed.
235        VolumeChanged => on_volume_changed(volume: VolumeMuteStatus);
236        /// The attached device's power state changed.
237        PowerChanged => on_power_changed(power: PowerStatus);
238        /// The bay was renamed.
239        NameChanged => on_name_changed(name: String);
240        /// A signal appeared or disappeared.
241        SignalDetectedChanged => on_signal_detected_changed(detected: bool);
242        /// The bay started or stopped reporting a fault.
243        FaultyChanged => on_faulty_changed(faulty: bool);
244        /// The bay was hidden or shown.
245        HiddenChanged => on_hidden_changed(hidden: bool);
246        /// Power over Ethernet started or stopped supplying the bay.
247        PoePoweredChanged => on_poe_powered_changed(powered: bool);
248        /// The HDBaseT link came up or went down.
249        HdbtConnectedChanged => on_hdbt_connected_changed(connected: bool);
250        /// The signal format description changed.
251        SignalTypeChanged => on_signal_type_changed(signal_type: String);
252        /// Hot-plug detect was asserted or released.
253        HpdDetectedChanged => on_hpd_detected_changed(detected: bool);
254        /// A CEC device answered or stopped answering.
255        CecDetectedChanged => on_cec_detected_changed(detected: bool);
256        /// The audio return channel changed.
257        ArcChanged => on_arc_changed(arc: ArcStatus);
258        /// The input's EDID profile changed.
259        EdidProfileChanged => on_edid_profile_changed(profile: EdidProfile);
260        /// The input's remote-control type changed.
261        RcTypeChanged => on_rc_type_changed(rc_type: RcType);
262        /// A remote-control key was pressed on the bay.
263        KeyPressed => on_key_pressed(key: RcKey);
264        /// A remote-control action was received on the bay.
265        ActionReceived => on_action_received(action: RcAction);
266        /// The bay started or stopped mirroring another output.
267        MirrorStatusChanged => on_mirror_status_changed(mirror: BayMirrorStatus);
268        /// A ProAmp8 zone's settings changed.
269        AmpZoneSettingsChanged => on_amp_zone_settings_changed(settings: AmpZoneSettings);
270        /// A volume step was requested on the bay.
271        VolumeStep => on_volume_step(up: bool);
272        /// The bay detected audio clipping.
273        AudioClipped => on_audio_clip(clip: AudioClip);
274        /// Raw infrared was captured on the bay.
275        IrCaptured => on_ir_captured(capture: IrCapture);
276        /// The devices filtered out of this sink's picker changed.
277        FilteredDevicesChanged => on_filtered_devices_changed(filtered: Vec<DeviceUid>);
278        /// The audio endpoint the bay carries changed.
279        AudioEndpointChanged => on_audio_endpoint_changed(endpoint: u8);
280        /// The bay's V2IP encoder was enabled or disabled.
281        EncoderDisabledChanged => on_encoder_disabled_changed(disabled: bool);
282        /// The bay's V2IP decoder was enabled or disabled.
283        DecoderDisabledChanged => on_decoder_disabled_changed(disabled: bool);
284    }
285    bay_and_device {
286        /// The bay was linked to a bay on another device.
287        ///
288        /// `linked_serial` is the serial of the device at the other end of the
289        /// link, and `bay_name` the name of the bay whose link record changed:
290        /// this bay on the device that reported the change, and the far bay on
291        /// its peer. Both ends are told, so both fire.
292        BayLinked => on_bay_linked(linked_serial: String, bay_name: String, features: LinkFeature);
293        /// The bay's link to another device was removed.
294        ///
295        /// The arguments describe the link that was removed, and mean what
296        /// they do on [`Event::BayLinked`].
297        BayUnlinked => on_bay_unlinked(linked_serial: String, bay_name: String);
298    }
299}
300
301#[cfg(test)]
302mod tests {
303    use super::*;
304    use std::sync::Mutex;
305
306    #[derive(Default)]
307    struct Recorder {
308        calls: Mutex<Vec<String>>,
309    }
310
311    impl Recorder {
312        fn record(&self, what: &str) {
313            if let Ok(mut calls) = self.calls.lock() {
314                calls.push(what.to_owned());
315            }
316        }
317
318        fn calls(&self) -> Vec<String> {
319            self.calls.lock().map(|c| c.clone()).unwrap_or_default()
320        }
321    }
322
323    impl EventHandler for Recorder {
324        fn on_power_changed(&self, _bay: BayUid, power: PowerStatus) {
325            self.record(&format!("power={power}"));
326        }
327
328        fn on_setup_status_changed(&self, _device: DeviceUid, completed: bool) {
329            self.record(&format!("setup={completed}"));
330        }
331
332        fn on_bay_update(&self, _bay: BayUid) {
333            self.record("bay_update");
334        }
335
336        fn on_device_update(&self, _device: DeviceUid) {
337            self.record("device_update");
338        }
339    }
340
341    const DEVICE: DeviceUid = DeviceUid::from_array([9; 16]);
342
343    #[test]
344    fn a_bay_event_fires_its_own_method_then_the_generic_bay_update() {
345        let recorder = Recorder::default();
346        Event::PowerChanged {
347            bay: BayUid::new(DEVICE, 3),
348            power: PowerStatus::On,
349        }
350        .dispatch(&recorder);
351        assert_eq!(recorder.calls(), ["power=on", "bay_update"]);
352    }
353
354    #[test]
355    fn a_device_event_fires_its_own_method_then_the_generic_device_update() {
356        let recorder = Recorder::default();
357        Event::SetupStatusChanged {
358            device: DEVICE,
359            completed: true,
360        }
361        .dispatch(&recorder);
362        assert_eq!(recorder.calls(), ["setup=true", "device_update"]);
363    }
364
365    #[test]
366    fn a_link_event_fires_both_generic_updates() {
367        let recorder = Recorder::default();
368        Event::BayUnlinked {
369            bay: BayUid::new(DEVICE, 3),
370            linked_serial: "AB1234".to_owned(),
371            bay_name: "Output 1".to_owned(),
372        }
373        .dispatch(&recorder);
374        assert_eq!(recorder.calls(), ["bay_update", "device_update"]);
375    }
376
377    #[test]
378    fn an_event_a_handler_does_not_name_still_fires_the_generic_update() {
379        let recorder = Recorder::default();
380        Event::MonitoringPulse { device: DEVICE }.dispatch(&recorder);
381        assert_eq!(
382            recorder.calls(),
383            ["device_update"],
384            "the default no-op must not swallow the fan-in"
385        );
386    }
387}