2023-04-01 23:32:31 +08:00
|
|
|
use std::{sync::Arc, time::Duration};
|
2023-04-01 10:42:46 +08:00
|
|
|
|
2023-04-02 14:52:08 +08:00
|
|
|
use paris::{info, warn};
|
2023-04-01 18:39:51 +08:00
|
|
|
use tauri::async_runtime::{Mutex, RwLock};
|
2023-04-01 23:32:31 +08:00
|
|
|
use tokio::{sync::watch, time::sleep};
|
2023-04-01 10:42:46 +08:00
|
|
|
|
|
|
|
use crate::{
|
|
|
|
ambient_light::{config, ConfigManager},
|
|
|
|
rpc::MqttRpc,
|
2023-04-01 18:39:51 +08:00
|
|
|
screenshot::Screenshot,
|
2023-04-02 14:52:08 +08:00
|
|
|
screenshot_manager::ScreenshotManager, led_color::LedColor,
|
2023-04-01 10:42:46 +08:00
|
|
|
};
|
|
|
|
|
2023-04-01 15:39:21 +08:00
|
|
|
use itertools::Itertools;
|
|
|
|
|
2023-04-01 18:39:51 +08:00
|
|
|
use super::{LedStripConfigGroup, SamplePointConfig};
|
|
|
|
|
2023-04-01 10:42:46 +08:00
|
|
|
pub struct LedColorsPublisher {
|
2023-04-02 14:52:08 +08:00
|
|
|
sorted_colors_rx: Arc<RwLock<watch::Receiver<Vec<u8>>>>,
|
|
|
|
sorted_colors_tx: Arc<RwLock<watch::Sender<Vec<u8>>>>,
|
|
|
|
colors_rx: Arc<RwLock<watch::Receiver<Vec<LedColor>>>>,
|
|
|
|
colors_tx: Arc<RwLock<watch::Sender<Vec<LedColor>>>>,
|
2023-04-01 10:42:46 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
impl LedColorsPublisher {
|
|
|
|
pub async fn global() -> &'static Self {
|
|
|
|
static LED_COLORS_PUBLISHER_GLOBAL: tokio::sync::OnceCell<LedColorsPublisher> =
|
|
|
|
tokio::sync::OnceCell::const_new();
|
|
|
|
|
2023-04-02 14:52:08 +08:00
|
|
|
let (sorted_tx, sorted_rx) = watch::channel(Vec::new());
|
2023-04-01 10:42:46 +08:00
|
|
|
let (tx, rx) = watch::channel(Vec::new());
|
|
|
|
|
|
|
|
LED_COLORS_PUBLISHER_GLOBAL
|
|
|
|
.get_or_init(|| async {
|
|
|
|
LedColorsPublisher {
|
2023-04-02 14:52:08 +08:00
|
|
|
sorted_colors_rx: Arc::new(RwLock::new(sorted_rx)),
|
|
|
|
sorted_colors_tx: Arc::new(RwLock::new(sorted_tx)),
|
|
|
|
colors_rx: Arc::new(RwLock::new(rx)),
|
|
|
|
colors_tx: Arc::new(RwLock::new(tx)),
|
2023-04-01 10:42:46 +08:00
|
|
|
}
|
|
|
|
})
|
|
|
|
.await
|
|
|
|
}
|
|
|
|
|
2023-04-02 14:05:53 +08:00
|
|
|
pub fn start(&self) {
|
2023-04-02 14:52:08 +08:00
|
|
|
let sorted_colors_tx = self.sorted_colors_tx.clone();
|
|
|
|
let colors_tx = self.colors_tx.clone();
|
2023-04-01 10:42:46 +08:00
|
|
|
|
2023-04-02 14:05:53 +08:00
|
|
|
tokio::spawn(async move {
|
2023-04-01 10:42:46 +08:00
|
|
|
loop {
|
2023-04-02 14:52:08 +08:00
|
|
|
let sorted_colors_tx = sorted_colors_tx.write().await;
|
|
|
|
let colors_tx = colors_tx.write().await;
|
2023-04-01 18:39:51 +08:00
|
|
|
let screenshot_manager = ScreenshotManager::global().await;
|
2023-04-01 10:42:46 +08:00
|
|
|
|
2023-04-01 18:39:51 +08:00
|
|
|
let config_manager = ConfigManager::global().await;
|
|
|
|
let config_receiver = config_manager.clone_config_update_receiver();
|
|
|
|
let configs = config_receiver.borrow().clone();
|
|
|
|
let configs = Self::get_colors_configs(&configs).await;
|
2023-04-01 10:42:46 +08:00
|
|
|
|
2023-04-01 18:39:51 +08:00
|
|
|
let mut some_screenshot_receiver_is_none = false;
|
2023-04-01 15:39:21 +08:00
|
|
|
|
2023-04-01 18:39:51 +08:00
|
|
|
loop {
|
|
|
|
let mut screenshots = Vec::new();
|
2023-04-01 15:39:21 +08:00
|
|
|
|
2023-04-01 18:39:51 +08:00
|
|
|
for rx in configs.screenshot_receivers.to_owned() {
|
|
|
|
let mut rx = rx.lock_owned().await;
|
|
|
|
if rx.is_none() {
|
|
|
|
some_screenshot_receiver_is_none = true;
|
|
|
|
warn!("screenshot receiver is none");
|
|
|
|
continue;
|
|
|
|
}
|
2023-04-01 15:39:21 +08:00
|
|
|
|
2023-04-01 18:39:51 +08:00
|
|
|
let rx = rx.as_mut().unwrap();
|
2023-04-01 10:42:46 +08:00
|
|
|
|
2023-04-01 18:39:51 +08:00
|
|
|
if let Err(err) = rx.changed().await {
|
|
|
|
warn!("rx changed error: {}", err);
|
|
|
|
continue;
|
|
|
|
}
|
2023-04-01 23:32:31 +08:00
|
|
|
// log::info!("screenshot updated");
|
2023-04-01 10:42:46 +08:00
|
|
|
|
|
|
|
let screenshot = rx.borrow().clone();
|
|
|
|
|
2023-04-01 18:39:51 +08:00
|
|
|
screenshots.push(screenshot);
|
|
|
|
}
|
2023-04-01 10:42:46 +08:00
|
|
|
|
2023-04-01 18:39:51 +08:00
|
|
|
let colors = screenshot_manager
|
2023-04-02 14:52:08 +08:00
|
|
|
.get_all_colors(&configs.sample_point_groups, &screenshots)
|
2023-04-01 18:39:51 +08:00
|
|
|
.await;
|
2023-04-02 14:52:08 +08:00
|
|
|
|
|
|
|
let sorted_colors =
|
|
|
|
ScreenshotManager::get_sorted_colors(&colors, &configs.mappers).await;
|
|
|
|
|
|
|
|
match colors_tx.send(colors) {
|
|
|
|
Ok(_) => {
|
|
|
|
// log::info!("colors updated");
|
|
|
|
}
|
|
|
|
Err(_) => {
|
|
|
|
warn!("colors update failed");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
match sorted_colors_tx.send(sorted_colors) {
|
2023-04-01 18:39:51 +08:00
|
|
|
Ok(_) => {
|
|
|
|
// log::info!("colors updated");
|
|
|
|
}
|
|
|
|
Err(_) => {
|
|
|
|
warn!("colors update failed");
|
|
|
|
}
|
|
|
|
}
|
2023-04-01 10:42:46 +08:00
|
|
|
|
2023-04-02 14:52:08 +08:00
|
|
|
if some_screenshot_receiver_is_none {
|
|
|
|
info!("some screenshot receiver is none. reload.");
|
2023-04-01 23:32:31 +08:00
|
|
|
sleep(Duration::from_millis(1000)).await;
|
2023-04-01 18:39:51 +08:00
|
|
|
break;
|
2023-04-01 10:42:46 +08:00
|
|
|
}
|
2023-04-02 14:52:08 +08:00
|
|
|
|
|
|
|
if config_receiver.has_changed().unwrap_or(true) {
|
|
|
|
info!("config changed. reload.");
|
|
|
|
sleep(Duration::from_millis(100)).await;
|
|
|
|
break;
|
|
|
|
}
|
2023-04-01 10:42:46 +08:00
|
|
|
}
|
2023-04-01 18:39:51 +08:00
|
|
|
}
|
|
|
|
});
|
2023-04-02 14:05:53 +08:00
|
|
|
|
2023-04-02 14:52:08 +08:00
|
|
|
let rx = self.sorted_colors_rx.clone();
|
2023-04-02 14:05:53 +08:00
|
|
|
tokio::spawn(async move {
|
|
|
|
let mut rx = rx.read().await.clone();
|
|
|
|
loop {
|
|
|
|
if let Err(err) = rx.changed().await {
|
|
|
|
warn!("rx changed error: {}", err);
|
|
|
|
sleep(Duration::from_millis(1000)).await;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
let colors = rx.borrow().clone();
|
|
|
|
|
|
|
|
let len = colors.len();
|
|
|
|
|
|
|
|
match Self::send_colors(colors).await {
|
|
|
|
Ok(_) => {
|
|
|
|
log::info!("colors sent. len: {}", len);
|
|
|
|
}
|
|
|
|
Err(err) => {
|
|
|
|
warn!("colors send failed: {}", err);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2023-04-01 10:42:46 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
pub async fn send_colors(payload: Vec<u8>) -> anyhow::Result<()> {
|
|
|
|
let mqtt = MqttRpc::global().await;
|
|
|
|
|
|
|
|
mqtt.publish_led_sub_pixels(payload).await
|
|
|
|
}
|
|
|
|
|
2023-04-02 14:52:08 +08:00
|
|
|
pub async fn clone_sorted_colors_receiver(&self) -> watch::Receiver<Vec<u8>> {
|
|
|
|
self.sorted_colors_rx.read().await.clone()
|
2023-04-01 10:42:46 +08:00
|
|
|
}
|
2023-04-01 18:39:51 +08:00
|
|
|
|
|
|
|
pub async fn get_colors_configs(configs: &LedStripConfigGroup) -> AllColorConfig {
|
|
|
|
let screenshot_manager = ScreenshotManager::global().await;
|
|
|
|
|
|
|
|
let channels = screenshot_manager.channels.read().await;
|
|
|
|
|
|
|
|
let display_ids = configs
|
|
|
|
.strips
|
|
|
|
.iter()
|
|
|
|
.map(|c| c.display_id)
|
|
|
|
.unique()
|
|
|
|
.collect::<Vec<_>>();
|
|
|
|
|
|
|
|
let mappers = configs.mappers.clone();
|
|
|
|
|
|
|
|
let mut local_rx_list = Vec::new();
|
|
|
|
let mut colors_configs = Vec::new();
|
|
|
|
|
|
|
|
for display_id in display_ids.clone().iter() {
|
|
|
|
let display_id = *display_id;
|
|
|
|
|
|
|
|
let channel = channels.get(&display_id);
|
|
|
|
let channel = match channel {
|
|
|
|
Some(channel) => Some(channel.clone()),
|
|
|
|
None => None,
|
|
|
|
};
|
|
|
|
local_rx_list.push(Arc::new(Mutex::new(channel.clone())));
|
|
|
|
|
|
|
|
let led_strip_configs: Vec<_> = configs
|
|
|
|
.strips
|
|
|
|
.iter()
|
|
|
|
.filter(|c| c.display_id == display_id)
|
|
|
|
.collect();
|
|
|
|
|
|
|
|
let rx = channel;
|
|
|
|
if rx.is_none() {
|
|
|
|
warn!("no channel for display_id: {}", display_id);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if led_strip_configs.len() == 0 {
|
|
|
|
warn!("no led strip config for display_id: {}", display_id);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
let mut rx = rx.unwrap().to_owned();
|
|
|
|
|
|
|
|
if rx.changed().await.is_ok() {
|
|
|
|
let screenshot = rx.borrow().clone();
|
|
|
|
log::info!("screenshot updated: {:?}", display_id);
|
|
|
|
|
|
|
|
let points: Vec<_> = led_strip_configs
|
|
|
|
.iter()
|
|
|
|
.map(|config| screenshot.get_sample_points(&config))
|
|
|
|
.flatten()
|
|
|
|
.collect();
|
|
|
|
|
|
|
|
let colors_config = config::SamplePointConfig { display_id, points };
|
|
|
|
|
|
|
|
colors_configs.push(colors_config);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return AllColorConfig {
|
|
|
|
sample_point_groups: colors_configs,
|
|
|
|
mappers,
|
|
|
|
screenshot_receivers: local_rx_list,
|
|
|
|
};
|
|
|
|
}
|
2023-04-02 14:52:08 +08:00
|
|
|
|
|
|
|
pub async fn clone_colors_receiver(&self) -> watch::Receiver<Vec<LedColor>> {
|
|
|
|
self.colors_rx.read().await.clone()
|
|
|
|
}
|
2023-04-01 18:39:51 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
pub struct AllColorConfig {
|
|
|
|
pub sample_point_groups: Vec<SamplePointConfig>,
|
|
|
|
pub mappers: Vec<config::SamplePointMapper>,
|
|
|
|
pub screenshot_receivers: Vec<Arc<Mutex<Option<watch::Receiver<Screenshot>>>>>,
|
2023-04-01 10:42:46 +08:00
|
|
|
}
|