mirror of
https://github.com/librespot-org/librespot.git
synced 2024-12-18 17:11:53 +00:00
Move spirc to tokio
This commit is contained in:
parent
d62a154786
commit
bcedfefaa9
5 changed files with 186 additions and 175 deletions
16
src/main.rs
16
src/main.rs
|
@ -9,14 +9,13 @@ extern crate tokio_core;
|
||||||
use env_logger::LogBuilder;
|
use env_logger::LogBuilder;
|
||||||
use std::io::{stderr, Write};
|
use std::io::{stderr, Write};
|
||||||
use std::process::exit;
|
use std::process::exit;
|
||||||
use std::thread;
|
|
||||||
use std::env;
|
use std::env;
|
||||||
use std::path::PathBuf;
|
use std::path::PathBuf;
|
||||||
use std::str::FromStr;
|
use std::str::FromStr;
|
||||||
use futures::Future;
|
use futures::Future;
|
||||||
use tokio_core::reactor::Core;
|
use tokio_core::reactor::Core;
|
||||||
|
|
||||||
use librespot::spirc::SpircManager;
|
use librespot::spirc::Spirc;
|
||||||
use librespot::authentication::{get_credentials, Credentials};
|
use librespot::authentication::{get_credentials, Credentials};
|
||||||
use librespot::audio_backend::{self, Sink, BACKENDS};
|
use librespot::audio_backend::{self, Sink, BACKENDS};
|
||||||
use librespot::cache::{Cache, DefaultCache, NoCache};
|
use librespot::cache::{Cache, DefaultCache, NoCache};
|
||||||
|
@ -158,22 +157,19 @@ fn main() {
|
||||||
|
|
||||||
let connection = Session::connect(config, credentials, cache, handle);
|
let connection = Session::connect(config, credentials, cache, handle);
|
||||||
|
|
||||||
let task = connection.and_then(move |(session, task)| {
|
let task = connection.and_then(move |session| {
|
||||||
let player = Player::new(session.clone(), move || {
|
let player = Player::new(session.clone(), move || {
|
||||||
(backend)(device)
|
(backend)(device)
|
||||||
});
|
});
|
||||||
|
|
||||||
let spirc = SpircManager::new(session.clone(), player);
|
let (spirc, task) = Spirc::new(session.clone(), player);
|
||||||
let spirc_signal = spirc.clone();
|
let spirc = ::std::cell::RefCell::new(spirc);
|
||||||
|
|
||||||
ctrlc::set_handler(move || {
|
ctrlc::set_handler(move || {
|
||||||
spirc_signal.send_goodbye();
|
spirc.borrow_mut().shutdown();
|
||||||
exit(0);
|
|
||||||
});
|
});
|
||||||
|
|
||||||
thread::spawn(move || spirc.run());
|
task.map_err(|()| panic!("spirc error"))
|
||||||
|
|
||||||
task
|
|
||||||
});
|
});
|
||||||
|
|
||||||
core.run(task).unwrap()
|
core.run(task).unwrap()
|
||||||
|
|
|
@ -20,6 +20,16 @@ impl MercurySender {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
impl Clone for MercurySender {
|
||||||
|
fn clone(&self) -> MercurySender {
|
||||||
|
MercurySender {
|
||||||
|
mercury: self.mercury.clone(),
|
||||||
|
uri: self.uri.clone(),
|
||||||
|
pending: VecDeque::new(),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
impl Sink for MercurySender {
|
impl Sink for MercurySender {
|
||||||
type SinkItem = Vec<u8>;
|
type SinkItem = Vec<u8>;
|
||||||
type SinkError = MercuryError;
|
type SinkError = MercuryError;
|
||||||
|
|
|
@ -1,9 +1,11 @@
|
||||||
use std::borrow::Cow;
|
|
||||||
use std::sync::{mpsc, Mutex, Arc, MutexGuard};
|
|
||||||
use std::thread;
|
|
||||||
use std::io::{Read, Seek};
|
|
||||||
use vorbis;
|
|
||||||
use futures::{future, Future};
|
use futures::{future, Future};
|
||||||
|
use futures::sync::mpsc;
|
||||||
|
use std;
|
||||||
|
use std::borrow::Cow;
|
||||||
|
use std::io::{Read, Seek};
|
||||||
|
use std::sync::{Mutex, Arc, MutexGuard};
|
||||||
|
use std::thread;
|
||||||
|
use vorbis;
|
||||||
|
|
||||||
use audio_file::AudioFile;
|
use audio_file::AudioFile;
|
||||||
use audio_decrypt::AudioDecrypt;
|
use audio_decrypt::AudioDecrypt;
|
||||||
|
@ -33,14 +35,12 @@ fn vorbis_time_tell_ms<R>(decoder: &mut vorbis::Decoder<R>) -> Result<i64, vorbi
|
||||||
decoder.time_tell()
|
decoder.time_tell()
|
||||||
}
|
}
|
||||||
|
|
||||||
pub type PlayerObserver = Box<Fn(&PlayerState) + Send>;
|
|
||||||
|
|
||||||
#[derive(Clone)]
|
#[derive(Clone)]
|
||||||
pub struct Player {
|
pub struct Player {
|
||||||
state: Arc<Mutex<PlayerState>>,
|
state: Arc<Mutex<PlayerState>>,
|
||||||
observers: Arc<Mutex<Vec<PlayerObserver>>>,
|
observers: Arc<Mutex<Vec<mpsc::UnboundedSender<PlayerState>>>>,
|
||||||
|
|
||||||
commands: mpsc::Sender<PlayerCommand>,
|
commands: std::sync::mpsc::Sender<PlayerCommand>,
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Clone)]
|
#[derive(Clone)]
|
||||||
|
@ -57,10 +57,10 @@ pub struct PlayerState {
|
||||||
|
|
||||||
struct PlayerInternal {
|
struct PlayerInternal {
|
||||||
state: Arc<Mutex<PlayerState>>,
|
state: Arc<Mutex<PlayerState>>,
|
||||||
observers: Arc<Mutex<Vec<PlayerObserver>>>,
|
observers: Arc<Mutex<Vec<mpsc::UnboundedSender<PlayerState>>>>,
|
||||||
|
|
||||||
session: Session,
|
session: Session,
|
||||||
commands: mpsc::Receiver<PlayerCommand>,
|
commands: std::sync::mpsc::Receiver<PlayerCommand>,
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
|
@ -77,7 +77,7 @@ enum PlayerCommand {
|
||||||
impl Player {
|
impl Player {
|
||||||
pub fn new<F>(session: Session, sink_builder: F) -> Player
|
pub fn new<F>(session: Session, sink_builder: F) -> Player
|
||||||
where F: FnOnce() -> Box<Sink> + Send + 'static {
|
where F: FnOnce() -> Box<Sink> + Send + 'static {
|
||||||
let (cmd_tx, cmd_rx) = mpsc::channel();
|
let (cmd_tx, cmd_rx) = std::sync::mpsc::channel();
|
||||||
|
|
||||||
let state = Arc::new(Mutex::new(PlayerState {
|
let state = Arc::new(Mutex::new(PlayerState {
|
||||||
status: PlayStatus::kPlayStatusStop,
|
status: PlayStatus::kPlayStatusStop,
|
||||||
|
@ -143,8 +143,11 @@ impl Player {
|
||||||
self.command(PlayerCommand::Volume(vol));
|
self.command(PlayerCommand::Volume(vol));
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn add_observer(&self, observer: PlayerObserver) {
|
pub fn observe(&self) -> mpsc::UnboundedReceiver<PlayerState> {
|
||||||
self.observers.lock().unwrap().push(observer);
|
let (tx, rx) = mpsc::unbounded();
|
||||||
|
self.observers.lock().unwrap().push(tx);
|
||||||
|
|
||||||
|
rx
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -419,7 +422,7 @@ impl PlayerInternal {
|
||||||
drop(guard);
|
drop(guard);
|
||||||
|
|
||||||
for observer in observers.iter() {
|
for observer in observers.iter() {
|
||||||
observer(&state);
|
observer.send(state.clone()).unwrap();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -85,7 +85,7 @@ pub fn device_id(name: &str) -> String {
|
||||||
impl Session {
|
impl Session {
|
||||||
pub fn connect(config: Config, credentials: Credentials,
|
pub fn connect(config: Config, credentials: Credentials,
|
||||||
cache: Box<Cache + Send + Sync>, handle: Handle)
|
cache: Box<Cache + Send + Sync>, handle: Handle)
|
||||||
-> Box<Future<Item=(Session, BoxFuture<(), io::Error>), Error=io::Error>>
|
-> Box<Future<Item=Session, Error=io::Error>>
|
||||||
{
|
{
|
||||||
let access_point = apresolve_or_fallback::<io::Error>(&handle);
|
let access_point = apresolve_or_fallback::<io::Error>(&handle);
|
||||||
|
|
||||||
|
@ -108,7 +108,9 @@ impl Session {
|
||||||
&handle, transport, config, cache, reusable_credentials.username.clone()
|
&handle, transport, config, cache, reusable_credentials.username.clone()
|
||||||
);
|
);
|
||||||
|
|
||||||
(session, task)
|
handle.spawn(task.map_err(|e| panic!(e)));
|
||||||
|
|
||||||
|
session
|
||||||
});
|
});
|
||||||
|
|
||||||
Box::new(result)
|
Box::new(result)
|
||||||
|
|
312
src/spirc.rs
312
src/spirc.rs
|
@ -1,26 +1,23 @@
|
||||||
use protobuf::{self, Message, RepeatedField};
|
use protobuf::{self, Message, RepeatedField};
|
||||||
use std::borrow::Cow;
|
use std::borrow::Cow;
|
||||||
use std::sync::{Mutex, Arc};
|
use futures::{Future, Stream, Sink, Async, Poll};
|
||||||
use std::collections::HashMap;
|
use futures::stream::BoxStream;
|
||||||
|
use futures::sink::BoxSink;
|
||||||
|
use futures::sync::mpsc;
|
||||||
|
|
||||||
|
use mercury::MercuryError;
|
||||||
use player::{Player, PlayerState};
|
use player::{Player, PlayerState};
|
||||||
use session::Session;
|
use session::Session;
|
||||||
use util;
|
use util::{now_ms, SpotifyId, SeqGenerator};
|
||||||
use util::SpotifyId;
|
|
||||||
use version;
|
use version;
|
||||||
use futures::{Future, Stream};
|
|
||||||
|
|
||||||
use protocol;
|
use protocol;
|
||||||
pub use protocol::spirc::{PlayStatus, MessageType};
|
pub use protocol::spirc::{PlayStatus, MessageType, Frame};
|
||||||
|
|
||||||
#[derive(Clone)]
|
pub struct SpircTask {
|
||||||
pub struct SpircManager(Arc<Mutex<SpircInternal>>);
|
|
||||||
|
|
||||||
struct SpircInternal {
|
|
||||||
player: Player,
|
player: Player,
|
||||||
session: Session,
|
|
||||||
|
|
||||||
seq_nr: u32,
|
sequence: SeqGenerator<u32>,
|
||||||
|
|
||||||
name: String,
|
name: String,
|
||||||
ident: String,
|
ident: String,
|
||||||
|
@ -39,19 +36,49 @@ struct SpircInternal {
|
||||||
tracks: Vec<SpotifyId>,
|
tracks: Vec<SpotifyId>,
|
||||||
index: u32,
|
index: u32,
|
||||||
|
|
||||||
devices: HashMap<String, String>,
|
subscription: BoxStream<Frame, MercuryError>,
|
||||||
|
sender: BoxSink<Frame, MercuryError>,
|
||||||
|
|
||||||
|
updates: mpsc::UnboundedReceiver<PlayerState>,
|
||||||
|
commands: mpsc::UnboundedReceiver<SpircCommand>,
|
||||||
|
|
||||||
|
shutdown: bool,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl SpircManager {
|
pub enum SpircCommand {
|
||||||
pub fn new(session: Session, player: Player) -> SpircManager {
|
Shutdown
|
||||||
|
}
|
||||||
|
|
||||||
|
pub struct Spirc {
|
||||||
|
commands: mpsc::UnboundedSender<SpircCommand>,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Spirc {
|
||||||
|
pub fn new(session: Session, player: Player) -> (Spirc, SpircTask) {
|
||||||
let ident = session.device_id().to_owned();
|
let ident = session.device_id().to_owned();
|
||||||
let name = session.config().name.clone();
|
let name = session.config().name.clone();
|
||||||
|
|
||||||
SpircManager(Arc::new(Mutex::new(SpircInternal {
|
let uri = format!("hm://remote/user/{}", session.username());
|
||||||
player: player,
|
|
||||||
session: session,
|
|
||||||
|
|
||||||
seq_nr: 0,
|
let subscription = session.mercury().subscribe(&uri as &str);
|
||||||
|
let subscription = subscription.map(|stream| stream.map_err(|_| MercuryError)).flatten_stream();
|
||||||
|
let subscription = subscription.map(|response| -> Frame {
|
||||||
|
let data = response.payload.first().unwrap();
|
||||||
|
protobuf::parse_from_bytes(data).unwrap()
|
||||||
|
}).boxed();
|
||||||
|
|
||||||
|
let sender = Box::new(session.mercury().sender(uri).with(|frame: Frame| {
|
||||||
|
Ok(frame.write_to_bytes().unwrap())
|
||||||
|
}));
|
||||||
|
|
||||||
|
let updates = player.observe();
|
||||||
|
|
||||||
|
let (cmd_tx, cmd_rx) = mpsc::unbounded();
|
||||||
|
|
||||||
|
let mut task = SpircTask {
|
||||||
|
player: player,
|
||||||
|
|
||||||
|
sequence: SeqGenerator::new(1),
|
||||||
|
|
||||||
name: name,
|
name: name,
|
||||||
ident: ident,
|
ident: ident,
|
||||||
|
@ -70,36 +97,104 @@ impl SpircManager {
|
||||||
tracks: Vec::new(),
|
tracks: Vec::new(),
|
||||||
index: 0,
|
index: 0,
|
||||||
|
|
||||||
devices: HashMap::new(),
|
subscription: subscription,
|
||||||
})))
|
sender: sender,
|
||||||
}
|
updates: updates,
|
||||||
|
commands: cmd_rx,
|
||||||
|
|
||||||
pub fn run(&self) {
|
shutdown: false,
|
||||||
let rx = {
|
|
||||||
let mut internal = self.0.lock().unwrap();
|
|
||||||
|
|
||||||
let rx = internal.session.mercury().subscribe(internal.uri());
|
|
||||||
let rx = rx.map_err(|_| ()).flatten_stream().wait();
|
|
||||||
|
|
||||||
internal.notify(true, None);
|
|
||||||
|
|
||||||
// Use a weak pointer to avoid creating an Rc cycle between the player and the
|
|
||||||
// SpircManager
|
|
||||||
let _self = Arc::downgrade(&self.0);
|
|
||||||
internal.player.add_observer(Box::new(move |state| {
|
|
||||||
if let Some(_self) = _self.upgrade() {
|
|
||||||
let mut internal = _self.lock().unwrap();
|
|
||||||
internal.on_update(state);
|
|
||||||
}
|
|
||||||
}));
|
|
||||||
|
|
||||||
rx
|
|
||||||
};
|
};
|
||||||
|
|
||||||
for pkt in rx {
|
let spirc = Spirc {
|
||||||
let data = pkt.as_ref().unwrap().payload.first().unwrap();
|
commands: cmd_tx,
|
||||||
let frame = protobuf::parse_from_bytes::<protocol::spirc::Frame>(data).unwrap();
|
};
|
||||||
|
|
||||||
|
task.notify(true, None);
|
||||||
|
|
||||||
|
(spirc, task)
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn shutdown(&mut self) {
|
||||||
|
mpsc::UnboundedSender::send(&mut self.commands, SpircCommand::Shutdown).unwrap();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Future for SpircTask {
|
||||||
|
type Item = ();
|
||||||
|
type Error = ();
|
||||||
|
|
||||||
|
fn poll(&mut self) -> Poll<(), ()> {
|
||||||
|
loop {
|
||||||
|
let mut progress = false;
|
||||||
|
|
||||||
|
if !self.shutdown {
|
||||||
|
match self.subscription.poll().unwrap() {
|
||||||
|
Async::Ready(Some(frame)) => {
|
||||||
|
progress = true;
|
||||||
|
self.handle_frame(frame);
|
||||||
|
}
|
||||||
|
Async::Ready(None) => panic!("subscription terminated"),
|
||||||
|
Async::NotReady => (),
|
||||||
|
}
|
||||||
|
|
||||||
|
match self.updates.poll().unwrap() {
|
||||||
|
Async::Ready(Some(state)) => {
|
||||||
|
progress = true;
|
||||||
|
self.handle_update(state);
|
||||||
|
}
|
||||||
|
Async::Ready(None) => panic!("player terminated"),
|
||||||
|
Async::NotReady => (),
|
||||||
|
}
|
||||||
|
|
||||||
|
match self.commands.poll().unwrap() {
|
||||||
|
Async::Ready(Some(command)) => {
|
||||||
|
progress = true;
|
||||||
|
self.handle_command(command);
|
||||||
|
}
|
||||||
|
Async::Ready(None) => (),
|
||||||
|
Async::NotReady => (),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
let poll_sender = self.sender.poll_complete().unwrap();
|
||||||
|
|
||||||
|
// Only shutdown once we've flushed out all our messages
|
||||||
|
if self.shutdown && poll_sender.is_ready() {
|
||||||
|
return Ok(Async::Ready(()));
|
||||||
|
}
|
||||||
|
|
||||||
|
if !progress {
|
||||||
|
|
||||||
|
return Ok(Async::NotReady);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl SpircTask {
|
||||||
|
fn handle_update(&mut self, player_state: PlayerState) {
|
||||||
|
let end_of_track = player_state.end_of_track();
|
||||||
|
if end_of_track {
|
||||||
|
self.index = (self.index + 1) % self.tracks.len() as u32;
|
||||||
|
let track = self.tracks[self.index as usize];
|
||||||
|
self.player.load(track, true, 0);
|
||||||
|
} else {
|
||||||
|
self.notify_with_player_state(false, None, &player_state);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fn handle_command(&mut self, cmd: SpircCommand) {
|
||||||
|
match cmd {
|
||||||
|
SpircCommand::Shutdown => {
|
||||||
|
CommandSender::new(self, MessageType::kMessageTypeGoodbye).send();
|
||||||
|
self.shutdown = true;
|
||||||
|
self.commands.close();
|
||||||
|
self.updates.close();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fn handle_frame(&mut self, frame: Frame) {
|
||||||
debug!("{:?} {:?} {} {} {}",
|
debug!("{:?} {:?} {} {} {}",
|
||||||
frame.get_typ(),
|
frame.get_typ(),
|
||||||
frame.get_device_state().get_name(),
|
frame.get_device_state().get_name(),
|
||||||
|
@ -107,88 +202,6 @@ impl SpircManager {
|
||||||
frame.get_seq_nr(),
|
frame.get_seq_nr(),
|
||||||
frame.get_state_update_id());
|
frame.get_state_update_id());
|
||||||
|
|
||||||
self.0.lock().unwrap().handle(frame);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn devices(&self) -> HashMap<String, String> {
|
|
||||||
self.0.lock().unwrap().devices.clone()
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn send_play(&self, recipient: &str) {
|
|
||||||
let mut internal = self.0.lock().unwrap();
|
|
||||||
CommandSender::new(&mut *internal, MessageType::kMessageTypePlay)
|
|
||||||
.recipient(recipient)
|
|
||||||
.send();
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn send_pause(&self, recipient: &str) {
|
|
||||||
let mut internal = self.0.lock().unwrap();
|
|
||||||
CommandSender::new(&mut *internal, MessageType::kMessageTypePause)
|
|
||||||
.recipient(recipient)
|
|
||||||
.send();
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn send_prev(&self, recipient: &str) {
|
|
||||||
let mut internal = self.0.lock().unwrap();
|
|
||||||
CommandSender::new(&mut *internal, MessageType::kMessageTypePrev)
|
|
||||||
.recipient(recipient)
|
|
||||||
.send();
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn send_next(&self, recipient: &str) {
|
|
||||||
let mut internal = self.0.lock().unwrap();
|
|
||||||
CommandSender::new(&mut *internal, MessageType::kMessageTypeNext)
|
|
||||||
.recipient(recipient)
|
|
||||||
.send();
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn send_replace_tracks<I: Iterator<Item = SpotifyId>>(&mut self,
|
|
||||||
recipient: &str,
|
|
||||||
track_ids: I) {
|
|
||||||
let state = track_ids_to_state(track_ids);
|
|
||||||
let mut internal = self.0.lock().unwrap();
|
|
||||||
CommandSender::new(&mut *internal, MessageType::kMessageTypeReplace)
|
|
||||||
.recipient(recipient)
|
|
||||||
.state(state)
|
|
||||||
.send();
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn send_load_tracks<I: Iterator<Item = SpotifyId>>(&mut self,
|
|
||||||
recipient: &str,
|
|
||||||
track_ids: I) {
|
|
||||||
let state = track_ids_to_state(track_ids);
|
|
||||||
let mut internal = self.0.lock().unwrap();
|
|
||||||
CommandSender::new(&mut *internal, MessageType::kMessageTypeLoad)
|
|
||||||
.recipient(recipient)
|
|
||||||
.state(state)
|
|
||||||
.send();
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn send_goodbye(&self) {
|
|
||||||
let mut internal = self.0.lock().unwrap();
|
|
||||||
CommandSender::new(&mut *internal, MessageType::kMessageTypeGoodbye)
|
|
||||||
.send();
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn get_queue(&self) -> Vec<SpotifyId> {
|
|
||||||
self.0.lock().unwrap().tracks.clone()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
impl SpircInternal {
|
|
||||||
fn on_update(&mut self, player_state: &PlayerState) {
|
|
||||||
let end_of_track = player_state.end_of_track();
|
|
||||||
if end_of_track {
|
|
||||||
self.index = (self.index + 1) % self.tracks.len() as u32;
|
|
||||||
let track = self.tracks[self.index as usize];
|
|
||||||
self.player.load(track, true, 0);
|
|
||||||
} else {
|
|
||||||
self.notify_with_player_state(false, None, player_state);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
fn handle(&mut self, frame: protocol::spirc::Frame) {
|
|
||||||
if frame.get_ident() == self.ident ||
|
if frame.get_ident() == self.ident ||
|
||||||
(frame.get_recipient().len() > 0 && !frame.get_recipient().contains(&self.ident)) {
|
(frame.get_recipient().len() > 0 && !frame.get_recipient().contains(&self.ident)) {
|
||||||
return;
|
return;
|
||||||
|
@ -199,11 +212,6 @@ impl SpircInternal {
|
||||||
self.last_command_msgid = frame.get_seq_nr();
|
self.last_command_msgid = frame.get_seq_nr();
|
||||||
}
|
}
|
||||||
|
|
||||||
if frame.has_ident() && !frame.has_goodbye() && frame.has_device_state() {
|
|
||||||
self.devices.insert(frame.get_ident().into(),
|
|
||||||
frame.get_device_state().get_name().into());
|
|
||||||
}
|
|
||||||
|
|
||||||
match frame.get_typ() {
|
match frame.get_typ() {
|
||||||
MessageType::kMessageTypeHello => {
|
MessageType::kMessageTypeHello => {
|
||||||
self.notify(false, Some(frame.get_ident()));
|
self.notify(false, Some(frame.get_ident()));
|
||||||
|
@ -211,7 +219,7 @@ impl SpircInternal {
|
||||||
MessageType::kMessageTypeLoad => {
|
MessageType::kMessageTypeLoad => {
|
||||||
if !self.is_active {
|
if !self.is_active {
|
||||||
self.is_active = true;
|
self.is_active = true;
|
||||||
self.became_active_at = util::now_ms();
|
self.became_active_at = now_ms();
|
||||||
}
|
}
|
||||||
|
|
||||||
self.reload_tracks(&frame);
|
self.reload_tracks(&frame);
|
||||||
|
@ -255,11 +263,7 @@ impl SpircInternal {
|
||||||
MessageType::kMessageTypeVolume => {
|
MessageType::kMessageTypeVolume => {
|
||||||
self.player.volume(frame.get_volume() as u16);
|
self.player.volume(frame.get_volume() as u16);
|
||||||
}
|
}
|
||||||
MessageType::kMessageTypeGoodbye => {
|
MessageType::kMessageTypeGoodbye => (),
|
||||||
if frame.has_ident() {
|
|
||||||
self.devices.remove(frame.get_ident());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
_ => (),
|
_ => (),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -388,14 +392,10 @@ impl SpircInternal {
|
||||||
],
|
],
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
fn uri(&self) -> String {
|
|
||||||
format!("hm://remote/user/{}", self.session.username())
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
struct CommandSender<'a> {
|
struct CommandSender<'a> {
|
||||||
spirc_internal: &'a mut SpircInternal,
|
spirc: &'a mut SpircTask,
|
||||||
cmd: MessageType,
|
cmd: MessageType,
|
||||||
recipient: Option<&'a str>,
|
recipient: Option<&'a str>,
|
||||||
player_state: Option<&'a PlayerState>,
|
player_state: Option<&'a PlayerState>,
|
||||||
|
@ -403,9 +403,9 @@ struct CommandSender<'a> {
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<'a> CommandSender<'a> {
|
impl<'a> CommandSender<'a> {
|
||||||
fn new(spirc_internal: &'a mut SpircInternal, cmd: MessageType) -> CommandSender {
|
fn new(spirc: &'a mut SpircTask, cmd: MessageType) -> CommandSender {
|
||||||
CommandSender {
|
CommandSender {
|
||||||
spirc_internal: spirc_internal,
|
spirc: spirc,
|
||||||
cmd: cmd,
|
cmd: cmd,
|
||||||
recipient: None,
|
recipient: None,
|
||||||
player_state: None,
|
player_state: None,
|
||||||
|
@ -423,6 +423,7 @@ impl<'a> CommandSender<'a> {
|
||||||
self
|
self
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[allow(dead_code)]
|
||||||
fn state(mut self, s: protocol::spirc::State) -> CommandSender<'a> {
|
fn state(mut self, s: protocol::spirc::State) -> CommandSender<'a> {
|
||||||
self.state = Some(s);
|
self.state = Some(s);
|
||||||
self
|
self
|
||||||
|
@ -430,35 +431,34 @@ impl<'a> CommandSender<'a> {
|
||||||
|
|
||||||
fn send(self) {
|
fn send(self) {
|
||||||
let state = self.player_state.map_or_else(|| {
|
let state = self.player_state.map_or_else(|| {
|
||||||
Cow::Owned(self.spirc_internal.player.state())
|
Cow::Owned(self.spirc.player.state())
|
||||||
}, |s| {
|
}, |s| {
|
||||||
Cow::Borrowed(s)
|
Cow::Borrowed(s)
|
||||||
});
|
});
|
||||||
|
|
||||||
let mut pkt = protobuf_init!(protocol::spirc::Frame::new(), {
|
let mut frame = protobuf_init!(Frame::new(), {
|
||||||
version: 1,
|
version: 1,
|
||||||
ident: self.spirc_internal.ident.clone(),
|
ident: self.spirc.ident.clone(),
|
||||||
protocol_version: "2.0.0",
|
protocol_version: "2.0.0",
|
||||||
seq_nr: { self.spirc_internal.seq_nr += 1; self.spirc_internal.seq_nr },
|
seq_nr: self.spirc.sequence.get(),
|
||||||
typ: self.cmd,
|
typ: self.cmd,
|
||||||
recipient: RepeatedField::from_vec(
|
recipient: RepeatedField::from_vec(
|
||||||
self.recipient.map(|r| vec![r.to_owned()] ).unwrap_or(vec![])
|
self.recipient.map(|r| vec![r.to_owned()] ).unwrap_or(vec![])
|
||||||
),
|
),
|
||||||
device_state: self.spirc_internal.device_state(&state),
|
device_state: self.spirc.device_state(&state),
|
||||||
state_update_id: state.update_time()
|
state_update_id: state.update_time()
|
||||||
});
|
});
|
||||||
|
|
||||||
if self.spirc_internal.is_active {
|
if self.spirc.is_active {
|
||||||
pkt.set_state(self.spirc_internal.spirc_state(&state));
|
frame.set_state(self.spirc.spirc_state(&state));
|
||||||
}
|
}
|
||||||
|
|
||||||
let payload = pkt.write_to_bytes().unwrap();
|
let ready = self.spirc.sender.start_send(frame).unwrap().is_ready();
|
||||||
let uri = self.spirc_internal.uri();
|
assert!(ready);
|
||||||
self.spirc_internal.session.mercury()
|
|
||||||
.send(uri, payload).wait().unwrap();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[allow(dead_code)]
|
||||||
fn track_ids_to_state<I: Iterator<Item = SpotifyId>>(track_ids: I) -> protocol::spirc::State {
|
fn track_ids_to_state<I: Iterator<Item = SpotifyId>>(track_ids: I) -> protocol::spirc::State {
|
||||||
let tracks: Vec<protocol::spirc::TrackRef> =
|
let tracks: Vec<protocol::spirc::TrackRef> =
|
||||||
track_ids.map(|i| {
|
track_ids.map(|i| {
|
||||||
|
|
Loading…
Reference in a new issue