mirror of
https://github.com/librespot-org/librespot.git
synced 2025-01-07 17:24:04 +00:00
66 lines
2.3 KiB
Rust
66 lines
2.3 KiB
Rust
|
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;
|
||
|
|
||
|
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>),
|
||
|
];
|
||
|
}
|