-
Notifications
You must be signed in to change notification settings - Fork 65
/
Copy pathMongoCollection+FindAndModify.swift
394 lines (353 loc) · 16.8 KB
/
MongoCollection+FindAndModify.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
import CLibMongoC
import NIO
/// An extension of `MongoCollection` encapsulating find and modify operations.
extension MongoCollection {
/**
* Finds a single document and deletes it, returning the original.
*
* - Parameters:
* - filter: `BSONDocument` representing the match criteria
* - options: Optional `FindOneAndDeleteOptions` to use when executing the command
* - session: Optional `ClientSession` to use when executing this command
*
* - Returns:
* An `EventLoopFuture<CollectionType?>`. On success, contains either the deleted document, represented as a
* `CollectionType`, or contains `nil` if no document was deleted.
*
* If the future fails, the error is likely one of the following:
* - `MongoError.InvalidArgumentError` if any of the provided options are invalid.
* - `MongoError.LogicError` if the provided session is inactive.
* - `MongoError.LogicError` if this collection's parent client has already been closed.
* - `MongoError.CommandError` if an error occurs that prevents the command from executing.
* - `MongoError.WriteError` if an error occurs while executing the command.
* - `DecodingError` if the deleted document cannot be decoded to a `CollectionType` value.
*/
public func findOneAndDelete(
_ filter: BSONDocument,
options: FindOneAndDeleteOptions? = nil,
session: ClientSession? = nil
) -> EventLoopFuture<CollectionType?> {
// we need to always send options here in order to ensure the `remove` flag is set
let opts = options ?? FindOneAndDeleteOptions()
return self.findAndModify(filter: filter, options: opts, session: session)
}
/**
* Finds a single document and replaces it, returning either the original or the replaced document.
*
* - Parameters:
* - filter: `BSONDocument` representing the match criteria
* - replacement: a `CollectionType` to replace the found document
* - options: Optional `FindOneAndReplaceOptions` to use when executing the command
* - session: Optional `ClientSession` to use when executing this command
*
* - Returns:
* An `EventLoopFuture<CollectionType?>`. On success, contains a `CollectionType`, representing either the
* original document or its replacement, depending on selected options; or containing `nil` if there was no
* matching document.
*
* If the future fails, the error is likely one of the following:
* - `MongoError.InvalidArgumentError` if any of the provided options are invalid.
* - `MongoError.LogicError` if the provided session is inactive.
* - `MongoError.LogicError` if this collection's parent client has already been closed.
* - `MongoError.CommandError` if an error occurs that prevents the command from executing.
* - `MongoError.WriteError` if an error occurs while executing the command.
* - `DecodingError` if the replaced document cannot be decoded to a `CollectionType` value.
* - `EncodingError` if `replacement` cannot be encoded to a `BSONDocument`.
*/
public func findOneAndReplace(
filter: BSONDocument,
replacement: CollectionType,
options: FindOneAndReplaceOptions? = nil,
session: ClientSession? = nil
) -> EventLoopFuture<CollectionType?> {
do {
let update = try self.encoder.encode(replacement)
return self.findAndModify(filter: filter, update: update, options: options, session: session)
} catch {
return self._client.operationExecutor.makeFailedFuture(error, on: self.eventLoop)
}
}
/**
* Finds a single document and updates it, returning either the original or the updated document.
*
* - Parameters:
* - filter: `BSONDocument` representing the match criteria
* - update: a `BSONDocument` containing updates to apply
* - options: Optional `FindOneAndUpdateOptions` to use when executing the command
* - session: Optional `ClientSession` to use when executing this command
*
* - Returns:
* An `EventLoopFuture<CollectionType>`. On success, contains either the original or updated document, depending
* on selected options, or contains `nil` if there was no match.
*
* If the future fails, the error is likely one of the following:
* - `MongoError.InvalidArgumentError` if any of the provided options are invalid.
* - `MongoError.LogicError` if the provided session is inactive.
* - `MongoError.LogicError` if this collection's parent client has already been closed.
* - `MongoError.CommandError` if an error occurs that prevents the command from executing.
* - `MongoError.WriteError` if an error occurs while executing the command.
* - `DecodingError` if the updated document cannot be decoded to a `CollectionType` value.
*/
public func findOneAndUpdate(
filter: BSONDocument,
update: BSONDocument,
options: FindOneAndUpdateOptions? = nil,
session: ClientSession? = nil
) -> EventLoopFuture<CollectionType?> {
self.findAndModify(filter: filter, update: update, options: options, session: session)
}
/**
* Finds a single document and updates it, returning either the original or the updated document.
*
* - Parameters:
* - filter: `BSONDocument` representing the match criteria
* - pipeline: an array of `BSONDocument` containing the aggregation pipeline to apply
* - options: Optional `FindOneAndUpdateOptions` to use when executing the command
* - session: Optional `ClientSession` to use when executing this command
*
* - Returns:
* An `EventLoopFuture<CollectionType>`. On success, contains either the original or updated document, depending
* on selected options, or contains `nil` if there was no match.
*
* If the future fails, the error is likely one of the following:
* - `MongoError.InvalidArgumentError` if any of the provided options are invalid.
* - `MongoError.LogicError` if the provided session is inactive.
* - `MongoError.LogicError` if this collection's parent client has already been closed.
* - `MongoError.CommandError` if an error occurs that prevents the command from executing.
* - `MongoError.WriteError` if an error occurs while executing the command.
* - `DecodingError` if the updated document cannot be decoded to a `CollectionType` value.
*/
public func findOneAndUpdate(
filter: BSONDocument,
pipeline: [BSONDocument],
options: FindOneAndUpdateOptions? = nil,
session: ClientSession? = nil
) -> EventLoopFuture<CollectionType?> {
let update = BSONDocument(pipeline.map { document in BSON.document(document) })
return self.findOneAndUpdate(
filter: filter,
update: update,
options: options,
session: session
)
}
/**
* A private helper method for findAndModify operations to use.
*
* - Returns:
* An `EventLoopFuture<CollectionType?>. On success, contains the document returned by the server, if one exists.
*
* If the future fails, the error is likely one of the following:
* - `MongoError.InvalidArgumentError` if any of the provided options are invalid.
* - `MongoError.LogicError` if the provided session is inactive.
* - `MongoError.LogicError` if this collection's parent client has already been closed.
* - `MongoError.CommandError` if an error occurs that prevents the command from executing.
* - `MongoError.WriteError` if an error occurs while executing the command.
* - `DecodingError` if the updated document cannot be decoded to a `CollectionType` value.
*/
private func findAndModify(
filter: BSONDocument,
update: BSONDocument? = nil,
options: FindAndModifyOptionsConvertible? = nil,
session: ClientSession?
) -> EventLoopFuture<CollectionType?> {
let operation = FindAndModifyOperation(collection: self, filter: filter, update: update, options: options)
return self._client.operationExecutor.execute(
operation,
client: self._client,
on: self.eventLoop,
session: session
)
}
}
/// Indicates which document to return in a find and modify operation.
public enum ReturnDocument: String, Decodable {
/// Indicates to return the document before the update, replacement, or insert occurred.
case before = "Before"
/// Indicates to return the document after the update, replacement, or insert occurred.
case after = "After"
}
/// Indicates that an options type can be represented as a `FindAndModifyOptions`
internal protocol FindAndModifyOptionsConvertible {
/// Converts `self` to a `FindAndModifyOptions`
///
/// - Throws: `MongoError.InvalidArgumentError` if any of the options are invalid.
func toFindAndModifyOptions() throws -> FindAndModifyOptions
}
/// Options to use when executing a `findOneAndDelete` command on a `MongoCollection`.
public struct FindOneAndDeleteOptions: FindAndModifyOptionsConvertible, Decodable {
/// Specifies a collation to use.
public var collation: BSONDocument?
/// A document or string that specifies the index to use to support the query. Only supported in server 4.4+.
public var hint: IndexHint?
/// Variables that can be accessed within the operation using the double
/// dollar sign prefix in the form `$$<variable_name>`. This option is only available on MongoDB 5.0+.
public var `let`: BSONDocument?
/// The maximum amount of time to allow the query to run.
public var maxTimeMS: Int?
/// Limits the fields to return for the matching document.
public var projection: BSONDocument?
/// Determines which document the operation modifies if the query selects multiple documents.
public var sort: BSONDocument?
/// An optional `WriteConcern` to use for the command.
public var writeConcern: WriteConcern?
internal func toFindAndModifyOptions() throws -> FindAndModifyOptions {
try FindAndModifyOptions(
collation: self.collation,
hint: self.hint,
letValue: self.let,
maxTimeMS: self.maxTimeMS,
projection: self.projection,
remove: true,
sort: self.sort,
writeConcern: self.writeConcern
)
}
/// Convenience initializer allowing any/all parameters to be omitted/optional
public init(
collation: BSONDocument? = nil,
hint: IndexHint? = nil,
`let`: BSONDocument? = nil,
maxTimeMS: Int? = nil,
projection: BSONDocument? = nil,
sort: BSONDocument? = nil,
writeConcern: WriteConcern? = nil
) {
self.collation = collation
self.hint = hint
self.let = `let`
self.maxTimeMS = maxTimeMS
self.projection = projection
self.sort = sort
self.writeConcern = writeConcern
}
}
/// Options to use when executing a `findOneAndReplace` command on a `MongoCollection`.
public struct FindOneAndReplaceOptions: FindAndModifyOptionsConvertible, Decodable {
/// If `true`, allows the write to opt-out of document level validation.
public var bypassDocumentValidation: Bool?
/// Specifies a collation to use.
public var collation: BSONDocument?
/// A document or string that specifies the index to use to support the query. Only supported in server 4.4+.
public var hint: IndexHint?
/// Variables that can be accessed within the operation using the double
/// dollar sign prefix in the form `$$<variable_name>`. This option is only available on MongoDB 5.0+.
public var `let`: BSONDocument?
/// The maximum amount of time to allow the query to run.
public var maxTimeMS: Int?
/// Limits the fields to return for the matching document.
public var projection: BSONDocument?
/// When `ReturnDocument.After`, returns the replaced or inserted document rather than the original.
public var returnDocument: ReturnDocument?
/// Determines which document the operation modifies if the query selects multiple documents.
public var sort: BSONDocument?
/// When `true`, creates a new document if no document matches the query.
public var upsert: Bool?
/// An optional `WriteConcern` to use for the command.
public var writeConcern: WriteConcern?
internal func toFindAndModifyOptions() throws -> FindAndModifyOptions {
try FindAndModifyOptions(
bypassDocumentValidation: self.bypassDocumentValidation,
collation: self.collation,
hint: self.hint,
letValue: self.let,
maxTimeMS: self.maxTimeMS,
projection: self.projection,
returnDocument: self.returnDocument,
sort: self.sort,
upsert: self.upsert,
writeConcern: self.writeConcern
)
}
/// Convenience initializer allowing any/all parameters to be omitted/optional.
public init(
bypassDocumentValidation: Bool? = nil,
collation: BSONDocument? = nil,
hint: IndexHint? = nil,
`let`: BSONDocument? = nil,
maxTimeMS: Int? = nil,
projection: BSONDocument? = nil,
returnDocument: ReturnDocument? = nil,
sort: BSONDocument? = nil,
upsert: Bool? = nil,
writeConcern: WriteConcern? = nil
) {
self.bypassDocumentValidation = bypassDocumentValidation
self.collation = collation
self.hint = hint
self.let = `let`
self.maxTimeMS = maxTimeMS
self.projection = projection
self.returnDocument = returnDocument
self.sort = sort
self.upsert = upsert
self.writeConcern = writeConcern
}
}
/// Options to use when executing a `findOneAndUpdate` command on a `MongoCollection`.
public struct FindOneAndUpdateOptions: FindAndModifyOptionsConvertible, Decodable {
/// A set of filters specifying to which array elements an update should apply.
public var arrayFilters: [BSONDocument]?
/// If `true`, allows the write to opt-out of document level validation.
public var bypassDocumentValidation: Bool?
/// Specifies a collation to use.
public var collation: BSONDocument?
/// A document or string that specifies the index to use to support the query. Only supported in server 4.4+.
public var hint: IndexHint?
/// Variables that can be accessed within the operation using the double
/// dollar sign prefix in the form `$$<variable_name>`. This option is only available on MongoDB 5.0+.
public var `let`: BSONDocument?
/// The maximum amount of time to allow the query to run.
public var maxTimeMS: Int?
/// Limits the fields to return for the matching document.
public var projection: BSONDocument?
/// When`ReturnDocument.After`, returns the updated or inserted document rather than the original.
public var returnDocument: ReturnDocument?
/// Determines which document the operation modifies if the query selects multiple documents.
public var sort: BSONDocument?
/// When `true`, creates a new document if no document matches the query.
public var upsert: Bool?
/// An optional `WriteConcern` to use for the command.
public var writeConcern: WriteConcern?
internal func toFindAndModifyOptions() throws -> FindAndModifyOptions {
try FindAndModifyOptions(
arrayFilters: self.arrayFilters,
bypassDocumentValidation: self.bypassDocumentValidation,
collation: self.collation,
hint: self.hint,
letValue: self.let,
maxTimeMS: self.maxTimeMS,
projection: self.projection,
returnDocument: self.returnDocument,
sort: self.sort,
upsert: self.upsert,
writeConcern: self.writeConcern
)
}
/// Convenience initializer allowing any/all parameters to be omitted/optional.
public init(
arrayFilters: [BSONDocument]? = nil,
bypassDocumentValidation: Bool? = nil,
collation: BSONDocument? = nil,
hint: IndexHint? = nil,
`let`: BSONDocument? = nil,
maxTimeMS: Int? = nil,
projection: BSONDocument? = nil,
returnDocument: ReturnDocument? = nil,
sort: BSONDocument? = nil,
upsert: Bool? = nil,
writeConcern: WriteConcern? = nil
) {
self.arrayFilters = arrayFilters
self.bypassDocumentValidation = bypassDocumentValidation
self.collation = collation
self.hint = hint
self.let = `let`
self.maxTimeMS = maxTimeMS
self.projection = projection
self.returnDocument = returnDocument
self.sort = sort
self.upsert = upsert
self.writeConcern = writeConcern
}
}