blob: f6fdfea8cec4c56805dc75e5cc65ef6569ad25fd (
plain)
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
|
#include "json_parse.h"
#include <string>
#include <iostream>
using namespace std;
static const char *json_hex_chars = "0123456789abcdef";
void JSONParser::WriteEscapedString(const string& in, ostream* out) {
int pos = 0;
int start_offset = 0;
unsigned char c = 0;
(*out) << '"';
while(pos < in.size()) {
c = in[pos];
switch(c) {
case '\b':
case '\n':
case '\r':
case '\t':
case '"':
case '\\':
case '/':
if(pos - start_offset > 0)
(*out) << in.substr(start_offset, pos - start_offset);
if(c == '\b') (*out) << "\\b";
else if(c == '\n') (*out) << "\\n";
else if(c == '\r') (*out) << "\\r";
else if(c == '\t') (*out) << "\\t";
else if(c == '"') (*out) << "\\\"";
else if(c == '\\') (*out) << "\\\\";
else if(c == '/') (*out) << "\\/";
start_offset = ++pos;
break;
default:
if(c < ' ') {
cerr << "Warning, bad character (" << static_cast<int>(c) << ") in string\n";
if(pos - start_offset > 0)
(*out) << in.substr(start_offset, pos - start_offset);
(*out) << "\\u00" << json_hex_chars[c >> 4] << json_hex_chars[c & 0xf];
start_offset = ++pos;
} else pos++;
}
}
if(pos - start_offset > 0)
(*out) << in.substr(start_offset, pos - start_offset);
(*out) << '"';
}
|