forked from mongodb/mongo-go-driver
-
Notifications
You must be signed in to change notification settings - Fork 1
/
aggregateopt.go
405 lines (315 loc) · 10.6 KB
/
aggregateopt.go
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
// Copyright (C) MongoDB, Inc. 2017-present.
//
// 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
package aggregateopt
import (
"time"
"reflect"
"github.com/mongodb/mongo-go-driver/core/option"
"github.com/mongodb/mongo-go-driver/core/session"
"github.com/mongodb/mongo-go-driver/mongo/mongoopt"
)
var aggregateBundle = new(AggregateBundle)
// Aggregate represents all passable params for the aggregate() function.
type Aggregate interface {
aggregate()
}
// AggregateOption represents the options for the aggregate() function.
type AggregateOption interface {
Aggregate
ConvertAggregateOption() option.AggregateOptioner
}
// AggregateSession is the session for the aggregate() function
type AggregateSession interface {
Aggregate
ConvertAggregateSession() *session.Client
}
// AggregateBundle is a bundle of Aggregate options
type AggregateBundle struct {
option Aggregate
next *AggregateBundle
}
// Implement the Aggregate interface
func (ab *AggregateBundle) aggregate() {}
// ConvertAggregateOption implements the Aggregate interface
func (ab *AggregateBundle) ConvertAggregateOption() option.AggregateOptioner { return nil }
// BundleAggregate bundles Aggregate options
func BundleAggregate(opts ...Aggregate) *AggregateBundle {
head := aggregateBundle
for _, opt := range opts {
newBundle := AggregateBundle{
option: opt,
next: head,
}
head = &newBundle
}
return head
}
// AllowDiskUse adds an option to allow aggregation stages to write to temporary files.
func (ab *AggregateBundle) AllowDiskUse(b bool) *AggregateBundle {
bundle := &AggregateBundle{
option: AllowDiskUse(b),
next: ab,
}
return bundle
}
// BatchSize adds an option to specify the number of documents to return in every batch.
func (ab *AggregateBundle) BatchSize(i int32) *AggregateBundle {
bundle := &AggregateBundle{
option: BatchSize(i),
next: ab,
}
return bundle
}
// BypassDocumentValidation adds an option to allow the write to opt-out of document-level validation.
func (ab *AggregateBundle) BypassDocumentValidation(b bool) *AggregateBundle {
bundle := &AggregateBundle{
option: BypassDocumentValidation(b),
next: ab,
}
return bundle
}
// Collation adds an option to specify a Collation.
func (ab *AggregateBundle) Collation(c *mongoopt.Collation) *AggregateBundle {
bundle := &AggregateBundle{
option: Collation(c),
next: ab,
}
return bundle
}
// MaxTime adds an option to specify the maximum amount of time to allow the query to run.
func (ab *AggregateBundle) MaxTime(d time.Duration) *AggregateBundle {
bundle := &AggregateBundle{
option: MaxTime(d),
next: ab,
}
return bundle
}
// MaxAwaitTime adds an option to specify the maximum amount of time for the server to wait on new documents to satisfy a tailable cursor query
func (ab *AggregateBundle) MaxAwaitTime(d time.Duration) *AggregateBundle {
bundle := &AggregateBundle{
option: MaxAwaitTime(d),
next: ab,
}
return bundle
}
// Comment adds an option to specify a string to help trace the operation through the database profiler, currentOp, and logs.
func (ab *AggregateBundle) Comment(s string) *AggregateBundle {
bundle := &AggregateBundle{
option: Comment(s),
next: ab,
}
return bundle
}
// Hint adds an option to specify the index to use for the aggregation.
func (ab *AggregateBundle) Hint(hint interface{}) *AggregateBundle {
bundle := &AggregateBundle{
option: Hint(hint),
next: ab,
}
return bundle
}
// Calculates the total length of a bundle, accounting for nested bundles.
func (ab *AggregateBundle) bundleLength() int {
if ab == nil {
return 0
}
bundleLen := 0
for ; ab != nil; ab = ab.next {
if ab.option == nil {
continue
}
if converted, ok := ab.option.(*AggregateBundle); ok {
// nested bundle
bundleLen += converted.bundleLength()
continue
}
if _, ok := ab.option.(AggregateSessionOpt); !ok {
bundleLen++
}
}
return bundleLen
}
// Unbundle transforms a bundle into a slice of options, optionally deduplicating
func (ab *AggregateBundle) Unbundle(deduplicate bool) ([]option.AggregateOptioner, *session.Client, error) {
options, sess, err := ab.unbundle()
if err != nil {
return nil, nil, err
}
if !deduplicate {
return options, sess, nil
}
// iterate backwards and make dedup slice
optionsSet := make(map[reflect.Type]struct{})
for i := len(options) - 1; i >= 0; i-- {
currOption := options[i]
optionType := reflect.TypeOf(currOption)
if _, ok := optionsSet[optionType]; ok {
// option already found
options = append(options[:i], options[i+1:]...)
continue
}
optionsSet[optionType] = struct{}{}
}
return options, sess, nil
}
// Helper that recursively unwraps bundle into slice of options
func (ab *AggregateBundle) unbundle() ([]option.AggregateOptioner, *session.Client, error) {
if ab == nil {
return nil, nil, nil
}
var sess *session.Client
listLen := ab.bundleLength()
options := make([]option.AggregateOptioner, listLen)
index := listLen - 1
for listHead := ab; listHead != nil; listHead = listHead.next {
if listHead.option == nil {
continue
}
// if the current option is a nested bundle, Unbundle it and add its options to the current array
if converted, ok := listHead.option.(*AggregateBundle); ok {
nestedOptions, s, err := converted.unbundle()
if err != nil {
return nil, nil, err
}
if s != nil && sess == nil {
sess = s
}
// where to start inserting nested options
startIndex := index - len(nestedOptions) + 1
// add nested options in order
for _, nestedOp := range nestedOptions {
options[startIndex] = nestedOp
startIndex++
}
index -= len(nestedOptions)
continue
}
switch t := listHead.option.(type) {
case AggregateOption:
options[index] = t.ConvertAggregateOption()
index--
case AggregateSession:
if sess == nil {
sess = t.ConvertAggregateSession()
}
}
}
return options, sess, nil
}
// String implements the Stringer interface
func (ab *AggregateBundle) String() string {
if ab == nil {
return ""
}
str := ""
for head := ab; head != nil && head.option != nil; head = head.next {
if converted, ok := head.option.(*AggregateBundle); ok {
str += converted.String()
continue
}
if conv, ok := head.option.(AggregateOption); !ok {
str += conv.ConvertAggregateOption().String() + "\n"
}
}
return str
}
// AllowDiskUse allows aggregation stages to write to temporary files.
func AllowDiskUse(b bool) OptAllowDiskUse {
return OptAllowDiskUse(b)
}
// BatchSize specifies the number of documents to return in every batch.
func BatchSize(i int32) OptBatchSize {
return OptBatchSize(i)
}
// BypassDocumentValidation allows the write to opt-out of document-level validation.
func BypassDocumentValidation(b bool) OptBypassDocumentValidation {
return OptBypassDocumentValidation(b)
}
// Collation specifies a collation.
func Collation(c *mongoopt.Collation) OptCollation {
return OptCollation{
Collation: c.Convert(),
}
}
// MaxTime specifies the maximum amount of time to allow the query to run.
func MaxTime(d time.Duration) OptMaxTime {
return OptMaxTime(d)
}
// MaxAwaitTime specifies the maximum amount of time for the server to wait on new documents to satisfy a tailable cursor query
func MaxAwaitTime(d time.Duration) OptMaxAwaitTime {
return OptMaxAwaitTime(d)
}
// Comment allows users to specify a string to help trace the operation through the database profiler, currentOp, and logs.
func Comment(s string) OptComment {
return OptComment(s)
}
// Hint specifies the index to use for the aggregation.
func Hint(hint interface{}) OptHint {
return OptHint{hint}
}
// OptAllowDiskUse allows aggregation stages to write to temporary files.
type OptAllowDiskUse option.OptAllowDiskUse
func (OptAllowDiskUse) aggregate() {}
// ConvertAggregateOption implements the Aggregate interface
func (opt OptAllowDiskUse) ConvertAggregateOption() option.AggregateOptioner {
return option.OptAllowDiskUse(opt)
}
// OptBatchSize specifies the number of documents to return in every batch.
type OptBatchSize option.OptBatchSize
func (OptBatchSize) aggregate() {}
// ConvertAggregateOption implements the Aggregate interface
func (opt OptBatchSize) ConvertAggregateOption() option.AggregateOptioner {
return option.OptBatchSize(opt)
}
// OptBypassDocumentValidation allows the write to opt-out of document-level validation.
type OptBypassDocumentValidation option.OptBypassDocumentValidation
// ConvertAggregateOption implements the Aggregate interface
func (opt OptBypassDocumentValidation) ConvertAggregateOption() option.AggregateOptioner {
return option.OptBypassDocumentValidation(opt)
}
func (OptBypassDocumentValidation) aggregate() {}
// OptCollation specifies a collation.
type OptCollation option.OptCollation
func (OptCollation) aggregate() {}
// ConvertAggregateOption implements the Aggregate interface
func (opt OptCollation) ConvertAggregateOption() option.AggregateOptioner {
return option.OptCollation(opt)
}
// OptMaxTime specifies the maximum amount of time to allow the query to run.
type OptMaxTime option.OptMaxTime
func (OptMaxTime) aggregate() {}
// ConvertAggregateOption implements the Aggregate interface
func (opt OptMaxTime) ConvertAggregateOption() option.AggregateOptioner {
return option.OptMaxTime(opt)
}
// OptMaxAwaitTime specifies the maximum amount of time for the server to wait on new documents to satisfy a tailable cursor query
type OptMaxAwaitTime option.OptMaxAwaitTime
func (OptMaxAwaitTime) aggregate() {}
// ConvertAggregateOption implements the Aggregate interface
func (opt OptMaxAwaitTime) ConvertAggregateOption() option.AggregateOptioner {
return option.OptMaxAwaitTime(opt)
}
// OptComment allows users to specify a string to help trace the operation through the database profiler, currentOp, and logs.
type OptComment option.OptComment
func (OptComment) aggregate() {}
// ConvertAggregateOption implements the Aggregate interface
func (opt OptComment) ConvertAggregateOption() option.AggregateOptioner {
return option.OptComment(opt)
}
// OptHint specifies the index to use for the aggregation.
type OptHint option.OptHint
func (OptHint) aggregate() {}
// ConvertAggregateOption implements the Aggregate interface
func (opt OptHint) ConvertAggregateOption() option.AggregateOptioner {
return option.OptHint(opt)
}
// AggregateSessionOpt is an aggregate session option.
type AggregateSessionOpt struct{}
func (AggregateSessionOpt) aggregate() {}
// ConvertAggregateSession implements the AggregateSession interface.
func (AggregateSessionOpt) ConvertAggregateSession() *session.Client {
return nil
}