1use std::sync::Arc;
12
13use hidpp::{channel::HidppChannel, device::Device, feature::CreatableFeature};
14
15use crate::backend::HidBackend;
16use crate::channel::route::{DeviceRoute, open_route_channel};
17
18mod backlight;
19mod diagnostics;
20mod dpi;
21mod error;
22mod fn_lock;
23mod haptic;
24mod hires_wheel;
25mod lighting;
26mod litra;
27mod smartshift;
28
29pub use backlight::{get_backlight, set_backlight_enabled};
30pub use diagnostics::{
31 FeatureEntry, FirmwareEntity, FirmwareEntityInfo, ReprogControlEntry, dump_features,
32 dump_firmware_entities, dump_reprog_controls, read_battery_raw,
33};
34pub use dpi::{
35 Dpi, DpiCapabilities, DpiInfo, get_dpi, get_dpi_info, get_dpi_info_on, set_dpi, set_dpi_on,
36};
37pub use error::{HidppFeatureErrorKind, HidppOperation, WriteError};
38pub use fn_lock::{set_fn_lock, set_fn_lock_on};
39pub(crate) use haptic::clear_haptic_feature_cache_for;
40pub use haptic::{
41 clear_haptic_feature_cache, ensure_haptics_armed_on, play_haptic, play_haptic_on,
42};
43pub use hidpp::feature::haptic_feedback::HapticWaveform;
44pub use hires_wheel::{
45 ScrollReportingTarget, ScrollResolution, ScrollWheelMode, get_scroll_wheel_mode,
46 get_scroll_wheel_mode_on, set_scroll_inversion, set_scroll_inversion_on, set_scroll_resolution,
47 set_scroll_resolution_on, set_scroll_wheel_mode, set_scroll_wheel_mode_on,
48};
49pub use lighting::{
50 LightingMethod, set_keyboard_color, set_keyboard_color_on, set_keyboard_color_with,
51 set_keyboard_color_with_on,
52};
53pub(crate) use litra::litra_capabilities;
54pub use litra::{
55 LITRA_BEAM_PRODUCT_ID, LITRA_GLOW_PRODUCT_ID, LightCommand, LitraDescriptor, LitraModel,
56 apply as apply_litra, encode_command as encode_litra_command, find_litra,
57 litra_model_for_route, matches_litra,
58};
59pub use smartshift::{
60 get_smartshift_status, get_smartshift_status_on, set_smartshift, set_smartshift_on,
61 set_smartshift_sensitivity, toggle_smartshift, toggle_smartshift_on,
62};
63
64pub use openlogi_core::hid::light::commands_for_light_settings;
68
69pub(crate) use error::classify_hidpp_error;
70
71pub(crate) async fn open_feature<F: CreatableFeature + 'static>(
80 device: &mut Device,
81) -> Result<Arc<F>, WriteError> {
82 let info = device
83 .root()
84 .get_feature(F::ID)
85 .await
86 .map_err(|e| classify_hidpp_error(e, HidppOperation::ResolveFeature, F::ID))?
87 .ok_or(WriteError::FeatureUnsupported { feature_hex: F::ID })?;
88 Ok(device.add_feature::<F>(info.index))
89}
90
91pub(crate) async fn with_route<F, Fut, T>(
94 backend: &dyn HidBackend,
95 route: &DeviceRoute,
96 f: F,
97) -> Result<T, WriteError>
98where
99 F: FnOnce(Arc<HidppChannel>) -> Fut,
100 Fut: std::future::Future<Output = Result<T, WriteError>>,
101{
102 match open_route_channel(backend, route).await? {
103 Some(channel) => f(channel).await,
104 None => Err(WriteError::DeviceNotFound),
105 }
106}
107
108#[cfg(test)]
109mod tests;