2016-03-20 16:16:11 +00:00
|
|
|
use std::io;
|
|
|
|
|
|
|
|
pub trait Open {
|
|
|
|
fn open() -> Self;
|
|
|
|
}
|
|
|
|
|
|
|
|
pub trait Sink {
|
|
|
|
fn start(&self) -> io::Result<()>;
|
|
|
|
fn stop(&self) -> io::Result<()>;
|
|
|
|
fn write(&self, data: &[i16]) -> io::Result<()>;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Allow #[cfg] rules around elements of a list.
|
|
|
|
* Workaround until stmt_expr_attributes is stable.
|
|
|
|
*
|
|
|
|
* This generates 2^n declarations of the list, with every combination possible
|
|
|
|
*/
|
|
|
|
macro_rules! declare_backends {
|
|
|
|
(pub const $name:ident : $ty:ty = & [ $($tt:tt)* ];) => (
|
|
|
|
_declare_backends!($name ; $ty ; []; []; []; $($tt)*);
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
macro_rules! _declare_backends {
|
|
|
|
($name:ident ; $ty:ty ; [ $($yes:meta,)* ] ; [ $($no:meta,)* ] ; [ $($exprs:expr,)* ] ; #[cfg($m:meta)] $e:expr, $($rest:tt)* ) => (
|
|
|
|
_declare_backends!($name ; $ty ; [ $m, $($yes,)* ] ; [ $($no,)* ] ; [ $($exprs,)* $e, ] ; $($rest)*);
|
|
|
|
_declare_backends!($name ; $ty ; [ $($yes,)* ] ; [ $m, $($no,)* ] ; [ $($exprs,)* ] ; $($rest)*);
|
|
|
|
);
|
|
|
|
|
|
|
|
($name:ident ; $ty:ty ; [ $($yes:meta,)* ] ; [ $($no:meta,)* ] ; [ $($exprs:expr,)* ] ; $e:expr, $($rest:tt)*) => (
|
|
|
|
_declare_backends!($name ; $ty ; [ $($yes,)* ] ; [ $($no,)* ] ; [ $($exprs,)* $e, ] ; $($rest)*);
|
|
|
|
);
|
|
|
|
|
|
|
|
($name:ident ; $ty:ty ; [ $($yes:meta,)* ] ; [ $($no:meta,)* ] ; [ $($exprs:expr,)* ] ; #[cfg($m:meta)] $e:expr) => (
|
|
|
|
_declare_backends!($name ; $ty ; [ $m, $($yes,)* ] ; [ $($no,)* ] ; [ $($exprs,)* $e, ] ; );
|
|
|
|
_declare_backends!($name ; $ty ; [ $($yes,)* ] ; [ $m, $($no,)* ] ; [ $($exprs,)* ] ; );
|
|
|
|
);
|
|
|
|
|
|
|
|
($name:ident ; $ty:ty ; [ $($yes:meta,)* ] ; [ $($no:meta,)* ] ; [ $($exprs:expr,)* ] ; $e:expr ) => (
|
|
|
|
_declare_backends!($name ; $ty ; [ $($yes,)* ] ; [ $($no,)* ] ; [ $($exprs,)* $e, ] ; );
|
|
|
|
);
|
|
|
|
|
|
|
|
($name:ident ; $ty:ty ; [ $($yes:meta,)* ] ; [ $($no:meta,)* ] ; [ $($exprs:expr,)* ] ; ) => (
|
|
|
|
#[cfg(all($($yes,)* not(any($($no),*))))]
|
|
|
|
pub const $name : $ty = &[
|
|
|
|
$($exprs,)*
|
|
|
|
];
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
#[allow(dead_code)]
|
|
|
|
fn mk_sink<S: Sink + Open + 'static>() -> Box<Sink> {
|
|
|
|
Box::new(S::open())
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(feature = "portaudio-backend")]
|
|
|
|
mod portaudio;
|
|
|
|
|
2016-03-20 19:16:32 +00:00
|
|
|
#[cfg(feature = "pulseaudio-backend")]
|
|
|
|
mod pulseaudio;
|
|
|
|
|
|
|
|
|
2016-03-20 16:16:11 +00:00
|
|
|
declare_backends! {
|
|
|
|
pub const BACKENDS : &'static [(&'static str, &'static (Fn() -> Box<Sink> + Sync + Send + 'static))] = &[
|
|
|
|
#[cfg(feature = "portaudio-backend")]
|
|
|
|
("portaudio", &mk_sink::<self::portaudio::PortAudioSink>),
|
2016-03-20 19:16:32 +00:00
|
|
|
#[cfg(feature = "pulseaudio-backend")]
|
|
|
|
("pulseaudio", &mk_sink::<self::pulseaudio::PulseAudioSink>),
|
|
|
|
|
2016-03-20 16:16:11 +00:00
|
|
|
];
|
|
|
|
}
|