123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261 |
- use bytes::Bytes;
- use crypto::digest::Digest;
- use crypto::sha1::Sha1;
- use futures::sync::mpsc;
- use futures::{Future, Stream, IntoFuture, Poll, Async};
- use std::io;
- use std::sync::{RwLock, Arc, Weak};
- use tokio_core::reactor::{Handle, Remote};
- use std::sync::atomic::{AtomicUsize, ATOMIC_USIZE_INIT, Ordering};
- use apresolve::apresolve_or_fallback;
- use authentication::Credentials;
- use cache::Cache;
- use component::Lazy;
- use connection;
- use config::SessionConfig;
- use audio_key::AudioKeyManager;
- use channel::ChannelManager;
- use mercury::MercuryManager;
- pub struct SessionData {
- country: String,
- canonical_username: String,
- }
- pub struct SessionInternal {
- config: SessionConfig,
- data: RwLock<SessionData>,
- tx_connection: mpsc::UnboundedSender<(u8, Vec<u8>)>,
- audio_key: Lazy<AudioKeyManager>,
- channel: Lazy<ChannelManager>,
- mercury: Lazy<MercuryManager>,
- cache: Option<Arc<Cache>>,
- handle: Remote,
- session_id: usize,
- }
- static SESSION_COUNTER : AtomicUsize = ATOMIC_USIZE_INIT;
- #[derive(Clone)]
- pub struct Session(pub Arc<SessionInternal>);
- pub fn device_id(name: &str) -> String {
- let mut h = Sha1::new();
- h.input_str(name);
- h.result_str()
- }
- impl Session {
- pub fn connect(config: SessionConfig, credentials: Credentials,
- cache: Option<Cache>, handle: Handle)
- -> Box<Future<Item=Session, Error=io::Error>>
- {
- let access_point = apresolve_or_fallback::<io::Error>(&handle);
- let handle_ = handle.clone();
- let connection = access_point.and_then(move |addr| {
- info!("Connecting to AP \"{}\"", addr);
- connection::connect::<&str>(&addr, &handle_)
- });
- let device_id = config.device_id.clone();
- let authentication = connection.and_then(move |connection| {
- connection::authenticate(connection, credentials, device_id)
- });
- let result = authentication.map(move |(transport, reusable_credentials)| {
- info!("Authenticated as \"{}\" !", reusable_credentials.username);
- if let Some(ref cache) = cache {
- cache.save_credentials(&reusable_credentials);
- }
- let (session, task) = Session::create(
- &handle, transport, config, cache, reusable_credentials.username.clone()
- );
- handle.spawn(task.map_err(|e| panic!(e)));
- session
- });
-
- Box::new(result)
- }
- fn create(handle: &Handle, transport: connection::Transport,
- config: SessionConfig, cache: Option<Cache>, username: String)
- -> (Session, Box<Future<Item = (), Error = io::Error>>)
- {
- let (sink, stream) = transport.split();
- let (sender_tx, sender_rx) = mpsc::unbounded();
- let session_id = SESSION_COUNTER.fetch_add(1, Ordering::Relaxed);
- debug!("new Session[{}]", session_id);
- let session = Session(Arc::new(SessionInternal {
- config: config,
- data: RwLock::new(SessionData {
- country: String::new(),
- canonical_username: username,
- }),
- tx_connection: sender_tx,
- cache: cache.map(Arc::new),
- audio_key: Lazy::new(),
- channel: Lazy::new(),
- mercury: Lazy::new(),
- handle: handle.remote().clone(),
- session_id: session_id,
- }));
- let sender_task = sender_rx
- .map_err(|e| -> io::Error { panic!(e) })
- .forward(sink).map(|_| ());
- let receiver_task = DispatchTask(stream, session.weak());
- let task = Box::new((receiver_task, sender_task).into_future()
- .map(|((), ())| ()));
- (session, task)
- }
- pub fn audio_key(&self) -> &AudioKeyManager {
- self.0.audio_key.get(|| AudioKeyManager::new(self.weak()))
- }
- pub fn channel(&self) -> &ChannelManager {
- self.0.channel.get(|| ChannelManager::new(self.weak()))
- }
- pub fn mercury(&self) -> &MercuryManager {
- self.0.mercury.get(|| MercuryManager::new(self.weak()))
- }
- pub fn spawn<F, R>(&self, f: F)
- where F: FnOnce(&Handle) -> R + Send + 'static,
- R: IntoFuture<Item=(), Error=()>,
- R::Future: 'static
- {
- self.0.handle.spawn(f)
- }
- fn debug_info(&self) {
- debug!("Session[{}] strong={} weak={}",
- self.0.session_id, Arc::strong_count(&self.0), Arc::weak_count(&self.0));
- }
- #[cfg_attr(feature = "cargo-clippy", allow(match_same_arms))]
- fn dispatch(&self, cmd: u8, data: Bytes) {
- match cmd {
- 0x4 => {
- self.debug_info();
- self.send_packet(0x49, data.as_ref().to_owned());
- },
- 0x4a => (),
- 0x1b => {
- let country = String::from_utf8(data.as_ref().to_owned()).unwrap();
- info!("Country: {:?}", country);
- self.0.data.write().unwrap().country = country;
- }
- 0x9 | 0xa => self.channel().dispatch(cmd, data),
- 0xd | 0xe => self.audio_key().dispatch(cmd, data),
- 0xb2...0xb6 => self.mercury().dispatch(cmd, data),
- _ => (),
- }
- }
- pub fn send_packet(&self, cmd: u8, data: Vec<u8>) {
- self.0.tx_connection.unbounded_send((cmd, data)).unwrap();
- }
- pub fn cache(&self) -> Option<&Arc<Cache>> {
- self.0.cache.as_ref()
- }
- 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 {
- &self.config().device_id
- }
- fn weak(&self) -> SessionWeak {
- SessionWeak(Arc::downgrade(&self.0))
- }
- pub fn session_id(&self) -> usize {
- self.0.session_id
- }
- }
- #[derive(Clone)]
- pub struct SessionWeak(pub Weak<SessionInternal>);
- 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)
- where S: Stream<Item = (u8, Bytes)>;
- impl <S> Future for DispatchTask<S>
- where S: Stream<Item = (u8, Bytes)>
- {
- type Item = ();
- type Error = S::Error;
- fn poll(&mut self) -> Poll<Self::Item, Self::Error> {
- let session = match self.1.try_upgrade() {
- Some(session) => session,
- None => {
- return Ok(Async::Ready(()))
- },
- };
- loop {
- let (cmd, data) = try_ready!(self.0.poll()).expect("connection closed");
- session.dispatch(cmd, data);
- }
- }
- }
- impl <S> Drop for DispatchTask<S>
- where S: Stream<Item = (u8, Bytes)>
- {
- fn drop(&mut self) {
- debug!("drop Dispatch");
- }
- }
|