feat: 💄 first gui for streamer

fix: 🚑 oneshot fail in listener socket
This commit is contained in:
Ahmet Kaan GÜMÜŞ 2024-04-27 15:36:28 +03:00
parent c404f5b23f
commit 21d8781188
7 changed files with 67 additions and 16 deletions

52
streamer/src/gui.rs Normal file
View file

@ -0,0 +1,52 @@
use iced::{widget::{button, column, Column}, Command};
use tokio::sync::broadcast::{channel, Sender};
use crate::{recording, streaming, utils::get_config, Config, BUFFER_LENGTH};
#[derive(Debug, Clone)]
pub enum Message {
StartStreaming,
ConfigLoad(Config),
}
#[derive(Debug)]
pub struct Streamer {
config: Option<Config>,
sound_stream_producer:Sender<f32>,
}
impl Default for Streamer {
fn default() -> Self {
Self::new()
}
}
impl Streamer {
fn new() -> Self {
Self {
config: None,
sound_stream_producer: channel(BUFFER_LENGTH).0,
}
}
pub fn update(&mut self, message:Message) {
match message {
Message::StartStreaming => {
tokio::spawn(streaming::connect(self.sound_stream_producer.subscribe(), self.config.clone().unwrap()));
tokio::spawn(recording::record(self.sound_stream_producer.clone()));
}
Message::ConfigLoad(config) => {
self.config = Some(config);
}
}
}
pub fn view(&self) -> Column<Message> {
column![
button("Start Streaming").on_press(Message::StartStreaming)
]
}
pub fn load_config() -> Command<Message> {
Command::perform(get_config(), Message::ConfigLoad)
}
}