This repository was archived by the owner on Apr 28, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathJson5.cs
190 lines (160 loc) · 6.16 KB
/
Json5.cs
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
184
185
186
187
188
189
190
using System;
using System.Collections.Generic;
using System.Globalization;
using System.IO;
using System.Linq;
namespace Json5
{
using Parsing;
/// <summary>
/// Contains methods for parsing and generating JSON5 text.
/// </summary>
public static class Json5
{
/// <summary>
/// Parses JSON5 text into a JSON5 value.
/// </summary>
/// <param name="text">The text to parse.</param>
/// <param name="reviver">An optional function to tranform the parsed values.</param>
/// <returns>A JSON5 value.</returns>
public static Json5Value Parse(string text, Func<Json5Container, string, Json5Value, Json5Value> reviver = null)
{
Json5Parser parser = new Json5Parser(new StringReader(text));
Json5Value value = parser.Parse();
if (reviver != null)
return Transform(value, reviver);
return value;
}
public static Json5Value Parse(string text, Func<string, Json5Value, Json5Value> reviver)
{
throw new NotImplementedException();
}
public static string Stringify(Json5Value value, Func<Json5Container, string, Json5Value, Json5Value> replacer, string space = null)
{
if (replacer != null)
value = Transform(value, replacer);
return value.ToJson5String(space);
}
public static string Stringify(Json5Value value, Func<Json5Container, string, Json5Value, Json5Value> replacer, int space)
{
return Stringify(value, replacer, new string(' ', Math.Min(space, 10)));
}
public static string Stringify(Json5Value value, Func<string, Json5Value, Json5Value> replacer, string space = null)
{
throw new NotImplementedException();
}
public static string Stringify(Json5Value value, Func<string, Json5Value, Json5Value> replacer, int space)
{
throw new NotImplementedException();
}
public static string Stringify(Json5Value value, IEnumerable<string> keys, string space = null)
{
Func<Json5Container, string, Json5Value, Json5Value> replacer = null;
if (keys != null)
replacer = (t, k, v) => keys.Contains(k) ? v : null;
return Stringify(value, replacer, space);
}
public static string Stringify(Json5Value value, IEnumerable<string> keys, int space)
{
return Stringify(value, keys, new string(' ', Math.Max(space, 10)));
}
public static string Stringify(Json5Value value, string space = null)
{
return Stringify(value, (Func<Json5Container, string, Json5Value, Json5Value>)null, space);
}
public static string Stringify(Json5Value value, int space)
{
return Stringify(value, (Func<Json5Container, string, Json5Value, Json5Value>)null, space);
}
//public static string Stringify(Json5Value value)
//{
// return Stringify(value, replacer: null, space: null);
//}
private static Func<Json5Container, string, Json5Value, Json5Value> GetKeyTransformer(IEnumerable<string> keys)
{
return (t, k, v) => keys.Contains(k) ? v : null;
}
private static Json5Value Transform(Json5Value value, Func<Json5Container, string, Json5Value, Json5Value> transformer)
{
Json5Object holder = new Json5Object();
holder[""] = value;
return Walk(holder, "", transformer);
}
private static Json5Value Walk(Json5Container holder, string key, Func<Json5Container, string, Json5Value, Json5Value> transformer)
{
Json5Value value = holder[key];
if (value is Json5Container)
{
Json5Container c = (Json5Container)value;
string[] keys = c.Keys.ToArray();
foreach (string k in keys)
{
Json5Value v = Walk(c, k, transformer);
if (v != null)
c[k] = v;
else
c.Remove(k);
}
}
// Special case for holder
if (key == "")
{
return value;
}
return transformer(holder, key, value);
}
internal static string QuoteString(string s)
{
int doubleQuotes = 0;
int singleQuotes = 0;
foreach (char c in s)
{
if (c == '"')
doubleQuotes++;
else if (c == '\'')
singleQuotes++;
}
char quote = doubleQuotes >= singleQuotes ? '\'' : '"';
return quote + EscapeString(s, quote) + quote;
}
internal static string EscapeString(string s, char quote)
{
string r = "";
foreach (char c in s)
r += EscapeChar(c, quote);
return r;
}
private static string EscapeChar(char c, char quote)
{
if (c == quote)
return "\\" + quote;
switch (c)
{
case '\0': return "\\0";
case '\b': return "\\b";
case '\t': return "\\t";
case '\n': return "\\n";
case '\f': return "\\f";
case '\r': return "\\r";
case '\v': return "\\v";
case '\\': return "\\\\";
case '\u2028': return "\\u2028";
case '\u2029': return "\\u2029";
}
if (c < ' ')
{
return "\\x" + ((int)c).ToString("x2");
}
switch (char.GetUnicodeCategory(c))
{
case UnicodeCategory.Control:
case UnicodeCategory.Format:
case UnicodeCategory.Surrogate:
case UnicodeCategory.PrivateUse:
case UnicodeCategory.OtherNotAssigned:
return "\\u" + ((int)c).ToString("x4");
}
return c.ToString();
}
}
}