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
use std::{io, str};
use {Json, JsonInner};
fn serialize_string<W: io::Write>(s: &str, mut w: W) -> io::Result<()> {
try!(w.write(b"\""));
for ch in s.chars() {
match ch {
'\x07' => { try!(w.write(b"\\b")); }
'\x0c' => { try!(w.write(b"\\f")); }
'\n' => { try!(w.write(b"\\n")); }
'\r' => { try!(w.write(b"\\r")); }
'\t' => { try!(w.write(b"\\t")); }
'\\' => { try!(w.write(b"\\\\")); }
'"' => { try!(w.write(b"\\\"")); }
'\x20'...'\x7e' => { try!(w.write(&[ch as u8])); }
#[cfg(feature="utf16")]
_ => {
let mut utf16 = [0u16; 2];
let subslice = ch.encode_utf16(&mut utf16);
for word in subslice.iter().cloned() {
try!(write!(w, "\\u{:02x}{:02x}", word >> 8 as u8, word as u8));
}
}
#[cfg(not(feature="utf16"))]
_ => { try!(write!(w, "{}", ch)); }
}
}
try!(w.write(b"\""));
Ok(())
}
pub fn serialize<W: io::Write>(json: &Json, w: &mut W) -> io::Result<()> {
match json.0 {
JsonInner::Null => { try!(w.write(b"null")); }
JsonInner::Bool(true) => { try!(w.write(b"true")); }
JsonInner::Bool(false) => { try!(w.write(b"false")); }
JsonInner::Number(ref s) => { try!(w.write(s.as_bytes())); }
JsonInner::String(ref s) => { try!(serialize_string(&s[..], &mut *w)); }
JsonInner::Array(ref v) => {
try!(w.write(b"["));
let mut first = true;
for elem in v {
if !first {
try!(w.write(b", "));
}
try!(serialize(elem, &mut *w));
first = false;
}
try!(w.write(b"]"));
}
JsonInner::Object(ref v) => {
try!(w.write(b"{"));
let mut first = true;
for &(ref key, ref val) in v {
if !first {
try!(w.write(b", "));
}
try!(serialize_string(key, &mut *w));
try!(w.write(b": "));
try!(serialize(val, &mut *w));
first = false;
}
try!(w.write(b"}"));
}
};
Ok(())
}
#[cfg(test)]
mod tests {
use Json;
fn round_trip(s: &str) -> bool {
let dec = Json::from_str(s).unwrap();
let enc = dec.to_bytes();
let mut it1 = s.as_bytes().iter();
let mut it2 = enc.iter();
let mut in_string = false;
loop {
let mut ch1 = None;
let mut ch2 = None;
if !in_string {
while let Some(ch) = it1.next() {
if *ch != b' ' && *ch != b'\r' && *ch != b'\n' {
ch1 = Some(*ch);
break;
}
}
while let Some(ch) = it2.next() {
if *ch != b' ' && *ch != b'\r' && *ch != b'\n' {
ch2 = Some(*ch);
break;
}
}
} else {
ch1 = it1.next().map(|c| *c);
ch2 = it2.next().map(|c| *c);
}
match (ch1, ch2) {
(Some(c1), Some(c2)) => {
if c1 != c2 {
return false;
}
if c1 == b'\\' {
let (next1, next2) = (it1.next(), it2.next());
if next1 != next2 {
return false;
}
} else if c1 == b'"' {
in_string = !in_string;
}
}
(Some(_), None) | (None, Some(_)) => { return false; }
(None, None) => { return true; }
}
}
}
#[test]
fn test_round_trip() {
assert!(round_trip("null"));
assert!(round_trip("true"));
assert!(round_trip("false"));
assert!(round_trip("[ ]"));
assert!(round_trip("{ }"));
assert!(round_trip("\" \\t\\n\\t \""));
assert!(round_trip("\"\\\"\""));
assert!(round_trip("\"\\n\\r\\f\\b\\\\\""));
assert!(round_trip("-0"));
assert!(round_trip("100"));
assert!(round_trip("-100e5"));
assert!(round_trip("-100E+5"));
assert!(round_trip("100E-5"));
assert!(round_trip("-1.5e-100"));
assert!(round_trip("1.5e+100"));
assert!(round_trip("[1, 2, 3, true, null, false, [ 10, 20, 30 ] ]"));
assert!(round_trip("{ \"key\": \"val\", \"true\": [] }"));
}
#[test]
fn test_round_trip_utf16() {
assert!(round_trip("\"\\u0000\""));
assert!(round_trip("\"\\ucafe\\ubabe\""));
assert!(round_trip("\"\\ud834\\udd1e\""));
}
}