forked from apple/swift-openapi-runtime
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathOpenAPIValue.swift
More file actions
457 lines (407 loc) · 15.5 KB
/
OpenAPIValue.swift
File metadata and controls
457 lines (407 loc) · 15.5 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
//===----------------------------------------------------------------------===//
//
// This source file is part of the SwiftOpenAPIGenerator open source project
//
// Copyright (c) 2023 Apple Inc. and the SwiftOpenAPIGenerator project authors
// Licensed under Apache License v2.0
//
// See LICENSE.txt for license information
// See CONTRIBUTORS.txt for the list of SwiftOpenAPIGenerator project authors
//
// SPDX-License-Identifier: Apache-2.0
//
//===----------------------------------------------------------------------===//
/// A container for a value represented by JSON Schema.
///
/// Contains an untyped JSON value. In some cases, the structure of the data
/// may not be known in advance and must be dynamically iterated at decoding
/// time. This is an advanced feature that requires extra validation of
/// the input before use, and is at a higher risk of a security vulnerability.
///
/// Supported nested Swift types:
/// - `nil`
/// - `String`
/// - `Int`
/// - `Double`
/// - `Bool`
/// - `[Any?]`
/// - `[String: Any?]`
///
/// Where the element type of the array, and the value type of the dictionary
/// must also be supported types.
///
/// - Important: This type is expensive at runtime; try to avoid it.
/// Define the structure of your types in the OpenAPI document instead.
public struct OpenAPIValueContainer: Codable, Equatable, Hashable, Sendable {
/// The underlying dynamic value.
public var value: (any Sendable)?
/// Creates a new container with the given validated value.
/// - Parameter value: A value of a JSON-compatible type, such as `String`,
/// `[Any]`, and `[String: Any]`.
init(validatedValue value: (any Sendable)?) {
self.value = value
}
/// Creates a new container with the given unvalidated value.
///
/// First it validates that the provided value is supported, and throws
/// otherwise.
/// - Parameter unvalidatedValue: A value of a JSON-compatible type,
/// such as `String`, `[Any]`, and `[String: Any]`.
/// - Throws: When the value is not supported.
public init(unvalidatedValue: (any Sendable)? = nil) throws {
try self.init(validatedValue: Self.tryCast(unvalidatedValue))
}
// MARK: Private
/// Returns the specified value cast to a supported type.
/// - Parameter value: An untyped value.
/// - Returns: A cast value if supported.
/// - Throws: When the value is not supported.
static func tryCast(_ value: (any Sendable)?) throws -> (any Sendable)? {
guard let value = value else {
return nil
}
if let array = value as? [(any Sendable)?] {
return try array.map(tryCast(_:))
}
if let dictionary = value as? [String: (any Sendable)?] {
return try dictionary.mapValues(tryCast(_:))
}
if let value = tryCastPrimitiveType(value) {
return value
}
throw EncodingError.invalidValue(
value,
.init(
codingPath: [],
debugDescription: "Type '\(type(of: value))' is not a supported OpenAPI value."
)
)
}
/// Returns the specified value cast to a supported primitive type.
/// - Parameter value: An untyped value.
/// - Returns: A cast value if supported, nil otherwise.
static func tryCastPrimitiveType(_ value: any Sendable) -> (any Sendable)? {
switch value {
case is String, is Int, is Bool, is Double:
return value
default:
return nil
}
}
// MARK: Decodable
public init(from decoder: any Decoder) throws {
let container = try decoder.singleValueContainer()
if container.decodeNil() {
self.init(validatedValue: nil)
} else if let item = try? container.decode(Bool.self) {
self.init(validatedValue: item)
} else if let item = try? container.decode(Int.self) {
self.init(validatedValue: item)
} else if let item = try? container.decode(Double.self) {
self.init(validatedValue: item)
} else if let item = try? container.decode(String.self) {
self.init(validatedValue: item)
} else if let item = try? container.decode([OpenAPIValueContainer].self) {
self.init(validatedValue: item.map(\.value))
} else if let item = try? container.decode([String: OpenAPIValueContainer].self) {
self.init(validatedValue: item.mapValues(\.value))
} else {
throw DecodingError.dataCorruptedError(
in: container,
debugDescription: "OpenAPIValueContainer cannot be decoded"
)
}
}
// MARK: Encodable
public func encode(to encoder: any Encoder) throws {
var container = encoder.singleValueContainer()
guard let value = value else {
try container.encodeNil()
return
}
switch value {
case let value as Bool:
try container.encode(value)
case let value as Int:
try container.encode(value)
case let value as Double:
try container.encode(value)
case let value as String:
try container.encode(value)
case let value as [OpenAPIValueContainer?]:
try container.encode(value.map(OpenAPIValueContainer.init(validatedValue:)))
case let value as [String: OpenAPIValueContainer?]:
try container.encode(value.mapValues(OpenAPIValueContainer.init(validatedValue:)))
default:
throw EncodingError.invalidValue(
value,
.init(codingPath: container.codingPath, debugDescription: "OpenAPIValueContainer cannot be encoded")
)
}
}
// MARK: Equatable
public static func == (lhs: OpenAPIValueContainer, rhs: OpenAPIValueContainer) -> Bool {
switch (lhs.value, rhs.value) {
case (nil, nil), is (Void, Void):
return true
case let (lhs as Bool, rhs as Bool):
return lhs == rhs
case let (lhs as Int, rhs as Int):
return lhs == rhs
case let (lhs as Int64, rhs as Int64):
return lhs == rhs
case let (lhs as Int32, rhs as Int32):
return lhs == rhs
case let (lhs as Float, rhs as Float):
return lhs == rhs
case let (lhs as Double, rhs as Double):
return lhs == rhs
case let (lhs as String, rhs as String):
return lhs == rhs
case let (lhs as [(any Sendable)?], rhs as [(any Sendable)?]):
guard lhs.count == rhs.count else {
return false
}
return zip(lhs, rhs)
.allSatisfy { lhs, rhs in
OpenAPIValueContainer(validatedValue: lhs) == OpenAPIValueContainer(validatedValue: rhs)
}
case let (lhs as [String: (any Sendable)?], rhs as [String: (any Sendable)?]):
guard lhs.count == rhs.count else {
return false
}
guard Set(lhs.keys) == Set(rhs.keys) else {
return false
}
for key in lhs.keys {
guard
OpenAPIValueContainer(validatedValue: lhs[key]!) == OpenAPIValueContainer(validatedValue: rhs[key]!)
else {
return false
}
}
return true
default:
return false
}
}
// MARK: Hashable
public func hash(into hasher: inout Hasher) {
switch value {
case let value as Bool:
hasher.combine(value)
case let value as Int:
hasher.combine(value)
case let value as Double:
hasher.combine(value)
case let value as String:
hasher.combine(value)
case let value as [any Sendable]:
for item in value {
hasher.combine(OpenAPIValueContainer(validatedValue: item))
}
case let value as [String: any Sendable]:
for (key, itemValue) in value {
hasher.combine(key)
hasher.combine(OpenAPIValueContainer(validatedValue: itemValue))
}
default:
break
}
}
}
extension OpenAPIValueContainer: ExpressibleByBooleanLiteral {
public init(booleanLiteral value: BooleanLiteralType) {
self.init(validatedValue: value)
}
}
extension OpenAPIValueContainer: ExpressibleByStringLiteral {
public init(stringLiteral value: String) {
self.init(validatedValue: value)
}
}
extension OpenAPIValueContainer: ExpressibleByNilLiteral {
public init(nilLiteral: ()) {
self.init(validatedValue: nil)
}
}
extension OpenAPIValueContainer: ExpressibleByIntegerLiteral {
public init(integerLiteral value: Int) {
self.init(validatedValue: value)
}
}
extension OpenAPIValueContainer: ExpressibleByFloatLiteral {
public init(floatLiteral value: Double) {
self.init(validatedValue: value)
}
}
/// A container for a dictionary with values represented by JSON Schema.
///
/// Contains a dictionary of untyped JSON values. In some cases, the structure
/// of the data may not be known in advance and must be dynamically iterated
/// at decoding time. This is an advanced feature that requires extra
/// validation of the input before use, and is at a higher risk of a security
/// vulnerability.
///
/// Supported nested Swift types:
/// - `nil`
/// - `String`
/// - `Int`
/// - `Double`
/// - `Bool`
/// - `[Any?]`
/// - `[String: Any?]`
///
/// Where the element type of the array, and the value type of the dictionary
/// must also be supported types.
///
/// - Important: This type is expensive at runtime; try to avoid it.
/// Define the structure of your types in the OpenAPI document instead.
public struct OpenAPIObjectContainer: Codable, Equatable, Hashable, Sendable {
/// The underlying dynamic dictionary value.
public var value: [String: (any Sendable)?]
/// Creates a new container with the given validated dictionary.
/// - Parameter value: A dictionary value.
init(validatedValue value: [String: (any Sendable)?]) {
self.value = value
}
/// Creates a new empty container.
public init() {
self.init(validatedValue: [:])
}
/// Creates a new container with the given unvalidated value.
///
/// First it validates that the values of the provided dictionary
/// are supported, and throws otherwise.
/// - Parameter unvalidatedValue: A dictionary with values of
/// JSON-compatible types.
/// - Throws: When the value is not supported.
public init(unvalidatedValue: [String: Any?]) throws {
try self.init(validatedValue: Self.tryCast(unvalidatedValue))
}
// MARK: Private
/// Returns the specified value cast to a supported dictionary.
/// - Parameter value: A dictionary with untyped values.
/// - Returns: A cast dictionary if values are supported.
/// - Throws: If an unsupported value is found.
static func tryCast(_ value: [String: Any?]) throws -> [String: (any Sendable)?] {
return try value.mapValues(OpenAPIValueContainer.tryCast(_:))
}
// MARK: Decodable
public init(from decoder: any Decoder) throws {
let container = try decoder.singleValueContainer()
let item = try container.decode([String: OpenAPIValueContainer].self)
self.init(validatedValue: item.mapValues(\.value))
}
// MARK: Encodable
public func encode(to encoder: any Encoder) throws {
var container = encoder.singleValueContainer()
try container.encode(value.mapValues(OpenAPIValueContainer.init(validatedValue:)))
}
// MARK: Equatable
public static func == (lhs: OpenAPIObjectContainer, rhs: OpenAPIObjectContainer) -> Bool {
let lv = lhs.value
let rv = rhs.value
guard lv.count == rv.count else {
return false
}
guard Set(lv.keys) == Set(rv.keys) else {
return false
}
for key in lv.keys {
guard OpenAPIValueContainer(validatedValue: lv[key]!) == OpenAPIValueContainer(validatedValue: rv[key]!)
else {
return false
}
}
return true
}
// MARK: Hashable
public func hash(into hasher: inout Hasher) {
for (key, itemValue) in value {
hasher.combine(key)
hasher.combine(OpenAPIValueContainer(validatedValue: itemValue))
}
}
}
/// A container for an array with values represented by JSON Schema.
///
/// Contains an array of untyped JSON values. In some cases, the structure
/// of the data may not be known in advance and must be dynamically iterated
/// at decoding time. This is an advanced feature that requires extra
/// validation of the input before use, and is at a higher risk of a security
/// vulnerability.
///
/// Supported nested Swift types:
/// - `nil`
/// - `String`
/// - `Int`
/// - `Double`
/// - `Bool`
/// - `[Any?]`
/// - `[String: Any?]`
///
/// Where the element type of the array, and the value type of the dictionary
/// must also be supported types.
///
/// - Important: This type is expensive at runtime; try to avoid it.
/// Define the structure of your types in the OpenAPI document instead.
public struct OpenAPIArrayContainer: Codable, Equatable, Hashable, Sendable {
/// The underlying dynamic array value.
public var value: [(any Sendable)?]
/// Creates a new container with the given validated array.
/// - Parameter value: An array value.
init(validatedValue value: [(any Sendable)?]) {
self.value = value
}
/// Creates a new empty container.
public init() {
self.init(validatedValue: [])
}
/// Creates a new container with the given unvalidated value.
///
/// First it validates that the provided value is supported, and throws
/// otherwise.
/// - Parameter unvalidatedValue: An array with values of JSON-compatible
/// types.
/// - Throws: When the value is not supported.
public init(unvalidatedValue: [Any?]) throws {
try self.init(validatedValue: Self.tryCast(unvalidatedValue))
}
// MARK: Private
/// Returns the specified value cast to an array of supported values.
/// - Parameter value: An array with untyped values.
/// - Returns: A cast value if values are supported, nil otherwise.
static func tryCast(_ value: [Any?]) throws -> [(any Sendable)?] {
return try value.map(OpenAPIValueContainer.tryCast(_:))
}
// MARK: Decodable
public init(from decoder: any Decoder) throws {
let container = try decoder.singleValueContainer()
let item = try container.decode([OpenAPIValueContainer].self)
self.init(validatedValue: item.map(\.value))
}
// MARK: Encodable
public func encode(to encoder: any Encoder) throws {
var container = encoder.singleValueContainer()
try container.encode(value.map(OpenAPIValueContainer.init(validatedValue:)))
}
// MARK: Equatable
public static func == (lhs: OpenAPIArrayContainer, rhs: OpenAPIArrayContainer) -> Bool {
let lv = lhs.value
let rv = rhs.value
guard lv.count == rv.count else {
return false
}
return zip(lv, rv)
.allSatisfy { lhs, rhs in
OpenAPIValueContainer(validatedValue: lhs) == OpenAPIValueContainer(validatedValue: rhs)
}
}
// MARK: Hashable
public func hash(into hasher: inout Hasher) {
for item in value {
hasher.combine(OpenAPIValueContainer(validatedValue: item))
}
}
}