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 RcSettingsChanged => on_rc_settings_changed(settings: RcSettings);
180 V2ipLinkChanged => on_v2ip_link_changed(target: DeviceUid);
182 MultiviewerCommand => on_multiviewer_command(command: MultiviewerCommand);
184 AudioSelectInput => on_audio_select_input(change: AudioChangeSource);
186 AudioEndpointMute => on_audio_endpoint_mute(endpoint: u16, muted: bool);
188 AudioEndpointTrigger => on_audio_endpoint_trigger(endpoint: u16, active: bool);
190 AudioEndpointVolume => on_audio_endpoint_volume(endpoint: u16, volume: u32);
192 DiscoverRequest => on_discover_request();
194 SetRouteRequested => on_set_route_requested(request: SetRouteRequest);
196 EdidRequested => on_edid_requested(request: EdidRequest);
198 EdidReceived => on_edid_received(edid: EdidRecord);
200 BayNameChangeRequested => on_bay_name_change_requested(change: BayNameChange);
202 EdidProfileChangeRequested => on_edid_profile_change_requested(change: EdidProfileChange);
204 RebootRequested => on_reboot_requested(request: RebootRequest);
206 FactoryResetRequested => on_factory_reset_requested(request: FactoryResetRequest);
208 MonitoringPulse => on_monitoring_pulse();
210 UpgradeFpgaRequested => on_upgrade_fpga_requested();
212 DetectBaysRequested => on_detect_bays_requested();
214 PowerSaveRequested => on_power_save_requested(request: V2ipPowerSaveRequest);
216 KeyTransmitRequested => on_key_transmit_requested(request: KeyTransmitRequest);
218 ActionTransmitRequested => on_action_transmit_requested(request: ActionTransmitRequest);
220 IrTransmitRequested => on_ir_transmit_requested(request: IrTransmitRequest);
222 BlacklistChanged => on_blacklist_changed(change: V2ipBlacklistChange);
224 VideoWallCommand => on_video_wall_command(command: VideoWallCommand);
226 }
227 bay {
228 BayRegistered => on_bay_registered();
230 VideoSourceChanged => on_video_source_changed(source: Option<BayUid>);
232 AudioSourceChanged => on_audio_source_changed(source: Option<BayUid>);
234 VolumeChanged => on_volume_changed(volume: VolumeMuteStatus);
236 PowerChanged => on_power_changed(power: PowerStatus);
238 NameChanged => on_name_changed(name: String);
240 SignalDetectedChanged => on_signal_detected_changed(detected: bool);
242 FaultyChanged => on_faulty_changed(faulty: bool);
244 HiddenChanged => on_hidden_changed(hidden: bool);
246 PoePoweredChanged => on_poe_powered_changed(powered: bool);
248 HdbtConnectedChanged => on_hdbt_connected_changed(connected: bool);
250 SignalTypeChanged => on_signal_type_changed(signal_type: String);
252 HpdDetectedChanged => on_hpd_detected_changed(detected: bool);
254 CecDetectedChanged => on_cec_detected_changed(detected: bool);
256 ArcChanged => on_arc_changed(arc: ArcStatus);
258 EdidProfileChanged => on_edid_profile_changed(profile: EdidProfile);
260 RcTypeChanged => on_rc_type_changed(rc_type: RcType);
262 KeyPressed => on_key_pressed(key: RcKey);
264 ActionReceived => on_action_received(action: RcAction);
266 MirrorStatusChanged => on_mirror_status_changed(mirror: BayMirrorStatus);
268 AmpZoneSettingsChanged => on_amp_zone_settings_changed(settings: AmpZoneSettings);
270 VolumeStep => on_volume_step(up: bool);
272 AudioClipped => on_audio_clip(clip: AudioClip);
274 IrCaptured => on_ir_captured(capture: IrCapture);
276 FilteredDevicesChanged => on_filtered_devices_changed(filtered: Vec<DeviceUid>);
278 AudioEndpointChanged => on_audio_endpoint_changed(endpoint: u8);
280 EncoderDisabledChanged => on_encoder_disabled_changed(disabled: bool);
282 DecoderDisabledChanged => on_decoder_disabled_changed(disabled: bool);
284 }
285 bay_and_device {
286 BayLinked => on_bay_linked(linked_serial: String, bay_name: String, features: LinkFeature);
293 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}