2017-01-29 14:11:20 +00:00
|
|
|
use futures::sync::oneshot;
|
2017-01-20 12:56:42 +00:00
|
|
|
use futures::{future, Future};
|
2016-02-05 20:54:47 +00:00
|
|
|
use std::borrow::Cow;
|
2016-03-13 15:15:15 +00:00
|
|
|
use std::io::{Read, Seek};
|
2017-01-29 14:11:20 +00:00
|
|
|
use std::mem;
|
2017-01-31 08:21:30 +00:00
|
|
|
use std::sync::mpsc::{RecvError, TryRecvError};
|
2017-01-20 12:56:42 +00:00
|
|
|
use std::thread;
|
2017-01-29 14:11:20 +00:00
|
|
|
use std;
|
|
|
|
use vorbis::{self, VorbisError};
|
2015-06-23 14:38:29 +00:00
|
|
|
|
2017-08-03 18:58:44 +00:00
|
|
|
use core::config::{Bitrate, PlayerConfig};
|
|
|
|
use core::session::Session;
|
|
|
|
use core::util::{self, SpotifyId, Subfile};
|
|
|
|
|
2016-03-20 16:16:11 +00:00
|
|
|
use audio_backend::Sink;
|
2017-01-29 14:11:20 +00:00
|
|
|
use audio_decrypt::AudioDecrypt;
|
|
|
|
use audio_file::AudioFile;
|
2017-05-16 00:04:10 +00:00
|
|
|
use metadata::{FileFormat, Track, Metadata};
|
2017-01-27 13:20:31 +00:00
|
|
|
use mixer::AudioFilter;
|
2016-03-13 15:15:15 +00:00
|
|
|
|
2016-04-24 13:48:15 +00:00
|
|
|
#[derive(Clone)]
|
2015-09-01 11:20:37 +00:00
|
|
|
pub struct Player {
|
2017-01-20 12:56:42 +00:00
|
|
|
commands: std::sync::mpsc::Sender<PlayerCommand>,
|
2015-07-02 19:42:49 +00:00
|
|
|
}
|
2015-06-23 14:38:29 +00:00
|
|
|
|
2015-09-01 11:20:37 +00:00
|
|
|
struct PlayerInternal {
|
|
|
|
session: Session,
|
2017-08-03 18:31:15 +00:00
|
|
|
config: PlayerConfig,
|
2017-01-20 12:56:42 +00:00
|
|
|
commands: std::sync::mpsc::Receiver<PlayerCommand>,
|
2017-01-29 14:11:20 +00:00
|
|
|
|
|
|
|
state: PlayerState,
|
|
|
|
sink: Box<Sink>,
|
2017-02-21 22:46:19 +00:00
|
|
|
audio_filter: Option<Box<AudioFilter + Send>>,
|
2015-07-02 19:42:49 +00:00
|
|
|
}
|
|
|
|
|
2015-07-09 20:08:14 +00:00
|
|
|
enum PlayerCommand {
|
2017-01-29 14:11:20 +00:00
|
|
|
Load(SpotifyId, bool, u32, oneshot::Sender<()>),
|
2015-07-09 20:08:14 +00:00
|
|
|
Play,
|
|
|
|
Pause,
|
|
|
|
Stop,
|
2016-01-02 15:19:39 +00:00
|
|
|
Seek(u32),
|
2015-07-02 19:42:49 +00:00
|
|
|
}
|
|
|
|
|
2015-09-01 11:20:37 +00:00
|
|
|
impl Player {
|
2017-08-03 18:31:15 +00:00
|
|
|
pub fn new<F>(config: PlayerConfig, session: Session,
|
|
|
|
audio_filter: Option<Box<AudioFilter + Send>>,
|
|
|
|
sink_builder: F) -> Player
|
|
|
|
where F: FnOnce() -> Box<Sink> + Send + 'static
|
|
|
|
{
|
2017-01-20 12:56:42 +00:00
|
|
|
let (cmd_tx, cmd_rx) = std::sync::mpsc::channel();
|
2015-07-02 19:42:49 +00:00
|
|
|
|
2017-01-29 14:11:20 +00:00
|
|
|
thread::spawn(move || {
|
2017-02-22 04:17:04 +00:00
|
|
|
debug!("new Player[{}]", session.session_id());
|
|
|
|
|
2017-01-29 14:11:20 +00:00
|
|
|
let internal = PlayerInternal {
|
|
|
|
session: session,
|
2017-08-03 18:31:15 +00:00
|
|
|
config: config,
|
2017-01-29 14:11:20 +00:00
|
|
|
commands: cmd_rx,
|
2015-07-02 19:42:49 +00:00
|
|
|
|
2017-01-29 14:11:20 +00:00
|
|
|
state: PlayerState::Stopped,
|
|
|
|
sink: sink_builder(),
|
2017-02-21 22:46:19 +00:00
|
|
|
audio_filter: audio_filter,
|
2017-01-29 14:11:20 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
internal.run();
|
|
|
|
});
|
2015-09-01 11:20:37 +00:00
|
|
|
|
2015-07-02 19:42:49 +00:00
|
|
|
Player {
|
|
|
|
commands: cmd_tx,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-09 20:08:14 +00:00
|
|
|
fn command(&self, cmd: PlayerCommand) {
|
2015-07-02 19:42:49 +00:00
|
|
|
self.commands.send(cmd).unwrap();
|
|
|
|
}
|
2016-01-20 14:11:49 +00:00
|
|
|
|
2017-01-29 14:11:20 +00:00
|
|
|
pub fn load(&self, track: SpotifyId, start_playing: bool, position_ms: u32)
|
|
|
|
-> oneshot::Receiver<()>
|
|
|
|
{
|
|
|
|
let (tx, rx) = oneshot::channel();
|
|
|
|
self.command(PlayerCommand::Load(track, start_playing, position_ms, tx));
|
|
|
|
|
|
|
|
rx
|
2016-01-20 14:11:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn play(&self) {
|
|
|
|
self.command(PlayerCommand::Play)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn pause(&self) {
|
|
|
|
self.command(PlayerCommand::Pause)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn stop(&self) {
|
|
|
|
self.command(PlayerCommand::Stop)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn seek(&self, position_ms: u32) {
|
|
|
|
self.command(PlayerCommand::Seek(position_ms));
|
|
|
|
}
|
2015-07-02 19:42:49 +00:00
|
|
|
}
|
2015-06-23 14:38:29 +00:00
|
|
|
|
2017-01-29 14:11:20 +00:00
|
|
|
type Decoder = vorbis::Decoder<Subfile<AudioDecrypt<AudioFile>>>;
|
|
|
|
enum PlayerState {
|
|
|
|
Stopped,
|
|
|
|
Paused {
|
|
|
|
decoder: Decoder,
|
|
|
|
end_of_track: oneshot::Sender<()>,
|
|
|
|
},
|
|
|
|
Playing {
|
|
|
|
decoder: Decoder,
|
|
|
|
end_of_track: oneshot::Sender<()>,
|
|
|
|
},
|
|
|
|
|
|
|
|
Invalid,
|
2016-02-05 20:54:47 +00:00
|
|
|
}
|
|
|
|
|
2017-01-29 14:11:20 +00:00
|
|
|
impl PlayerState {
|
|
|
|
fn is_playing(&self) -> bool {
|
|
|
|
use self::PlayerState::*;
|
|
|
|
match *self {
|
|
|
|
Stopped | Paused { .. } => false,
|
|
|
|
Playing { .. } => true,
|
|
|
|
Invalid => panic!("invalid state"),
|
|
|
|
}
|
2016-05-04 08:11:03 +00:00
|
|
|
}
|
2017-01-05 13:25:14 +00:00
|
|
|
|
2017-01-29 14:11:20 +00:00
|
|
|
fn decoder(&mut self) -> Option<&mut Decoder> {
|
|
|
|
use self::PlayerState::*;
|
|
|
|
match *self {
|
|
|
|
Stopped => None,
|
|
|
|
Paused { ref mut decoder, .. } |
|
|
|
|
Playing { ref mut decoder, .. } => Some(decoder),
|
|
|
|
Invalid => panic!("invalid state"),
|
2016-05-04 08:11:03 +00:00
|
|
|
}
|
2017-01-29 14:11:20 +00:00
|
|
|
}
|
2016-05-04 08:11:03 +00:00
|
|
|
|
2017-01-29 14:11:20 +00:00
|
|
|
fn signal_end_of_track(self) {
|
|
|
|
use self::PlayerState::*;
|
|
|
|
match self {
|
|
|
|
Paused { end_of_track, .. } |
|
|
|
|
Playing { end_of_track, .. } => {
|
|
|
|
end_of_track.complete(())
|
|
|
|
}
|
2016-05-04 08:11:03 +00:00
|
|
|
|
2017-01-29 14:11:20 +00:00
|
|
|
Stopped => warn!("signal_end_of_track from stopped state"),
|
|
|
|
Invalid => panic!("invalid state"),
|
2016-05-04 08:11:03 +00:00
|
|
|
}
|
2017-01-29 14:11:20 +00:00
|
|
|
}
|
2016-05-04 08:11:03 +00:00
|
|
|
|
2017-01-29 14:11:20 +00:00
|
|
|
fn paused_to_playing(&mut self) {
|
|
|
|
use self::PlayerState::*;
|
|
|
|
match ::std::mem::replace(self, Invalid) {
|
|
|
|
Paused { decoder, end_of_track } => {
|
|
|
|
*self = Playing {
|
|
|
|
decoder: decoder,
|
|
|
|
end_of_track: end_of_track,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
_ => panic!("invalid state"),
|
|
|
|
}
|
|
|
|
}
|
2016-09-08 18:49:17 +00:00
|
|
|
|
2017-01-29 14:11:20 +00:00
|
|
|
fn playing_to_paused(&mut self) {
|
|
|
|
use self::PlayerState::*;
|
|
|
|
match ::std::mem::replace(self, Invalid) {
|
|
|
|
Playing { decoder, end_of_track } => {
|
|
|
|
*self = Paused {
|
|
|
|
decoder: decoder,
|
|
|
|
end_of_track: end_of_track,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
_ => panic!("invalid state"),
|
|
|
|
}
|
|
|
|
}
|
2016-09-08 18:49:17 +00:00
|
|
|
}
|
|
|
|
|
2015-09-01 11:20:37 +00:00
|
|
|
impl PlayerInternal {
|
2017-01-29 14:11:20 +00:00
|
|
|
fn run(mut self) {
|
2015-07-02 19:42:49 +00:00
|
|
|
loop {
|
2017-01-29 14:11:20 +00:00
|
|
|
let cmd = if self.state.is_playing() {
|
2017-01-31 08:21:30 +00:00
|
|
|
match self.commands.try_recv() {
|
|
|
|
Ok(cmd) => Some(cmd),
|
|
|
|
Err(TryRecvError::Empty) => None,
|
|
|
|
Err(TryRecvError::Disconnected) => return,
|
|
|
|
}
|
2015-12-28 17:45:13 +00:00
|
|
|
} else {
|
2017-01-31 08:21:30 +00:00
|
|
|
match self.commands.recv() {
|
|
|
|
Ok(cmd) => Some(cmd),
|
|
|
|
Err(RecvError) => return,
|
|
|
|
}
|
2015-12-28 17:45:13 +00:00
|
|
|
};
|
|
|
|
|
2017-01-29 14:11:20 +00:00
|
|
|
if let Some(cmd) = cmd {
|
|
|
|
self.handle_command(cmd);
|
|
|
|
}
|
2016-05-04 08:11:03 +00:00
|
|
|
|
2017-01-29 14:11:20 +00:00
|
|
|
let packet = if let PlayerState::Playing { ref mut decoder, .. } = self.state {
|
|
|
|
Some(decoder.packets().next())
|
|
|
|
} else { None };
|
2015-12-28 16:47:53 +00:00
|
|
|
|
2017-01-29 14:11:20 +00:00
|
|
|
if let Some(packet) = packet {
|
|
|
|
self.handle_packet(packet);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-01-02 15:19:39 +00:00
|
|
|
|
2017-01-29 14:11:20 +00:00
|
|
|
fn handle_packet(&mut self, packet: Option<Result<vorbis::Packet, VorbisError>>) {
|
|
|
|
match packet {
|
|
|
|
Some(Ok(mut packet)) => {
|
2017-02-21 22:46:19 +00:00
|
|
|
if let Some(ref editor) = self.audio_filter {
|
|
|
|
editor.modify_stream(&mut packet.data)
|
|
|
|
};
|
2015-09-01 11:20:37 +00:00
|
|
|
|
2017-01-29 14:11:20 +00:00
|
|
|
self.sink.write(&packet.data).unwrap();
|
|
|
|
}
|
|
|
|
|
|
|
|
Some(Err(vorbis::VorbisError::Hole)) => (),
|
|
|
|
Some(Err(e)) => panic!("Vorbis error {:?}", e),
|
|
|
|
None => {
|
|
|
|
self.sink.stop().unwrap();
|
|
|
|
self.run_onstop();
|
|
|
|
|
|
|
|
let old_state = mem::replace(&mut self.state, PlayerState::Stopped);
|
|
|
|
old_state.signal_end_of_track();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-07-02 19:42:49 +00:00
|
|
|
|
2017-01-29 14:11:20 +00:00
|
|
|
fn handle_command(&mut self, cmd: PlayerCommand) {
|
2017-02-09 01:27:52 +00:00
|
|
|
debug!("command={:?}", cmd);
|
2017-01-29 14:11:20 +00:00
|
|
|
match cmd {
|
|
|
|
PlayerCommand::Load(track_id, play, position, end_of_track) => {
|
|
|
|
if self.state.is_playing() {
|
|
|
|
self.sink.stop().unwrap();
|
2015-07-02 19:42:49 +00:00
|
|
|
}
|
2017-01-29 14:11:20 +00:00
|
|
|
|
|
|
|
match self.load_track(track_id, position as i64) {
|
|
|
|
Some(decoder) => {
|
|
|
|
if play {
|
|
|
|
if !self.state.is_playing() {
|
|
|
|
self.run_onstart();
|
|
|
|
}
|
|
|
|
self.sink.start().unwrap();
|
|
|
|
|
|
|
|
self.state = PlayerState::Playing {
|
|
|
|
decoder: decoder,
|
|
|
|
end_of_track: end_of_track,
|
|
|
|
};
|
|
|
|
} else {
|
|
|
|
if self.state.is_playing() {
|
|
|
|
self.run_onstop();
|
|
|
|
}
|
|
|
|
|
|
|
|
self.state = PlayerState::Paused {
|
|
|
|
decoder: decoder,
|
|
|
|
end_of_track: end_of_track,
|
|
|
|
};
|
|
|
|
}
|
2016-12-07 11:50:46 +00:00
|
|
|
}
|
2016-01-02 15:48:44 +00:00
|
|
|
|
2017-01-29 14:11:20 +00:00
|
|
|
None => {
|
2017-04-29 14:18:16 +00:00
|
|
|
end_of_track.complete(());
|
2017-01-29 14:11:20 +00:00
|
|
|
if self.state.is_playing() {
|
|
|
|
self.run_onstop();
|
|
|
|
}
|
|
|
|
}
|
2016-01-02 15:19:39 +00:00
|
|
|
}
|
2017-01-29 14:11:20 +00:00
|
|
|
}
|
2016-04-24 13:48:15 +00:00
|
|
|
|
2017-01-29 14:11:20 +00:00
|
|
|
PlayerCommand::Seek(position) => {
|
|
|
|
if let Some(decoder) = self.state.decoder() {
|
|
|
|
match vorbis_time_seek_ms(decoder, position as i64) {
|
2016-12-07 11:50:46 +00:00
|
|
|
Ok(_) => (),
|
|
|
|
Err(err) => error!("Vorbis error: {:?}", err),
|
|
|
|
}
|
2017-01-29 14:11:20 +00:00
|
|
|
} else {
|
|
|
|
warn!("Player::seek called from invalid state");
|
2016-01-02 15:19:39 +00:00
|
|
|
}
|
2015-07-02 19:42:49 +00:00
|
|
|
}
|
|
|
|
|
2017-01-29 14:11:20 +00:00
|
|
|
PlayerCommand::Play => {
|
|
|
|
if let PlayerState::Paused { .. } = self.state {
|
|
|
|
self.state.paused_to_playing();
|
2016-03-14 00:49:21 +00:00
|
|
|
|
2017-01-29 14:11:20 +00:00
|
|
|
self.run_onstart();
|
|
|
|
self.sink.start().unwrap();
|
|
|
|
} else {
|
|
|
|
warn!("Player::play called from invalid state");
|
|
|
|
}
|
|
|
|
}
|
2016-04-24 13:48:15 +00:00
|
|
|
|
2017-01-29 14:11:20 +00:00
|
|
|
PlayerCommand::Pause => {
|
|
|
|
if let PlayerState::Playing { .. } = self.state {
|
|
|
|
self.state.playing_to_paused();
|
|
|
|
|
|
|
|
self.sink.stop().unwrap();
|
|
|
|
self.run_onstop();
|
|
|
|
} else {
|
|
|
|
warn!("Player::pause called from invalid state");
|
|
|
|
}
|
|
|
|
}
|
2016-04-24 13:48:15 +00:00
|
|
|
|
2017-01-29 14:11:20 +00:00
|
|
|
PlayerCommand::Stop => {
|
|
|
|
match self.state {
|
|
|
|
PlayerState::Playing { .. } => {
|
|
|
|
self.sink.stop().unwrap();
|
|
|
|
self.run_onstop();
|
|
|
|
self.state = PlayerState::Stopped;
|
2016-01-02 15:19:39 +00:00
|
|
|
}
|
2017-01-29 14:11:20 +00:00
|
|
|
PlayerState::Paused { .. } => {
|
|
|
|
self.state = PlayerState::Stopped;
|
|
|
|
},
|
|
|
|
PlayerState::Stopped => {
|
|
|
|
warn!("Player::stop called from invalid state");
|
2015-07-09 21:32:40 +00:00
|
|
|
}
|
2017-01-29 14:11:20 +00:00
|
|
|
PlayerState::Invalid => panic!("invalid state"),
|
2015-07-02 19:42:49 +00:00
|
|
|
}
|
2015-06-23 14:38:29 +00:00
|
|
|
}
|
2015-07-09 21:04:19 +00:00
|
|
|
}
|
|
|
|
}
|
2015-06-23 14:38:29 +00:00
|
|
|
|
2017-01-29 14:11:20 +00:00
|
|
|
fn run_onstart(&self) {
|
2017-08-03 18:31:15 +00:00
|
|
|
if let Some(ref program) = self.config.onstart {
|
2017-01-29 16:25:09 +00:00
|
|
|
util::run_program(program)
|
|
|
|
}
|
2015-07-09 20:08:14 +00:00
|
|
|
}
|
|
|
|
|
2017-01-29 14:11:20 +00:00
|
|
|
fn run_onstop(&self) {
|
2017-08-03 18:31:15 +00:00
|
|
|
if let Some(ref program) = self.config.onstop {
|
2017-01-29 16:25:09 +00:00
|
|
|
util::run_program(program)
|
|
|
|
}
|
2015-07-09 20:08:14 +00:00
|
|
|
}
|
2016-01-20 13:55:36 +00:00
|
|
|
|
2017-01-29 14:11:20 +00:00
|
|
|
fn find_available_alternative<'a>(&self, track: &'a Track) -> Option<Cow<'a, Track>> {
|
|
|
|
if track.available {
|
|
|
|
Some(Cow::Borrowed(track))
|
|
|
|
} else {
|
|
|
|
let alternatives = track.alternatives
|
|
|
|
.iter()
|
|
|
|
.map(|alt_id| {
|
2017-05-16 00:04:10 +00:00
|
|
|
Track::get(&self.session, *alt_id)
|
2017-01-29 14:11:20 +00:00
|
|
|
});
|
|
|
|
let alternatives = future::join_all(alternatives).wait().unwrap();
|
|
|
|
|
|
|
|
alternatives.into_iter().find(|alt| alt.available).map(Cow::Owned)
|
|
|
|
}
|
2016-01-15 00:12:08 +00:00
|
|
|
}
|
2015-07-09 20:08:14 +00:00
|
|
|
|
2017-01-29 14:11:20 +00:00
|
|
|
fn load_track(&self, track_id: SpotifyId, position: i64) -> Option<Decoder> {
|
2017-05-16 00:04:10 +00:00
|
|
|
let track = Track::get(&self.session, track_id).wait().unwrap();
|
2017-01-29 14:11:20 +00:00
|
|
|
|
|
|
|
info!("Loading track \"{}\"", track.name);
|
|
|
|
|
|
|
|
let track = match self.find_available_alternative(&track) {
|
|
|
|
Some(track) => track,
|
|
|
|
None => {
|
|
|
|
warn!("Track \"{}\" is not available", track.name);
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
};
|
2015-07-09 22:09:40 +00:00
|
|
|
|
2017-08-03 18:31:15 +00:00
|
|
|
let format = match self.config.bitrate {
|
2017-01-29 14:11:20 +00:00
|
|
|
Bitrate::Bitrate96 => FileFormat::OGG_VORBIS_96,
|
|
|
|
Bitrate::Bitrate160 => FileFormat::OGG_VORBIS_160,
|
|
|
|
Bitrate::Bitrate320 => FileFormat::OGG_VORBIS_320,
|
|
|
|
};
|
|
|
|
|
|
|
|
let file_id = match track.files.get(&format) {
|
|
|
|
Some(&file_id) => file_id,
|
|
|
|
None => {
|
|
|
|
warn!("Track \"{}\" is not available in format {:?}", track.name, format);
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
let key = self.session.audio_key().request(track.id, file_id).wait().unwrap();
|
|
|
|
|
2017-05-16 00:04:10 +00:00
|
|
|
let encrypted_file = AudioFile::open(&self.session, file_id).wait().unwrap();
|
2017-01-29 14:11:20 +00:00
|
|
|
let audio_file = Subfile::new(AudioDecrypt::new(key, encrypted_file), 0xa7);
|
2017-05-16 00:04:10 +00:00
|
|
|
|
2017-01-29 14:11:20 +00:00
|
|
|
let mut decoder = vorbis::Decoder::new(audio_file).unwrap();
|
|
|
|
|
|
|
|
match vorbis_time_seek_ms(&mut decoder, position) {
|
|
|
|
Ok(_) => (),
|
|
|
|
Err(err) => error!("Vorbis error: {:?}", err),
|
|
|
|
}
|
|
|
|
|
|
|
|
info!("Track \"{}\" loaded", track.name);
|
|
|
|
|
|
|
|
Some(decoder)
|
2015-07-09 22:09:40 +00:00
|
|
|
}
|
2015-07-09 20:08:14 +00:00
|
|
|
}
|
2017-01-29 14:11:20 +00:00
|
|
|
|
2017-02-22 04:17:04 +00:00
|
|
|
impl Drop for PlayerInternal {
|
|
|
|
fn drop(&mut self) {
|
|
|
|
debug!("drop Player[{}]", self.session.session_id());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-01-29 14:11:20 +00:00
|
|
|
#[cfg(not(feature = "with-tremor"))]
|
|
|
|
fn vorbis_time_seek_ms<R>(decoder: &mut vorbis::Decoder<R>, ms: i64) -> Result<(), vorbis::VorbisError> where R: Read + Seek {
|
|
|
|
decoder.time_seek(ms as f64 / 1000f64)
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(feature = "with-tremor")]
|
|
|
|
fn vorbis_time_seek_ms<R>(decoder: &mut vorbis::Decoder<R>, ms: i64) -> Result<(), vorbis::VorbisError> where R: Read + Seek {
|
|
|
|
decoder.time_seek(ms)
|
|
|
|
}
|
2017-02-09 01:27:52 +00:00
|
|
|
|
|
|
|
impl ::std::fmt::Debug for PlayerCommand {
|
|
|
|
fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
|
|
|
|
match *self {
|
|
|
|
PlayerCommand::Load(track, play, position, _) => {
|
|
|
|
f.debug_tuple("Load")
|
|
|
|
.field(&track)
|
|
|
|
.field(&play)
|
|
|
|
.field(&position)
|
|
|
|
.finish()
|
|
|
|
}
|
|
|
|
PlayerCommand::Play => {
|
|
|
|
f.debug_tuple("Play").finish()
|
|
|
|
}
|
|
|
|
PlayerCommand::Pause => {
|
|
|
|
f.debug_tuple("Pause").finish()
|
|
|
|
}
|
|
|
|
PlayerCommand::Stop => {
|
|
|
|
f.debug_tuple("Stop").finish()
|
|
|
|
}
|
|
|
|
PlayerCommand::Seek(position) => {
|
|
|
|
f.debug_tuple("Seek")
|
|
|
|
.field(&position)
|
|
|
|
.finish()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|