librespot/core/src/session.rs

312 lines
8.4 KiB
Rust
Raw Normal View History

use std::future::Future;
use std::io;
use std::pin::Pin;
2019-07-08 08:08:32 +00:00
use std::sync::atomic::{AtomicUsize, Ordering};
use std::sync::{Arc, RwLock, Weak};
use std::task::Context;
2021-01-21 20:49:39 +00:00
use std::task::Poll;
2019-03-24 14:15:14 +00:00
use std::time::{SystemTime, UNIX_EPOCH};
use byteorder::{BigEndian, ByteOrder};
use bytes::Bytes;
use futures_core::TryStream;
use futures_util::{FutureExt, StreamExt, TryStreamExt};
use once_cell::sync::OnceCell;
2021-02-13 10:53:23 +00:00
use thiserror::Error;
use tokio::sync::mpsc;
use tokio_stream::wrappers::UnboundedReceiverStream;
2015-06-23 14:38:29 +00:00
2021-03-17 20:24:28 +00:00
use crate::apresolve::apresolve;
use crate::audio_key::AudioKeyManager;
use crate::authentication::Credentials;
use crate::cache::Cache;
use crate::channel::ChannelManager;
use crate::config::SessionConfig;
2021-02-13 10:53:23 +00:00
use crate::connection::{self, AuthenticationError};
use crate::mercury::MercuryManager;
2021-02-13 10:53:23 +00:00
#[derive(Debug, Error)]
pub enum SessionError {
#[error(transparent)]
AuthenticationError(#[from] AuthenticationError),
#[error("Cannot create session: {0}")]
IoError(#[from] io::Error),
}
2018-02-12 19:10:36 +00:00
struct SessionData {
country: String,
time_delta: i64,
canonical_username: String,
2018-04-21 15:46:29 +00:00
invalid: bool,
}
2018-02-12 19:13:37 +00:00
struct SessionInternal {
config: SessionConfig,
data: RwLock<SessionData>,
2015-06-23 14:38:29 +00:00
2017-01-20 02:37:02 +00:00
tx_connection: mpsc::UnboundedSender<(u8, Vec<u8>)>,
2017-01-18 20:39:46 +00:00
2021-01-21 20:49:39 +00:00
audio_key: OnceCell<AudioKeyManager>,
channel: OnceCell<ChannelManager>,
mercury: OnceCell<MercuryManager>,
cache: Option<Arc<Cache>>,
2017-01-19 22:45:24 +00:00
handle: tokio::runtime::Handle,
session_id: usize,
2015-04-25 20:32:07 +00:00
}
2019-07-08 08:08:32 +00:00
static SESSION_COUNTER: AtomicUsize = AtomicUsize::new(0);
2017-01-18 20:39:46 +00:00
#[derive(Clone)]
2018-02-12 19:13:37 +00:00
pub struct Session(Arc<SessionInternal>);
2017-01-18 20:39:46 +00:00
2015-04-25 20:32:07 +00:00
impl Session {
2021-01-21 20:49:39 +00:00
pub async fn connect(
2018-02-11 11:37:08 +00:00
config: SessionConfig,
credentials: Credentials,
cache: Option<Cache>,
2021-02-13 10:53:23 +00:00
) -> Result<Session, SessionError> {
2021-03-17 20:24:28 +00:00
let ap = apresolve(config.proxy.as_ref(), config.ap_port).await;
2017-01-18 18:41:22 +00:00
2021-01-21 20:49:39 +00:00
info!("Connecting to AP \"{}\"", ap);
2021-03-17 20:24:28 +00:00
let mut conn = connection::connect(ap, config.proxy.as_ref()).await?;
2017-01-19 22:45:24 +00:00
2021-01-21 20:49:39 +00:00
let reusable_credentials =
connection::authenticate(&mut conn, credentials, &config.device_id).await?;
info!("Authenticated as \"{}\" !", reusable_credentials.username);
if let Some(cache) = &cache {
cache.save_credentials(&reusable_credentials);
}
2017-01-20 12:56:42 +00:00
let session = Session::create(
conn,
config,
cache,
reusable_credentials.username,
tokio::runtime::Handle::current(),
);
2018-02-11 11:37:08 +00:00
2021-01-21 20:49:39 +00:00
Ok(session)
2017-01-18 18:41:22 +00:00
}
2018-02-11 11:37:08 +00:00
fn create(
transport: connection::Transport,
config: SessionConfig,
cache: Option<Cache>,
username: String,
handle: tokio::runtime::Handle,
2021-01-21 20:49:39 +00:00
) -> Session {
2017-01-20 02:37:02 +00:00
let (sink, stream) = transport.split();
let (sender_tx, sender_rx) = mpsc::unbounded_channel();
let session_id = SESSION_COUNTER.fetch_add(1, Ordering::Relaxed);
2017-01-20 02:37:02 +00:00
debug!("new Session[{}]", session_id);
2017-01-18 18:41:22 +00:00
let session = Session(Arc::new(SessionInternal {
2021-03-01 02:37:22 +00:00
config,
2016-01-01 23:16:12 +00:00
data: RwLock::new(SessionData {
country: String::new(),
2017-01-18 18:41:22 +00:00
canonical_username: username,
2018-04-21 15:46:29 +00:00
invalid: false,
2019-03-24 14:15:14 +00:00
time_delta: 0,
2016-01-01 23:16:12 +00:00
}),
2017-01-20 02:37:02 +00:00
tx_connection: sender_tx,
cache: cache.map(Arc::new),
2021-01-21 20:49:39 +00:00
audio_key: OnceCell::new(),
channel: OnceCell::new(),
mercury: OnceCell::new(),
handle,
2021-03-01 02:37:22 +00:00
session_id,
2017-01-18 18:41:22 +00:00
}));
let sender_task = UnboundedReceiverStream::new(sender_rx)
.map(Ok)
.forward(sink);
let receiver_task = DispatchTask(stream, session.weak());
2017-01-20 02:37:02 +00:00
2021-01-21 20:49:39 +00:00
let task =
futures_util::future::join(sender_task, receiver_task).map(|_| io::Result::<_>::Ok(()));
2021-01-21 20:49:39 +00:00
tokio::spawn(task);
session
2015-06-23 14:38:29 +00:00
}
2017-01-18 20:39:46 +00:00
pub fn audio_key(&self) -> &AudioKeyManager {
2021-01-21 20:49:39 +00:00
self.0
.audio_key
.get_or_init(|| AudioKeyManager::new(self.weak()))
2017-01-18 20:39:46 +00:00
}
2017-01-18 18:41:22 +00:00
2017-01-19 22:45:24 +00:00
pub fn channel(&self) -> &ChannelManager {
2021-01-21 20:49:39 +00:00
self.0
.channel
.get_or_init(|| ChannelManager::new(self.weak()))
2017-01-19 22:45:24 +00:00
}
2017-01-18 21:33:52 +00:00
pub fn mercury(&self) -> &MercuryManager {
2021-01-21 20:49:39 +00:00
self.0
.mercury
.get_or_init(|| MercuryManager::new(self.weak()))
2017-01-18 21:33:52 +00:00
}
pub fn time_delta(&self) -> i64 {
2019-03-24 14:15:14 +00:00
self.0.data.read().unwrap().time_delta
}
2021-01-21 20:49:39 +00:00
pub fn spawn<T>(&self, task: T)
2018-02-11 11:37:08 +00:00
where
2021-01-21 20:49:39 +00:00
T: Future + Send + 'static,
T::Output: Send + 'static,
2017-01-19 22:45:24 +00:00
{
self.0.handle.spawn(task);
2017-01-19 22:45:24 +00:00
}
fn debug_info(&self) {
2018-02-11 11:37:08 +00:00
debug!(
"Session[{}] strong={} weak={}",
self.0.session_id,
Arc::strong_count(&self.0),
Arc::weak_count(&self.0)
);
}
2021-01-21 20:49:39 +00:00
#[allow(clippy::match_same_arms)]
fn dispatch(&self, cmd: u8, data: Bytes) {
match cmd {
0x4 => {
let server_timestamp = BigEndian::read_u32(data.as_ref()) as i64;
2019-03-24 14:15:14 +00:00
let timestamp = match SystemTime::now().duration_since(UNIX_EPOCH) {
Ok(dur) => dur,
Err(err) => err.duration(),
}
.as_secs() as i64;
2019-03-24 14:15:14 +00:00
self.0.data.write().unwrap().time_delta = server_timestamp - timestamp;
self.debug_info();
2019-03-24 14:15:14 +00:00
self.send_packet(0x49, vec![0, 0, 0, 0]);
2018-02-11 11:37:08 +00:00
}
0x4a => (),
0x1b => {
2017-01-29 17:54:32 +00:00
let country = String::from_utf8(data.as_ref().to_owned()).unwrap();
2017-04-29 14:18:16 +00:00
info!("Country: {:?}", country);
2017-01-29 17:54:32 +00:00
self.0.data.write().unwrap().country = country;
2016-01-02 15:19:39 +00:00
}
2017-01-18 21:33:52 +00:00
2017-01-19 22:45:24 +00:00
0x9 | 0xa => self.channel().dispatch(cmd, data),
2017-01-18 21:33:52 +00:00
0xd | 0xe => self.audio_key().dispatch(cmd, data),
0xb2..=0xb6 => self.mercury().dispatch(cmd, data),
2016-01-02 15:19:39 +00:00
_ => (),
}
}
2017-01-18 05:57:36 +00:00
pub fn send_packet(&self, cmd: u8, data: Vec<u8>) {
self.0.tx_connection.send((cmd, data)).unwrap();
}
pub fn cache(&self) -> Option<&Arc<Cache>> {
self.0.cache.as_ref()
}
2018-02-10 08:52:30 +00:00
fn config(&self) -> &SessionConfig {
&self.0.config
}
pub fn username(&self) -> String {
self.0.data.read().unwrap().canonical_username.clone()
}
pub fn country(&self) -> String {
self.0.data.read().unwrap().country.clone()
}
pub fn device_id(&self) -> &str {
2017-01-18 17:07:20 +00:00
&self.config().device_id
}
2017-01-18 20:39:46 +00:00
2018-02-10 09:10:26 +00:00
fn weak(&self) -> SessionWeak {
2017-01-18 20:39:46 +00:00
SessionWeak(Arc::downgrade(&self.0))
}
pub fn session_id(&self) -> usize {
self.0.session_id
}
2018-04-21 15:46:29 +00:00
pub fn shutdown(&self) {
debug!("Invalidating session[{}]", self.0.session_id);
self.0.data.write().unwrap().invalid = true;
self.mercury().shutdown();
self.channel().shutdown();
2018-04-21 15:46:29 +00:00
}
pub fn is_invalid(&self) -> bool {
self.0.data.read().unwrap().invalid
}
2017-01-18 20:39:46 +00:00
}
#[derive(Clone)]
2018-02-12 19:13:37 +00:00
pub struct SessionWeak(Weak<SessionInternal>);
2017-01-18 20:39:46 +00:00
impl SessionWeak {
fn try_upgrade(&self) -> Option<Session> {
self.0.upgrade().map(Session)
}
pub(crate) fn upgrade(&self) -> Session {
self.try_upgrade().expect("Session died")
}
}
impl Drop for SessionInternal {
fn drop(&mut self) {
debug!("drop Session[{}]", self.session_id);
}
}
struct DispatchTask<S>(S, SessionWeak)
2018-02-11 11:37:08 +00:00
where
2021-01-21 20:49:39 +00:00
S: TryStream<Ok = (u8, Bytes)> + Unpin;
2018-02-11 11:37:08 +00:00
impl<S> Future for DispatchTask<S>
where
2021-01-21 20:49:39 +00:00
S: TryStream<Ok = (u8, Bytes)> + Unpin,
<S as TryStream>::Ok: std::fmt::Debug,
{
2021-01-21 20:49:39 +00:00
type Output = Result<(), S::Error>;
2021-01-21 20:49:39 +00:00
fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
let session = match self.1.try_upgrade() {
Some(session) => session,
2021-01-21 20:49:39 +00:00
None => return Poll::Ready(Ok(())),
};
loop {
2021-01-21 20:49:39 +00:00
let (cmd, data) = match self.0.try_poll_next_unpin(cx) {
Poll::Ready(Some(Ok(t))) => t,
Poll::Ready(None) => {
warn!("Connection to server closed.");
session.shutdown();
2021-01-21 20:49:39 +00:00
return Poll::Ready(Ok(()));
2020-01-24 01:26:16 +00:00
}
2021-01-21 20:49:39 +00:00
Poll::Ready(Some(Err(e))) => {
2018-04-21 15:46:29 +00:00
session.shutdown();
2021-01-21 20:49:39 +00:00
return Poll::Ready(Err(e));
2018-04-21 15:46:29 +00:00
}
2021-01-21 20:49:39 +00:00
Poll::Pending => return Poll::Pending,
};
2018-04-21 15:46:29 +00:00
session.dispatch(cmd, data);
}
}
}
2018-02-11 11:37:08 +00:00
impl<S> Drop for DispatchTask<S>
where
2021-01-21 20:49:39 +00:00
S: TryStream<Ok = (u8, Bytes)> + Unpin,
{
fn drop(&mut self) {
debug!("drop Dispatch");
2017-01-18 20:39:46 +00:00
}
2015-04-25 20:32:07 +00:00
}