feat: implement basic music player and grpc server

This commit is contained in:
Alexander Navarro 2024-05-28 20:11:53 -04:00
parent ad61cf68c6
commit 7382b06bdf
10 changed files with 336 additions and 61 deletions

View file

@ -1,14 +1,67 @@
use std::error::Error;
use std::time::Duration;
use tokio::time::sleep;
use tokio::sync::mpsc;
use crate::player::Player;
use self::configuration::{ConfigMode, CONFIG};
use self::player::PlayerAction;
mod configuration;
mod file_explorer;
mod grpc;
mod player;
#[tokio::main()]
async fn main() -> Result<(), Box<dyn Error>> {
let server = grpc::run()?;
async fn init_server() -> Result<(), Box<dyn Error>> {
let (tx, mut rx) = mpsc::channel::<PlayerAction>(32);
server.connect().await?;
tokio::spawn(async move {
let _ = grpc::GRPCServer::serve(tx).await;
});
let mut player = Player::new().expect("Error creating player");
println!("Listening for incomming messages...");
// This macro will wait on multiple futures and will return when the first one resolves
tokio::select! {
Some(msg) = rx.recv() => {
if let Err(err) = player.handle_message(msg) {
eprintln!("Error handling player action: {}", err);
}
}
_ = async {
loop {
let _ = player.handle_idle();
sleep(Duration::from_millis(200)).await;
}
} => {println!("player stopped");}
}
// this traps the main thread, it should run last.
while let Some(msg) = rx.recv().await {
if let Err(err) = player.handle_message(msg) {
eprintln!("Error handling player action: {}", err);
}
}
Ok(())
}
async fn init_client() -> Result<(), Box<dyn Error>> {
let client = grpc::GRPCClient::default();
let _ = client.skip_song().await;
Ok(())
}
#[tokio::main()]
async fn main() -> Result<(), Box<dyn Error>> {
match CONFIG.mode {
ConfigMode::Server => init_server().await?,
ConfigMode::Client => init_client().await?,
};
Ok(())
}