-
Notifications
You must be signed in to change notification settings - Fork 108
Expand file tree
/
Copy pathJSON.swift
More file actions
577 lines (510 loc) · 17.9 KB
/
Copy pathJSON.swift
File metadata and controls
577 lines (510 loc) · 17.9 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
//
// JSON.swift
// Segment-Tests
//
// Created by Brandon Sneed on 12/2/20.
//
import Foundation
import JSONSafeEncoding
extension JSONDecoder {
enum JSONDecodingError: Error {
case couldNotDecodeDate(String)
}
static var `default`: JSONDecoder {
let d = JSONDecoder()
d.dateDecodingStrategy = .custom({ decoder throws -> Date in
let stringDate = try decoder.singleValueContainer().decode(String.self)
guard let date = stringDate.iso8601() else {
throw JSONDecodingError.couldNotDecodeDate(stringDate)
}
return date
})
return d
}
}
extension JSONSafeEncoder {
static var `default`: JSONSafeEncoder {
let e = JSONSafeEncoder()
e.dateEncodingStrategy = .custom({ date, encoder in
let stringDate = date.iso8601()
var container = encoder.singleValueContainer()
try container.encode(stringDate)
})
e.nonConformingFloatEncodingStrategy = JSON.jsonNonConformingNumberStrategy
return e
}
}
// MARK: - JSON Definition
public enum JSON: Equatable {
case null
case bool(Bool)
case number(Decimal)
case string(String)
case array([JSON])
case object([String: JSON])
static var jsonNonConformingNumberStrategy: JSONSafeEncoder.NonConformingFloatEncodingStrategy = .zero
internal enum JSONError: Error {
case unknown
case nonJSONType(type: String)
case incorrectType
}
public init(_ object: [String: Any]) throws {
self = .object(try object.mapValues(JSON.init))
}
public init?(nilOrObject object: [String: Any]?) throws {
guard let object = object else { return nil }
try self.init(object)
}
// For Value types
public init<T: Encodable>(with value: T) throws {
let encoder = JSONSafeEncoder.default
let json = try encoder.encode(value)
let output = try JSONSerialization.jsonObject(with: json, options: .fragmentsAllowed)
try self.init(output)
}
// For primitives??
public init(_ value: Any) throws {
switch value {
// handle NS values
case _ as NSNull:
self = .null
case let number as NSNumber:
// need to see if it's a bool or not
if number.isBool() {
self = .bool(number.boolValue)
} else {
self = .number(number.decimalValue)
}
// handle swift types
case Optional<Any>.none:
self = .null
case let date as Date:
self = .string(date.iso8601())
case let url as URL:
self = .string(url.absoluteString)
case let string as String:
self = .string(string)
case let bool as Bool:
self = .bool(bool)
case let aSet as Set<AnyHashable>:
self = .array(try aSet.map(JSON.init))
case let array as Array<Any>:
self = .array(try array.map(JSON.init))
case let object as [String: Any]:
self = .object(try object.mapValues(JSON.init))
case let json as JSON:
self = json
case let codable as Codable:
self = try Self.init(with: codable)
// we don't work with whatever is being supplied
default:
throw JSONError.nonJSONType(type: "\(value.self)")
}
}
}
// MARK: - Codable conformance
extension JSON: Codable {
public func encode(to encoder: Encoder) throws {
var container = encoder.singleValueContainer()
switch self {
case .null:
try container.encodeNil()
case let .bool(bool):
try container.encode(bool)
case let .number(number):
try container.encode(number)
case let .string(string):
try container.encode(string)
case let .array(array):
try container.encode(array)
case let .object(object):
try container.encode(object)
}
}
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 = .bool(bool)
} else if let number = try? container.decode(Decimal.self) {
self = .number(number)
} 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 object = try? container.decode([String: JSON].self) {
self = .object(object)
} else {
throw DecodingError.dataCorruptedError(in: container, debugDescription: "Invalid JSON value!")
}
}
}
extension Encodable {
public func prettyPrint() -> String {
return toString(pretty: true)
}
public func toString() -> String {
return toString(pretty: false)
}
public func toString(pretty: Bool) -> String {
var returnString = ""
do {
let encoder = JSONSafeEncoder.default
if pretty {
encoder.outputFormatting = .prettyPrinted
}
let json = try encoder.encode(self)
if let printed = String(data: json, encoding: .utf8) {
returnString = printed
}
} catch {
returnString = error.localizedDescription
}
return returnString
}
}
// MARK: - Value Extraction & Conformance
extension JSON {
private func rawValue() -> Any {
var result: Any? = nil
switch self {
case .null:
result = NSNull()
case .bool(let value):
result = value
case .number(let value):
// automatic type conversion between number types
// fails if this isn't typecast to NSDecimalNumber first.
result = value as NSDecimalNumber
case .string(let value):
result = value
case .array(let value):
result = value.map { item in
return item.rawValue()
}
case .object(let value):
result = value.mapValues { item in
return item.rawValue()
}
}
return result as Any
}
public func codableValue<T: Decodable>() -> T? {
var result: T? = nil
if let dict = dictionaryValue, let jsonData = try? JSONSerialization.data(withJSONObject: dict) {
do {
result = try JSONDecoder.default.decode(T.self, from: jsonData)
} catch {
print(error)
}
}
return result
}
public var boolValue: Bool? {
switch self {
case .bool(let value):
return value
default:
return nil
}
}
public var decimalValue: Decimal? {
switch self {
case .number(let value):
return value
default:
return nil
}
}
public var intValue: Int? {
switch self {
case .number(let value):
return (value as NSDecimalNumber).intValue
default:
return nil
}
}
public var uintValue: UInt? {
switch self {
case .number(let value):
return (value as NSDecimalNumber).uintValue
default:
return nil
}
}
public var floatValue: Float? {
switch self {
case .number(let value):
return (value as NSDecimalNumber).floatValue
default:
return nil
}
}
public var doubleValue: Double? {
switch self {
case .number(let value):
return (value as NSDecimalNumber).doubleValue
default:
return nil
}
}
public var stringValue: String? {
switch self {
case .string(let value):
return value
default:
return nil
}
}
public var arrayValue: [Any]? {
switch self {
case .array(let value):
let result = value.map { item in
return item.rawValue()
}
return result
default:
return nil
}
}
public var dictionaryValue: [String: Any]? {
switch self {
case .object(let value):
let result = value.mapValues { item in
return item.rawValue()
}
return result
default:
return nil
}
}
}
// MARK: - Mutation
extension JSON {
/// Maps keys supplied, in the format of ["Old": "New"]. Gives an optional value transformer that can be used to transform values based on the final key name.
/// - Parameters:
/// - keys: A dictionary containing key mappings, in the format of ["Old": "New"].
/// - valueTransform: An optional value transform closure. Key represents the new key name.
///
/// - Returns: A new JSON object with the specified changes.
/// - Throws: This method will throw if transformation or JSON cannot be properly completed.
public func mapTransform(_ keys: [String: String], valueTransform: ((_ key: String, _ value: Any) -> Any)? = nil) throws -> JSON {
guard let dict = self.dictionaryValue else { return self }
let mapped = try dict.mapTransform(keys, valueTransform: valueTransform)
let result = try JSON(mapped)
return result
}
/// Adds a new value to an array and returns a new JSON object. Function will throw if value cannot be serialized.
/// - Parameters:
/// - value: Value to add to the JSON array.
///
/// - Returns: A new JSON array with the supplied value added.
/// - Throws: This method throws when a value is added and unable to be serialized.
public func add(value: Any) throws -> JSON? {
var result: JSON? = nil
switch self {
case .array:
var newArray = [Any]()
if let existing = arrayValue {
newArray.append(contentsOf: existing)
}
newArray.append(value)
result = try JSON(newArray)
default:
throw JSONError.incorrectType
}
return result
}
/// Adds a new key, value pair to and returns a new JSON object. Function will throw if value cannot be serialized.
/// - Parameters:
/// - value: Value to add to the JSON array.
/// - forKey: The key name of the given value.
///
/// - Returns: A new JSON object with the supplied Key/Value added.
/// - Throws: This method throws when a value is added and unable to be serialized.
public func add(value: Any, forKey key: String) throws -> JSON? {
var result: JSON? = nil
switch self {
case .object:
var newObject = [String: Any]()
if let existing = dictionaryValue {
newObject = existing
}
newObject[key] = value
result = try JSON(newObject)
default:
throw JSONError.incorrectType
}
return result
}
/// Removes the key and associated value pair from this JSON object.
/// - Parameters:
/// - key: The key of the value to be removed.
///
/// - Returns: A new JSON object with the specified key and it's associated value removed.
/// - Throws: This method throws when after modification, it is unable to be serialized.
public func remove(key: String) throws -> JSON? {
var result: JSON? = nil
switch self {
case .object:
var newObject = [String: Any]()
if let existing = dictionaryValue {
newObject = existing
}
newObject.removeValue(forKey: key)
result = try JSON(newObject)
default:
throw JSONError.incorrectType
}
return result
}
/// Directly access a specific index in the JSON array.
public subscript(index: Int) -> JSON? {
get {
switch self {
case .array(let value):
if index < value.count {
let v = value[index]
return v
}
default:
break
}
return nil
}
}
/// Directly access a key within the JSON object.
public subscript(key: String) -> JSON? {
get {
switch self {
case .object(let value):
return value[key]
default:
break
}
return nil
}
}
/// Directly access or set a value within the JSON object using a key path.
public subscript<T: Codable>(keyPath keyPath: JSONKeyPath) -> T? {
get {
var result: T? = nil
switch self {
case .object:
var value: Any? = nil
if let dict = dictionaryValue {
value = dict[keyPath: keyPath]
if let v = value as? [String: Any] {
if let jsonData = try? JSONSerialization.data(withJSONObject: v) {
do {
result = try JSONDecoder.default.decode(T.self, from: jsonData)
} catch {
Analytics.segmentLog(message: "Unable to decode object (\(keyPath)) to a Codable: \(error)", kind: .error)
}
}
if result == nil {
result = v as? T
}
} else {
result = value as? T
}
}
default:
break
}
return result
}
set(newValue) {
switch self {
case .object:
if var dict: [String: Any] = dictionaryValue {
var json: JSON? = try? JSON(newValue as Any)
if json == nil {
json = try? JSON(with: newValue)
}
if let json = json {
dict[keyPath: keyPath] = json
if let newSelf = try? JSON(dict) {
self = newSelf
}
}
}
default:
break
}
}
}
/// Directly access a value within the JSON object using a key path.
/// - Parameters:
/// - forKeyPath: The keypath within the object to retrieve. eg: `context.device.ip`
///
/// - Returns: The value as typed, or nil.
public func value<T: Codable>(forKeyPath keyPath: JSONKeyPath) -> T? {
return self[keyPath: keyPath]
}
/// Directly access a value within the JSON object using a key path.
/// - Parameters:
/// - forKeyPath: The keypath within the object to set. eg: `context.device.ip`
public mutating func setValue<T: Codable>(_ value: T?, forKeyPath keyPath: JSONKeyPath) {
self[keyPath: keyPath] = value
}
}
// MARK: - Helpers
extension Dictionary where Key == String, Value == Any {
public func mapTransform(_ keys: [String: String], valueTransform: ((_ key: Key, _ value: Value) -> Any)? = nil) throws -> [Key: Value] {
let mapped = Dictionary(uniqueKeysWithValues: self.map { key, value -> (Key, Value) in
var newKey = key
var newValue = value
// does this key have a mapping?
if keys.keys.contains(key) {
if let mappedKey = keys[key] {
// if so, lets change the key to the new value.
newKey = mappedKey
}
}
// is this value a dictionary?
if let dictValue = value as? [Key: Value] {
if let r = try? dictValue.mapTransform(keys, valueTransform: valueTransform) {
// if so, lets recurse...
newValue = r
}
} else if let arrayValue = value as? [Value] {
// if it's an array, we need to see if any dictionaries are within and process
// those as well.
newValue = arrayValue.map { item -> Value in
var newValue = item
if let dictValue = item as? [Key: Value] {
if let r = try? dictValue.mapTransform(keys, valueTransform: valueTransform) {
newValue = r
}
}
return newValue
}
}
if !(newValue is [Key: Value]), let transform = valueTransform {
// it's not a dictionary so apply our transform.
// note: if it's an array, we've processed any dictionaries inside
// already, but this gives the opportunity to apply a transform to the other
// items in the array that weren't dictionaries.
newValue = transform(newKey, newValue)
}
return (newKey, newValue)
})
return mapped
}
}
fileprivate extension NSNumber {
static let trueValue = NSNumber(value: true)
static let trueObjCType = trueValue.objCType
static let falseValue = NSNumber(value: false)
static let falseObjCType = falseValue.objCType
func isBool() -> Bool {
let type = self.objCType
if (compare(NSNumber.trueValue) == .orderedSame && type == NSNumber.trueObjCType) ||
(compare(NSNumber.falseValue) == .orderedSame && type == NSNumber.falseObjCType) {
return true
}
return false
}
}