1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
use std::str::FromStr;
use std::os::raw::c_char;
use num_complex::Complex;
use soapysdr_sys::*;
#[derive(Copy, Clone, Eq, PartialEq, Hash)]
pub enum Format {
CF64,
CF32,
CS32,
CU32,
CS16,
CU16,
CS12,
CU12,
CS8,
CU8,
CS4,
CU4,
F64,
F32,
S32,
U32,
S16,
U16,
S8,
U8,
#[doc(hidden)]
__Nonexhaustive
}
type ParseFormatError = ();
impl FromStr for Format {
type Err = ParseFormatError;
fn from_str(s: &str) -> Result<Format, ParseFormatError> {
match s {
"CF64" => Ok(Format::CF64),
"CF32" => Ok(Format::CF32),
"CS32" => Ok(Format::CS32),
"CU32" => Ok(Format::CU32),
"CS16" => Ok(Format::CS16),
"CU16" => Ok(Format::CU16),
"CS12" => Ok(Format::CS12),
"CU12" => Ok(Format::CU12),
"CS8" => Ok(Format::CS8),
"CU8" => Ok(Format::CU8),
"CS4" => Ok(Format::CS4),
"CU4" => Ok(Format::CU4),
"F64" => Ok(Format::F64),
"F32" => Ok(Format::F32),
"S32" => Ok(Format::S32),
"U32" => Ok(Format::U32),
"S16" => Ok(Format::S16),
"U16" => Ok(Format::U16),
"S8" => Ok(Format::S8),
"U8" => Ok(Format::U8),
_ => Err(()),
}
}
}
impl Format {
fn as_str_with_nul(&self) -> &'static str {
match *self {
Format::CF64 => "CF64\0",
Format::CF32 => "CF32\0",
Format::CS32 => "CS32\0",
Format::CU32 => "CU32\0",
Format::CS16 => "CS16\0",
Format::CU16 => "CU16\0",
Format::CS12 => "CS12\0",
Format::CU12 => "CU12\0",
Format::CS8 => "CS8\0",
Format::CU8 => "CU8\0",
Format::CS4 => "CS4\0",
Format::CU4 => "CU4\0",
Format::F64 => "F64\0",
Format::F32 => "F32\0",
Format::S32 => "S32\0",
Format::U32 => "U32\0",
Format::S16 => "S16\0",
Format::U16 => "U16\0",
Format::S8 => "S8\0",
Format::U8 => "U8\0",
Format::__Nonexhaustive => "unknown\0",
}
}
pub(crate) fn as_ptr(&self) -> *const c_char {
self.as_str_with_nul().as_ptr() as *const c_char
}
pub fn as_str(&self) -> &str {
let s = self.as_str_with_nul();
&s[..s.len()-1]
}
pub fn size(&self) -> usize {
unsafe { SoapySDR_formatToSize(self.as_ptr()) }
}
}
impl ::std::fmt::Debug for Format {
fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
write!(f, "{}", self.as_str())
}
}
impl ::std::fmt::Display for Format {
fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
write!(f, "{}", self.as_str())
}
}
pub unsafe trait StreamSample {
const STREAM_FORMAT: Format;
}
unsafe impl StreamSample for u8 { const STREAM_FORMAT: Format = Format::U8; }
unsafe impl StreamSample for u16 { const STREAM_FORMAT: Format = Format::U16; }
unsafe impl StreamSample for u32 { const STREAM_FORMAT: Format = Format::U32; }
unsafe impl StreamSample for i8 { const STREAM_FORMAT: Format = Format::S8; }
unsafe impl StreamSample for i16 { const STREAM_FORMAT: Format = Format::S16; }
unsafe impl StreamSample for i32 { const STREAM_FORMAT: Format = Format::S32; }
unsafe impl StreamSample for f32 { const STREAM_FORMAT: Format = Format::F32; }
unsafe impl StreamSample for f64 { const STREAM_FORMAT: Format = Format::F64; }
unsafe impl StreamSample for Complex<u8> { const STREAM_FORMAT: Format = Format::CU8; }
unsafe impl StreamSample for Complex<u16> { const STREAM_FORMAT: Format = Format::CU16; }
unsafe impl StreamSample for Complex<u32> { const STREAM_FORMAT: Format = Format::CU32; }
unsafe impl StreamSample for Complex<i8> { const STREAM_FORMAT: Format = Format::CS8; }
unsafe impl StreamSample for Complex<i16> { const STREAM_FORMAT: Format = Format::CS16; }
unsafe impl StreamSample for Complex<i32> { const STREAM_FORMAT: Format = Format::CS32; }
unsafe impl StreamSample for Complex<f32> { const STREAM_FORMAT: Format = Format::CF32; }
unsafe impl StreamSample for Complex<f64> { const STREAM_FORMAT: Format = Format::CF64; }