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
use crate::{file::init, parse, parse::Event, path::interpolate};
#[derive(Debug, thiserror::Error)]
#[allow(missing_docs)]
pub enum Error {
#[error(transparent)]
Parse(#[from] parse::Error),
#[error(transparent)]
Interpolate(#[from] interpolate::Error),
#[error(transparent)]
Includes(#[from] init::includes::Error),
}
#[derive(Clone, Copy, Default)]
pub struct Options<'a> {
pub includes: init::includes::Options<'a>,
pub lossy: bool,
pub ignore_io_errors: bool,
}
impl Options<'_> {
pub(crate) fn to_event_filter(self) -> Option<fn(&Event<'_>) -> bool> {
if self.lossy {
Some(discard_nonessential_events)
} else {
None
}
}
}
fn discard_nonessential_events(e: &Event<'_>) -> bool {
match e {
Event::Whitespace(_) | Event::Comment(_) | Event::Newline(_) => false,
Event::SectionHeader(_)
| Event::SectionKey(_)
| Event::KeyValueSeparator
| Event::Value(_)
| Event::ValueNotDone(_)
| Event::ValueDone(_) => true,
}
}