2017-01-10 16:31:12 +00:00
|
|
|
#[macro_use] extern crate log;
|
|
|
|
extern crate env_logger;
|
2017-01-18 18:41:22 +00:00
|
|
|
extern crate futures;
|
2017-02-21 23:25:04 +00:00
|
|
|
extern crate getopts;
|
|
|
|
extern crate librespot;
|
2017-01-18 18:41:22 +00:00
|
|
|
extern crate tokio_core;
|
2017-02-22 04:17:04 +00:00
|
|
|
extern crate tokio_signal;
|
2015-04-25 20:32:07 +00:00
|
|
|
|
2017-01-10 16:31:12 +00:00
|
|
|
use env_logger::LogBuilder;
|
2017-02-22 04:17:04 +00:00
|
|
|
use futures::{Future, Async, Poll, Stream};
|
2017-01-10 16:31:12 +00:00
|
|
|
use std::env;
|
2017-02-22 04:17:04 +00:00
|
|
|
use std::io::{self, stderr, Write};
|
2017-01-10 16:31:12 +00:00
|
|
|
use std::path::PathBuf;
|
2017-02-21 23:25:04 +00:00
|
|
|
use std::process::exit;
|
2017-01-10 16:31:12 +00:00
|
|
|
use std::str::FromStr;
|
2017-02-22 04:17:04 +00:00
|
|
|
use tokio_core::reactor::{Handle, Core};
|
|
|
|
use tokio_core::io::IoStream;
|
|
|
|
use std::mem;
|
2015-07-19 20:36:14 +00:00
|
|
|
|
2017-02-22 04:17:04 +00:00
|
|
|
use librespot::spirc::{Spirc, SpircTask};
|
2017-01-18 18:41:22 +00:00
|
|
|
use librespot::authentication::{get_credentials, Credentials};
|
2017-02-22 04:17:04 +00:00
|
|
|
use librespot::authentication::discovery::{discovery, DiscoveryStream};
|
2017-01-18 18:41:22 +00:00
|
|
|
use librespot::audio_backend::{self, Sink, BACKENDS};
|
2017-01-29 15:36:39 +00:00
|
|
|
use librespot::cache::Cache;
|
2017-01-10 16:31:12 +00:00
|
|
|
use librespot::player::Player;
|
|
|
|
use librespot::session::{Bitrate, Config, Session};
|
2017-01-25 21:49:18 +00:00
|
|
|
use librespot::mixer::{self, Mixer};
|
2017-01-25 21:09:03 +00:00
|
|
|
|
2017-01-10 16:31:12 +00:00
|
|
|
use librespot::version;
|
2016-03-16 00:05:05 +00:00
|
|
|
|
2016-03-14 23:41:51 +00:00
|
|
|
fn usage(program: &str, opts: &getopts::Options) -> String {
|
2015-07-19 20:36:14 +00:00
|
|
|
let brief = format!("Usage: {} [options]", program);
|
2017-01-29 16:25:09 +00:00
|
|
|
opts.usage(&brief)
|
2015-07-19 20:36:14 +00:00
|
|
|
}
|
|
|
|
|
2017-01-10 16:31:12 +00:00
|
|
|
fn setup_logging(verbose: bool) {
|
|
|
|
let mut builder = LogBuilder::new();
|
|
|
|
match env::var("RUST_LOG") {
|
|
|
|
Ok(config) => {
|
|
|
|
builder.parse(&config);
|
|
|
|
builder.init().unwrap();
|
|
|
|
|
|
|
|
if verbose {
|
|
|
|
warn!("`--verbose` flag overidden by `RUST_LOG` environment variable");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Err(_) => {
|
|
|
|
if verbose {
|
|
|
|
builder.parse("mdns=info,librespot=trace");
|
|
|
|
} else {
|
|
|
|
builder.parse("mdns=info,librespot=info");
|
|
|
|
}
|
|
|
|
builder.init().unwrap();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn list_backends() {
|
|
|
|
println!("Available Backends : ");
|
|
|
|
for (&(name, _), idx) in BACKENDS.iter().zip(0..) {
|
|
|
|
if idx == 0 {
|
|
|
|
println!("- {} (default)", name);
|
|
|
|
} else {
|
|
|
|
println!("- {}", name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-22 04:17:04 +00:00
|
|
|
#[derive(Clone)]
|
2017-01-18 18:41:22 +00:00
|
|
|
struct Setup {
|
2017-02-21 22:46:19 +00:00
|
|
|
backend: fn(Option<String>) -> Box<Sink>,
|
2017-02-22 04:17:04 +00:00
|
|
|
device: Option<String>,
|
|
|
|
|
|
|
|
mixer: fn() -> Box<Mixer>,
|
|
|
|
|
2017-01-29 15:36:39 +00:00
|
|
|
cache: Option<Cache>,
|
2017-01-18 18:41:22 +00:00
|
|
|
config: Config,
|
2017-02-22 04:17:04 +00:00
|
|
|
credentials: Option<Credentials>,
|
|
|
|
enable_discovery: bool,
|
2017-01-18 18:41:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn setup(args: &[String]) -> Setup {
|
2017-01-10 16:31:12 +00:00
|
|
|
let mut opts = getopts::Options::new();
|
|
|
|
opts.optopt("c", "cache", "Path to a directory where files will be cached.", "CACHE")
|
|
|
|
.reqopt("n", "name", "Device name", "NAME")
|
|
|
|
.optopt("b", "bitrate", "Bitrate (96, 160 or 320). Defaults to 160", "BITRATE")
|
|
|
|
.optopt("", "onstart", "Run PROGRAM when playback is about to begin.", "PROGRAM")
|
|
|
|
.optopt("", "onstop", "Run PROGRAM when playback has ended.", "PROGRAM")
|
|
|
|
.optflag("v", "verbose", "Enable verbose output")
|
|
|
|
.optopt("u", "username", "Username to sign in with", "USERNAME")
|
|
|
|
.optopt("p", "password", "Password", "PASSWORD")
|
2017-02-22 04:17:04 +00:00
|
|
|
.optflag("", "disable-discovery", "Disable discovery mode")
|
2017-01-10 16:31:12 +00:00
|
|
|
.optopt("", "backend", "Audio backend to use. Use '?' to list options", "BACKEND")
|
2017-01-25 21:49:18 +00:00
|
|
|
.optopt("", "device", "Audio device to use. Use '?' to list options", "DEVICE")
|
|
|
|
.optopt("", "mixer", "Mixer to use", "MIXER");
|
2016-03-14 23:41:51 +00:00
|
|
|
|
2015-07-19 20:36:14 +00:00
|
|
|
let matches = match opts.parse(&args[1..]) {
|
2016-01-02 15:19:39 +00:00
|
|
|
Ok(m) => m,
|
|
|
|
Err(f) => {
|
2017-01-05 13:25:14 +00:00
|
|
|
writeln!(stderr(), "error: {}\n{}", f.to_string(), usage(&args[0], &opts)).unwrap();
|
|
|
|
exit(1);
|
2016-04-24 11:15:53 +00:00
|
|
|
}
|
|
|
|
};
|
2016-03-13 20:45:31 +00:00
|
|
|
|
2017-01-10 16:31:12 +00:00
|
|
|
let verbose = matches.opt_present("verbose");
|
|
|
|
setup_logging(verbose);
|
|
|
|
|
|
|
|
info!("librespot {} ({}). Built on {}.",
|
|
|
|
version::short_sha(),
|
|
|
|
version::commit_date(),
|
|
|
|
version::short_now());
|
|
|
|
|
|
|
|
let backend_name = matches.opt_str("backend");
|
|
|
|
if backend_name == Some("?".into()) {
|
|
|
|
list_backends();
|
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
let backend = audio_backend::find(backend_name.as_ref())
|
|
|
|
.expect("Invalid backend");
|
|
|
|
|
2017-02-21 22:46:19 +00:00
|
|
|
let mixer_name = matches.opt_str("mixer");
|
|
|
|
let mixer = mixer::find(mixer_name.as_ref())
|
|
|
|
.expect("Invalid mixer");
|
|
|
|
|
2017-01-10 16:31:12 +00:00
|
|
|
let bitrate = matches.opt_str("b").as_ref()
|
|
|
|
.map(|bitrate| Bitrate::from_str(bitrate).expect("Invalid bitrate"))
|
|
|
|
.unwrap_or(Bitrate::Bitrate160);
|
|
|
|
|
2017-01-18 18:41:22 +00:00
|
|
|
let name = matches.opt_str("name").unwrap();
|
|
|
|
let device_id = librespot::session::device_id(&name);
|
2017-01-18 17:07:20 +00:00
|
|
|
|
|
|
|
let cache = matches.opt_str("c").map(|cache_location| {
|
2017-01-29 15:36:39 +00:00
|
|
|
Cache::new(PathBuf::from(cache_location))
|
|
|
|
});
|
2017-01-18 17:07:20 +00:00
|
|
|
|
2017-01-29 15:36:39 +00:00
|
|
|
let cached_credentials = cache.as_ref().and_then(Cache::credentials);
|
2017-01-18 17:07:20 +00:00
|
|
|
|
2017-02-22 04:17:04 +00:00
|
|
|
let credentials = get_credentials(matches.opt_str("username"),
|
2017-01-18 17:07:20 +00:00
|
|
|
matches.opt_str("password"),
|
|
|
|
cached_credentials);
|
|
|
|
|
2017-02-22 04:17:04 +00:00
|
|
|
let enable_discovery = !matches.opt_present("disable-discovery");
|
|
|
|
|
2017-01-10 16:31:12 +00:00
|
|
|
let config = Config {
|
|
|
|
user_agent: version::version_string(),
|
2017-01-18 18:41:22 +00:00
|
|
|
name: name,
|
2017-01-18 17:07:20 +00:00
|
|
|
device_id: device_id,
|
2017-01-10 16:31:12 +00:00
|
|
|
bitrate: bitrate,
|
|
|
|
onstart: matches.opt_str("onstart"),
|
|
|
|
onstop: matches.opt_str("onstop"),
|
|
|
|
};
|
|
|
|
|
2017-01-18 18:41:22 +00:00
|
|
|
let device = matches.opt_str("device");
|
2017-01-05 13:25:14 +00:00
|
|
|
|
2017-01-18 18:41:22 +00:00
|
|
|
Setup {
|
|
|
|
backend: backend,
|
|
|
|
cache: cache,
|
|
|
|
config: config,
|
|
|
|
credentials: credentials,
|
|
|
|
device: device,
|
2017-02-22 04:17:04 +00:00
|
|
|
enable_discovery: enable_discovery,
|
|
|
|
mixer: mixer,
|
2017-01-18 18:41:22 +00:00
|
|
|
}
|
2017-01-10 16:31:12 +00:00
|
|
|
}
|
|
|
|
|
2017-02-22 04:17:04 +00:00
|
|
|
struct Main {
|
|
|
|
cache: Option<Cache>,
|
|
|
|
config: Config,
|
|
|
|
backend: fn(Option<String>) -> Box<Sink>,
|
|
|
|
device: Option<String>,
|
|
|
|
mixer: fn() -> Box<Mixer>,
|
|
|
|
handle: Handle,
|
2017-01-18 18:41:22 +00:00
|
|
|
|
2017-02-22 04:17:04 +00:00
|
|
|
discovery: Option<DiscoveryStream>,
|
|
|
|
signal: IoStream<()>,
|
2016-03-20 16:16:11 +00:00
|
|
|
|
2017-02-22 04:17:04 +00:00
|
|
|
spirc: Option<Spirc>,
|
|
|
|
spirc_task: Option<SpircTask>,
|
|
|
|
connect: Box<Future<Item=Session, Error=io::Error>>,
|
2016-12-31 11:51:44 +00:00
|
|
|
|
2017-02-22 04:17:04 +00:00
|
|
|
shutdown: bool,
|
|
|
|
}
|
2017-01-18 18:41:22 +00:00
|
|
|
|
2017-02-22 04:17:04 +00:00
|
|
|
impl Main {
|
|
|
|
fn new(handle: Handle,
|
|
|
|
config: Config,
|
|
|
|
backend: fn(Option<String>) -> Box<Sink>,
|
|
|
|
device: Option<String>,
|
|
|
|
mixer: fn() -> Box<Mixer>) -> Main
|
|
|
|
{
|
|
|
|
Main {
|
|
|
|
handle: handle.clone(),
|
|
|
|
config: config,
|
|
|
|
backend: backend,
|
|
|
|
device: device,
|
|
|
|
mixer: mixer,
|
|
|
|
|
|
|
|
cache: None,
|
|
|
|
connect: Box::new(futures::future::empty()),
|
|
|
|
discovery: None,
|
|
|
|
spirc: None,
|
|
|
|
spirc_task: None,
|
|
|
|
shutdown: false,
|
|
|
|
signal: tokio_signal::ctrl_c(&handle).flatten_stream().boxed(),
|
|
|
|
}
|
|
|
|
}
|
2017-01-18 18:41:22 +00:00
|
|
|
|
2017-02-22 04:17:04 +00:00
|
|
|
fn discovery(&mut self) {
|
|
|
|
let name = self.config.name.clone();
|
|
|
|
let device_id = self.config.device_id.clone();
|
|
|
|
self.discovery = Some(discovery(&self.handle, name, device_id).unwrap());
|
|
|
|
}
|
2017-01-18 18:41:22 +00:00
|
|
|
|
2017-02-22 04:17:04 +00:00
|
|
|
fn credentials(&mut self, credentials: Credentials) {
|
|
|
|
let config = self.config.clone();
|
|
|
|
let handle = self.handle.clone();
|
|
|
|
let connection = Session::connect(config, credentials, self.cache.clone(), handle);
|
|
|
|
|
|
|
|
self.connect = connection;
|
|
|
|
self.spirc = None;
|
|
|
|
let task = mem::replace(&mut self.spirc_task, None);
|
|
|
|
if let Some(task) = task {
|
|
|
|
self.handle.spawn(task);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn cache(&mut self, cache: Cache) {
|
|
|
|
self.cache = Some(cache);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Future for Main {
|
|
|
|
type Item = ();
|
|
|
|
type Error = ();
|
|
|
|
|
|
|
|
fn poll(&mut self) -> Poll<(), ()> {
|
|
|
|
loop {
|
|
|
|
let mut progress = false;
|
|
|
|
|
|
|
|
if let Some(Async::Ready(Some(creds))) = self.discovery.as_mut().map(|d| d.poll().unwrap()) {
|
|
|
|
if let Some(ref spirc) = self.spirc {
|
|
|
|
spirc.shutdown();
|
|
|
|
}
|
|
|
|
self.credentials(creds);
|
|
|
|
|
|
|
|
progress = true;
|
2017-02-21 23:25:04 +00:00
|
|
|
}
|
2017-01-18 18:41:22 +00:00
|
|
|
|
2017-02-22 04:17:04 +00:00
|
|
|
if let Async::Ready(session) = self.connect.poll().unwrap() {
|
|
|
|
self.connect = Box::new(futures::future::empty());
|
|
|
|
let device = self.device.clone();
|
|
|
|
let mixer = (self.mixer)();
|
|
|
|
|
|
|
|
let audio_filter = mixer.get_audio_filter();
|
|
|
|
let backend = self.backend;
|
|
|
|
let player = Player::new(session.clone(), audio_filter, move || {
|
|
|
|
(backend)(device)
|
|
|
|
});
|
|
|
|
|
|
|
|
let (spirc, spirc_task) = Spirc::new(session, player, mixer);
|
|
|
|
self.spirc = Some(spirc);
|
|
|
|
self.spirc_task = Some(spirc_task);
|
|
|
|
|
|
|
|
progress = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if let Async::Ready(Some(())) = self.signal.poll().unwrap() {
|
|
|
|
if !self.shutdown {
|
|
|
|
if let Some(ref spirc) = self.spirc {
|
|
|
|
spirc.shutdown();
|
|
|
|
}
|
|
|
|
self.shutdown = true;
|
|
|
|
} else {
|
|
|
|
return Ok(Async::Ready(()));
|
|
|
|
}
|
|
|
|
|
|
|
|
progress = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if let Some(ref mut spirc_task) = self.spirc_task {
|
|
|
|
if let Async::Ready(()) = spirc_task.poll().unwrap() {
|
|
|
|
if self.shutdown {
|
|
|
|
return Ok(Async::Ready(()));
|
|
|
|
} else {
|
|
|
|
panic!("Spirc shut down unexpectedly");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if !progress {
|
|
|
|
return Ok(Async::NotReady);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let mut core = Core::new().unwrap();
|
|
|
|
let handle = core.handle();
|
|
|
|
|
|
|
|
let args: Vec<String> = std::env::args().collect();
|
|
|
|
let Setup { backend, config, device, cache, enable_discovery, credentials, mixer } = setup(&args);
|
|
|
|
|
|
|
|
let mut task = Main::new(handle, config.clone(), backend, device, mixer);
|
|
|
|
if enable_discovery {
|
|
|
|
task.discovery();
|
|
|
|
}
|
|
|
|
if let Some(credentials) = credentials {
|
|
|
|
task.credentials(credentials);
|
|
|
|
}
|
|
|
|
if let Some(cache) = cache {
|
|
|
|
task.cache(cache);
|
|
|
|
}
|
2015-07-02 17:24:25 +00:00
|
|
|
|
2017-01-18 18:41:22 +00:00
|
|
|
core.run(task).unwrap()
|
2015-07-01 17:49:03 +00:00
|
|
|
}
|