2021-12-10 21:53:22 +00:00
|
|
|
use std::sync::mpsc::{Sender, Receiver};
|
|
|
|
use std::{thread, thread::JoinHandle};
|
|
|
|
|
|
|
|
use mps_interpreter::tokens::MpsTokenReader;
|
|
|
|
|
|
|
|
use super::MpsPlayer;
|
|
|
|
use super::PlaybackError;
|
|
|
|
|
|
|
|
pub struct MpsPlayerServer<T: MpsTokenReader> {
|
|
|
|
player: MpsPlayer<T>,
|
|
|
|
control: Receiver<ControlAction>,
|
|
|
|
event: Sender<PlayerAction>,
|
2022-01-03 22:53:57 +00:00
|
|
|
keep_alive: bool,
|
2021-12-10 21:53:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<T: MpsTokenReader> MpsPlayerServer<T> {
|
2022-01-03 22:53:57 +00:00
|
|
|
pub fn new(player: MpsPlayer<T>, ctrl: Receiver<ControlAction>, event: Sender<PlayerAction>, keep_alive: bool) -> Self {
|
2021-12-10 21:53:22 +00:00
|
|
|
Self {
|
|
|
|
player: player,
|
|
|
|
control: ctrl,
|
|
|
|
event: event,
|
2022-01-03 22:53:57 +00:00
|
|
|
keep_alive: keep_alive,
|
2021-12-10 21:53:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn run_loop(&mut self) {
|
|
|
|
// this can panic since it's not on the main thread
|
2021-12-12 20:08:49 +00:00
|
|
|
// initial queue full
|
|
|
|
if let Err(e) = self.player.enqueue(1) {
|
2021-12-10 21:53:22 +00:00
|
|
|
self.event.send(PlayerAction::Exception(e)).unwrap();
|
|
|
|
}
|
2022-01-03 22:53:57 +00:00
|
|
|
let mut is_empty = self.player.queue_len() == 0;
|
2021-12-10 21:53:22 +00:00
|
|
|
loop {
|
|
|
|
let command = self.control.recv().unwrap();
|
|
|
|
|
2021-12-12 20:08:49 +00:00
|
|
|
let mut is_exiting = false;
|
2021-12-10 21:53:22 +00:00
|
|
|
|
2022-01-03 22:53:57 +00:00
|
|
|
let mut check_empty = false;
|
|
|
|
|
2021-12-10 21:53:22 +00:00
|
|
|
// process command
|
|
|
|
match command {
|
|
|
|
ControlAction::Next{..} => {
|
2021-12-12 20:08:49 +00:00
|
|
|
//println!("Executing next command (queue_len: {})", self.player.queue_len());
|
|
|
|
if let Err(e) = self.player.new_sink() {
|
|
|
|
self.event.send(PlayerAction::Exception(e)).unwrap();
|
|
|
|
}
|
|
|
|
if !self.player.is_paused() {
|
2021-12-10 21:53:22 +00:00
|
|
|
self.player.enqueue(1).unwrap();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
ControlAction::Previous{..} => {}, // TODO
|
|
|
|
ControlAction::Play{..} => self.player.resume(),
|
|
|
|
ControlAction::Pause{..} => self.player.pause(),
|
|
|
|
ControlAction::PlayPause{..} => {
|
|
|
|
if self.player.is_paused() {
|
|
|
|
self.player.resume();
|
|
|
|
} else {
|
|
|
|
self.player.pause();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
ControlAction::Stop{..} => self.player.stop(),
|
|
|
|
ControlAction::Exit{..} => {
|
|
|
|
self.player.stop();
|
|
|
|
is_exiting = true;
|
|
|
|
},
|
|
|
|
ControlAction::Enqueue{amount,..} => {
|
|
|
|
if let Err(e) = self.player.enqueue(amount) {
|
|
|
|
self.event.send(PlayerAction::Exception(e)).unwrap();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
ControlAction::NoOp{..} => {}, // empty by design
|
|
|
|
ControlAction::SetVolume{volume,..} => {
|
|
|
|
self.player.set_volume((volume as f32) / (u32::MAX as f32));
|
2022-01-03 22:53:57 +00:00
|
|
|
},
|
|
|
|
ControlAction::CheckEmpty{..} => {
|
|
|
|
check_empty = true;
|
2021-12-10 21:53:22 +00:00
|
|
|
}
|
|
|
|
}
|
2021-12-12 20:08:49 +00:00
|
|
|
|
|
|
|
// keep queue full (while playing music)
|
|
|
|
if self.player.queue_len() == 0 && !self.player.is_paused() && !is_exiting {
|
|
|
|
if let Err(e) = self.player.enqueue(1) {
|
|
|
|
self.event.send(PlayerAction::Exception(e)).unwrap();
|
|
|
|
}
|
|
|
|
if self.player.queue_len() == 0 { // no more music to add
|
2022-01-03 22:53:57 +00:00
|
|
|
is_exiting = !self.keep_alive || is_exiting;
|
2021-12-12 20:08:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-12-10 21:53:22 +00:00
|
|
|
if command.needs_ack() {
|
|
|
|
self.event.send(PlayerAction::Acknowledge(command)).unwrap();
|
|
|
|
}
|
|
|
|
|
2022-01-03 22:53:57 +00:00
|
|
|
// always check for empty state change
|
|
|
|
if self.player.queue_len() == 0 && !is_empty { // just became empty
|
|
|
|
is_empty = true;
|
|
|
|
self.event.send(PlayerAction::Empty).unwrap();
|
|
|
|
} else if self.player.queue_len() != 0 && is_empty { // just got filled
|
|
|
|
is_empty = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if is_empty && check_empty {
|
|
|
|
self.event.send(PlayerAction::Empty).unwrap();
|
|
|
|
}
|
|
|
|
|
2021-12-10 21:53:22 +00:00
|
|
|
if is_exiting { break; }
|
|
|
|
}
|
2022-01-03 22:53:57 +00:00
|
|
|
println!("Exiting playback server");
|
2021-12-12 20:08:49 +00:00
|
|
|
self.event.send(PlayerAction::End).unwrap();
|
2021-12-10 21:53:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn spawn<F: FnOnce() -> MpsPlayer<T> + Send + 'static>(
|
|
|
|
factory: F,
|
|
|
|
ctrl_tx: Sender<ControlAction>,
|
|
|
|
ctrl_rx: Receiver<ControlAction>,
|
2022-01-03 22:53:57 +00:00
|
|
|
event: Sender<PlayerAction>,
|
|
|
|
keep_alive: bool
|
2021-12-10 21:53:22 +00:00
|
|
|
) -> JoinHandle<()> {
|
|
|
|
thread::spawn(move || Self::unblocking_timer_loop(ctrl_tx, 50));
|
|
|
|
thread::spawn(move || {
|
|
|
|
let player = factory();
|
2022-01-03 22:53:57 +00:00
|
|
|
let mut server_obj = Self::new(player, ctrl_rx, event, keep_alive);
|
2021-12-10 21:53:22 +00:00
|
|
|
server_obj.run_loop();
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn unblocking_timer_loop(ctrl_tx: Sender<ControlAction>, sleep_ms: u64) {
|
|
|
|
let dur = std::time::Duration::from_millis(sleep_ms);
|
|
|
|
loop {
|
|
|
|
if let Err(_) = ctrl_tx.send(ControlAction::NoOp{ack: false}) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
thread::sleep(dur);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Action the controller wants the player to perform
|
|
|
|
#[allow(dead_code)]
|
2021-12-12 20:08:49 +00:00
|
|
|
#[derive(Clone, PartialEq, Eq, Debug)]
|
2021-12-10 21:53:22 +00:00
|
|
|
pub enum ControlAction {
|
|
|
|
Next{ack: bool},
|
|
|
|
Previous{ack: bool},
|
|
|
|
Play{ack: bool},
|
|
|
|
Pause{ack: bool},
|
|
|
|
PlayPause{ack: bool},
|
|
|
|
Stop{ack: bool},
|
|
|
|
Exit{ack: bool},
|
|
|
|
Enqueue {amount: usize, ack: bool},
|
|
|
|
NoOp{ack: bool},
|
2022-01-03 22:53:57 +00:00
|
|
|
SetVolume{ack: bool, volume: u32},
|
|
|
|
CheckEmpty{ack: bool},
|
2021-12-10 21:53:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl ControlAction {
|
|
|
|
fn needs_ack(&self) -> bool {
|
|
|
|
*match self {
|
|
|
|
Self::Next{ack} => ack,
|
|
|
|
Self::Previous{ack} => ack,
|
|
|
|
Self::Play{ack} => ack,
|
|
|
|
Self::Pause{ack} => ack,
|
|
|
|
Self::PlayPause{ack} => ack,
|
|
|
|
Self::Stop{ack} => ack,
|
|
|
|
Self::Exit{ack} => ack,
|
|
|
|
Self::Enqueue{ack,..} => ack,
|
|
|
|
Self::NoOp{ack,..} => ack,
|
|
|
|
Self::SetVolume{ack,..} => ack,
|
2022-01-03 22:53:57 +00:00
|
|
|
Self::CheckEmpty{ack} => ack,
|
2021-12-10 21:53:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Action the player has performed/encountered
|
2021-12-12 20:08:49 +00:00
|
|
|
#[derive(Clone, Debug)]
|
2021-12-10 21:53:22 +00:00
|
|
|
pub enum PlayerAction {
|
|
|
|
Acknowledge(ControlAction),
|
|
|
|
Exception(PlaybackError),
|
|
|
|
End,
|
2022-01-03 22:53:57 +00:00
|
|
|
Empty,
|
2021-12-10 21:53:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl PlayerAction {
|
|
|
|
pub fn is_acknowledgement(&self) -> bool {
|
|
|
|
match self {
|
|
|
|
Self::Acknowledge(_) => true,
|
|
|
|
_ => false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|