2019-03-20 13:24:03 +00:00
|
|
|
use std::process::exit;
|
2021-02-12 17:25:13 +00:00
|
|
|
use std::{convert::Infallible, sync::mpsc};
|
2019-10-08 09:31:18 +00:00
|
|
|
use std::{io, thread, time};
|
2019-03-20 13:24:03 +00:00
|
|
|
|
2021-02-12 17:25:13 +00:00
|
|
|
use cpal::traits::{DeviceTrait, HostTrait};
|
|
|
|
use thiserror::Error;
|
|
|
|
|
|
|
|
use super::{Open, Sink};
|
|
|
|
|
|
|
|
#[derive(Debug, Error)]
|
|
|
|
pub enum RodioError {
|
|
|
|
#[error("Rodio: no device available")]
|
|
|
|
NoDeviceAvailable,
|
|
|
|
#[error("Rodio: device \"{0}\" is not available")]
|
|
|
|
DeviceNotAvailable(String),
|
|
|
|
#[error("Rodio play error: {0}")]
|
|
|
|
PlayError(#[from] rodio::PlayError),
|
|
|
|
#[error("Rodio stream error: {0}")]
|
|
|
|
StreamError(#[from] rodio::StreamError),
|
|
|
|
#[error("Cannot get audio devices: {0}")]
|
|
|
|
DevicesError(#[from] cpal::DevicesError),
|
|
|
|
}
|
|
|
|
|
2019-03-20 13:24:03 +00:00
|
|
|
pub struct RodioSink {
|
|
|
|
rodio_sink: rodio::Sink,
|
2021-02-12 17:25:13 +00:00
|
|
|
|
|
|
|
// will produce a TryRecvError on the receiver side when it is dropped.
|
|
|
|
_close_tx: mpsc::SyncSender<Infallible>,
|
2019-03-20 13:24:03 +00:00
|
|
|
}
|
|
|
|
|
2021-02-12 17:25:13 +00:00
|
|
|
fn list_formats(device: &rodio::Device) {
|
2020-12-02 19:45:31 +00:00
|
|
|
let default_fmt = match device.default_output_config() {
|
2021-02-12 17:25:13 +00:00
|
|
|
Ok(fmt) => fmt,
|
2019-03-20 13:21:50 +00:00
|
|
|
Err(e) => {
|
2020-12-02 19:45:31 +00:00
|
|
|
warn!("Error getting default rodio::Sink config: {}", e);
|
2019-03-20 13:21:50 +00:00
|
|
|
return;
|
2019-10-08 09:31:18 +00:00
|
|
|
}
|
2019-03-20 13:21:50 +00:00
|
|
|
};
|
2020-12-02 19:45:31 +00:00
|
|
|
debug!(" Default config:");
|
|
|
|
debug!(" {:?}", default_fmt);
|
2019-03-20 13:21:50 +00:00
|
|
|
|
2020-12-02 19:45:31 +00:00
|
|
|
let mut output_configs = match device.supported_output_configs() {
|
2019-03-20 13:21:50 +00:00
|
|
|
Ok(f) => f.peekable(),
|
|
|
|
Err(e) => {
|
2020-12-02 19:45:31 +00:00
|
|
|
warn!("Error getting supported rodio::Sink configs: {}", e);
|
2019-03-20 13:21:50 +00:00
|
|
|
return;
|
2019-10-08 09:31:18 +00:00
|
|
|
}
|
2019-03-20 13:21:50 +00:00
|
|
|
};
|
|
|
|
|
2020-12-02 19:45:31 +00:00
|
|
|
if output_configs.peek().is_some() {
|
|
|
|
debug!(" Available configs:");
|
|
|
|
for format in output_configs {
|
|
|
|
debug!(" {:?}", format);
|
2019-03-20 13:21:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-12 17:25:13 +00:00
|
|
|
fn list_outputs_and_exit() -> ! {
|
|
|
|
let default_device = get_default_device().unwrap();
|
2020-12-02 19:45:31 +00:00
|
|
|
let default_device_name = default_device.name().expect("cannot get output name");
|
|
|
|
println!("Default Audio Device:\n {}", default_device_name);
|
2019-03-20 13:21:50 +00:00
|
|
|
list_formats(&default_device);
|
2019-03-20 13:24:03 +00:00
|
|
|
|
2019-03-20 13:21:50 +00:00
|
|
|
println!("Other Available Audio Devices:");
|
2020-12-02 19:45:31 +00:00
|
|
|
for device in cpal::default_host()
|
|
|
|
.output_devices()
|
|
|
|
.expect("cannot get list of output devices")
|
|
|
|
{
|
|
|
|
let device_name = device.name().expect("cannot get output name");
|
|
|
|
if device_name != default_device_name {
|
|
|
|
println!(" {}", device_name);
|
2019-03-20 13:21:50 +00:00
|
|
|
list_formats(&device);
|
2019-03-20 13:24:03 +00:00
|
|
|
}
|
|
|
|
}
|
2021-02-12 17:25:13 +00:00
|
|
|
|
|
|
|
exit(0)
|
2019-03-20 13:24:03 +00:00
|
|
|
}
|
|
|
|
|
2021-02-12 17:25:13 +00:00
|
|
|
fn get_default_device() -> Result<rodio::Device, RodioError> {
|
2020-12-02 19:45:31 +00:00
|
|
|
cpal::default_host()
|
|
|
|
.default_output_device()
|
2021-02-12 17:25:13 +00:00
|
|
|
.ok_or(RodioError::NoDeviceAvailable)
|
2020-12-02 19:45:31 +00:00
|
|
|
}
|
2019-03-20 13:24:03 +00:00
|
|
|
|
2021-02-12 17:25:13 +00:00
|
|
|
fn create_sink(device: Option<String>) -> Result<(rodio::Sink, rodio::OutputStream), RodioError> {
|
|
|
|
let rodio_device = match device {
|
|
|
|
Some(ask) if &ask == "?" => list_outputs_and_exit(),
|
2020-12-02 19:45:31 +00:00
|
|
|
Some(device_name) => {
|
2021-02-12 17:25:13 +00:00
|
|
|
cpal::default_host()
|
|
|
|
.output_devices()?
|
|
|
|
.find(|d| d.name().ok().map_or(false, |name| name == device_name)) // Ignore devices for which getting name fails
|
|
|
|
.ok_or(RodioError::DeviceNotAvailable(device_name))?
|
2019-03-20 13:24:03 +00:00
|
|
|
}
|
2021-02-12 17:25:13 +00:00
|
|
|
None => get_default_device()?,
|
|
|
|
};
|
|
|
|
|
|
|
|
let name = rodio_device.name().ok();
|
|
|
|
info!(
|
|
|
|
"Using audio device: {}",
|
|
|
|
name.as_deref().unwrap_or("(unknown name)")
|
|
|
|
);
|
|
|
|
|
|
|
|
let (stream, handle) = rodio::OutputStream::try_from_device(&rodio_device)?;
|
|
|
|
let sink = rodio::Sink::try_new(&handle)?;
|
|
|
|
Ok((sink, stream))
|
2020-12-02 19:45:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Open for RodioSink {
|
|
|
|
fn open(device: Option<String>) -> RodioSink {
|
|
|
|
debug!(
|
|
|
|
"Using rodio sink with cpal host: {:?}",
|
2021-02-12 17:25:13 +00:00
|
|
|
cpal::default_host().id().name()
|
2020-12-02 19:45:31 +00:00
|
|
|
);
|
|
|
|
|
2021-02-12 17:25:13 +00:00
|
|
|
let (sink_tx, sink_rx) = mpsc::sync_channel(1);
|
|
|
|
let (close_tx, close_rx) = mpsc::sync_channel(1);
|
|
|
|
|
|
|
|
std::thread::spawn(move || match create_sink(device) {
|
|
|
|
Ok((sink, stream)) => {
|
|
|
|
sink_tx.send(Ok(sink)).unwrap();
|
|
|
|
|
|
|
|
close_rx.recv().unwrap_err(); // This will fail as soon as the sender is dropped
|
|
|
|
debug!("drop rodio::OutputStream");
|
|
|
|
drop(stream);
|
|
|
|
}
|
|
|
|
Err(e) => {
|
|
|
|
sink_tx.send(Err(e)).unwrap();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
// Instead of the second `unwrap`, better error handling could be introduced
|
|
|
|
let sink = sink_rx.recv().unwrap().unwrap();
|
2019-03-20 13:24:03 +00:00
|
|
|
|
2021-02-12 17:25:13 +00:00
|
|
|
debug!("Rodio sink was created");
|
2020-12-02 19:45:31 +00:00
|
|
|
RodioSink {
|
|
|
|
rodio_sink: sink,
|
2021-02-12 17:25:13 +00:00
|
|
|
_close_tx: close_tx,
|
2020-12-02 19:45:31 +00:00
|
|
|
}
|
2019-03-20 13:24:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Sink for RodioSink {
|
|
|
|
fn start(&mut self) -> io::Result<()> {
|
2019-03-01 15:43:16 +00:00
|
|
|
// More similar to an "unpause" than "play". Doesn't undo "stop".
|
|
|
|
// self.rodio_sink.play();
|
2019-03-20 13:24:03 +00:00
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
fn stop(&mut self) -> io::Result<()> {
|
2019-03-01 15:43:16 +00:00
|
|
|
// This will immediately stop playback, but the sink is then unusable.
|
|
|
|
// We just have to let the current buffer play till the end.
|
|
|
|
// self.rodio_sink.stop();
|
2019-03-20 13:24:03 +00:00
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
fn write(&mut self, data: &[i16]) -> io::Result<()> {
|
|
|
|
let source = rodio::buffer::SamplesBuffer::new(2, 44100, data);
|
|
|
|
self.rodio_sink.append(source);
|
2019-03-20 13:23:20 +00:00
|
|
|
|
|
|
|
// Chunk sizes seem to be about 256 to 3000 ish items long.
|
|
|
|
// Assuming they're on average 1628 then a half second buffer is:
|
|
|
|
// 44100 elements --> about 27 chunks
|
|
|
|
while self.rodio_sink.len() > 26 {
|
|
|
|
// sleep and wait for rodio to drain a bit
|
|
|
|
thread::sleep(time::Duration::from_millis(10));
|
|
|
|
}
|
2019-03-20 13:24:03 +00:00
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|