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
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
use std::fmt;
/// Source location attached to a Touchstone parse error.
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct TouchstoneErrorContext {
/// Source name or path that was being parsed.
pub source_name: String,
/// 1-based line number where the parser detected the error, when known.
pub line_number: Option<usize>,
/// Source line or logical data-line segment where the parser detected the error.
pub line: Option<String>,
}
impl fmt::Display for TouchstoneErrorContext {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
match (self.line_number, self.line.as_deref()) {
(Some(line_number), Some(line)) => {
write!(f, "{}:{line_number}: {}", self.source_name, line)
}
(Some(line_number), None) => write!(f, "{}:{line_number}", self.source_name),
(None, Some(line)) => write!(f, "{}: {}", self.source_name, line),
(None, None) => write!(f, "{}", self.source_name),
}
}
}
/// Non-fatal condition reported while parsing Touchstone data.
#[derive(Debug, Clone, PartialEq, Eq)]
#[non_exhaustive]
pub enum TouchstoneWarning {
/// No option line was found, so Touchstone default options were used.
MissingOptionLine {
/// Source name or path that was parsed.
source_name: String,
},
/// A second or later option line was ignored after the first option line was parsed.
AdditionalOptionLineIgnored {
/// Source name or path that was parsed.
source_name: String,
/// 1-based line number of the ignored option line.
line_number: usize,
/// Ignored option line text.
line: String,
},
/// An unsupported keyword was ignored.
UnknownKeywordIgnored {
/// Source name or path that was parsed.
source_name: String,
/// 1-based line number of the ignored keyword line.
line_number: usize,
/// Normalized keyword name.
keyword: String,
},
}
impl fmt::Display for TouchstoneWarning {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
match self {
Self::MissingOptionLine { source_name } => {
write!(
f,
"{source_name}: no option line found; using Touchstone defaults"
)
}
Self::AdditionalOptionLineIgnored {
source_name,
line_number,
line,
} => write!(
f,
"{source_name}:{line_number}: additional option line ignored: {line}"
),
Self::UnknownKeywordIgnored {
source_name,
line_number,
keyword,
} => write!(
f,
"{source_name}:{line_number}: unsupported keyword ignored: [{keyword}]"
),
}
}
}
/// Error returned when Touchstone data cannot be read or parsed.
#[derive(Debug)]
#[non_exhaustive]
pub enum TouchstoneError {
/// A parse error with source-location context.
Parse {
/// Source location where the parser detected the error.
context: TouchstoneErrorContext,
/// Structured root error.
source: Box<TouchstoneError>,
},
/// The source file could not be read.
Io(std::io::Error),
/// In-memory bytes were not valid UTF-8 Touchstone text.
InvalidUtf8(std::str::Utf8Error),
/// The source name did not include a file extension.
MissingFileType {
/// Source name used for extension inference.
source_name: String,
},
/// The source extension is not a supported Touchstone file type.
UnsupportedFileType {
/// Unsupported extension without the leading dot.
file_type: String,
},
/// The Touchstone extension did not contain a valid port count.
InvalidPortCount {
/// Extension that could not be converted to a port count.
file_type: String,
},
/// The file contained more than one option line.
MultipleOptionLines,
/// A data line did not contain the expected number of values.
InvalidDataLineParts {
/// Number of values required for the current network rank.
expected: usize,
/// Number of values found in the line.
actual: usize,
},
/// A numeric token could not be parsed as `f64`.
InvalidNumber {
/// Token that failed numeric parsing.
token: String,
},
/// The frequency unit is not supported.
UnsupportedFrequencyUnit {
/// Unit token from the option line.
unit: String,
},
/// The network data format is not supported.
UnsupportedFormat {
/// Format token from the option line.
format: String,
},
/// A keyword line was malformed.
InvalidKeywordLine {
/// Full keyword line.
line: String,
},
/// The Touchstone version is not supported.
UnsupportedVersion {
/// Version string from the `[Version]` keyword.
version: String,
},
/// The `[Number of Ports]` value was not a valid integer.
InvalidNumberOfPorts {
/// Raw value from the keyword.
value: String,
},
/// The `[Number of Ports]` value did not match the source extension.
NumberOfPortsMismatch {
/// Port count declared by the keyword.
keyword_ports: i32,
/// Port count inferred from the source extension.
extension_ports: i32,
},
/// `[Two-Port Data Order]` was present for a network other than `.s2p`.
TwoPortDataOrderForNonTwoPort,
/// The `[Two-Port Data Order]` value is not supported.
UnsupportedTwoPortDataOrder {
/// Order token from the keyword.
order: String,
},
/// The `[Number of Frequencies]` value was not a valid integer.
InvalidNumberOfFrequencies {
/// Raw value from the keyword.
value: String,
},
/// The parsed data line count did not match `[Number of Frequencies]`.
NumberOfFrequenciesMismatch {
/// Expected number of frequency rows.
expected: usize,
/// Parsed number of frequency rows.
actual: usize,
},
/// Matrix format values other than `Full` are not supported.
UnsupportedMatrixFormat {
/// Matrix format token from the keyword.
format: String,
},
}
impl TouchstoneError {
pub(crate) fn with_context(self, context: TouchstoneErrorContext) -> Self {
match self {
Self::Parse { .. } => self,
_ => Self::Parse {
context,
source: Box::new(self),
},
}
}
/// Return parser source-location context when this error has it.
///
/// # Examples
///
/// ```
/// let error =
/// touchstone::Network::from_str("uploaded.s1p", "# GHz S RI R 50\n1.0 0.1\n")
/// .unwrap_err();
///
/// let context = error.context().unwrap();
/// assert_eq!(context.source_name, "uploaded.s1p");
/// assert_eq!(context.line_number, Some(2));
/// assert_eq!(context.line.as_deref(), Some("1.0 0.1"));
/// ```
#[must_use]
pub fn context(&self) -> Option<&TouchstoneErrorContext> {
match self {
Self::Parse { context, .. } => Some(context),
_ => None,
}
}
/// Return the deepest structured error wrapped by parser context.
///
/// # Examples
///
/// ```
/// use touchstone::{Network, TouchstoneError};
///
/// let error = Network::from_str("uploaded.s1p", "# GHz S RI R 50\n1.0 0.1\n").unwrap_err();
///
/// assert!(matches!(
/// error.root_cause(),
/// TouchstoneError::InvalidDataLineParts {
/// expected: 3,
/// actual: 2
/// }
/// ));
/// ```
#[must_use]
pub fn root_cause(&self) -> &TouchstoneError {
let mut current = self;
while let Self::Parse { source, .. } = current {
current = source;
}
current
}
}
impl fmt::Display for TouchstoneError {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
match self {
Self::Parse { context, source } => write!(f, "{source} at {context}"),
Self::Io(err) => write!(f, "failed to read Touchstone file: {err}"),
Self::InvalidUtf8(err) => write!(f, "Touchstone data is not valid UTF-8: {err}"),
Self::MissingFileType { source_name } => {
write!(f, "Touchstone source name has no file extension: {source_name}")
}
Self::UnsupportedFileType { file_type } => {
write!(f, "unsupported Touchstone file type: {file_type}")
}
Self::InvalidPortCount { file_type } => {
write!(f, "invalid port count in Touchstone file type: {file_type}")
}
Self::MultipleOptionLines => write!(f, "multiple option lines found"),
Self::InvalidDataLineParts { expected, actual } => write!(
f,
"invalid data line: expected {expected} values, found {actual}"
),
Self::InvalidNumber { token } => write!(f, "invalid numeric token: {token}"),
Self::UnsupportedFrequencyUnit { unit } => {
write!(f, "unsupported frequency unit: {unit}")
}
Self::UnsupportedFormat { format } => write!(f, "unsupported data format: {format}"),
Self::InvalidKeywordLine { line } => write!(f, "invalid keyword line: {line}"),
Self::UnsupportedVersion { version } => {
write!(f, "unsupported Touchstone version: {version}")
}
Self::InvalidNumberOfPorts { value } => {
write!(f, "invalid [Number of Ports] value: {value}")
}
Self::NumberOfPortsMismatch {
keyword_ports,
extension_ports,
} => write!(
f,
"[Number of Ports] value {keyword_ports} does not match extension port count {extension_ports}"
),
Self::TwoPortDataOrderForNonTwoPort => {
write!(f, "[Two-Port Data Order] is only valid for two-port networks")
}
Self::UnsupportedTwoPortDataOrder { order } => {
write!(f, "unsupported [Two-Port Data Order] value: {order}")
}
Self::InvalidNumberOfFrequencies { value } => {
write!(f, "invalid [Number of Frequencies] value: {value}")
}
Self::NumberOfFrequenciesMismatch { expected, actual } => write!(
f,
"[Number of Frequencies] value {expected} does not match parsed data rows {actual}"
),
Self::UnsupportedMatrixFormat { format } => {
write!(f, "unsupported [Matrix Format] value: {format}")
}
}
}
}
impl std::error::Error for TouchstoneError {
fn source(&self) -> Option<&(dyn std::error::Error + 'static)> {
match self {
Self::Parse { source, .. } => Some(source),
Self::Io(err) => Some(err),
Self::InvalidUtf8(err) => Some(err),
_ => None,
}
}
}
impl From<std::io::Error> for TouchstoneError {
fn from(err: std::io::Error) -> Self {
Self::Io(err)
}
}
impl From<std::str::Utf8Error> for TouchstoneError {
fn from(err: std::str::Utf8Error) -> Self {
Self::InvalidUtf8(err)
}
}