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
|
use std::{
collections::HashSet,
convert::TryFrom,
fmt::Write,
};
use super::{
context::Context,
error::Error,
percent_encoded_character_decoder::PercentEncodedCharacterDecoder,
};
pub fn decode_element<T>(
element: T,
allowed_characters: &'static HashSet<char>,
context: Context,
) -> Result<Vec<u8>, Error>
where
T: AsRef<str>,
{
let mut decoding_pec = false;
let mut pec_decoder = PercentEncodedCharacterDecoder::new();
element
.as_ref()
.chars()
.filter_map(|c| {
if decoding_pec {
pec_decoder.next(c).map_err(Into::into).transpose().map(|c| {
decoding_pec = false;
c
})
} else if c == '%' {
decoding_pec = true;
None
} else if allowed_characters.contains(&c) {
Some(Ok(c as u8))
} else {
Some(Err(Error::IllegalCharacter(context)))
}
})
.collect()
}
pub fn encode_element(
element: &[u8],
allowed_characters: &HashSet<char>,
) -> String {
let mut encoding = String::with_capacity(element.len());
for ci in element {
match char::try_from(*ci) {
Ok(c) if allowed_characters.contains(&c) => encoding.push(c),
_ => write!(encoding, "%{:02X}", ci).unwrap(),
}
}
encoding
}
|