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
use std::ascii::AsciiExt;
use encoding::EncodingOverride;
use percent_encoding::{percent_encode_to, percent_decode, FORM_URLENCODED_ENCODE_SET};
#[inline]
pub fn parse(input: &[u8]) -> Vec<(String, String)> {
parse_internal(input, EncodingOverride::utf8(), false).unwrap()
}
#[cfg(feature = "query_encoding")]
#[inline]
pub fn parse_with_encoding(input: &[u8], encoding_override: Option<::encoding::EncodingRef>,
use_charset: bool)
-> Option<Vec<(String, String)>> {
parse_internal(input, EncodingOverride::from_opt_encoding(encoding_override), use_charset)
}
fn parse_internal(input: &[u8], mut encoding_override: EncodingOverride, mut use_charset: bool)
-> Option<Vec<(String, String)>> {
let mut pairs = Vec::new();
for piece in input.split(|&b| b == b'&') {
if !piece.is_empty() {
let (name, value) = match piece.position_elem(&b'=') {
Some(position) => (piece.slice_to(position), piece.slice_from(position + 1)),
None => (piece, [].as_slice())
};
#[inline]
fn replace_plus(input: &[u8]) -> Vec<u8> {
input.iter().map(|&b| if b == b'+' { b' ' } else { b }).collect()
}
let name = replace_plus(name);
let value = replace_plus(value);
if use_charset && name.as_slice() == b"_charset_" {
match EncodingOverride::lookup(value.as_slice()) {
Some(encoding) => encoding_override = encoding,
None => (),
}
use_charset = false;
}
pairs.push((name, value));
}
}
if !(encoding_override.is_utf8() || input.is_ascii()) {
return None
}
Some(pairs.into_iter().map(|(name, value)| (
encoding_override.decode(percent_decode(name.as_slice()).as_slice()),
encoding_override.decode(percent_decode(value.as_slice()).as_slice())
)).collect())
}
#[inline]
pub fn serialize_owned(pairs: &[(String, String)]) -> String {
serialize(pairs.iter().map(|&(ref n, ref v)| (n.as_slice(), v.as_slice())))
}
#[inline]
pub fn serialize<'a, I>(pairs: I) -> String where I: Iterator<Item = (&'a str, &'a str)> {
serialize_internal(pairs, EncodingOverride::utf8())
}
#[cfg(feature = "query_encoding")]
#[inline]
pub fn serialize_with_encoding<'a, I>(pairs: I, encoding_override: Option<::encoding::EncodingRef>)
-> String
where I: Iterator<Item = (&'a str, &'a str)> {
serialize_internal(pairs, EncodingOverride::from_opt_encoding(encoding_override))
}
fn serialize_internal<'a, I>(mut pairs: I, encoding_override: EncodingOverride) -> String
where I: Iterator<Item = (&'a str, &'a str)> {
#[inline]
fn byte_serialize(input: &str, output: &mut String,
encoding_override: EncodingOverride) {
for &byte in encoding_override.encode(input).iter() {
if byte == b' ' {
output.push_str("+")
} else {
percent_encode_to(&[byte], FORM_URLENCODED_ENCODE_SET, output)
}
}
}
let mut output = String::new();
for (name, value) in pairs {
if output.len() > 0 {
output.push_str("&");
}
byte_serialize(name, &mut output, encoding_override);
output.push_str("=");
byte_serialize(value, &mut output, encoding_override);
}
output
}
#[test]
fn test_form_urlencoded() {
let pairs = [
("foo".to_string(), "é&".to_string()),
("bar".to_string(), "".to_string()),
("foo".to_string(), "#".to_string())
];
let encoded = serialize_owned(pairs.as_slice());
assert_eq!(encoded.as_slice(), "foo=%C3%A9%26&bar=&foo=%23");
assert_eq!(parse(encoded.as_bytes()), pairs.as_slice().to_vec());
}