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        /// The device's settings changed.
179        V2ipDeviceSettingsChanged => on_v2ip_device_settings_changed(settings: V2ipDeviceSettings);
180        /// A source bay's remote-control configuration changed.
181        RcSettingsChanged => on_rc_settings_changed(settings: RcSettings);
182        /// A V2IP device was linked to a remote peer.
183        V2ipLinkChanged => on_v2ip_link_changed(target: DeviceUid);
184        /// A multiviewer command arrived.
185        MultiviewerCommand => on_multiviewer_command(command: MultiviewerCommand);
186        /// An audio endpoint was switched to a new source.
187        AudioSelectInput => on_audio_select_input(change: AudioChangeSource);
188        /// An audio endpoint was muted or unmuted.
189        AudioEndpointMute => on_audio_endpoint_mute(endpoint: u16, muted: bool);
190        /// An audio endpoint's trigger changed.
191        AudioEndpointTrigger => on_audio_endpoint_trigger(endpoint: u16, active: bool);
192        /// An audio endpoint's volume changed.
193        AudioEndpointVolume => on_audio_endpoint_volume(endpoint: u16, volume: u32);
194        /// A peer asked every device to announce itself.
195        DiscoverRequest => on_discover_request();
196        /// A peer asked a device to switch a sink.
197        SetRouteRequested => on_set_route_requested(request: SetRouteRequest);
198        /// A peer asked a device for its EDID.
199        EdidRequested => on_edid_requested(request: EdidRequest);
200        /// A device answered with its EDID.
201        EdidReceived => on_edid_received(edid: EdidRecord);
202        /// A peer asked a device to rename a bay.
203        BayNameChangeRequested => on_bay_name_change_requested(change: BayNameChange);
204        /// A peer asked a device to switch its EDID profile.
205        EdidProfileChangeRequested => on_edid_profile_change_requested(change: EdidProfileChange);
206        /// A peer asked a device to reboot.
207        RebootRequested => on_reboot_requested(request: RebootRequest);
208        /// A peer asked devices to factory-reset.
209        FactoryResetRequested => on_factory_reset_requested(request: FactoryResetRequest);
210        /// A device sent its monitoring pulse.
211        MonitoringPulse => on_monitoring_pulse();
212        /// A peer asked a device to upgrade its FPGA.
213        UpgradeFpgaRequested => on_upgrade_fpga_requested();
214        /// A peer asked a device to re-detect its bays.
215        DetectBaysRequested => on_detect_bays_requested();
216        /// A peer asked a sink to enter or leave power save.
217        PowerSaveRequested => on_power_save_requested(request: V2ipPowerSaveRequest);
218        /// A peer asked a device to send a remote-control key.
219        KeyTransmitRequested => on_key_transmit_requested(request: KeyTransmitRequest);
220        /// A peer asked a device to perform a remote-control action.
221        ActionTransmitRequested => on_action_transmit_requested(request: ActionTransmitRequest);
222        /// A peer asked a device to blast raw infrared.
223        IrTransmitRequested => on_ir_transmit_requested(request: IrTransmitRequest);
224        /// A device was added to or removed from the source blacklist.
225        BlacklistChanged => on_blacklist_changed(change: V2ipBlacklistChange);
226        /// A video wall command arrived.
227        VideoWallCommand => on_video_wall_command(command: VideoWallCommand);
228    }
229    bay {
230        /// A bay was seen for the first time.
231        BayRegistered => on_bay_registered();
232        /// The bay's routed video source changed.
233        VideoSourceChanged => on_video_source_changed(source: Option<BayUid>);
234        /// The bay's routed audio source changed.
235        AudioSourceChanged => on_audio_source_changed(source: Option<BayUid>);
236        /// The bay's volume or mute state changed.
237        VolumeChanged => on_volume_changed(volume: VolumeMuteStatus);
238        /// The attached device's power state changed.
239        PowerChanged => on_power_changed(power: PowerStatus);
240        /// The bay was renamed.
241        NameChanged => on_name_changed(name: String);
242        /// A signal appeared or disappeared.
243        SignalDetectedChanged => on_signal_detected_changed(detected: bool);
244        /// The bay started or stopped reporting a fault.
245        FaultyChanged => on_faulty_changed(faulty: bool);
246        /// The bay was hidden or shown.
247        HiddenChanged => on_hidden_changed(hidden: bool);
248        /// Power over Ethernet started or stopped supplying the bay.
249        PoePoweredChanged => on_poe_powered_changed(powered: bool);
250        /// The HDBaseT link came up or went down.
251        HdbtConnectedChanged => on_hdbt_connected_changed(connected: bool);
252        /// The signal format description changed.
253        SignalTypeChanged => on_signal_type_changed(signal_type: String);
254        /// Hot-plug detect was asserted or released.
255        HpdDetectedChanged => on_hpd_detected_changed(detected: bool);
256        /// A CEC device answered or stopped answering.
257        CecDetectedChanged => on_cec_detected_changed(detected: bool);
258        /// The audio return channel changed.
259        ArcChanged => on_arc_changed(arc: ArcStatus);
260        /// The input's EDID profile changed.
261        EdidProfileChanged => on_edid_profile_changed(profile: EdidProfile);
262        /// The input's remote-control type changed.
263        RcTypeChanged => on_rc_type_changed(rc_type: RcType);
264        /// A remote-control key was pressed on the bay.
265        KeyPressed => on_key_pressed(key: RcKey);
266        /// A remote-control action was received on the bay.
267        ActionReceived => on_action_received(action: RcAction);
268        /// The bay started or stopped mirroring another output.
269        MirrorStatusChanged => on_mirror_status_changed(mirror: BayMirrorStatus);
270        /// A ProAmp8 zone's settings changed.
271        AmpZoneSettingsChanged => on_amp_zone_settings_changed(settings: AmpZoneSettings);
272        /// A volume step was requested on the bay.
273        VolumeStep => on_volume_step(up: bool);
274        /// The bay detected audio clipping.
275        AudioClipped => on_audio_clip(clip: AudioClip);
276        /// Raw infrared was captured on the bay.
277        IrCaptured => on_ir_captured(capture: IrCapture);
278        /// The devices filtered out of this sink's picker changed.
279        FilteredDevicesChanged => on_filtered_devices_changed(filtered: Vec<DeviceUid>);
280        /// The audio endpoint the bay carries changed.
281        AudioEndpointChanged => on_audio_endpoint_changed(endpoint: u8);
282        /// The bay's V2IP encoder was enabled or disabled.
283        EncoderDisabledChanged => on_encoder_disabled_changed(disabled: bool);
284        /// The bay's V2IP decoder was enabled or disabled.
285        DecoderDisabledChanged => on_decoder_disabled_changed(disabled: bool);
286    }
287    bay_and_device {
288        /// The bay was linked to a bay on another device.
289        ///
290        /// `linked_serial` is the serial of the device at the other end of the
291        /// link, and `bay_name` the name of the bay whose link record changed:
292        /// this bay on the device that reported the change, and the far bay on
293        /// its peer. Both ends are told, so both fire.
294        BayLinked => on_bay_linked(linked_serial: String, bay_name: String, features: LinkFeature);
295        /// The bay's link to another device was removed.
296        ///
297        /// The arguments describe the link that was removed, and mean what
298        /// they do on [`Event::BayLinked`].
299        BayUnlinked => on_bay_unlinked(linked_serial: String, bay_name: String);
300    }
301}
302
303#[cfg(test)]
304mod tests {
305    use super::*;
306    use std::sync::Mutex;
307
308    #[derive(Default)]
309    struct Recorder {
310        calls: Mutex<Vec<String>>,
311    }
312
313    impl Recorder {
314        fn record(&self, what: &str) {
315            if let Ok(mut calls) = self.calls.lock() {
316                calls.push(what.to_owned());
317            }
318        }
319
320        fn calls(&self) -> Vec<String> {
321            self.calls.lock().map(|c| c.clone()).unwrap_or_default()
322        }
323    }
324
325    impl EventHandler for Recorder {
326        fn on_power_changed(&self, _bay: BayUid, power: PowerStatus) {
327            self.record(&format!("power={power}"));
328        }
329
330        fn on_setup_status_changed(&self, _device: DeviceUid, completed: bool) {
331            self.record(&format!("setup={completed}"));
332        }
333
334        fn on_bay_update(&self, _bay: BayUid) {
335            self.record("bay_update");
336        }
337
338        fn on_device_update(&self, _device: DeviceUid) {
339            self.record("device_update");
340        }
341    }
342
343    const DEVICE: DeviceUid = DeviceUid::from_array([9; 16]);
344
345    #[test]
346    fn a_bay_event_fires_its_own_method_then_the_generic_bay_update() {
347        let recorder = Recorder::default();
348        Event::PowerChanged {
349            bay: BayUid::new(DEVICE, 3),
350            power: PowerStatus::On,
351        }
352        .dispatch(&recorder);
353        assert_eq!(recorder.calls(), ["power=on", "bay_update"]);
354    }
355
356    #[test]
357    fn a_device_event_fires_its_own_method_then_the_generic_device_update() {
358        let recorder = Recorder::default();
359        Event::SetupStatusChanged {
360            device: DEVICE,
361            completed: true,
362        }
363        .dispatch(&recorder);
364        assert_eq!(recorder.calls(), ["setup=true", "device_update"]);
365    }
366
367    #[test]
368    fn a_link_event_fires_both_generic_updates() {
369        let recorder = Recorder::default();
370        Event::BayUnlinked {
371            bay: BayUid::new(DEVICE, 3),
372            linked_serial: "AB1234".to_owned(),
373            bay_name: "Output 1".to_owned(),
374        }
375        .dispatch(&recorder);
376        assert_eq!(recorder.calls(), ["bay_update", "device_update"]);
377    }
378
379    #[test]
380    fn an_event_a_handler_does_not_name_still_fires_the_generic_update() {
381        let recorder = Recorder::default();
382        Event::MonitoringPulse { device: DEVICE }.dispatch(&recorder);
383        assert_eq!(
384            recorder.calls(),
385            ["device_update"],
386            "the default no-op must not swallow the fan-in"
387        );
388    }
389}