-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMagic.swift
More file actions
301 lines (285 loc) · 6.92 KB
/
Magic.swift
File metadata and controls
301 lines (285 loc) · 6.92 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
import Foundation
public protocol JSONKey {
var jkey: String {get}
}
public protocol MJConvertible {
var mj: MagicJSON {get}
}
extension String: JSONKey {
public var jkey: String {
return self
}
}
public protocol Initable {
init()
}
extension Dictionary: MJConvertible where Key: JSONKey {
public var mj: MagicJSON {
return .dict(self.toStringKey())
}
}
public protocol HashableJSONKey {
func toStringKey() -> [String: Any]
}
extension Dictionary: HashableJSONKey where Key: JSONKey {
public func toStringKey() -> [String: Any] {
var d = [String: Any]()
var nd: [Key: Any?] = self
nd = nd.mapValues { v in
guard let v = v else {
return MJ.nullString
}
return v
}
for k in nd.keys {
let v = nd[k]!
let s = k.jkey
switch v {
case let u as [Key: Any?]:
d[s] = u.toStringKey()
default:
d[s] = v
}
}
return d
}
}
public typealias MJ = MagicJSON
public enum MagicJSON {
public static var nullString = "null"
case arr([Any]), dict([String: Any]), empty, null, raw(Any)
}
extension MagicJSON: ExpressibleByArrayLiteral {
public typealias ArrayLiteralElement = Any
public init(arrayLiteral elements: ArrayLiteralElement...) {
self.init(elements)
}
}
extension MagicJSON: ExpressibleByStringLiteral {
public typealias StringLiteralType = String
public init(stringLiteral value: StringLiteralType) {
self.init(value)
}
}
extension MagicJSON: ExpressibleByIntegerLiteral {
public typealias IntegerLiteralType = Int
public init(integerLiteral value: IntegerLiteralType) {
self.init(value)
}
}
extension MagicJSON: ExpressibleByFloatLiteral {
public typealias FloatLiteralType = Double
public init(floatLiteral value: FloatLiteralType) {
self.init(value)
}
}
extension MagicJSON: ExpressibleByBooleanLiteral {
public typealias BooleanLiteralType = Bool
public init(booleanLiteral value: BooleanLiteralType) {
self.init(value)
}
}
public extension MagicJSON {
init(_ jd: Any?) {
guard let jd = jd else {
self = .null
return
}
switch jd {
case let u as [Any]:
self = .arr(u)
case let u as [String: Any]:
self = .dict(u.toStringKey())
case let u as HashableJSONKey:
self = .dict(u.toStringKey())
case let u as MJ:
self = u
default:
self = .raw(jd)
}
}
init() {
self = .empty
}
init(data: Data) {
let json = try? JSONSerialization.jsonObject(with: data, options: [])
self.init(json)
}
subscript<T>(_ k: T) -> MagicJSON where T: JSONKey {
get {
switch self {
case .dict(let d):
return MagicJSON(d[k.jkey])
default:
return MagicJSON.null
}
}
set {
switch self {
case .dict(var d):
if case .null = newValue {
d[k.jkey] = nil
} else {
d[k.jkey] = newValue
}
self = .dict(d)
default:
break
}
}
}
subscript(_ idx: Int) -> MagicJSON {
get {
switch self {
case .arr(let arr):
guard 0 ..< arr.count ~= idx else {
return MagicJSON.null
}
return MagicJSON(arr[idx])
default:
return MagicJSON.null
}
}
set {
switch self {
case .arr(var arr):
guard 0 ..< arr.count ~= idx else {
return
}
arr[idx] = newValue
self = .arr(arr)
default:
break
}
}
}
var stringValue: String {
switch self {
case .raw(let u):
return u as? String ?? String(describing: u)
default:
return ""
}
}
var intValue: Int {
switch self {
case .raw(let u):
return u as? Int ?? 0
default:
return 0
}
}
var floatValue: Float {
switch self {
case .raw(let u):
return u as? Float ?? 0
default:
return 0
}
}
var doubleValue: Double {
switch self {
case .raw(let u):
return u as? Double ?? 0
default:
return 0
}
}
var string: String? {
switch self {
case .raw(let u):
return String(describing: u)
default:
return nil
}
}
var int: Int? {
switch self {
case .raw(let u):
return u as? Int
default:
return nil
}
}
var float: Float? {
switch self {
case .raw(let u):
return u as? Float
default:
return nil
}
}
var double: Double? {
switch self {
case .raw(let u):
return u as? Double
default:
return nil
}
}
var arrayValue: [MagicJSON] {
switch self {
case .arr(let u):
return u.map {MagicJSON($0)}
default:
return []
}
}
var dictValue: [String: MagicJSON] {
switch self {
case .dict(let u):
return u.mapValues {MagicJSON($0)}
default:
return [:]
}
}
var data: Data? {
return try? JSONSerialization.data(withJSONObject: jsonObject, options: [.prettyPrinted])
}
var jsonObject: Any {
switch self {
case .arr(let a):
return a.map { MJ($0).jsonObject}
case .dict(let d):
return d.mapValues {MJ($0).jsonObject}
case .raw(let r):
return r
case .null:
return MJ.nullString
default:
return [String: String]()
}
}
func val<T>() -> T where T: Initable {
switch self {
case .raw(let v):
return v as? T ?? T()
default:
return T()
}
}
func optional<T>() -> T? {
switch self {
case .raw(let v):
return v as? T
default:
return nil
}
}
}
extension MagicJSON: CustomStringConvertible {
public var description: String {
switch self {
case .arr(let a):
return String(describing: a)
case .dict(let d):
return String(describing: d)
case .empty:
return "empty"
case .null:
return MJ.nullString
case .raw(let u):
return String(describing: u)
}
}
}