-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWithDependencies.swift
433 lines (415 loc) · 15.8 KB
/
WithDependencies.swift
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
import Foundation
/// Updates the current dependencies for the duration of a synchronous operation.
///
/// Any mutations made to ``DependencyValues`` inside `updateValuesForOperation` will be visible to
/// everything executed in the operation. For example, if you wanted to force the
/// ``DependencyValues/date`` dependency to be a particular date, you can do:
///
/// ```swift
/// withDependencies {
/// $0.date.now = Date(timeIntervalSince1970: 1234567890)
/// } operation: {
/// // References to date in here are pinned to 1234567890.
/// }
/// ```
///
/// - Parameters:
/// - updateValuesForOperation: A closure for updating the current dependency values for the
/// duration of the operation.
/// - operation: An operation to perform wherein dependencies have been overridden.
/// - Returns: The result returned from `operation`.
@discardableResult
public func withDependencies<R>(
_ updateValuesForOperation: (inout DependencyValues) throws -> Void,
operation: () throws -> R
) rethrows -> R {
try DependencyValues.$isSetting.withValue(true) {
var dependencies = DependencyValues._current
try updateValuesForOperation(&dependencies)
return try DependencyValues.$_current.withValue(dependencies) {
try DependencyValues.$isSetting.withValue(false) {
let result = try operation()
if R.self is AnyClass {
dependencyObjects.store(result as AnyObject)
}
return result
}
}
}
}
#if swift(>=5.7)
/// Updates the current dependencies for the duration of an asynchronous operation.
///
/// Any mutations made to ``DependencyValues`` inside `updateValuesForOperation` will be visible
/// to everything executed in the operation. For example, if you wanted to force the
/// ``DependencyValues/date`` dependency to be a particular date, you can do:
///
/// ```swift
/// await withDependencies {
/// $0.date.now = Date(timeIntervalSince1970: 1234567890)
/// } operation: {
/// // References to date in here are pinned to 1234567890.
/// }
/// ```
///
/// - Parameters:
/// - updateValuesForOperation: A closure for updating the current dependency values for the
/// duration of the operation.
/// - operation: An operation to perform wherein dependencies have been overridden.
/// - Returns: The result returned from `operation`.
@_unsafeInheritExecutor
@discardableResult
public func withDependencies<R>(
_ updateValuesForOperation: (inout DependencyValues) async throws -> Void,
operation: () async throws -> R
) async rethrows -> R {
try await DependencyValues.$isSetting.withValue(true) {
var dependencies = DependencyValues._current
try await updateValuesForOperation(&dependencies)
return try await DependencyValues.$_current.withValue(dependencies) {
try await DependencyValues.$isSetting.withValue(false) {
let result = try await operation()
if R.self is AnyClass {
dependencyObjects.store(result as AnyObject)
}
return result
}
}
}
}
#else
@discardableResult
public func withDependencies<R>(
_ updateValuesForOperation: (inout DependencyValues) async throws -> Void,
operation: () async throws -> R
) async rethrows -> R {
try await DependencyValues.$isSetting.withValue(true) {
var dependencies = DependencyValues._current
try await updateValuesForOperation(&dependencies)
return try await DependencyValues.$_current.withValue(dependencies) {
try await DependencyValues.$isSetting.withValue(false) {
let result = try await operation()
if R.self is AnyClass {
dependencyObjects.store(result as AnyObject)
}
return result
}
}
}
}
#endif
/// Updates the current dependencies for the duration of a synchronous operation by taking the
/// dependencies tied to a given object.
///
/// - Parameters:
/// - model: An object with dependencies. The given model should have at least one `@Dependency`
/// property, or should have been initialized and returned from a `withDependencies` operation.
/// - updateValuesForOperation: A closure for updating the current dependency values for the
/// duration of the operation.
/// - operation: The operation to run with the updated dependencies.
/// - Returns: The result returned from `operation`.
@discardableResult
public func withDependencies<Model: AnyObject, R>(
from model: Model,
_ updateValuesForOperation: (inout DependencyValues) throws -> Void,
operation: () throws -> R,
file: StaticString? = nil,
line: UInt? = nil
) rethrows -> R {
guard let values = dependencyObjects.values(from: model)
else {
runtimeWarn(
"""
You are trying to propagate dependencies to a child model from a model with no dependencies. \
To fix this, the given '\(Model.self)' must be returned from another 'withDependencies' \
closure, or the class must hold at least one '@Dependency' property.
""",
file: file,
line: line
)
return try operation()
}
return try withDependencies {
$0 = values.merging(DependencyValues._current)
try updateValuesForOperation(&$0)
} operation: {
let result = try operation()
if R.self is AnyClass {
dependencyObjects.store(result as AnyObject)
}
return result
}
}
/// Updates the current dependencies for the duration of a synchronous operation by taking the
/// dependencies tied to a given object.
///
/// - Parameters:
/// - model: An object with dependencies. The given model should have at least one `@Dependency`
/// property, or should have been initialized and returned from a `withDependencies` operation.
/// - operation: The operation to run with the updated dependencies.
/// - Returns: The result returned from `operation`.
@discardableResult
public func withDependencies<Model: AnyObject, R>(
from model: Model,
operation: () throws -> R,
file: StaticString? = nil,
line: UInt? = nil
) rethrows -> R {
try withDependencies(
from: model,
{ _ in },
operation: operation,
file: file,
line: line
)
}
#if swift(>=5.7)
/// Updates the current dependencies for the duration of an asynchronous operation by taking the
/// dependencies tied to a given object.
///
/// - Parameters:
/// - model: An object with dependencies. The given model should have at least one `@Dependency`
/// property, or should have been initialized and returned from a `withDependencies`
/// operation.
/// - updateValuesForOperation: A closure for updating the current dependency values for the
/// duration of the operation.
/// - operation: The operation to run with the updated dependencies.
/// - Returns: The result returned from `operation`.
@_unsafeInheritExecutor
@discardableResult
public func withDependencies<Model: AnyObject, R>(
from model: Model,
_ updateValuesForOperation: (inout DependencyValues) async throws -> Void,
operation: () async throws -> R,
file: StaticString? = nil,
line: UInt? = nil
) async rethrows -> R {
guard let values = dependencyObjects.values(from: model)
else {
runtimeWarn(
"""
You are trying to propagate dependencies to a child model from a model with no \
dependencies. To fix this, the given '\(Model.self)' must be returned from another \
'withDependencies' closure, or the class must hold at least one '@Dependency' property.
""",
file: file,
line: line
)
return try await operation()
}
return try await withDependencies {
$0 = values.merging(DependencyValues._current)
try await updateValuesForOperation(&$0)
} operation: {
let result = try await operation()
if R.self is AnyClass {
dependencyObjects.store(result as AnyObject)
}
return result
}
}
#else
@discardableResult
public func withDependencies<Model: AnyObject, R>(
from model: Model,
_ updateValuesForOperation: (inout DependencyValues) async throws -> Void,
operation: () async throws -> R,
file: StaticString? = nil,
line: UInt? = nil
) async rethrows -> R {
guard let values = dependencyObjects.values(from: model)
else {
runtimeWarn(
"""
You are trying to propagate dependencies to a child model from a model with no \
dependencies. To fix this, the given '\(Model.self)' must be returned from another \
'withDependencies' closure, or the class must hold at least one '@Dependency' property.
""",
file: file,
line: line
)
return try await operation()
}
return try await withDependencies {
$0 = values.merging(DependencyValues._current)
try await updateValuesForOperation(&$0)
} operation: {
let result = try await operation()
if R.self is AnyClass {
dependencyObjects.store(result as AnyObject)
}
return result
}
}
#endif
#if swift(>=5.7)
/// Updates the current dependencies for the duration of an asynchronous operation by taking the
/// dependencies tied to a given object.
///
/// - Parameters:
/// - model: An object with dependencies. The given model should have at least one `@Dependency`
/// property, or should have been initialized and returned from a `withDependencies`
/// operation.
/// - operation: The operation to run with the updated dependencies.
/// - Returns: The result returned from `operation`.
@_unsafeInheritExecutor
@discardableResult
public func withDependencies<Model: AnyObject, R>(
from model: Model,
operation: () async throws -> R,
file: StaticString? = nil,
line: UInt? = nil
) async rethrows -> R {
try await withDependencies(
from: model,
{ _ in },
operation: operation,
file: file,
line: line
)
}
#else
@discardableResult
public func withDependencies<Model: AnyObject, R>(
from model: Model,
operation: () async throws -> R,
file: StaticString? = nil,
line: UInt? = nil
) async rethrows -> R {
try await withDependencies(
from: model,
{ _ in },
operation: operation,
file: file,
line: line
)
}
#endif
/// Propagates the current dependencies to an escaping context.
///
/// This helper takes a trailing closure that is provided an ``DependencyValues/Continuation``
/// value, which can be used to access dependencies in an escaped context. It is useful in
/// situations where you cannot leverage structured concurrency and must use escaping closures.
/// Dependencies do not automatically propagate across escaping boundaries like they do in
/// structured contexts and in `Task`s.
///
/// For example, suppose you want to use `DispatchQueue.main.asyncAfter` to execute some logic after
/// a delay, and that logic needs to make use of dependencies. In order to guarantee that
/// dependencies used in the escaping closure of `asyncAfter` reflect the correct values, you should
/// use `withEscapedDependencies`:
///
/// ```swift
/// withEscapedDependencies { dependencies in
/// DispatchQueue.main.asyncAfter(deadline: .now() + 1) {
/// dependencies.yield {
/// // All code in here will use dependencies at the time of calling withEscapedDependencies.
/// }
/// }
/// }
/// ```
///
/// As a general rule, you should surround _all_ escaping code that may access dependencies with
/// this helper, and you should use ``DependencyValues/Continuation/yield(_:)-42ttb`` _immediately_
/// inside the escaping closure. Otherwise you run the risk of the escaped code using the wrong
/// dependencies. But, you should also try your hardest to keep your code in the structured world
/// using Swift's tools of structured concurrency, and should avoid using escaping closures.
///
/// If you need to further override dependencies in the escaped closure, do so inside the
/// ``DependencyValues/Continuation/yield(_:)-42ttb`` and not outside:
///
/// ```swift
/// withEscapedDependencies { dependencies in
/// DispatchQueue.main.asyncAfter(deadline: .now() + 1) {
/// dependencies.yield {
/// withDependencies {
/// $0.apiClient = .mock
/// } operation: {
/// // All code in here will use dependencies at the time of calling
/// // withEscapedDependencies except the API client will be mocked.
/// }
/// }
/// }
/// }
/// ```
///
/// - Parameter operation: A closure that takes a ``DependencyValues/Continuation`` value for
/// propagating dependencies past an escaping closure boundary.
public func withEscapedDependencies<R>(
_ operation: (DependencyValues.Continuation) throws -> R
) rethrows -> R {
try operation(DependencyValues.Continuation())
}
/// Propagates the current dependencies to an escaping context.
///
/// See the documentation of ``withEscapedDependencies(_:)-5xvi3`` for more information.
///
/// - Parameter operation: A closure that takes a ``DependencyValues/Continuation`` value for
/// propagating dependencies past an escaping closure boundary.
public func withEscapedDependencies<R>(
_ operation: (DependencyValues.Continuation) async throws -> R
) async rethrows -> R {
try await operation(DependencyValues.Continuation())
}
extension DependencyValues {
/// A capture of dependencies to use in an escaping context.
///
/// See the docs of ``withEscapedDependencies(_:)-5xvi3`` for more information.
public struct Continuation: Sendable {
let dependencies = DependencyValues._current
/// Access the propagated dependencies in an escaping context.
///
/// See the docs of ``withEscapedDependencies(_:)-5xvi3`` for more information.
/// - Parameter operation: A closure which will have access to the propagated dependencies.
public func yield<R>(_ operation: () throws -> R) rethrows -> R {
// TODO: Should `yield` be renamed to `restore`?
try withDependencies {
$0 = self.dependencies
} operation: {
try operation()
}
}
/// Access the propagated dependencies in an escaping context.
///
/// See the docs of ``withEscapedDependencies(_:)-5xvi3`` for more information.
/// - Parameter operation: A closure which will have access to the propagated dependencies.
public func yield<R>(_ operation: () async throws -> R) async rethrows -> R {
try await withDependencies {
$0 = self.dependencies
} operation: {
try await operation()
}
}
}
}
private let dependencyObjects = DependencyObjects()
private class DependencyObjects: @unchecked Sendable {
private var storage = LockIsolated<[ObjectIdentifier: DependencyObject]>([:])
internal init() {}
func store(_ object: AnyObject) {
self.storage.withValue { storage in
storage[ObjectIdentifier(object)] = DependencyObject(
object: object,
dependencyValues: DependencyValues._current
)
Task {
self.storage.withValue { storage in
for (id, box) in storage where box.object == nil {
storage.removeValue(forKey: id)
}
}
}
}
}
func values(from object: AnyObject) -> DependencyValues? {
Mirror(reflecting: object).children
.lazy
.compactMap({ $1 as? _HasInitialValues })
.first?
.initialValues
?? self.storage.withValue({ $0[ObjectIdentifier(object)]?.dependencyValues })
}
}
private struct DependencyObject {
weak var object: AnyObject?
let dependencyValues: DependencyValues
}