-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathJSON.swift
More file actions
687 lines (602 loc) · 20 KB
/
Copy pathJSON.swift
File metadata and controls
687 lines (602 loc) · 20 KB
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
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
import Foundation
public enum JSON:
Hashable,
CustomStringConvertible,
Sendable
{
indirect case array([JSON])
case boolean(Bool)
indirect case dictionary([String: JSON])
case number(Double)
case null
case string(String)
public init(_ array: [Any?]) {
self = array.json
}
public init(_ dictionary: [String: Any?]) {
self = dictionary.json
}
public subscript(key: String) -> JSON? {
get {
guard case let .dictionary(dict) = self else { return nil }
return dict[key]
}
set {
guard case var .dictionary(dict) = self else { return }
dict[key] = newValue ?? .null
self = .dictionary(dict)
}
}
public subscript(key: String) -> [Any?]? {
get {
guard case let .dictionary(dict) = self else { return nil }
return dict[key]?.arrayValue
}
set {
guard case var .dictionary(dict) = self else { return }
if let newValue {
dict[key] = .array(newValue.compactMap(\.json))
} else {
dict[key] = .null
}
self = .dictionary(dict)
}
}
public subscript(key: String) -> Bool? {
get {
guard case let .dictionary(dict) = self else { return nil }
return dict[key]?.boolValue
}
set {
guard case var .dictionary(dict) = self else { return }
if let newValue {
dict[key] = .boolean(newValue)
} else {
dict[key] = .null
}
self = .dictionary(dict)
}
}
public subscript(key: String) -> [String: Any?]? {
get {
guard case let .dictionary(dict) = self else { return nil }
return dict[key]?.dictionaryValue
}
set {
guard case var .dictionary(dict) = self else { return }
if let newValue {
dict[key] = .dictionary(newValue.compactMapValues(\.json))
} else {
dict[key] = .null
}
self = .dictionary(dict)
}
}
public subscript(key: String) -> Double? {
get {
guard case let .dictionary(dict) = self else { return nil }
return dict[key]?.doubleValue
}
set {
guard case var .dictionary(dict) = self else { return }
if let newValue {
dict[key] = .number(newValue)
} else {
dict[key] = .null
}
self = .dictionary(dict)
}
}
public subscript(key: String) -> Int? {
get {
guard case let .dictionary(dict) = self else { return nil }
return dict[key]?.integerValue
}
set {
guard case var .dictionary(dict) = self else { return }
if let newValue {
dict[key] = .number(Double(newValue))
} else {
dict[key] = .null
}
self = .dictionary(dict)
}
}
public subscript(key: String) -> String? {
get {
guard case let .dictionary(dict) = self else { return nil }
return dict[key]?.stringValue
}
set {
guard case var .dictionary(dict) = self else { return }
if let newValue {
dict[key] = .string(newValue)
} else {
dict[key] = .null
}
self = .dictionary(dict)
}
}
@discardableResult
public mutating func removeValue(forKey key: String) -> JSON? {
guard case var .dictionary(dict) = self else { return nil }
let removedValue = dict.removeValue(forKey: key)
self = .dictionary(dict)
return removedValue
}
public subscript(index: Int) -> JSON? {
get {
guard case let .array(arr) = self, index < arr.count
else { return nil }
return arr[index]
}
set {
guard case var .array(arr) = self else { return }
arr[index] = newValue ?? .null
self = .array(arr)
}
}
/// Returns one of: `Array<Any>`, `Dictionary<String, Any>`,
/// `Bool`, `NSNull`, `Double`, or `String`.
public var rawValue: Any {
switch self {
case let .array(array):
array.map(\.rawValue)
case let .boolean(bool):
bool
case let .dictionary(dictionary):
dictionary.mapValues(\.rawValue)
case .null:
NSNull()
case let .number(number):
number
case let .string(string):
string
}
}
/// Returns a `Array<Any>` representation of the receiver.
/// The returned value is suitable for encoding as JSON via
/// `JSONSerialization.data(withJSONObject:options:)`.
public var arrayValue: [Any]? {
guard let json = rawValue as? [Any] else { return nil }
return json
}
/// Returns a `Bool` representation of the receiver if the
/// underlying type is `.boolean`, otherwise `nil`.
public var boolValue: Bool? {
guard let bool = rawValue as? Bool else { return nil }
return bool
}
/// Returns a `Double` representation of the receiver if the
/// underlying type is `.number`, otherwise `nil`.
public var doubleValue: Double? {
guard let double = rawValue as? Double else { return nil }
return double
}
/// Returns a `Dictionary<String, Any>` representation of the receiver.
/// The returned value is suitable for encoding as JSON via
/// `JSONSerialization.data(withJSONObject:options:)`.
public var dictionaryValue: [String: Any]? {
guard let json = rawValue as? [String: Any] else { return nil }
return json
}
/// Returns a `Int` representation of the receiver if the
/// underlying type is `.number`, otherwise `nil`.
public var integerValue: Int? {
if let double = rawValue as? Double {
Int(double)
} else {
nil
}
}
/// Returns a `String` representation of the receiver if the
/// underlying type is `.string`, otherwise `nil`.
public var stringValue: String? {
guard let string = rawValue as? String else { return nil }
return string
}
/// Returns `true` if the receiver is an array, otherwise `false`.
public var isArray: Bool {
guard case .array = self else { return false }
return true
}
/// Returns `true` if the receiver is a JSON object (a "dictionary"),
/// otherwise `false`.
public var isObject: Bool {
guard case .dictionary = self else { return false }
return true
}
public var description: String {
String(describing: rawValue)
}
}
extension JSON:
ExpressibleByArrayLiteral,
ExpressibleByBooleanLiteral,
ExpressibleByDictionaryLiteral,
ExpressibleByFloatLiteral,
ExpressibleByIntegerLiteral,
ExpressibleByNilLiteral,
ExpressibleByStringLiteral
{
public typealias ArrayLiteralElement = Any?
public typealias FloatLiteralType = Double
public typealias IntegerLiteralType = Int
public typealias Key = String
public typealias StringLiteralType = String
public typealias Value = Any?
public init(arrayLiteral elements: Any?...) {
var array = [JSON]()
for value in elements {
guard let v = value.json else { continue }
array.append(v)
}
self = .array(array)
}
public init(booleanLiteral value: BooleanLiteralType) {
self = .boolean(value)
}
public init(dictionaryLiteral elements: (String, Any?)...) {
var dictionary = [String: JSON]()
for (key, value) in elements {
guard let v = value.json else { continue }
dictionary[key] = v
}
self = .dictionary(dictionary)
}
public init(floatLiteral value: Double) {
self = .number(value)
}
public init(integerLiteral value: Int) {
self = .number(Double(value))
}
public init(nilLiteral _: ()) {
self = .null
}
public init(stringLiteral value: String) {
self = .string(value)
}
}
extension JSON: Equatable {
public static func == (_ arg1: JSON, _ arg2: JSON) -> Bool {
switch (arg1, arg2) {
case let (.array(one), .array(two)):
one == two
case let (.boolean(one), .boolean(two)):
one == two
case let (.dictionary(one), .dictionary(two)):
one == two
case let (.number(one), .number(two)):
one == two
case (.null, .null):
true
case let (.string(one), .string(two)):
one == two
default:
false
}
}
}
extension JSON: Codable {
public init(from decoder: Decoder) throws {
let container = try decoder.singleValueContainer()
if container.decodeNil() {
self = .null
} else if let bool = try? container.decode(Bool.self) {
self = .boolean(bool)
} else if let double = try? container.decode(Double.self) {
self = .number(double)
} else if let string = try? container.decode(String.self) {
self = .string(string)
} else if let array = try? container.decode([JSON].self) {
self = .array(array)
} else if let dictionary = try? container.decode([String: JSON].self) {
self = .dictionary(dictionary)
} else {
throw DecodingError.dataCorruptedError(
in: container,
debugDescription: "Invalid JSON value."
)
}
}
public func encode(to encoder: Encoder) throws {
var container = encoder.singleValueContainer()
switch self {
case .null:
try container.encodeNil()
case let .boolean(bool):
try container.encode(bool)
case let .number(double):
try container.encode(double)
case let .string(string):
try container.encode(string)
case let .array(array):
try container.encode(array)
case let .dictionary(dictionary):
try container.encode(dictionary)
}
}
}
public extension JSON? {
subscript(key: String) -> JSON? {
get {
guard case let .dictionary(dict) = self else { return nil }
return dict[key]
}
set {
guard case var .dictionary(dict) = self else { return }
dict[key] = newValue ?? .null
self = .dictionary(dict)
}
}
subscript(key: String) -> [Any?]? {
get {
guard case let .dictionary(dict) = self else { return nil }
return dict[key]?.arrayValue
}
set {
guard case var .dictionary(dict) = self else { return }
if let newValue {
dict[key] = .array(newValue.compactMap(\.json))
} else {
dict[key] = .null
}
self = .dictionary(dict)
}
}
subscript(key: String) -> Bool? {
get {
guard case let .dictionary(dict) = self else { return nil }
return dict[key]?.boolValue
}
set {
guard case var .dictionary(dict) = self else { return }
if let newValue {
dict[key] = .boolean(newValue)
} else {
dict[key] = .null
}
self = .dictionary(dict)
}
}
subscript(key: String) -> [String: Any?]? {
get {
guard case let .dictionary(dict) = self else { return nil }
return dict[key]?.dictionaryValue
}
set {
guard case var .dictionary(dict) = self else { return }
if let newValue {
dict[key] = .dictionary(newValue.compactMapValues(\.json))
} else {
dict[key] = .null
}
self = .dictionary(dict)
}
}
subscript(key: String) -> Double? {
get {
guard case let .dictionary(dict) = self else { return nil }
return dict[key]?.doubleValue
}
set {
guard case var .dictionary(dict) = self else { return }
if let newValue {
dict[key] = .number(newValue)
} else {
dict[key] = .null
}
self = .dictionary(dict)
}
}
subscript(key: String) -> Int? {
get {
guard case let .dictionary(dict) = self else { return nil }
return dict[key]?.integerValue
}
set {
guard case var .dictionary(dict) = self else { return }
if let newValue {
dict[key] = .number(Double(newValue))
} else {
dict[key] = .null
}
self = .dictionary(dict)
}
}
subscript(key: String) -> String? {
get {
guard case let .dictionary(dict) = self else { return nil }
return dict[key]?.stringValue
}
set {
guard case var .dictionary(dict) = self else { return }
if let newValue {
dict[key] = .string(newValue)
} else {
dict[key] = .null
}
self = .dictionary(dict)
}
}
@discardableResult
mutating func removeValue(forKey key: String) -> JSON? {
guard case var .dictionary(dict) = self else { return nil }
let removedValue = dict.removeValue(forKey: key)
self = .dictionary(dict)
return removedValue
}
subscript(index: Int) -> JSON? {
get {
guard case let .array(arr) = self, index < arr.count
else { return nil }
return arr[index]
}
set {
guard case var .array(arr) = self else { return }
arr[index] = newValue ?? .null
self = .array(arr)
}
}
/// Returns a `Array<Any>` representation of the receiver.
/// The returned value is suitable for encoding as JSON via
/// `JSONSerialization.data(withJSONObject:options:)`.
var arrayValue: [Any]? {
guard let json = self?.rawValue as? [Any] else { return nil }
return json
}
/// Returns a `Bool` representation of the receiver if the
/// underlying type is `.boolean`, otherwise `nil`.
var boolValue: Bool? {
guard let bool = self?.rawValue as? Bool else { return nil }
return bool
}
/// Returns a `Double` representation of the receiver if the
/// underlying type is `.number`, otherwise `nil`.
var doubleValue: Double? {
guard let double = self?.rawValue as? Double else { return nil }
return double
}
/// Returns a `Dictionary<String, Any>` representation of the receiver.
/// The returned value is suitable for encoding as JSON via
/// `JSONSerialization.data(withJSONObject:options:)`.
var dictionaryValue: [String: Any]? {
guard let json = self?.rawValue as? [String: Any] else { return nil }
return json
}
/// Returns a `Int` representation of the receiver if the
/// underlying type is `.number`, otherwise `nil`.
var integerValue: Int? {
if let double = self?.rawValue as? Double {
Int(double)
} else {
nil
}
}
/// Returns a `String` representation of the receiver if the
/// underlying type is `.string`, otherwise `nil`.
var stringValue: String? {
guard let string = self?.rawValue as? String else { return nil }
return string
}
/// Returns `true` if the receiver is an array, otherwise `false`.
var isArray: Bool {
guard let self, self.isArray else { return false }
return true
}
/// Returns `true` if the receiver is a JSON object (a "dictionary"),
/// otherwise `false`.
var isObject: Bool {
guard let self, self.isObject else { return false }
return true
}
static func == (_ arg1: JSON, _ arg2: JSON?) -> Bool {
guard let arg2 else { return false }
return arg1 == arg2
}
static func == (_ arg1: JSON?, _ arg2: JSON) -> Bool {
guard let arg1 else { return false }
return arg1 == arg2
}
static func == (_ arg1: String, _ arg2: JSON?) -> Bool {
guard let arg2, case let .string(unwrapped) = arg2
else { return false }
return arg1 == unwrapped
}
static func == (_ arg1: JSON?, _ arg2: String) -> Bool {
guard let arg1, case let .string(unwrapped) = arg1
else { return false }
return arg2 == unwrapped
}
static func == (_: NSNull, _ arg2: JSON?) -> Bool {
guard let arg2 else { return false }
guard case .null = arg2 else { return false }
return true
}
static func == (_ arg1: JSON?, _: NSNull) -> Bool {
guard let arg1 else { return false }
guard case .null = arg1 else { return false }
return true
}
static func == (_ arg1: Int, _ arg2: JSON?) -> Bool {
guard let arg2, case let .number(unwrapped) = arg2
else { return false }
return arg1 == Int(unwrapped)
}
static func == (_ arg1: JSON?, _ arg2: Int) -> Bool {
guard let arg1, case let .number(unwrapped) = arg1
else { return false }
return arg2 == Int(unwrapped)
}
static func == (_ arg1: Double, _ arg2: JSON?) -> Bool {
guard let arg2, case let .number(unwrapped) = arg2
else { return false }
return arg1 == unwrapped
}
static func == (_ arg1: JSON?, _ arg2: Double) -> Bool {
guard let arg1, case let .number(unwrapped) = arg1
else { return false }
return arg2 == unwrapped
}
static func == (_ arg1: Bool, _ arg2: JSON?) -> Bool {
guard let arg2, case let .boolean(unwrapped) = arg2
else { return false }
return arg1 == unwrapped
}
static func == (_ arg1: JSON?, _ arg2: Bool) -> Bool {
guard let arg1, case let .boolean(unwrapped) = arg1
else { return false }
return arg2 == unwrapped
}
}
extension [Any?] {
var json: JSON {
.array(compactMap(\.json))
}
}
public extension [String: Any?] {
var json: JSON {
var dictionary = [String: JSON]()
for (key, value) in self {
guard let v = value.json else { continue }
dictionary[key] = v
}
return .dictionary(dictionary)
}
}
private extension Any? {
var json: JSON? {
guard case let .some(element) = self else { return .null }
switch element {
case let e as [Any?]: return e.json
case let e as [String: Any?]: return e.json
case is NSNull: return .null
case let e as NSNumber where e.isBool: return .boolean(e.boolValue)
case let e as NSNumber: return .number(e.doubleValue)
case let e as String: return .string(e)
// The above cases should catch everything, but, in case they
// don't, we try remaining types here.
case let e as Bool: return .boolean(e)
case let e as Double: return .number(e)
case let e as Float: return .number(Double(e))
case let e as Float32: return .number(Double(e))
case let e as Int: return .number(Double(e))
case let e as Int8: return .number(Double(e))
case let e as Int16: return .number(Double(e))
case let e as Int32: return .number(Double(e))
case let e as Int64: return .number(Double(e))
case let e as UInt: return .number(Double(e))
case let e as UInt8: return .number(Double(e))
case let e as UInt16: return .number(Double(e))
case let e as UInt32: return .number(Double(e))
case let e as UInt64: return .number(Double(e))
case let e as JSON: return e
default: return nil
}
}
}
private extension NSNumber {
var isBool: Bool {
CFBooleanGetTypeID() == CFGetTypeID(self)
}
}