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
use std::borrow::Cow;
use std::fmt;
use std::io;
use std::str;
#[derive(Copy, Clone, Debug, Eq, PartialEq, Hash, Ord, PartialOrd)]
#[repr(transparent)]
pub struct Encoded<Str>(pub Str);
impl<Str: AsRef<[u8]>> Encoded<Str> {
#[inline(always)]
pub fn new(string: Str) -> Self {
Self(string)
}
#[inline(always)]
pub fn to_str(&self) -> Cow<str> {
encode_binary(self.0.as_ref())
}
#[inline]
#[allow(clippy::inherent_to_string_shadow_display)]
pub fn to_string(&self) -> String {
self.to_str().into_owned()
}
#[inline]
pub fn write<W: io::Write>(&self, writer: &mut W) -> io::Result<()> {
encode_into(self.0.as_ref(), false, |s| writer.write_all(s.as_bytes()))?;
Ok(())
}
#[inline]
pub fn append_to(&self, string: &mut String) {
append_string(&self.0.as_ref(), string, false);
}
}
impl<'a> Encoded<&'a str> {
#[inline(always)]
pub fn str(string: &'a str) -> Self {
Self(string)
}
}
impl<String: AsRef<[u8]>> fmt::Display for Encoded<String> {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
encode_into(self.0.as_ref(), false, |s| f.write_str(s))?;
Ok(())
}
}
#[inline(always)]
pub fn encode(data: &str) -> Cow<str> {
encode_binary(data.as_bytes())
}
#[inline]
pub fn encode_binary(data: &[u8]) -> Cow<str> {
let mut escaped = String::with_capacity(data.len() | 15);
let unmodified = append_string(data, &mut escaped, true);
if unmodified {
return Cow::Borrowed(unsafe {
str::from_utf8_unchecked(data)
});
}
Cow::Owned(escaped)
}
fn append_string(data: &[u8], escaped: &mut String, may_skip: bool) -> bool {
encode_into(data, may_skip, |s| Ok::<_, std::convert::Infallible>(escaped.push_str(s))).unwrap()
}
fn encode_into<E>(mut data: &[u8], may_skip_write: bool, mut push_str: impl FnMut(&str) -> Result<(), E>) -> Result<bool, E> {
let mut pushed = false;
loop {
let ascii_len = data.iter()
.take_while(|&&c| matches!(c, b'0'..=b'9' | b'A'..=b'Z' | b'a'..=b'z' | b'-' | b'.' | b'_' | b'~')).count();
let (safe, rest) = if ascii_len >= data.len() {
if !pushed && may_skip_write {
return Ok(true);
}
(data, &[][..]) } else {
data.split_at(ascii_len)
};
pushed = true;
if !safe.is_empty() {
push_str(unsafe { str::from_utf8_unchecked(safe) })?;
}
if rest.is_empty() {
break;
}
match rest.split_first() {
Some((byte, rest)) => {
let enc = &[b'%', to_hex_digit(byte >> 4), to_hex_digit(byte & 15)];
push_str(unsafe { str::from_utf8_unchecked(enc) })?;
data = rest;
}
None => break,
};
}
Ok(false)
}
#[inline]
fn to_hex_digit(digit: u8) -> u8 {
match digit {
0..=9 => b'0' + digit,
10..=255 => b'A' - 10 + digit,
}
}