@@ -33,7 +33,7 @@ pub use self::platform_impl::*;
33
33
/// SupportedOutputConfigs and all their necessary trait implementations.
34
34
///
35
35
macro_rules! impl_platform_host {
36
- ( $( $( #[ cfg( $feat: meta) ] ) ? $HostVariant: ident $host_mod : ident $host_name : literal ) ,* ) => {
36
+ ( $( $( #[ cfg( $feat: meta) ] ) ? $HostVariant: ident => $Host : ty ) ,* $ ( , ) ? ) => {
37
37
/// All hosts supported by CPAL on this platform.
38
38
pub const ALL_HOSTS : & ' static [ HostId ] = & [
39
39
$(
@@ -94,45 +94,45 @@ macro_rules! impl_platform_host {
94
94
pub enum DeviceInner {
95
95
$(
96
96
$( #[ cfg( $feat) ] ) ?
97
- $HostVariant( crate :: host :: $host_mod :: Device ) ,
97
+ $HostVariant( <$Host as crate :: traits :: HostTrait > :: Device ) ,
98
98
) *
99
99
}
100
100
101
101
/// Contains a platform specific [`Devices`] implementation.
102
102
pub enum DevicesInner {
103
103
$(
104
104
$( #[ cfg( $feat) ] ) ?
105
- $HostVariant( crate :: host :: $host_mod :: Devices ) ,
105
+ $HostVariant( <$Host as crate :: traits :: HostTrait > :: Devices ) ,
106
106
) *
107
107
}
108
108
109
109
/// Contains a platform specific [`Host`] implementation.
110
110
pub enum HostInner {
111
111
$(
112
112
$( #[ cfg( $feat) ] ) ?
113
- $HostVariant( crate :: host :: $host_mod :: Host ) ,
113
+ $HostVariant( $ Host) ,
114
114
) *
115
115
}
116
116
117
117
/// Contains a platform specific [`Stream`] implementation.
118
118
pub enum StreamInner {
119
119
$(
120
120
$( #[ cfg( $feat) ] ) ?
121
- $HostVariant( crate :: host :: $host_mod :: Stream ) ,
121
+ $HostVariant( <<$Host as crate :: traits :: HostTrait > :: Device as crate :: traits :: DeviceTrait > :: Stream ) ,
122
122
) *
123
123
}
124
124
125
125
enum SupportedInputConfigsInner {
126
126
$(
127
127
$( #[ cfg( $feat) ] ) ?
128
- $HostVariant( crate :: host :: $host_mod :: SupportedInputConfigs ) ,
128
+ $HostVariant( <<$Host as crate :: traits :: HostTrait > :: Device as crate :: traits :: DeviceTrait > :: SupportedInputConfigs ) ,
129
129
) *
130
130
}
131
131
132
132
enum SupportedOutputConfigsInner {
133
133
$(
134
134
$( #[ cfg( $feat) ] ) ?
135
- $HostVariant( crate :: host :: $host_mod :: SupportedOutputConfigs ) ,
135
+ $HostVariant( <<$Host as crate :: traits :: HostTrait > :: Device as crate :: traits :: DeviceTrait > :: SupportedInputConfigs ) ,
136
136
) *
137
137
}
138
138
@@ -141,7 +141,7 @@ macro_rules! impl_platform_host {
141
141
match self {
142
142
$(
143
143
$( #[ cfg( $feat) ] ) ?
144
- HostId :: $HostVariant => $host_name ,
144
+ HostId :: $HostVariant => stringify! ( $HostVariant ) ,
145
145
) *
146
146
}
147
147
}
@@ -443,7 +443,7 @@ macro_rules! impl_platform_host {
443
443
fn is_available( ) -> bool {
444
444
$(
445
445
$( #[ cfg( $feat) ] ) ?
446
- if crate :: host :: $host_mod :: Host :: is_available( ) { return true ; }
446
+ if <$ Host> :: is_available( ) { return true ; }
447
447
) *
448
448
false
449
449
}
@@ -532,29 +532,29 @@ macro_rules! impl_platform_host {
532
532
533
533
$(
534
534
$( #[ cfg( $feat) ] ) ?
535
- impl From <crate :: host :: $host_mod :: Device > for Device {
536
- fn from( h: crate :: host :: $host_mod :: Device ) -> Self {
535
+ impl From <<$Host as crate :: traits :: HostTrait > :: Device > for Device {
536
+ fn from( h: <$Host as crate :: traits :: HostTrait > :: Device ) -> Self {
537
537
DeviceInner :: $HostVariant( h) . into( )
538
538
}
539
539
}
540
540
541
541
$( #[ cfg( $feat) ] ) ?
542
- impl From <crate :: host :: $host_mod :: Devices > for Devices {
543
- fn from( h: crate :: host :: $host_mod :: Devices ) -> Self {
542
+ impl From <<$Host as crate :: traits :: HostTrait > :: Devices > for Devices {
543
+ fn from( h: <$Host as crate :: traits :: HostTrait > :: Devices ) -> Self {
544
544
DevicesInner :: $HostVariant( h) . into( )
545
545
}
546
546
}
547
547
548
548
$( #[ cfg( $feat) ] ) ?
549
- impl From <crate :: host :: $host_mod :: Host > for Host {
550
- fn from( h: crate :: host :: $host_mod :: Host ) -> Self {
549
+ impl From <$ Host> for Host {
550
+ fn from( h: $ Host) -> Self {
551
551
HostInner :: $HostVariant( h) . into( )
552
552
}
553
553
}
554
554
555
555
$( #[ cfg( $feat) ] ) ?
556
- impl From <crate :: host :: $host_mod :: Stream > for Stream {
557
- fn from( h: crate :: host :: $host_mod :: Stream ) -> Self {
556
+ impl From <<<$Host as crate :: traits :: HostTrait > :: Device as crate :: traits :: DeviceTrait > :: Stream > for Stream {
557
+ fn from( h: <<$Host as crate :: traits :: HostTrait > :: Device as crate :: traits :: DeviceTrait > :: Stream ) -> Self {
558
558
StreamInner :: $HostVariant( h) . into( )
559
559
}
560
560
}
@@ -565,7 +565,7 @@ macro_rules! impl_platform_host {
565
565
let mut host_ids = vec![ ] ;
566
566
$(
567
567
$( #[ cfg( $feat) ] ) ?
568
- if <crate :: host :: $host_mod :: Host as crate :: traits:: HostTrait >:: is_available( ) {
568
+ if <$ Host as crate :: traits:: HostTrait >:: is_available( ) {
569
569
host_ids. push( HostId :: $HostVariant) ;
570
570
}
571
571
) *
@@ -578,7 +578,7 @@ macro_rules! impl_platform_host {
578
578
$(
579
579
$( #[ cfg( $feat) ] ) ?
580
580
HostId :: $HostVariant => {
581
- crate :: host :: $host_mod :: Host :: new( )
581
+ <$ Host> :: new( )
582
582
. map( HostInner :: $HostVariant)
583
583
. map( Host :: from)
584
584
}
@@ -596,19 +596,14 @@ macro_rules! impl_platform_host {
596
596
target_os = "netbsd"
597
597
) ) ]
598
598
mod platform_impl {
599
- pub use crate :: host:: alsa:: {
600
- Device as AlsaDevice , Devices as AlsaDevices , Host as AlsaHost , Stream as AlsaStream ,
601
- SupportedInputConfigs as AlsaSupportedInputConfigs ,
602
- SupportedOutputConfigs as AlsaSupportedOutputConfigs ,
603
- } ;
599
+ pub use crate :: host:: alsa:: Host as AlsaHost ;
604
600
#[ cfg( feature = "jack" ) ]
605
- pub use crate :: host:: jack:: {
606
- Device as JackDevice , Devices as JackDevices , Host as JackHost , Stream as JackStream ,
607
- SupportedInputConfigs as JackSupportedInputConfigs ,
608
- SupportedOutputConfigs as JackSupportedOutputConfigs ,
609
- } ;
601
+ pub use crate :: host:: jack:: Host as JackHost ;
610
602
611
- impl_platform_host ! ( #[ cfg( feature = "jack" ) ] Jack jack "JACK" , Alsa alsa "ALSA" ) ;
603
+ impl_platform_host ! (
604
+ #[ cfg( feature = "jack" ) ] Jack => JackHost ,
605
+ Alsa => AlsaHost ,
606
+ ) ;
612
607
613
608
/// The default host for the current compilation target platform.
614
609
pub fn default_host ( ) -> Host {
@@ -620,13 +615,8 @@ mod platform_impl {
620
615
621
616
#[ cfg( any( target_os = "macos" , target_os = "ios" ) ) ]
622
617
mod platform_impl {
623
- pub use crate :: host:: coreaudio:: {
624
- Device as CoreAudioDevice , Devices as CoreAudioDevices , Host as CoreAudioHost ,
625
- Stream as CoreAudioStream , SupportedInputConfigs as CoreAudioSupportedInputConfigs ,
626
- SupportedOutputConfigs as CoreAudioSupportedOutputConfigs ,
627
- } ;
628
-
629
- impl_platform_host ! ( CoreAudio coreaudio "CoreAudio" ) ;
618
+ pub use crate :: host:: coreaudio:: Host as CoreAudioHost ;
619
+ impl_platform_host ! ( CoreAudio => CoreAudioHost ) ;
630
620
631
621
/// The default host for the current compilation target platform.
632
622
pub fn default_host ( ) -> Host {
@@ -638,13 +628,8 @@ mod platform_impl {
638
628
639
629
#[ cfg( target_os = "emscripten" ) ]
640
630
mod platform_impl {
641
- pub use crate :: host:: emscripten:: {
642
- Device as EmscriptenDevice , Devices as EmscriptenDevices , Host as EmscriptenHost ,
643
- Stream as EmscriptenStream , SupportedInputConfigs as EmscriptenSupportedInputConfigs ,
644
- SupportedOutputConfigs as EmscriptenSupportedOutputConfigs ,
645
- } ;
646
-
647
- impl_platform_host ! ( Emscripten emscripten "Emscripten" ) ;
631
+ pub use crate :: host:: emscripten:: Host as EmscriptenHost ;
632
+ impl_platform_host ! ( Emscripten => EmscriptenHost ) ;
648
633
649
634
/// The default host for the current compilation target platform.
650
635
pub fn default_host ( ) -> Host {
@@ -656,13 +641,8 @@ mod platform_impl {
656
641
657
642
#[ cfg( all( target_arch = "wasm32" , feature = "wasm-bindgen" ) ) ]
658
643
mod platform_impl {
659
- pub use crate :: host:: webaudio:: {
660
- Device as WebAudioDevice , Devices as WebAudioDevices , Host as WebAudioHost ,
661
- Stream as WebAudioStream , SupportedInputConfigs as WebAudioSupportedInputConfigs ,
662
- SupportedOutputConfigs as WebAudioSupportedOutputConfigs ,
663
- } ;
664
-
665
- impl_platform_host ! ( WebAudio webaudio "WebAudio" ) ;
644
+ pub use crate :: host:: webaudio:: Host as WebAudioHost ;
645
+ impl_platform_host ! ( WebAudio => WebAudioHost ) ;
666
646
667
647
/// The default host for the current compilation target platform.
668
648
pub fn default_host ( ) -> Host {
@@ -675,18 +655,13 @@ mod platform_impl {
675
655
#[ cfg( windows) ]
676
656
mod platform_impl {
677
657
#[ cfg( feature = "asio" ) ]
678
- pub use crate :: host:: asio:: {
679
- Device as AsioDevice , Devices as AsioDevices , Host as AsioHost , Stream as AsioStream ,
680
- SupportedInputConfigs as AsioSupportedInputConfigs ,
681
- SupportedOutputConfigs as AsioSupportedOutputConfigs ,
682
- } ;
683
- pub use crate :: host:: wasapi:: {
684
- Device as WasapiDevice , Devices as WasapiDevices , Host as WasapiHost ,
685
- Stream as WasapiStream , SupportedInputConfigs as WasapiSupportedInputConfigs ,
686
- SupportedOutputConfigs as WasapiSupportedOutputConfigs ,
687
- } ;
658
+ pub use crate :: host:: asio:: Host as AsioHost ;
659
+ pub use crate :: host:: wasapi:: Host as WasapiHost ;
688
660
689
- impl_platform_host ! ( #[ cfg( feature = "asio" ) ] Asio asio "ASIO" , Wasapi wasapi "WASAPI" ) ;
661
+ impl_platform_host ! (
662
+ #[ cfg( feature = "asio" ) ] Asio => AsioHost ,
663
+ Wasapi => WasapiHost ,
664
+ ) ;
690
665
691
666
/// The default host for the current compilation target platform.
692
667
pub fn default_host ( ) -> Host {
@@ -698,13 +673,8 @@ mod platform_impl {
698
673
699
674
#[ cfg( target_os = "android" ) ]
700
675
mod platform_impl {
701
- pub use crate :: host:: oboe:: {
702
- Device as OboeDevice , Devices as OboeDevices , Host as OboeHost , Stream as OboeStream ,
703
- SupportedInputConfigs as OboeSupportedInputConfigs ,
704
- SupportedOutputConfigs as OboeSupportedOutputConfigs ,
705
- } ;
706
-
707
- impl_platform_host ! ( Oboe oboe "Oboe" ) ;
676
+ pub use crate :: host:: oboe:: Host as OboeHost ;
677
+ impl_platform_host ! ( Oboe => OboeHost ) ;
708
678
709
679
/// The default host for the current compilation target platform.
710
680
pub fn default_host ( ) -> Host {
@@ -727,13 +697,9 @@ mod platform_impl {
727
697
all( target_arch = "wasm32" , feature = "wasm-bindgen" ) ,
728
698
) ) ) ]
729
699
mod platform_impl {
730
- pub use crate :: host:: null:: {
731
- Device as NullDevice , Devices as NullDevices , Host as NullHost ,
732
- SupportedInputConfigs as NullSupportedInputConfigs ,
733
- SupportedOutputConfigs as NullSupportedOutputConfigs ,
734
- } ;
700
+ pub use crate :: host:: null:: Host as NullHost ;
735
701
736
- impl_platform_host ! ( Null null "Null" ) ;
702
+ impl_platform_host ! ( Null => NullHost ) ;
737
703
738
704
/// The default host for the current compilation target platform.
739
705
pub fn default_host ( ) -> Host {
0 commit comments