-
Notifications
You must be signed in to change notification settings - Fork 355
Expand file tree
/
Copy pathAsyncStorage.swift
More file actions
202 lines (178 loc) · 5.26 KB
/
AsyncStorage.swift
File metadata and controls
202 lines (178 loc) · 5.26 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
import Foundation
import Dispatch
/// Manipulate storage in a "all async" manner.
/// The completion closure will be called when operation completes.
public class AsyncStorage<Key: Hashable, Value> {
public let innerStorage: HybridStorage<Key, Value>
public let serialQueue: DispatchQueue
public init(storage: HybridStorage<Key, Value>, serialQueue: DispatchQueue) {
self.innerStorage = storage
self.serialQueue = serialQueue
}
}
extension AsyncStorage {
public func entry(forKey key: Key, completion: @escaping (Result<Entry<Value>, any Error>) -> Void) {
serialQueue.async { [weak self] in
guard let `self` = self else {
completion(.failure(StorageError.deallocated))
return
}
do {
let anEntry = try self.innerStorage.entry(forKey: key)
completion(.success(anEntry))
} catch {
completion(.failure(error))
}
}
}
public func removeObject(forKey key: Key, completion: @escaping (Result<(), any Error>) -> Void) {
serialQueue.async { [weak self] in
guard let `self` = self else {
completion(.failure(StorageError.deallocated))
return
}
do {
try self.innerStorage.removeObject(forKey: key)
completion(.success(()))
} catch {
completion(.failure(error))
}
}
}
public func setObject(
_ object: Value,
forKey key: Key,
expiry: Expiry? = nil,
completion: @escaping (Result<(), any Error>) -> Void) {
serialQueue.async { [weak self] in
guard let `self` = self else {
completion(.failure(StorageError.deallocated))
return
}
do {
try self.innerStorage.setObject(object, forKey: key, expiry: expiry)
completion(.success(()))
} catch {
completion(.failure(error))
}
}
}
public func removeAll(completion: @escaping (Result<(), any Error>) -> Void) {
serialQueue.async { [weak self] in
guard let `self` = self else {
completion(.failure(StorageError.deallocated))
return
}
do {
try self.innerStorage.removeAll()
completion(.success(()))
} catch {
completion(.failure(error))
}
}
}
public func removeExpiredObjects(completion: @escaping (Result<(), any Error>) -> Void) {
serialQueue.async { [weak self] in
guard let `self` = self else {
completion(.failure(StorageError.deallocated))
return
}
do {
try self.innerStorage.removeExpiredObjects()
completion(.success(()))
} catch {
completion(.failure(error))
}
}
}
public func object(forKey key: Key, completion: @escaping (Result<Value, any Error>) -> Void) {
entry(forKey: key, completion: { (result: Result<Entry<Value>, Error>) in
completion(result.map({ entry in
return entry.object
}))
})
}
@available(*, deprecated, renamed: "objectExists(forKey:completion:)")
public func existsObject(
forKey key: Key,
completion: @escaping (Result<Bool, any Error>) -> Void) {
object(forKey: key, completion: { (result: Result<Value, Error>) in
completion(result.map({ _ in
return true
}))
})
}
public func objectExists(
forKey key: Key,
completion: @escaping (Result<Bool, any Error>) -> Void) {
object(forKey: key, completion: { (result: Result<Value, Error>) in
completion(result.map({ _ in
return true
}))
})
}
}
public extension AsyncStorage {
func transform<U>(transformer: Transformer<U>) -> AsyncStorage<Key, U> {
let storage = AsyncStorage<Key, U>(
storage: innerStorage.transform(transformer: transformer),
serialQueue: serialQueue
)
return storage
}
}
@available(macOS 10.15, iOS 13.0, watchOS 6.0, tvOS 13.0, *)
public extension AsyncStorage {
func entry(forKey key: Key) async throws -> Entry<Value> {
try await withCheckedThrowingContinuation { continuation in
entry(forKey: key) {
continuation.resume(with: $0)
}
}
}
func removeObject(forKey key: Key) async throws {
try await withCheckedThrowingContinuation { continuation in
removeObject(forKey: key) {
continuation.resume(with: $0)
}
}
}
func setObject(
_ object: Value,
forKey key: Key,
expiry: Expiry? = nil) async throws {
try await withCheckedThrowingContinuation { continuation in
setObject(object, forKey: key, expiry: expiry) {
continuation.resume(with: $0)
}
}
}
func removeAll() async throws {
try await withCheckedThrowingContinuation { continuation in
removeAll {
continuation.resume(with: $0)
}
}
}
func removeExpiredObjects() async throws {
try await withCheckedThrowingContinuation { continuation in
removeExpiredObjects {
continuation.resume(with: $0)
}
}
}
func object(forKey key: Key) async throws -> Value {
try await withCheckedThrowingContinuation { continuation in
object(forKey: key) {
continuation.resume(with: $0)
}
}
}
func objectExists(forKey key: Key) async throws -> Bool {
try await withCheckedThrowingContinuation { continuation in
objectExists(forKey: key) {
continuation.resume(with: $0)
}
}
}
}