1use crate::types::*;
7use crate::wire::{
8 BayUid, DeviceUid, EdidProfile, LinkFeature, RcAction, RcKey, RcType, V2ipFpgaFeature,
9};
10
11macro_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 #[derive(Clone, Debug, PartialEq)]
40 #[non_exhaustive]
41 pub enum Event {
42 $(
43 $(#[$dmeta])*
44 $dvariant {
45 device: DeviceUid,
47 $( #[allow(missing_docs)] $darg: $dty, )*
48 },
49 )*
50 $(
51 $(#[$bmeta])*
52 $bvariant {
53 bay: BayUid,
55 $( #[allow(missing_docs)] $barg: $bty, )*
56 },
57 )*
58 $(
59 $(#[$lmeta])*
60 $lvariant {
61 bay: BayUid,
63 $( #[allow(missing_docs)] $larg: $lty, )*
64 },
65 )*
66 }
67
68 #[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 fn on_device_update(&self, device: DeviceUid) {}
92
93 fn on_bay_update(&self, bay: BayUid) {}
95 }
96
97 impl Event {
98 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
127impl EventHandler for () {}
134
135events! {
136 device {
137 DeviceConfigChanged => on_device_config_changed();
139 DeviceConfigComplete => on_device_config_complete();
141 DeviceOnlineChanged => on_device_online_changed(online: bool);
143 DeviceTemperatureChanged => on_device_temperature_changed(temperatures: Vec<u8>);
145 FirmwareVersionChanged => on_firmware_version_changed(version: FirmwareVersion);
147 SystemStatusChanged => on_system_status_changed(status: u16, message: String);
149 NetworkStatusChanged => on_network_status_changed(status: NetworkPortStatus);
151 V2ipStatsChanged => on_v2ip_stats_changed(stats: V2ipDeviceStats);
153 V2ipSourcesChanged => on_v2ip_sources_changed(sources: Vec<V2ipStreamSources>);
155 V2ipDetailsChanged => on_v2ip_details_changed(details: DeviceV2ipDetails);
157 V2ipSinkChanged => on_v2ip_sink_changed(sink: DeviceV2ipSink);
160 MultiviewerStatusChanged => on_multiviewer_status_changed(status: MultiviewerStatus);
162 AudioEndpointsChanged => on_audio_endpoints_changed(endpoints: AudioEndpoints);
164 MeshMasterChanged => on_mesh_master_changed(master: DeviceUid);
166 TopologyChanged => on_topology_changed(topology: Vec<TopologyEntry>);
168 AmpDolbySettingsChanged => on_amp_dolby_settings_changed(settings: AmpDolbySettings);
170 SetupStatusChanged => on_setup_status_changed(completed: bool);
172 InstallerIdChanged => on_installer_id_changed(installer_id: u16);
174 TilingChanged => on_tiling_changed(tiling: V2ipTilingConfig);
176 V2ipFeaturesChanged => on_v2ip_features_changed(features: V2ipFpgaFeature);
178 V2ipDeviceSettingsChanged => on_v2ip_device_settings_changed(settings: V2ipDeviceSettings);
180 RcSettingsChanged => on_rc_settings_changed(settings: RcSettings);
182 V2ipLinkChanged => on_v2ip_link_changed(target: DeviceUid);
184 MultiviewerCommand => on_multiviewer_command(command: MultiviewerCommand);
186 AudioSelectInput => on_audio_select_input(change: AudioChangeSource);
188 AudioEndpointMute => on_audio_endpoint_mute(endpoint: u16, muted: bool);
190 AudioEndpointTrigger => on_audio_endpoint_trigger(endpoint: u16, active: bool);
192 AudioEndpointVolume => on_audio_endpoint_volume(endpoint: u16, volume: u32);
194 DiscoverRequest => on_discover_request();
196 SetRouteRequested => on_set_route_requested(request: SetRouteRequest);
198 EdidRequested => on_edid_requested(request: EdidRequest);
200 EdidReceived => on_edid_received(edid: EdidRecord);
202 BayNameChangeRequested => on_bay_name_change_requested(change: BayNameChange);
204 EdidProfileChangeRequested => on_edid_profile_change_requested(change: EdidProfileChange);
206 RebootRequested => on_reboot_requested(request: RebootRequest);
208 FactoryResetRequested => on_factory_reset_requested(request: FactoryResetRequest);
210 MonitoringPulse => on_monitoring_pulse();
212 UpgradeFpgaRequested => on_upgrade_fpga_requested();
214 DetectBaysRequested => on_detect_bays_requested();
216 PowerSaveRequested => on_power_save_requested(request: V2ipPowerSaveRequest);
218 KeyTransmitRequested => on_key_transmit_requested(request: KeyTransmitRequest);
220 ActionTransmitRequested => on_action_transmit_requested(request: ActionTransmitRequest);
222 IrTransmitRequested => on_ir_transmit_requested(request: IrTransmitRequest);
224 BlacklistChanged => on_blacklist_changed(change: V2ipBlacklistChange);
226 VideoWallCommand => on_video_wall_command(command: VideoWallCommand);
228 }
229 bay {
230 BayRegistered => on_bay_registered();
232 VideoSourceChanged => on_video_source_changed(source: Option<BayUid>);
234 AudioSourceChanged => on_audio_source_changed(source: Option<BayUid>);
236 VolumeChanged => on_volume_changed(volume: VolumeMuteStatus);
238 PowerChanged => on_power_changed(power: PowerStatus);
240 NameChanged => on_name_changed(name: String);
242 SignalDetectedChanged => on_signal_detected_changed(detected: bool);
244 FaultyChanged => on_faulty_changed(faulty: bool);
246 HiddenChanged => on_hidden_changed(hidden: bool);
248 PoePoweredChanged => on_poe_powered_changed(powered: bool);
250 HdbtConnectedChanged => on_hdbt_connected_changed(connected: bool);
252 SignalTypeChanged => on_signal_type_changed(signal_type: String);
254 HpdDetectedChanged => on_hpd_detected_changed(detected: bool);
256 CecDetectedChanged => on_cec_detected_changed(detected: bool);
258 ArcChanged => on_arc_changed(arc: ArcStatus);
260 EdidProfileChanged => on_edid_profile_changed(profile: EdidProfile);
262 RcTypeChanged => on_rc_type_changed(rc_type: RcType);
264 KeyPressed => on_key_pressed(key: RcKey);
266 ActionReceived => on_action_received(action: RcAction);
268 MirrorStatusChanged => on_mirror_status_changed(mirror: BayMirrorStatus);
270 AmpZoneSettingsChanged => on_amp_zone_settings_changed(settings: AmpZoneSettings);
272 VolumeStep => on_volume_step(up: bool);
274 AudioClipped => on_audio_clip(clip: AudioClip);
276 IrCaptured => on_ir_captured(capture: IrCapture);
278 FilteredDevicesChanged => on_filtered_devices_changed(filtered: Vec<DeviceUid>);
280 AudioEndpointChanged => on_audio_endpoint_changed(endpoint: u8);
282 EncoderDisabledChanged => on_encoder_disabled_changed(disabled: bool);
284 DecoderDisabledChanged => on_decoder_disabled_changed(disabled: bool);
286 }
287 bay_and_device {
288 BayLinked => on_bay_linked(linked_serial: String, bay_name: String, features: LinkFeature);
295 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}