2019-03-20 13:24:03 +00:00
|
|
|
use std::process::exit;
|
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;
|
|
|
|
|
2021-02-23 14:05:02 +00:00
|
|
|
use super::Sink;
|
2021-03-12 22:05:38 +00:00
|
|
|
use crate::config::AudioFormat;
|
2021-04-13 08:29:34 +00:00
|
|
|
use crate::convert;
|
|
|
|
use crate::decoder::AudioPacket;
|
2021-03-21 21:16:47 +00:00
|
|
|
use crate::player::{NUM_CHANNELS, SAMPLE_RATE};
|
2021-02-12 17:25:13 +00:00
|
|
|
|
2021-02-23 14:05:02 +00:00
|
|
|
#[cfg(all(
|
|
|
|
feature = "rodiojack-backend",
|
|
|
|
not(any(target_os = "linux", target_os = "dragonfly", target_os = "freebsd"))
|
|
|
|
))]
|
|
|
|
compile_error!("Rodio JACK backend is currently only supported on linux.");
|
|
|
|
|
|
|
|
#[cfg(feature = "rodio-backend")]
|
2021-04-10 08:27:24 +00:00
|
|
|
pub fn mk_rodio(device: Option<String>, format: AudioFormat) -> Box<dyn Sink> {
|
|
|
|
Box::new(open(cpal::default_host(), device, format))
|
2021-02-23 14:05:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(feature = "rodiojack-backend")]
|
2021-04-10 08:27:24 +00:00
|
|
|
pub fn mk_rodiojack(device: Option<String>, format: AudioFormat) -> Box<dyn Sink> {
|
2021-02-23 14:05:02 +00:00
|
|
|
Box::new(open(
|
|
|
|
cpal::host_from_id(cpal::HostId::Jack).unwrap(),
|
|
|
|
device,
|
2021-04-10 08:27:24 +00:00
|
|
|
format,
|
2021-02-23 14:05:02 +00:00
|
|
|
))
|
|
|
|
}
|
|
|
|
|
2021-02-12 17:25:13 +00:00
|
|
|
#[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-04-10 08:27:24 +00:00
|
|
|
format: AudioFormat,
|
2021-04-01 16:41:01 +00:00
|
|
|
_stream: rodio::OutputStream,
|
2019-03-20 13:24:03 +00:00
|
|
|
}
|
|
|
|
|
2021-02-12 17:25:13 +00:00
|
|
|
fn list_formats(device: &rodio::Device) {
|
2021-02-12 18:31:41 +00:00
|
|
|
match device.default_output_config() {
|
|
|
|
Ok(cfg) => {
|
|
|
|
debug!(" Default config:");
|
|
|
|
debug!(" {:?}", cfg);
|
2019-10-08 09:31:18 +00:00
|
|
|
}
|
2019-03-20 13:21:50 +00:00
|
|
|
Err(e) => {
|
2021-02-12 18:31:41 +00:00
|
|
|
// Use loglevel debug, since even the output is only debug
|
|
|
|
debug!("Error getting default rodio::Sink config: {}", e);
|
2019-10-08 09:31:18 +00:00
|
|
|
}
|
2019-03-20 13:21:50 +00:00
|
|
|
};
|
|
|
|
|
2021-02-12 18:31:41 +00:00
|
|
|
match device.supported_output_configs() {
|
|
|
|
Ok(mut cfgs) => {
|
|
|
|
if let Some(first) = cfgs.next() {
|
|
|
|
debug!(" Available configs:");
|
|
|
|
debug!(" {:?}", first);
|
|
|
|
} else {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
for cfg in cfgs {
|
|
|
|
debug!(" {:?}", cfg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Err(e) => {
|
|
|
|
debug!("Error getting supported rodio::Sink configs: {}", e);
|
2019-03-20 13:21:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-23 14:05:02 +00:00
|
|
|
fn list_outputs(host: &cpal::Host) -> Result<(), cpal::DevicesError> {
|
2021-02-12 18:31:41 +00:00
|
|
|
let mut default_device_name = None;
|
|
|
|
|
2021-02-23 14:05:02 +00:00
|
|
|
if let Some(default_device) = host.default_output_device() {
|
2021-02-12 18:31:41 +00:00
|
|
|
default_device_name = default_device.name().ok();
|
|
|
|
println!(
|
|
|
|
"Default Audio Device:\n {}",
|
|
|
|
default_device_name.as_deref().unwrap_or("[unknown name]")
|
|
|
|
);
|
|
|
|
|
|
|
|
list_formats(&default_device);
|
|
|
|
|
|
|
|
println!("Other Available Audio Devices:");
|
|
|
|
} else {
|
|
|
|
warn!("No default device was found");
|
|
|
|
}
|
|
|
|
|
2021-02-23 14:05:02 +00:00
|
|
|
for device in host.output_devices()? {
|
2021-02-12 18:31:41 +00:00
|
|
|
match device.name() {
|
|
|
|
Ok(name) if Some(&name) == default_device_name.as_ref() => (),
|
|
|
|
Ok(name) => {
|
|
|
|
println!(" {}", name);
|
|
|
|
list_formats(&device);
|
|
|
|
}
|
|
|
|
Err(e) => {
|
|
|
|
warn!("Cannot get device name: {}", e);
|
|
|
|
println!(" [unknown name]");
|
|
|
|
list_formats(&device);
|
|
|
|
}
|
2019-03-20 13:24:03 +00:00
|
|
|
}
|
|
|
|
}
|
2021-02-12 17:25:13 +00:00
|
|
|
|
2021-02-12 18:31:41 +00:00
|
|
|
Ok(())
|
2019-03-20 13:24:03 +00:00
|
|
|
}
|
|
|
|
|
2021-02-23 14:05:02 +00:00
|
|
|
fn create_sink(
|
|
|
|
host: &cpal::Host,
|
|
|
|
device: Option<String>,
|
|
|
|
) -> Result<(rodio::Sink, rodio::OutputStream), RodioError> {
|
2021-02-12 17:25:13 +00:00
|
|
|
let rodio_device = match device {
|
2021-02-12 18:31:41 +00:00
|
|
|
Some(ask) if &ask == "?" => {
|
2021-02-23 14:05:02 +00:00
|
|
|
let exit_code = match list_outputs(host) {
|
2021-02-12 18:31:41 +00:00
|
|
|
Ok(()) => 0,
|
|
|
|
Err(e) => {
|
|
|
|
error!("{}", e);
|
|
|
|
1
|
|
|
|
}
|
|
|
|
};
|
|
|
|
exit(exit_code)
|
|
|
|
}
|
2020-12-02 19:45:31 +00:00
|
|
|
Some(device_name) => {
|
2021-02-23 14:05:02 +00:00
|
|
|
host.output_devices()?
|
2021-02-12 17:25:13 +00:00
|
|
|
.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-23 14:05:02 +00:00
|
|
|
None => host
|
|
|
|
.default_output_device()
|
|
|
|
.ok_or(RodioError::NoDeviceAvailable)?,
|
2021-02-12 17:25:13 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
let name = rodio_device.name().ok();
|
|
|
|
info!(
|
|
|
|
"Using audio device: {}",
|
2021-02-12 18:31:41 +00:00
|
|
|
name.as_deref().unwrap_or("[unknown name]")
|
2021-02-12 17:25:13 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2021-04-10 08:27:24 +00:00
|
|
|
pub fn open(host: cpal::Host, device: Option<String>, format: AudioFormat) -> RodioSink {
|
2021-04-15 06:42:19 +00:00
|
|
|
info!(
|
|
|
|
"Using Rodio sink with format {:?} and cpal host: {}",
|
2021-04-10 08:27:24 +00:00
|
|
|
format,
|
|
|
|
host.id().name()
|
|
|
|
);
|
|
|
|
|
2021-04-15 06:42:19 +00:00
|
|
|
if format != AudioFormat::S16 && format != AudioFormat::F32 {
|
|
|
|
unimplemented!("Rodio currently only supports F32 and S16 formats");
|
2020-12-02 19:45:31 +00:00
|
|
|
}
|
|
|
|
|
2021-04-01 16:41:01 +00:00
|
|
|
let (sink, stream) = create_sink(&host, device).unwrap();
|
2019-03-20 13:24:03 +00:00
|
|
|
|
2021-02-23 14:05:02 +00:00
|
|
|
debug!("Rodio sink was created");
|
|
|
|
RodioSink {
|
|
|
|
rodio_sink: sink,
|
2021-04-10 08:27:24 +00:00
|
|
|
format,
|
2021-04-01 16:41:01 +00:00
|
|
|
_stream: stream,
|
2019-03-20 13:24:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Sink for RodioSink {
|
2021-04-10 08:27:24 +00:00
|
|
|
start_stop_noop!();
|
2019-03-20 13:24:03 +00:00
|
|
|
|
2021-01-07 06:42:38 +00:00
|
|
|
fn write(&mut self, packet: &AudioPacket) -> io::Result<()> {
|
2021-04-10 08:27:24 +00:00
|
|
|
let samples = packet.samples();
|
|
|
|
match self.format {
|
|
|
|
AudioFormat::F32 => {
|
|
|
|
let source =
|
|
|
|
rodio::buffer::SamplesBuffer::new(NUM_CHANNELS as u16, SAMPLE_RATE, samples);
|
|
|
|
self.rodio_sink.append(source);
|
|
|
|
}
|
|
|
|
AudioFormat::S16 => {
|
2021-04-10 12:06:41 +00:00
|
|
|
let samples_s16: &[i16] = &convert::to_s16(samples);
|
2021-04-10 08:27:24 +00:00
|
|
|
let source = rodio::buffer::SamplesBuffer::new(
|
|
|
|
NUM_CHANNELS as u16,
|
|
|
|
SAMPLE_RATE,
|
|
|
|
samples_s16,
|
|
|
|
);
|
|
|
|
self.rodio_sink.append(source);
|
|
|
|
}
|
|
|
|
_ => unreachable!(),
|
|
|
|
};
|
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(())
|
|
|
|
}
|
|
|
|
}
|