Blame view

Pods/SwiftyJSON/Source/SwiftyJSON.swift 40.6 KB
d774f0637   Trịnh Văn Quân   fisrt comit
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
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
  //  SwiftyJSON.swift
  //
  //  Copyright (c) 2014 - 2017 Ruoyu Fu, Pinglin Tang
  //
  //  Permission is hereby granted, free of charge, to any person obtaining a copy
  //  of this software and associated documentation files (the "Software"), to deal
  //  in the Software without restriction, including without limitation the rights
  //  to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  //  copies of the Software, and to permit persons to whom the Software is
  //  furnished to do so, subject to the following conditions:
  //
  //  The above copyright notice and this permission notice shall be included in
  //  all copies or substantial portions of the Software.
  //
  //  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  //  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  //  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  //  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  //  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  //  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  //  THE SOFTWARE.
  
  import Foundation
  
  // MARK: - Error
  
  ///Error domain
  public let ErrorDomain: String = "SwiftyJSONErrorDomain"
  
  ///Error code
  public let ErrorUnsupportedType: Int = 999
  public let ErrorIndexOutOfBounds: Int = 900
  public let ErrorWrongType: Int = 901
  public let ErrorNotExist: Int = 500
  public let ErrorInvalidJSON: Int = 490
  
  // MARK: - JSON Type
  
  /**
   JSON's type definitions.
  
   See http://www.json.org
   */
  public enum Type :Int{
  
      case number
      case string
      case bool
      case array
      case dictionary
      case null
      case unknown
  }
  
  // MARK: - JSON Base
  public struct JSON {
  
      /**
       Creates a JSON using the data.
  
       - parameter data:  The NSData used to convert to json.Top level object in data is an NSArray or NSDictionary
       - parameter opt:   The JSON serialization reading options. `.AllowFragments` by default.
       - parameter error: The NSErrorPointer used to return the error. `nil` by default.
  
       - returns: The created JSON
       */
      public init(data: Data, options opt: JSONSerialization.ReadingOptions = .allowFragments, error: NSErrorPointer = nil) {
          do {
              let object: Any = try JSONSerialization.jsonObject(with: data, options: opt)
              self.init(jsonObject: object)
          } catch let aError as NSError {
              if error != nil {
                  error?.pointee = aError
              }
              self.init(jsonObject: NSNull())
          }
      }
  
      /**
       Creates a JSON object
       - parameter object: the object
       - note: this does not parse a `String` into JSON, instead use `init(parseJSON: String)`
       - returns: the created JSON object
       */
      public init(_ object: Any) {
          switch object {
          case let object as [JSON] where object.count > 0:
              self.init(array: object)
          case let object as [String: JSON] where object.count > 0:
              self.init(dictionary: object)
          case let object as Data:
              self.init(data: object)
          default:
              self.init(jsonObject: object)
          }
      }
  
      /**
       Parses the JSON string into a JSON object
       - parameter json: the JSON string
       - returns: the created JSON object
       */
      public init(parseJSON jsonString: String) {
          if let data = jsonString.data(using: .utf8) {
              self.init(data)
          } else {
              self.init(NSNull())
          }
      }
  
      /**
       Creates a JSON from JSON string
       - parameter string: Normal json string like '{"a":"b"}'
  
       - returns: The created JSON
       */
      @available(*, deprecated: 3.2, message: "Use instead `init(parseJSON: )`")
      public static func parse(_ json: String) -> JSON {
          return json.data(using: String.Encoding.utf8)
              .flatMap{ JSON(data: $0) } ?? JSON(NSNull())
      }
  
      /**
       Creates a JSON using the object.
  
       - parameter object:  The object must have the following properties: All objects are NSString/String, NSNumber/Int/Float/Double/Bool, NSArray/Array, NSDictionary/Dictionary, or NSNull; All dictionary keys are NSStrings/String; NSNumbers are not NaN or infinity.
  
       - returns: The created JSON
       */
      fileprivate init(jsonObject: Any) {
          self.object = jsonObject
      }
  
      /**
       Creates a JSON from a [JSON]
  
       - parameter jsonArray: A Swift array of JSON objects
  
       - returns: The created JSON
       */
      fileprivate init(array: [JSON]) {
          self.init(array.map { $0.object })
      }
  
      /**
       Creates a JSON from a [String: JSON]
  
       - parameter jsonDictionary: A Swift dictionary of JSON objects
  
       - returns: The created JSON
       */
      fileprivate init(dictionary: [String: JSON]) {
          var newDictionary = [String: Any](minimumCapacity: dictionary.count)
          for (key, json) in dictionary {
              newDictionary[key] = json.object
          }
  
          self.init(newDictionary)
      }
      
      /**
       Merges another JSON into this JSON, whereas primitive values which are not present in this JSON are getting added, 
       present values getting overwritten, array values getting appended and nested JSONs getting merged the same way.
   
       - parameter other: The JSON which gets merged into this JSON
       - throws `ErrorWrongType` if the other JSONs differs in type on the top level.
       */
      public mutating func merge(with other: JSON) throws {
          try self.merge(with: other, typecheck: true)
      }
      
      /**
       Merges another JSON into this JSON and returns a new JSON, whereas primitive values which are not present in this JSON are getting added,
       present values getting overwritten, array values getting appended and nested JSONS getting merged the same way.
       
       - parameter other: The JSON which gets merged into this JSON
       - returns: New merged JSON
       - throws `ErrorWrongType` if the other JSONs differs in type on the top level.
       */
      public func merged(with other: JSON) throws -> JSON {
          var merged = self
          try merged.merge(with: other, typecheck: true)
          return merged
      }
      
      // Private woker function which does the actual merging
      // Typecheck is set to true for the first recursion level to prevent total override of the source JSON
      fileprivate mutating func merge(with other: JSON, typecheck: Bool) throws {
          if self.type == other.type {
              switch self.type {
              case .dictionary:
                  for (key, _) in other {
                      try self[key].merge(with: other[key], typecheck: false)
                  }
              case .array:
                  self = JSON(self.arrayValue + other.arrayValue)
              default:
                  self = other
              }
          } else {
              if typecheck {
                  throw NSError(domain: ErrorDomain, code: ErrorWrongType, userInfo: [NSLocalizedDescriptionKey: "Couldn't merge, because the JSONs differ in type on top level."])
              } else {
                  self = other
              }
          }
      }
  
      /// Private object
      fileprivate var rawArray: [Any] = []
      fileprivate var rawDictionary: [String : Any] = [:]
      fileprivate var rawString: String = ""
      fileprivate var rawNumber: NSNumber = 0
      fileprivate var rawNull: NSNull = NSNull()
      fileprivate var rawBool: Bool = false
      /// Private type
      fileprivate var _type: Type = .null
      /// prviate error
      fileprivate var _error: NSError? = nil
  
      /// Object in JSON
      public var object: Any {
          get {
              switch self.type {
              case .array:
                  return self.rawArray
              case .dictionary:
                  return self.rawDictionary
              case .string:
                  return self.rawString
              case .number:
                  return self.rawNumber
              case .bool:
                  return self.rawBool
              default:
                  return self.rawNull
              }
          }
          set {
              _error = nil
              switch newValue {
              case let number as NSNumber:
                  if number.isBool {
                      _type = .bool
                      self.rawBool = number.boolValue
                  } else {
                      _type = .number
                      self.rawNumber = number
                  }
              case let string as String:
                  _type = .string
                  self.rawString = string
              case _ as NSNull:
                  _type = .null
              case _ as [JSON]:
  				_type = .array
  			case nil:
  				_type = .null
              case let array as [Any]:
                  _type = .array
                  self.rawArray = array
              case let dictionary as [String : Any]:
                  _type = .dictionary
                  self.rawDictionary = dictionary
              default:
                  _type = .unknown
                  _error = NSError(domain: ErrorDomain, code: ErrorUnsupportedType, userInfo: [NSLocalizedDescriptionKey: "It is a unsupported type"])
              }
          }
      }
  
      /// JSON type
      public var type: Type { get { return _type } }
  
      /// Error in JSON
      public var error: NSError? { get { return self._error } }
  
      /// The static null JSON
      @available(*, unavailable, renamed:"null")
      public static var nullJSON: JSON { get { return null } }
      public static var null: JSON { get { return JSON(NSNull()) } }
  }
  
  public enum Index<T: Any>: Comparable
  {
      case array(Int)
      case dictionary(DictionaryIndex<String, T>)
      case null
  
      static public func ==(lhs: Index, rhs: Index) -> Bool {
          switch (lhs, rhs) {
          case (.array(let left), .array(let right)):
              return left == right
          case (.dictionary(let left), .dictionary(let right)):
              return left == right
          case (.null, .null): return true
          default:
              return false
          }
      }
  
      static public func <(lhs: Index, rhs: Index) -> Bool {
          switch (lhs, rhs) {
          case (.array(let left), .array(let right)):
              return left < right
          case (.dictionary(let left), .dictionary(let right)):
              return left < right
          default:
              return false
          }
      }
  }
  
  public typealias JSONIndex = Index<JSON>
  public typealias JSONRawIndex = Index<Any>
  
  
  extension JSON: Collection
  {
  
      public typealias Index = JSONRawIndex
  
      public var startIndex: Index
      {
          switch type
          {
          case .array:
              return .array(rawArray.startIndex)
          case .dictionary:
              return .dictionary(rawDictionary.startIndex)
          default:
              return .null
          }
      }
  
      public var endIndex: Index
      {
          switch type
          {
          case .array:
              return .array(rawArray.endIndex)
          case .dictionary:
              return .dictionary(rawDictionary.endIndex)
          default:
              return .null
          }
      }
  
      public func index(after i: Index) -> Index
      {
          switch i
          {
          case .array(let idx):
              return .array(rawArray.index(after: idx))
          case .dictionary(let idx):
              return .dictionary(rawDictionary.index(after: idx))
          default:
              return .null
          }
  
      }
  
      public subscript (position: Index) -> (String, JSON)
      {
          switch position
          {
          case .array(let idx):
              return (String(idx), JSON(self.rawArray[idx]))
          case .dictionary(let idx):
              let (key, value) = self.rawDictionary[idx]
              return (key, JSON(value))
          default:
              return ("", JSON.null)
          }
      }
  
  
  }
  
  // MARK: - Subscript
  
  /**
   *  To mark both String and Int can be used in subscript.
   */
  public enum JSONKey
  {
      case index(Int)
      case key(String)
  }
  
  public protocol JSONSubscriptType {
      var jsonKey:JSONKey { get }
  }
  
  extension Int: JSONSubscriptType {
      public var jsonKey:JSONKey {
          return JSONKey.index(self)
      }
  }
  
  extension String: JSONSubscriptType {
      public var jsonKey:JSONKey {
          return JSONKey.key(self)
      }
  }
  
  extension JSON {
  
      /// If `type` is `.Array`, return json whose object is `array[index]`, otherwise return null json with error.
      fileprivate subscript(index index: Int) -> JSON {
          get {
              if self.type != .array {
                  var r = JSON.null
                  r._error = self._error ?? NSError(domain: ErrorDomain, code: ErrorWrongType, userInfo: [NSLocalizedDescriptionKey: "Array[\(index)] failure, It is not an array"])
                  return r
              } else if index >= 0 && index < self.rawArray.count {
                  return JSON(self.rawArray[index])
              } else {
                  var r = JSON.null
                  r._error = NSError(domain: ErrorDomain, code:ErrorIndexOutOfBounds , userInfo: [NSLocalizedDescriptionKey: "Array[\(index)] is out of bounds"])
                  return r
              }
          }
          set {
              if self.type == .array {
                  if self.rawArray.count > index && newValue.error == nil {
                      self.rawArray[index] = newValue.object
                  }
              }
          }
      }
  
      /// If `type` is `.Dictionary`, return json whose object is `dictionary[key]` , otherwise return null json with error.
      fileprivate subscript(key key: String) -> JSON {
          get {
              var r = JSON.null
              if self.type == .dictionary {
                  if let o = self.rawDictionary[key] {
                      r = JSON(o)
                  } else {
                      r._error = NSError(domain: ErrorDomain, code: ErrorNotExist, userInfo: [NSLocalizedDescriptionKey: "Dictionary[\"\(key)\"] does not exist"])
                  }
              } else {
                  r._error = self._error ?? NSError(domain: ErrorDomain, code: ErrorWrongType, userInfo: [NSLocalizedDescriptionKey: "Dictionary[\"\(key)\"] failure, It is not an dictionary"])
              }
              return r
          }
          set {
              if self.type == .dictionary && newValue.error == nil {
                  self.rawDictionary[key] = newValue.object
              }
          }
      }
  
      /// If `sub` is `Int`, return `subscript(index:)`; If `sub` is `String`,  return `subscript(key:)`.
      fileprivate subscript(sub sub: JSONSubscriptType) -> JSON {
          get {
              switch sub.jsonKey {
              case .index(let index): return self[index: index]
              case .key(let key): return self[key: key]
              }
          }
          set {
              switch sub.jsonKey {
              case .index(let index): self[index: index] = newValue
              case .key(let key): self[key: key] = newValue
              }
          }
      }
  
      /**
       Find a json in the complex data structures by using array of Int and/or String as path.
  
       - parameter path: The target json's path. Example:
  
       let json = JSON[data]
       let path = [9,"list","person","name"]
       let name = json[path]
  
       The same as: let name = json[9]["list"]["person"]["name"]
  
       - returns: Return a json found by the path or a null json with error
       */
      public subscript(path: [JSONSubscriptType]) -> JSON {
          get {
              return path.reduce(self) { $0[sub: $1] }
          }
          set {
              switch path.count {
              case 0:
                  return
              case 1:
                  self[sub:path[0]].object = newValue.object
              default:
                  var aPath = path; aPath.remove(at: 0)
                  var nextJSON = self[sub: path[0]]
                  nextJSON[aPath] = newValue
                  self[sub: path[0]] = nextJSON
              }
          }
      }
  
      /**
       Find a json in the complex data structures by using array of Int and/or String as path.
  
       - parameter path: The target json's path. Example:
  
       let name = json[9,"list","person","name"]
  
       The same as: let name = json[9]["list"]["person"]["name"]
  
       - returns: Return a json found by the path or a null json with error
       */
      public subscript(path: JSONSubscriptType...) -> JSON {
          get {
              return self[path]
          }
          set {
              self[path] = newValue
          }
      }
  }
  
  // MARK: - LiteralConvertible
  
  extension JSON: Swift.ExpressibleByStringLiteral {
  
      public init(stringLiteral value: StringLiteralType) {
          self.init(value as Any)
      }
  
      public init(extendedGraphemeClusterLiteral value: StringLiteralType) {
          self.init(value as Any)
      }
  
      public init(unicodeScalarLiteral value: StringLiteralType) {
          self.init(value as Any)
      }
  }
  
  extension JSON: Swift.ExpressibleByIntegerLiteral {
  
      public init(integerLiteral value: IntegerLiteralType) {
          self.init(value as Any)
      }
  }
  
  extension JSON: Swift.ExpressibleByBooleanLiteral {
  
      public init(booleanLiteral value: BooleanLiteralType) {
          self.init(value as Any)
      }
  }
  
  extension JSON: Swift.ExpressibleByFloatLiteral {
  
      public init(floatLiteral value: FloatLiteralType) {
          self.init(value as Any)
      }
  }
  
  extension JSON: Swift.ExpressibleByDictionaryLiteral {
      public init(dictionaryLiteral elements: (String, Any)...) {
          let array = elements
          self.init(dictionaryLiteral: array)
      }
  
      public init(dictionaryLiteral elements: [(String, Any)]) {
          let jsonFromDictionaryLiteral: ([String : Any]) -> JSON = { dictionary in
              let initializeElement = Array(dictionary.keys).flatMap { key -> (String, Any)? in
                  if let value = dictionary[key] {
                      return (key, value)
                  }
                  return nil
              }
              return JSON(dictionaryLiteral: initializeElement)
          }
  
          var dict = [String : Any](minimumCapacity: elements.count)
  
          for element in elements {
              let elementToSet: Any
              if let json = element.1 as? JSON {
                  elementToSet = json.object
              } else if let jsonArray = element.1 as? [JSON] {
                  elementToSet = JSON(jsonArray).object
              } else if let dictionary = element.1 as? [String : Any] {
                  elementToSet = jsonFromDictionaryLiteral(dictionary).object
              } else if let dictArray = element.1 as? [[String : Any]] {
                  let jsonArray = dictArray.map { jsonFromDictionaryLiteral($0) }
                  elementToSet = JSON(jsonArray).object
              } else {
                  elementToSet = element.1
              }
              dict[element.0] = elementToSet
          }
  
          self.init(dict)
      }
  }
  
  extension JSON: Swift.ExpressibleByArrayLiteral {
  
      public init(arrayLiteral elements: Any...) {
          self.init(elements as Any)
      }
  }
  
  extension JSON: Swift.ExpressibleByNilLiteral {
  
      @available(*, deprecated, message: "use JSON.null instead. Will be removed in future versions")
      public init(nilLiteral: ()) {
          self.init(NSNull() as Any)
      }
  }
  
  // MARK: - Raw
  
  extension JSON: Swift.RawRepresentable {
  
      public init?(rawValue: Any) {
          if JSON(rawValue).type == .unknown {
              return nil
          } else {
              self.init(rawValue)
          }
      }
  
      public var rawValue: Any {
          return self.object
      }
  
      public func rawData(options opt: JSONSerialization.WritingOptions = JSONSerialization.WritingOptions(rawValue: 0)) throws -> Data {
          guard JSONSerialization.isValidJSONObject(self.object) else {
              throw NSError(domain: ErrorDomain, code: ErrorInvalidJSON, userInfo: [NSLocalizedDescriptionKey: "JSON is invalid"])
          }
  
          return try JSONSerialization.data(withJSONObject: self.object, options: opt)
  	}
  	
  	public func rawString(_ encoding: String.Encoding = .utf8, options opt: JSONSerialization.WritingOptions = .prettyPrinted) -> String? {
  		do {
  			return try _rawString(encoding, options: [.jsonSerialization: opt])
  		} catch {
  			print("Could not serialize object to JSON because:", error.localizedDescription)
  			return nil
  		}
  	}
  
  	public func rawString(_ options: [writtingOptionsKeys: Any]) -> String? {
  		let encoding = options[.encoding] as? String.Encoding ?? String.Encoding.utf8
  		let maxObjectDepth = options[.maxObjextDepth] as? Int ?? 10
  		do {
  			return try _rawString(encoding, options: options, maxObjectDepth: maxObjectDepth)
  		} catch {
  			print("Could not serialize object to JSON because:", error.localizedDescription)
  			return nil
  		}
  	}
  
  	fileprivate func _rawString(
  		_ encoding: String.Encoding = .utf8,
  		options: [writtingOptionsKeys: Any],
  		maxObjectDepth: Int = 10
  	) throws -> String? {
          if (maxObjectDepth < 0) {
              throw NSError(domain: ErrorDomain, code: ErrorInvalidJSON, userInfo: [NSLocalizedDescriptionKey: "Element too deep. Increase maxObjectDepth and make sure there is no reference loop"])
          }
          switch self.type {
  		case .dictionary:
  			do {
  				if !(options[.castNilToNSNull] as? Bool ?? false) {
  					let jsonOption = options[.jsonSerialization] as? JSONSerialization.WritingOptions ?? JSONSerialization.WritingOptions.prettyPrinted
  					let data = try self.rawData(options: jsonOption)
  					return String(data: data, encoding: encoding)
  				}
  
  				guard let dict = self.object as? [String: Any?] else {
  					return nil
  				}
  				let body = try dict.keys.map { key throws -> String in
  					guard let value = dict[key] else {
  						return "\"\(key)\": null"
  					}
  					guard let unwrappedValue = value else {
  						return "\"\(key)\": null"
  					}
  
  					let nestedValue = JSON(unwrappedValue)
  					guard let nestedString = try nestedValue._rawString(encoding, options: options, maxObjectDepth: maxObjectDepth - 1) else {
  						throw NSError(domain: ErrorDomain, code: ErrorInvalidJSON, userInfo: [NSLocalizedDescriptionKey: "Could not serialize nested JSON"])
  					}
  					if nestedValue.type == .string {
  						return "\"\(key)\": \"\(nestedString.replacingOccurrences(of: "\\", with: "\\\\").replacingOccurrences(of: "\"", with: "\\\""))\""
  					} else {
  						return "\"\(key)\": \(nestedString)"
  					}
  				}
  
  				return "{\(body.joined(separator: ","))}"
  			} catch _ {
  				return nil
  			}
  		case .array:
              do {
  				if !(options[.castNilToNSNull] as? Bool ?? false) {
  					let jsonOption = options[.jsonSerialization] as? JSONSerialization.WritingOptions ?? JSONSerialization.WritingOptions.prettyPrinted
  					let data = try self.rawData(options: jsonOption)
  					return String(data: data, encoding: encoding)
  				}
  
                  guard let array = self.object as? [Any?] else {
                      return nil
                  }
                  let body = try array.map { value throws -> String in
                      guard let unwrappedValue = value else {
                          return "null"
                      }
  
                      let nestedValue = JSON(unwrappedValue)
                      guard let nestedString = try nestedValue._rawString(encoding, options: options, maxObjectDepth: maxObjectDepth - 1) else {
                          throw NSError(domain: ErrorDomain, code: ErrorInvalidJSON, userInfo: [NSLocalizedDescriptionKey: "Could not serialize nested JSON"])
                      }
                      if nestedValue.type == .string {
                          return "\"\(nestedString.replacingOccurrences(of: "\\", with: "\\\\").replacingOccurrences(of: "\"", with: "\\\""))\""
                      } else {
                          return nestedString
                      }
                  }
  
                  return "[\(body.joined(separator: ","))]"
              } catch _ {
                  return nil
              }
          case .string:
              return self.rawString
          case .number:
              return self.rawNumber.stringValue
          case .bool:
              return self.rawBool.description
          case .null:
              return "null"
          default:
              return nil
          }
      }
  }
  
  // MARK: - Printable, DebugPrintable
  
  extension JSON: Swift.CustomStringConvertible, Swift.CustomDebugStringConvertible {
  
      public var description: String {
          if let string = self.rawString(options:.prettyPrinted) {
              return string
          } else {
              return "unknown"
          }
      }
  
      public var debugDescription: String {
          return description
      }
  }
  
  // MARK: - Array
  
  extension JSON {
  
      //Optional [JSON]
      public var array: [JSON]? {
          get {
              if self.type == .array {
                  return self.rawArray.map{ JSON($0) }
              } else {
                  return nil
              }
          }
      }
  
      //Non-optional [JSON]
      public var arrayValue: [JSON] {
          get {
              return self.array ?? []
          }
      }
  
      //Optional [Any]
      public var arrayObject: [Any]? {
          get {
              switch self.type {
              case .array:
                  return self.rawArray
              default:
                  return nil
              }
          }
          set {
              if let array = newValue {
                  self.object = array as Any
              } else {
                  self.object = NSNull()
              }
          }
      }
  }
  
  // MARK: - Dictionary
  
  extension JSON {
  
      //Optional [String : JSON]
      public var dictionary: [String : JSON]? {
          if self.type == .dictionary {
              var d = [String : JSON](minimumCapacity: rawDictionary.count)
              for (key, value) in rawDictionary {
                  d[key] = JSON(value)
              }
              return d
          } else {
              return nil
          }
      }
  
      //Non-optional [String : JSON]
      public var dictionaryValue: [String : JSON] {
          return self.dictionary ?? [:]
      }
  
      //Optional [String : Any]
  
      public var dictionaryObject: [String : Any]? {
          get {
              switch self.type {
              case .dictionary:
                  return self.rawDictionary
              default:
                  return nil
              }
          }
          set {
              if let v = newValue {
                  self.object = v as Any
              } else {
                  self.object = NSNull()
              }
          }
      }
  }
  
  // MARK: - Bool
  
  extension JSON { // : Swift.Bool
  
      //Optional bool
      public var bool: Bool? {
          get {
              switch self.type {
              case .bool:
                  return self.rawBool
              default:
                  return nil
              }
          }
          set {
              if let newValue = newValue {
                  self.object = newValue as Bool
              } else {
                  self.object = NSNull()
              }
          }
      }
  
      //Non-optional bool
      public var boolValue: Bool {
          get {
              switch self.type {
              case .bool:
                  return self.rawBool
              case .number:
                  return self.rawNumber.boolValue
              case .string:
                  return ["true", "y", "t"].contains() { (truthyString) in
                      return self.rawString.caseInsensitiveCompare(truthyString) == .orderedSame
                  }
              default:
                  return false
              }
          }
          set {
              self.object = newValue
          }
      }
  }
  
  // MARK: - String
  
  extension JSON {
  
      //Optional string
      public var string: String? {
          get {
              switch self.type {
              case .string:
                  return self.object as? String
              default:
                  return nil
              }
          }
          set {
              if let newValue = newValue {
                  self.object = NSString(string:newValue)
              } else {
                  self.object = NSNull()
              }
          }
      }
  
      //Non-optional string
      public var stringValue: String {
          get {
              switch self.type {
              case .string:
                  return self.object as? String ?? ""
              case .number:
                  return self.rawNumber.stringValue
              case .bool:
                  return (self.object as? Bool).map { String($0) } ?? ""
              default:
                  return ""
              }
          }
          set {
              self.object = NSString(string:newValue)
          }
      }
  }
  
  // MARK: - Number
  extension JSON {
  
      //Optional number
      public var number: NSNumber? {
          get {
              switch self.type {
              case .number:
                  return self.rawNumber
              case .bool:
                  return NSNumber(value: self.rawBool ? 1 : 0)
              default:
                  return nil
              }
          }
          set {
              self.object = newValue ?? NSNull()
          }
      }
  
      //Non-optional number
      public var numberValue: NSNumber {
          get {
              switch self.type {
              case .string:
                  let decimal = NSDecimalNumber(string: self.object as? String)
                  if decimal == NSDecimalNumber.notANumber {  // indicates parse error
                      return NSDecimalNumber.zero
                  }
                  return decimal
              case .number:
                  return self.object as? NSNumber ?? NSNumber(value: 0)
              case .bool:
                  return NSNumber(value: self.rawBool ? 1 : 0)
              default:
                  return NSNumber(value: 0.0)
              }
          }
          set {
              self.object = newValue
          }
      }
  }
  
  //MARK: - Null
  extension JSON {
  
      public var null: NSNull? {
          get {
              switch self.type {
              case .null:
                  return self.rawNull
              default:
                  return nil
              }
          }
          set {
              self.object = NSNull()
          }
      }
      public func exists() -> Bool{
          if let errorValue = error, errorValue.code == ErrorNotExist ||
              errorValue.code == ErrorIndexOutOfBounds ||
              errorValue.code == ErrorWrongType {
                  return false
          }
          return true
      }
  }
  
  //MARK: - URL
  extension JSON {
  
      //Optional URL
      public var url: URL? {
          get {
              switch self.type {
              case .string:
                  // Check for existing percent escapes first to prevent double-escaping of % character
                  if let _ = self.rawString.range(of: "%[0-9A-Fa-f]{2}", options: .regularExpression, range: nil, locale: nil) {
                      return Foundation.URL(string: self.rawString)
                  } else if let encodedString_ = self.rawString.addingPercentEncoding(withAllowedCharacters: CharacterSet.urlQueryAllowed) {
                      // We have to use `Foundation.URL` otherwise it conflicts with the variable name.
                      return Foundation.URL(string: encodedString_)
                  } else {
                      return nil
                  }
              default:
                  return nil
              }
          }
          set {
              self.object = newValue?.absoluteString ?? NSNull()
          }
      }
  }
  
  // MARK: - Int, Double, Float, Int8, Int16, Int32, Int64
  
  extension JSON {
  
      public var double: Double? {
          get {
              return self.number?.doubleValue
          }
          set {
              if let newValue = newValue {
                  self.object = NSNumber(value: newValue)
              } else {
                  self.object = NSNull()
              }
          }
      }
  
      public var doubleValue: Double {
          get {
              return self.numberValue.doubleValue
          }
          set {
              self.object = NSNumber(value: newValue)
          }
      }
  
      public var float: Float? {
          get {
              return self.number?.floatValue
          }
          set {
              if let newValue = newValue {
                  self.object = NSNumber(value: newValue)
              } else {
                  self.object = NSNull()
              }
          }
      }
  
      public var floatValue: Float {
          get {
              return self.numberValue.floatValue
          }
          set {
              self.object = NSNumber(value: newValue)
          }
      }
  
      public var int: Int?
      {
          get
          {
              return self.number?.intValue
          }
          set
          {
              if let newValue = newValue
              {
                  self.object = NSNumber(value: newValue)
              } else
              {
                  self.object = NSNull()
              }
          }
      }
  
      public var intValue: Int {
          get {
              return self.numberValue.intValue
          }
          set {
              self.object = NSNumber(value: newValue)
          }
      }
  
      public var uInt: UInt? {
          get {
              return self.number?.uintValue
          }
          set {
              if let newValue = newValue {
                  self.object = NSNumber(value: newValue)
              } else {
                  self.object = NSNull()
              }
          }
      }
  
      public var uIntValue: UInt {
          get {
              return self.numberValue.uintValue
          }
          set {
              self.object = NSNumber(value: newValue)
          }
      }
  
      public var int8: Int8? {
          get {
              return self.number?.int8Value
          }
          set {
              if let newValue = newValue {
                  self.object = NSNumber(value: Int(newValue))
              } else {
                  self.object =  NSNull()
              }
          }
      }
  
      public var int8Value: Int8 {
          get {
              return self.numberValue.int8Value
          }
          set {
              self.object = NSNumber(value: Int(newValue))
          }
      }
  
      public var uInt8: UInt8? {
          get {
              return self.number?.uint8Value
          }
          set {
              if let newValue = newValue {
                  self.object = NSNumber(value: newValue)
              } else {
                  self.object =  NSNull()
              }
          }
      }
  
      public var uInt8Value: UInt8 {
          get {
              return self.numberValue.uint8Value
          }
          set {
              self.object = NSNumber(value: newValue)
          }
      }
  
      public var int16: Int16? {
          get {
              return self.number?.int16Value
          }
          set {
              if let newValue = newValue {
                  self.object = NSNumber(value: newValue)
              } else {
                  self.object =  NSNull()
              }
          }
      }
  
      public var int16Value: Int16 {
          get {
              return self.numberValue.int16Value
          }
          set {
              self.object = NSNumber(value: newValue)
          }
      }
  
      public var uInt16: UInt16? {
          get {
              return self.number?.uint16Value
          }
          set {
              if let newValue = newValue {
                  self.object = NSNumber(value: newValue)
              } else {
                  self.object =  NSNull()
              }
          }
      }
  
      public var uInt16Value: UInt16 {
          get {
              return self.numberValue.uint16Value
          }
          set {
              self.object = NSNumber(value: newValue)
          }
      }
  
      public var int32: Int32? {
          get {
              return self.number?.int32Value
          }
          set {
              if let newValue = newValue {
                  self.object = NSNumber(value: newValue)
              } else {
                  self.object =  NSNull()
              }
          }
      }
  
      public var int32Value: Int32 {
          get {
              return self.numberValue.int32Value
          }
          set {
              self.object = NSNumber(value: newValue)
          }
      }
  
      public var uInt32: UInt32? {
          get {
              return self.number?.uint32Value
          }
          set {
              if let newValue = newValue {
                  self.object = NSNumber(value: newValue)
              } else {
                  self.object =  NSNull()
              }
          }
      }
  
      public var uInt32Value: UInt32 {
          get {
              return self.numberValue.uint32Value
          }
          set {
              self.object = NSNumber(value: newValue)
          }
      }
  
      public var int64: Int64? {
          get {
              return self.number?.int64Value
          }
          set {
              if let newValue = newValue {
                  self.object = NSNumber(value: newValue)
              } else {
                  self.object =  NSNull()
              }
          }
      }
  
      public var int64Value: Int64 {
          get {
              return self.numberValue.int64Value
          }
          set {
              self.object = NSNumber(value: newValue)
          }
      }
  
      public var uInt64: UInt64? {
          get {
              return self.number?.uint64Value
          }
          set {
              if let newValue = newValue {
                  self.object = NSNumber(value: newValue)
              } else {
                  self.object =  NSNull()
              }
          }
      }
  
      public var uInt64Value: UInt64 {
          get {
              return self.numberValue.uint64Value
          }
          set {
              self.object = NSNumber(value: newValue)
          }
      }
  }
  
  //MARK: - Comparable
  extension JSON : Swift.Comparable {}
  
  public func ==(lhs: JSON, rhs: JSON) -> Bool {
  
      switch (lhs.type, rhs.type) {
      case (.number, .number):
          return lhs.rawNumber == rhs.rawNumber
      case (.string, .string):
          return lhs.rawString == rhs.rawString
      case (.bool, .bool):
          return lhs.rawBool == rhs.rawBool
      case (.array, .array):
          return lhs.rawArray as NSArray == rhs.rawArray as NSArray
      case (.dictionary, .dictionary):
          return lhs.rawDictionary as NSDictionary == rhs.rawDictionary as NSDictionary
      case (.null, .null):
          return true
      default:
          return false
      }
  }
  
  public func <=(lhs: JSON, rhs: JSON) -> Bool {
  
      switch (lhs.type, rhs.type) {
      case (.number, .number):
          return lhs.rawNumber <= rhs.rawNumber
      case (.string, .string):
          return lhs.rawString <= rhs.rawString
      case (.bool, .bool):
          return lhs.rawBool == rhs.rawBool
      case (.array, .array):
          return lhs.rawArray as NSArray == rhs.rawArray as NSArray
      case (.dictionary, .dictionary):
          return lhs.rawDictionary as NSDictionary == rhs.rawDictionary as NSDictionary
      case (.null, .null):
          return true
      default:
          return false
      }
  }
  
  public func >=(lhs: JSON, rhs: JSON) -> Bool {
  
      switch (lhs.type, rhs.type) {
      case (.number, .number):
          return lhs.rawNumber >= rhs.rawNumber
      case (.string, .string):
          return lhs.rawString >= rhs.rawString
      case (.bool, .bool):
          return lhs.rawBool == rhs.rawBool
      case (.array, .array):
          return lhs.rawArray as NSArray == rhs.rawArray as NSArray
      case (.dictionary, .dictionary):
          return lhs.rawDictionary as NSDictionary == rhs.rawDictionary as NSDictionary
      case (.null, .null):
          return true
      default:
          return false
      }
  }
  
  public func >(lhs: JSON, rhs: JSON) -> Bool {
  
      switch (lhs.type, rhs.type) {
      case (.number, .number):
          return lhs.rawNumber > rhs.rawNumber
      case (.string, .string):
          return lhs.rawString > rhs.rawString
      default:
          return false
      }
  }
  
  public func <(lhs: JSON, rhs: JSON) -> Bool {
  
      switch (lhs.type, rhs.type) {
      case (.number, .number):
          return lhs.rawNumber < rhs.rawNumber
      case (.string, .string):
          return lhs.rawString < rhs.rawString
      default:
          return false
      }
  }
  
  private let trueNumber = NSNumber(value: true)
  private let falseNumber = NSNumber(value: false)
  private let trueObjCType = String(cString: trueNumber.objCType)
  private let falseObjCType = String(cString: falseNumber.objCType)
  
  // MARK: - NSNumber: Comparable
  
  extension NSNumber {
      var isBool:Bool {
          get {
              let objCType = String(cString: self.objCType)
              if (self.compare(trueNumber) == .orderedSame && objCType == trueObjCType) || (self.compare(falseNumber) == .orderedSame && objCType == falseObjCType){
                  return true
              } else {
                  return false
              }
          }
      }
  }
  
  func ==(lhs: NSNumber, rhs: NSNumber) -> Bool {
      switch (lhs.isBool, rhs.isBool) {
      case (false, true):
          return false
      case (true, false):
          return false
      default:
          return lhs.compare(rhs) == .orderedSame
      }
  }
  
  func !=(lhs: NSNumber, rhs: NSNumber) -> Bool {
      return !(lhs == rhs)
  }
  
  func <(lhs: NSNumber, rhs: NSNumber) -> Bool {
  
      switch (lhs.isBool, rhs.isBool) {
      case (false, true):
          return false
      case (true, false):
          return false
      default:
          return lhs.compare(rhs) == .orderedAscending
      }
  }
  
  func >(lhs: NSNumber, rhs: NSNumber) -> Bool {
  
      switch (lhs.isBool, rhs.isBool) {
      case (false, true):
          return false
      case (true, false):
          return false
      default:
          return lhs.compare(rhs) == ComparisonResult.orderedDescending
      }
  }
  
  func <=(lhs: NSNumber, rhs: NSNumber) -> Bool {
  
      switch (lhs.isBool, rhs.isBool) {
      case (false, true):
          return false
      case (true, false):
          return false
      default:
          return lhs.compare(rhs) != .orderedDescending
      }
  }
  
  func >=(lhs: NSNumber, rhs: NSNumber) -> Bool {
  
      switch (lhs.isBool, rhs.isBool) {
      case (false, true):
          return false
      case (true, false):
          return false
      default:
          return lhs.compare(rhs) != .orderedAscending
      }
  }
  
  public enum writtingOptionsKeys {
  	case jsonSerialization
  	case castNilToNSNull
  	case maxObjextDepth
  	case encoding
  }