-
Notifications
You must be signed in to change notification settings - Fork 75
/
JSON.swift
201 lines (189 loc) · 5.5 KB
/
JSON.swift
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
191
192
193
194
195
196
197
198
199
200
201
import Benchmark
import Foundation
import Parsing
/// This benchmark shows how to create a naive JSON parser with combinators.
///
/// It is mostly implemented according to the [spec](https://www.json.org/json-en.html) (we take a
/// shortcut and use `Double.parser()`, which behaves accordingly).
let jsonSuite = BenchmarkSuite(name: "JSON") { suite in
#if swift(>=5.8)
struct JSONValue: ParserPrinter {
enum Output: Equatable {
case array([Self])
case boolean(Bool)
case null
case number(Double)
case object([String: Self])
case string(String)
}
var body: some ParserPrinter<Substring.UTF8View, Output> {
Whitespace()
OneOf {
JSONObject().map(.case(Output.object))
JSONArray().map(.case(Output.array))
JSONString().map(.case(Output.string))
Double.parser().map(.case(Output.number))
Bool.parser().map(.case(Output.boolean))
"null".utf8.map { Output.null }
}
Whitespace()
}
}
struct JSONString: ParserPrinter {
var body: some ParserPrinter<Substring.UTF8View, String> {
"\"".utf8
Many(into: "") { string, fragment in
string.append(contentsOf: fragment)
} decumulator: { string in
string.map(String.init).reversed().makeIterator()
} element: {
OneOf {
Prefix(1) { $0.isUnescapedJSONStringByte }.map(.string)
Parse {
"\\".utf8
OneOf {
"\"".utf8.map { "\"" }
"\\".utf8.map { "\\" }
"/".utf8.map { "/" }
"b".utf8.map { "\u{8}" }
"f".utf8.map { "\u{c}" }
"n".utf8.map { "\n" }
"r".utf8.map { "\r" }
"t".utf8.map { "\t" }
ParsePrint(.unicode) {
Prefix(4) { $0.isHexDigit }
}
}
}
}
} terminator: {
"\"".utf8
}
}
}
struct JSONObject: ParserPrinter {
var body: some ParserPrinter<Substring.UTF8View, [String: JSONValue.Output]> {
"{".utf8
Many(into: [String: JSONValue.Output]()) {
(object: inout [String: JSONValue.Output], pair: (String, JSONValue.Output)) in
let (name, value) = pair
object[name] = value
} decumulator: { object in
(object.sorted(by: { $0.key < $1.key }) as [(String, JSONValue.Output)])
.reversed()
.makeIterator()
} element: {
Whitespace()
JSONString()
Whitespace()
":".utf8
JSONValue()
} separator: {
",".utf8
} terminator: {
"}".utf8
}
}
}
struct JSONArray: ParserPrinter {
var body: some ParserPrinter<Substring.UTF8View, [JSONValue.Output]> {
"[".utf8
Many {
JSONValue()
} separator: {
",".utf8
} terminator: {
"]".utf8
}
}
}
let json = JSONValue()
let input = #"""
{
"hello": true,
"goodbye": 42.42,
"whatever": null,
"xs": [1, "hello", null, false],
"ys": {
"0": 2,
"1": "goodbye\n"
}
}
"""#
var jsonOutput: JSONValue.Output!
suite.benchmark("Parser") {
var input = input[...].utf8
jsonOutput = try json.parse(&input)
} tearDown: {
precondition(
jsonOutput
== .object([
"hello": .boolean(true),
"goodbye": .number(42.42),
"whatever": .null,
"xs": .array([.number(1), .string("hello"), .null, .boolean(false)]),
"ys": .object([
"0": .number(2),
"1": .string("goodbye\n"),
]),
])
)
precondition(
try! Substring(json.print(jsonOutput))
== """
{\
"goodbye":42.42,\
"hello":true,\
"whatever":null,\
"xs":[1.0,"hello",null,false],\
"ys":{"0":2.0,"1":"goodbye\\n"}\
}
"""
)
precondition(try! json.parse(json.print(jsonOutput)) == jsonOutput)
}
let dataInput = Data(input.utf8)
var objectOutput: Any!
suite.benchmark("JSONSerialization") {
objectOutput = try JSONSerialization.jsonObject(with: dataInput, options: [])
} tearDown: {
precondition(
(objectOutput as! NSDictionary) == [
"hello": true,
"goodbye": 42.42,
"whatever": NSNull(),
"xs": [1, "hello", nil, false] as [Any?],
"ys": [
"0": 2,
"1": "goodbye\n",
] as [String: Any],
]
)
}
#endif
}
extension UTF8.CodeUnit {
fileprivate var isHexDigit: Bool {
(.init(ascii: "0") ... .init(ascii: "9")).contains(self)
|| (.init(ascii: "A") ... .init(ascii: "F")).contains(self)
|| (.init(ascii: "a") ... .init(ascii: "f")).contains(self)
}
fileprivate var isUnescapedJSONStringByte: Bool {
self != .init(ascii: "\"") && self != .init(ascii: "\\") && self >= .init(ascii: " ")
}
}
extension Conversion where Self == AnyConversion<Substring.UTF8View, String> {
fileprivate static var unicode: Self {
Self(
apply: {
UInt32(Substring($0), radix: 16)
.flatMap(UnicodeScalar.init)
.map(String.init)
},
unapply: {
$0.unicodeScalars.first
.map { String(UInt32($0), radix: 16)[...].utf8 }
}
)
}
}