use std::iter::zip;
use std::sync::Arc;
use std::time::Duration;
use hidapi::{HidApi, HidResult};
use image::DynamicImage;
use tokio::sync::Mutex;
use tokio::task::block_in_place;
use tokio::time::sleep;
use crate::{DeviceState, DeviceStateUpdate, Kind, list_devices, StreamDeck, StreamDeckError, StreamDeckInput};
use crate::images::{convert_image_async, ImageRect};
pub fn refresh_device_list_async(hidapi: &mut HidApi) -> HidResult<()> {
block_in_place(move || hidapi.refresh_devices())
}
pub fn list_devices_async(hidapi: &HidApi) -> Vec<(Kind, String)> {
block_in_place(move || list_devices(&hidapi))
}
#[derive(Clone)]
pub struct AsyncStreamDeck {
kind: Kind,
device: Arc<Mutex<StreamDeck>>,
}
impl AsyncStreamDeck {
pub fn connect(hidapi: &HidApi, kind: Kind, serial: &str) -> Result<AsyncStreamDeck, StreamDeckError> {
let device = block_in_place(move || StreamDeck::connect(hidapi, kind, serial))?;
Ok(AsyncStreamDeck {
kind,
device: Arc::new(Mutex::new(device)),
})
}
}
impl AsyncStreamDeck {
pub fn kind(&self) -> Kind {
self.kind
}
pub async fn manufacturer(&self) -> Result<String, StreamDeckError> {
let device = self.device.lock().await;
Ok(block_in_place(move || device.manufacturer())?)
}
pub async fn product(&self) -> Result<String, StreamDeckError> {
let device = self.device.lock().await;
Ok(block_in_place(move || device.product())?)
}
pub async fn serial_number(&self) -> Result<String, StreamDeckError> {
let device = self.device.lock().await;
Ok(block_in_place(move || device.serial_number())?)
}
pub async fn firmware_version(&self) -> Result<String, StreamDeckError> {
let device = self.device.lock().await;
Ok(block_in_place(move || device.firmware_version())?)
}
pub async fn read_input(&self, poll_rate: f32) -> Result<StreamDeckInput, StreamDeckError> {
loop {
let device = self.device.lock().await;
let data = block_in_place(move || device.read_input(None))?;
if !data.is_empty() {
return Ok(data);
}
sleep(Duration::from_secs_f32(1.0 / poll_rate)).await;
}
}
pub async fn reset(&self) -> Result<(), StreamDeckError> {
let device = self.device.lock().await;
Ok(block_in_place(move || device.reset())?)
}
pub async fn set_brightness(&self, percent: u8) -> Result<(), StreamDeckError> {
let device = self.device.lock().await;
Ok(block_in_place(move || device.set_brightness(percent))?)
}
pub async fn write_image(&self, key: u8, image_data: &[u8]) -> Result<(), StreamDeckError> {
let device = self.device.lock().await;
Ok(block_in_place(move || device.write_image(key, image_data))?)
}
pub async fn write_lcd(&self, x: u16, y: u16, rect: &ImageRect) -> Result<(), StreamDeckError> {
let device = self.device.lock().await;
Ok(block_in_place(move || device.write_lcd(x, y, rect))?)
}
pub async fn write_lcd_fill(&self, image_data: &[u8]) -> Result<(), StreamDeckError> {
let device = self.device.lock().await;
Ok(block_in_place(move || device.write_lcd_fill(image_data))?)
}
pub async fn clear_button_image(&self, key: u8) -> Result<(), StreamDeckError> {
let device = self.device.lock().await;
Ok(block_in_place(move || device.clear_button_image(key))?)
}
pub async fn clear_all_button_images(&self) -> Result<(), StreamDeckError> {
let device = self.device.lock().await;
Ok(block_in_place(move || device.clear_all_button_images())?)
}
pub async fn set_button_image(&self, key: u8, image: DynamicImage) -> Result<(), StreamDeckError> {
let image = convert_image_async(self.kind, image)?;
let device = self.device.lock().await;
Ok(block_in_place(move || device.write_image(key, &image))?)
}
pub async fn set_logo_image(&self, image: DynamicImage) -> Result<(), StreamDeckError> {
let device = self.device.lock().await;
Ok(block_in_place(move || device.set_logo_image(image))?)
}
pub async fn set_touchpoint_color(&self, point: u8, red: u8, green: u8, blue: u8) -> Result<(), StreamDeckError> {
let device = self.device.lock().await;
Ok(block_in_place(move || device.set_touchpoint_color(point, red, green, blue))?)
}
pub async fn sleep(&self) -> Result<(), StreamDeckError> {
let device = self.device.lock().await;
Ok(block_in_place(move || device.sleep())?)
}
pub async fn keep_alive(&self) -> Result<(), StreamDeckError> {
let device = self.device.lock().await;
Ok(block_in_place(move || device.keep_alive())?)
}
pub async fn shutdown(&self) -> Result<(), StreamDeckError> {
let device = self.device.lock().await;
Ok(block_in_place(move || device.shutdown())?)
}
pub async fn flush(&self) -> Result<(), StreamDeckError> {
let device = self.device.lock().await;
Ok(block_in_place(move || device.flush())?)
}
pub fn get_reader(&self) -> Arc<AsyncDeviceStateReader> {
Arc::new(AsyncDeviceStateReader {
device: self.clone(),
states: Mutex::new(DeviceState {
buttons: vec![false; self.kind.key_count() as usize + self.kind.touchpoint_count() as usize],
encoders: vec![false; self.kind.encoder_count() as usize],
}),
})
}
}
pub struct AsyncDeviceStateReader {
device: AsyncStreamDeck,
states: Mutex<DeviceState>,
}
impl AsyncDeviceStateReader {
pub async fn read(&self, poll_rate: f32) -> Result<Vec<DeviceStateUpdate>, StreamDeckError> {
let input = self.device.read_input(poll_rate).await?;
let mut my_states = self.states.lock().await;
let mut updates = vec![];
match input {
StreamDeckInput::ButtonStateChange(buttons) => {
for (index, (their, mine)) in zip(buttons.iter(), my_states.buttons.iter()).enumerate() {
match self.device.kind {
Kind::Akp153 | Kind::Akp153E | Kind::Akp815 | Kind::MiraBoxHSV293S => {
if *their {
updates.push(DeviceStateUpdate::ButtonDown(index as u8));
updates.push(DeviceStateUpdate::ButtonUp(index as u8));
}
}
_ => {
if *their != *mine {
if index < self.device.kind.key_count() as usize {
if *their {
updates.push(DeviceStateUpdate::ButtonDown(index as u8));
} else {
updates.push(DeviceStateUpdate::ButtonUp(index as u8));
}
} else {
if *their {
updates.push(DeviceStateUpdate::TouchPointDown(index as u8 - self.device.kind.key_count()));
} else {
updates.push(DeviceStateUpdate::TouchPointUp(index as u8 - self.device.kind.key_count()));
}
}
}
}
}
}
my_states.buttons = buttons;
}
StreamDeckInput::EncoderStateChange(encoders) => {
for (index, (their, mine)) in zip(encoders.iter(), my_states.encoders.iter()).enumerate() {
if *their != *mine {
if *their {
updates.push(DeviceStateUpdate::EncoderDown(index as u8));
} else {
updates.push(DeviceStateUpdate::EncoderUp(index as u8));
}
}
}
my_states.encoders = encoders;
}
StreamDeckInput::EncoderTwist(twist) => {
for (index, change) in twist.iter().enumerate() {
if *change != 0 {
updates.push(DeviceStateUpdate::EncoderTwist(index as u8, *change));
}
}
}
StreamDeckInput::TouchScreenPress(x, y) => {
updates.push(DeviceStateUpdate::TouchScreenPress(x, y));
}
StreamDeckInput::TouchScreenLongPress(x, y) => {
updates.push(DeviceStateUpdate::TouchScreenLongPress(x, y));
}
StreamDeckInput::TouchScreenSwipe(s, e) => {
updates.push(DeviceStateUpdate::TouchScreenSwipe(s, e));
}
_ => {}
}
drop(my_states);
Ok(updates)
}
}