forked from mongodb/mongo-csharp-driver
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathIFindFluentExtensions.cs
309 lines (274 loc) · 16.2 KB
/
IFindFluentExtensions.cs
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
/* Copyright 2010-present MongoDB Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
using System;
using System.Linq.Expressions;
using System.Threading;
using System.Threading.Tasks;
using MongoDB.Bson;
using MongoDB.Driver.Core.Misc;
namespace MongoDB.Driver
{
/// <summary>
/// Extension methods for <see cref="IFindFluent{TDocument, TProjection}"/>
/// </summary>
public static class IFindFluentExtensions
{
/// <summary>
/// Projects the result.
/// </summary>
/// <typeparam name="TDocument">The type of the document.</typeparam>
/// <typeparam name="TProjection">The type of the projection (same as TDocument if there is no projection).</typeparam>
/// <param name="find">The fluent find.</param>
/// <param name="projection">The projection.</param>
/// <returns>The fluent find interface.</returns>
public static IFindFluent<TDocument, BsonDocument> Project<TDocument, TProjection>(this IFindFluent<TDocument, TProjection> find, ProjectionDefinition<TDocument, BsonDocument> projection)
{
Ensure.IsNotNull(find, nameof(find));
Ensure.IsNotNull(projection, nameof(projection));
return find.Project<BsonDocument>(projection);
}
/// <summary>
/// Projects the result.
/// </summary>
/// <typeparam name="TDocument">The type of the document.</typeparam>
/// <typeparam name="TProjection">The type of the projection (same as TDocument if there is no projection).</typeparam>
/// <typeparam name="TNewProjection">The type of the new projection.</typeparam>
/// <param name="find">The fluent find.</param>
/// <param name="projection">The projection.</param>
/// <returns>The fluent find interface.</returns>
public static IFindFluent<TDocument, TNewProjection> Project<TDocument, TProjection, TNewProjection>(this IFindFluent<TDocument, TProjection> find, Expression<Func<TDocument, TNewProjection>> projection)
{
Ensure.IsNotNull(find, nameof(find));
Ensure.IsNotNull(projection, nameof(projection));
return find.Project<TNewProjection>(new FindExpressionProjectionDefinition<TDocument, TNewProjection>(projection));
}
/// <summary>
/// Sorts the results by an ascending field.
/// </summary>
/// <typeparam name="TDocument">The type of the document.</typeparam>
/// <typeparam name="TProjection">The type of the projection (same as TDocument if there is no projection).</typeparam>
/// <param name="find">The fluent find.</param>
/// <param name="field">The field.</param>
/// <returns>The fluent find interface.</returns>
public static IOrderedFindFluent<TDocument, TProjection> SortBy<TDocument, TProjection>(this IFindFluent<TDocument, TProjection> find, Expression<Func<TDocument, object>> field)
{
Ensure.IsNotNull(find, nameof(find));
Ensure.IsNotNull(field, nameof(field));
// We require an implementation of IFindFluent<TDocument, TProjection>
// to also implement IOrderedFindFluent<TDocument, TProjection>
return (IOrderedFindFluent<TDocument, TProjection>)find.Sort(
new DirectionalSortDefinition<TDocument>(new ExpressionFieldDefinition<TDocument>(field), SortDirection.Ascending));
}
/// <summary>
/// Sorts the results by a descending field.
/// </summary>
/// <typeparam name="TDocument">The type of the document.</typeparam>
/// <typeparam name="TProjection">The type of the projection (same as TDocument if there is no projection).</typeparam>
/// <param name="find">The fluent find.</param>
/// <param name="field">The field.</param>
/// <returns>The fluent find interface.</returns>
public static IOrderedFindFluent<TDocument, TProjection> SortByDescending<TDocument, TProjection>(this IFindFluent<TDocument, TProjection> find, Expression<Func<TDocument, object>> field)
{
Ensure.IsNotNull(find, nameof(find));
Ensure.IsNotNull(field, nameof(field));
// We require an implementation of IFindFluent<TDocument, TProjection>
// to also implement IOrderedFindFluent<TDocument, TProjection>
return (IOrderedFindFluent<TDocument, TProjection>)find.Sort(
new DirectionalSortDefinition<TDocument>(new ExpressionFieldDefinition<TDocument>(field), SortDirection.Descending));
}
/// <summary>
/// Adds an ascending field to the existing sort.
/// </summary>
/// <typeparam name="TDocument">The type of the document.</typeparam>
/// <typeparam name="TProjection">The type of the projection (same as TDocument if there is no projection).</typeparam>
/// <param name="find">The fluent find.</param>
/// <param name="field">The field.</param>
/// <returns>The fluent find interface.</returns>
public static IOrderedFindFluent<TDocument, TProjection> ThenBy<TDocument, TProjection>(this IOrderedFindFluent<TDocument, TProjection> find, Expression<Func<TDocument, object>> field)
{
Ensure.IsNotNull(find, nameof(find));
Ensure.IsNotNull(field, nameof(field));
find.Options.Sort = new SortDefinitionBuilder<TDocument>().Combine(
find.Options.Sort,
new DirectionalSortDefinition<TDocument>(new ExpressionFieldDefinition<TDocument>(field), SortDirection.Ascending));
return find;
}
/// <summary>
/// Adds a descending field to the existing sort.
/// </summary>
/// <typeparam name="TDocument">The type of the document.</typeparam>
/// <typeparam name="TProjection">The type of the projection (same as TDocument if there is no projection).</typeparam>
/// <param name="find">The fluent find.</param>
/// <param name="field">The field.</param>
/// <returns>The fluent find interface.</returns>
public static IOrderedFindFluent<TDocument, TProjection> ThenByDescending<TDocument, TProjection>(this IOrderedFindFluent<TDocument, TProjection> find, Expression<Func<TDocument, object>> field)
{
Ensure.IsNotNull(find, nameof(find));
Ensure.IsNotNull(field, nameof(field));
find.Options.Sort = new SortDefinitionBuilder<TDocument>().Combine(
find.Options.Sort,
new DirectionalSortDefinition<TDocument>(new ExpressionFieldDefinition<TDocument>(field), SortDirection.Descending));
return find;
}
/// <summary>
/// Determine if there are any results.
/// </summary>
/// <typeparam name="TDocument">The type of the document.</typeparam>
/// <typeparam name="TProjection">The type of the projection (same as TDocument if there is no projection).</typeparam>
/// <param name="find">The fluent find.</param>
/// <param name="cancellationToken">The cancellation token.</param>
/// <returns>True if there is at least one document.</returns>
public static bool Any<TDocument, TProjection>(this IFindFluent<TDocument, TProjection> find, CancellationToken cancellationToken = default(CancellationToken))
{
Ensure.IsNotNull(find, nameof(find));
var projection = new BsonDocumentProjectionDefinition<TDocument, BsonDocument>(new BsonDocument("_id", 1));
return IAsyncCursorSourceExtensions.Any(find.Project(projection).Limit(1), cancellationToken);
}
/// <summary>
/// Determine if there are any results.
/// </summary>
/// <typeparam name="TDocument">The type of the document.</typeparam>
/// <typeparam name="TProjection">The type of the projection (same as TDocument if there is no projection).</typeparam>
/// <param name="find">The fluent find.</param>
/// <param name="cancellationToken">The cancellation token.</param>
/// <returns>A Task whose result is true if there is at least one document.</returns>
public static Task<bool> AnyAsync<TDocument, TProjection>(this IFindFluent<TDocument, TProjection> find, CancellationToken cancellationToken = default(CancellationToken))
{
Ensure.IsNotNull(find, nameof(find));
var projection = new BsonDocumentProjectionDefinition<TDocument, BsonDocument>(new BsonDocument("_id", 1));
return IAsyncCursorSourceExtensions.AnyAsync(find.Project(projection).Limit(1), cancellationToken);
}
/// <summary>
/// Get the first result.
/// </summary>
/// <typeparam name="TDocument">The type of the document.</typeparam>
/// <typeparam name="TProjection">The type of the projection (same as TDocument if there is no projection).</typeparam>
/// <param name="find">The fluent find.</param>
/// <param name="cancellationToken">The cancellation token.</param>
/// <returns>A Task whose result is the first result.</returns>
public static TProjection First<TDocument, TProjection>(this IFindFluent<TDocument, TProjection> find, CancellationToken cancellationToken = default(CancellationToken))
{
Ensure.IsNotNull(find, nameof(find));
return IAsyncCursorSourceExtensions.First(find.Limit(1), cancellationToken);
}
/// <summary>
/// Get the first result.
/// </summary>
/// <typeparam name="TDocument">The type of the document.</typeparam>
/// <typeparam name="TProjection">The type of the projection (same as TDocument if there is no projection).</typeparam>
/// <param name="find">The fluent find.</param>
/// <param name="cancellationToken">The cancellation token.</param>
/// <returns>A Task whose result is the first result.</returns>
public static Task<TProjection> FirstAsync<TDocument, TProjection>(this IFindFluent<TDocument, TProjection> find, CancellationToken cancellationToken = default(CancellationToken))
{
Ensure.IsNotNull(find, nameof(find));
return IAsyncCursorSourceExtensions.FirstAsync(find.Limit(1), cancellationToken);
}
/// <summary>
/// Get the first result or null.
/// </summary>
/// <typeparam name="TDocument">The type of the document.</typeparam>
/// <typeparam name="TProjection">The type of the projection (same as TDocument if there is no projection).</typeparam>
/// <param name="find">The fluent find.</param>
/// <param name="cancellationToken">The cancellation token.</param>
/// <returns>A Task whose result is the first result or null.</returns>
public static TProjection FirstOrDefault<TDocument, TProjection>(this IFindFluent<TDocument, TProjection> find, CancellationToken cancellationToken = default(CancellationToken))
{
Ensure.IsNotNull(find, nameof(find));
return IAsyncCursorSourceExtensions.FirstOrDefault(find.Limit(1), cancellationToken);
}
/// <summary>
/// Get the first result or null.
/// </summary>
/// <typeparam name="TDocument">The type of the document.</typeparam>
/// <typeparam name="TProjection">The type of the projection (same as TDocument if there is no projection).</typeparam>
/// <param name="find">The fluent find.</param>
/// <param name="cancellationToken">The cancellation token.</param>
/// <returns>A Task whose result is the first result or null.</returns>
public static Task<TProjection> FirstOrDefaultAsync<TDocument, TProjection>(this IFindFluent<TDocument, TProjection> find, CancellationToken cancellationToken = default(CancellationToken))
{
Ensure.IsNotNull(find, nameof(find));
return IAsyncCursorSourceExtensions.FirstOrDefaultAsync(find.Limit(1), cancellationToken);
}
/// <summary>
/// Gets a single result.
/// </summary>
/// <typeparam name="TDocument">The type of the document.</typeparam>
/// <typeparam name="TProjection">The type of the projection (same as TDocument if there is no projection).</typeparam>
/// <param name="find">The fluent find.</param>
/// <param name="cancellationToken">The cancellation token.</param>
/// <returns>A Task whose result is the single result.</returns>
public static TProjection Single<TDocument, TProjection>(this IFindFluent<TDocument, TProjection> find, CancellationToken cancellationToken = default(CancellationToken))
{
Ensure.IsNotNull(find, nameof(find));
if (!find.Options.Limit.HasValue || find.Options.Limit.Value > 2)
{
find = find.Limit(2);
}
return IAsyncCursorSourceExtensions.Single(find, cancellationToken);
}
/// <summary>
/// Gets a single result.
/// </summary>
/// <typeparam name="TDocument">The type of the document.</typeparam>
/// <typeparam name="TProjection">The type of the projection (same as TDocument if there is no projection).</typeparam>
/// <param name="find">The fluent find.</param>
/// <param name="cancellationToken">The cancellation token.</param>
/// <returns>A Task whose result is the single result.</returns>
public static Task<TProjection> SingleAsync<TDocument, TProjection>(this IFindFluent<TDocument, TProjection> find, CancellationToken cancellationToken = default(CancellationToken))
{
Ensure.IsNotNull(find, nameof(find));
if (!find.Options.Limit.HasValue || find.Options.Limit.Value > 2)
{
find = find.Limit(2);
}
return IAsyncCursorSourceExtensions.SingleAsync(find, cancellationToken);
}
/// <summary>
/// Gets a single result or null.
/// </summary>
/// <typeparam name="TDocument">The type of the document.</typeparam>
/// <typeparam name="TProjection">The type of the projection (same as TDocument if there is no projection).</typeparam>
/// <param name="find">The fluent find.</param>
/// <param name="cancellationToken">The cancellation token.</param>
/// <returns>A Task whose result is the single result or null.</returns>
public static TProjection SingleOrDefault<TDocument, TProjection>(this IFindFluent<TDocument, TProjection> find, CancellationToken cancellationToken = default(CancellationToken))
{
Ensure.IsNotNull(find, nameof(find));
if (!find.Options.Limit.HasValue || find.Options.Limit.Value > 2)
{
find = find.Limit(2);
}
return IAsyncCursorSourceExtensions.SingleOrDefault(find, cancellationToken);
}
/// <summary>
/// Gets a single result or null.
/// </summary>
/// <typeparam name="TDocument">The type of the document.</typeparam>
/// <typeparam name="TProjection">The type of the projection (same as TDocument if there is no projection).</typeparam>
/// <param name="find">The fluent find.</param>
/// <param name="cancellationToken">The cancellation token.</param>
/// <returns>A Task whose result is the single result or null.</returns>
public static Task<TProjection> SingleOrDefaultAsync<TDocument, TProjection>(this IFindFluent<TDocument, TProjection> find, CancellationToken cancellationToken = default(CancellationToken))
{
Ensure.IsNotNull(find, nameof(find));
if (!find.Options.Limit.HasValue || find.Options.Limit.Value > 2)
{
find = find.Limit(2);
}
return IAsyncCursorSourceExtensions.SingleOrDefaultAsync(find, cancellationToken);
}
}
}