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
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
//! Types used in methods for executing AQL queries.

#[cfg(test)]
mod tests;

use std::collections::HashMap;
use std::mem;

use rincon_core::api::query::Query;
use rincon_core::api::types::{JsonValue, Value};
use aql::types::Optimizer;

/// A temporary cursor for retrieving query results.
///
/// If the result set contains more documents than should be transferred in a
/// single round-trip (i.e. as set via the `batch_size` attribute), the server
/// will return the first few documents and create a temporary cursor. The
/// cursor identifier will also be returned to the client. The server will put
/// the cursor identifier in the id attribute of the response object.
/// Furthermore, the `has_more` attribute of the response object will be set to
/// true. This is an indication for the client that there are additional
/// results to fetch from the server.
///
/// The cursor will automatically be destroyed on the server when the client
/// has retrieved all documents from it. The client can also explicitly destroy
/// the cursor at any earlier time using the `DeleteCursor` method.
///
/// **Note**: the server will also destroy abandoned cursors automatically
/// after a certain server-controlled timeout to avoid resource leakage.
#[derive(Debug, Clone, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct Cursor<T> {
    /// The id of the cursor created on the server.
    id: Option<String>,

    /// An array of result documents (might be empty if the query has no
    /// results).
    result: Vec<T>,

    /// A boolean indicator whether there are more results available for the
    /// cursor on the server.
    has_more: bool,

    /// The total number of result documents available (only available if the
    /// query was executed with the count attribute set).
    count: Option<u64>,

    /// A boolean flag indicating whether the query result was served from the
    /// query cache or not. If the query result is served from the query cache,
    /// the extra return attribute will not contain any stats sub-attribute and
    /// no profile sub-attribute.
    cached: bool,

    /// An optional JSON object with extra information about the query result
    /// contained in its stats sub-attribute. For data-modification queries,
    /// the extra.stats sub-attribute will contain the number of modified
    /// documents and the number of documents that could not be modified due
    /// to an error (if ignoreErrors query option is specified).
    extra: Option<CursorExtra>,
}

impl<T> Cursor<T> {
    /// Returns the id of the cursor created on the server.
    pub fn id(&self) -> Option<&String> {
        self.id.as_ref()
    }

    /// Returns a slice of result documents (might be empty if query has no
    /// results).
    pub fn result(&self) -> &[T] {
        &self.result
    }

    /// Returns whether there are more results available for this cursor on
    /// the server.
    pub fn has_more(&self) -> bool {
        self.has_more
    }

    /// Returns the total number of result documents available (only available
    /// if the query was executed with the count attribute set).
    pub fn count(&self) -> Option<u64> {
        self.count
    }

    /// Returns whether the query result was served from the query cache or not.
    ///
    /// If the query result is served from the query cache, the extra return
    /// attribute will not contain any stats sub-attribute and no profile
    /// sub-attribute.
    pub fn is_cached(&self) -> bool {
        self.cached
    }

    /// Returns the statistics about the execution of data modification queries.
    ///
    /// The stats will be `None` if the query is not a data modification query
    /// or the result is served from the query cache.
    pub fn stats(&self) -> Option<&CursorStatistics> {
        match self.extra {
            Some(ref extra) => Some(&extra.stats),
            None => None,
        }
    }

    /// Returns warnings that occurred during query execution.
    pub fn warnings(&self) -> Option<&Vec<Warning>> {
        match self.extra {
            Some(ref extra) => Some(&extra.warnings),
            None => None,
        }
    }

    /// Unwraps this cursor into a tuple of id, count and result.
    pub fn unwrap(self) -> (Option<String>, Option<u64>, Vec<T>) {
        (self.id, self.count, self.result)
    }
}

/// A warning as it may occur during query execution.
//TODO find a suitable type for warnings instead of using a plain JsonValue
pub type Warning = JsonValue;

/// Holds extra information about the query execution.
#[derive(Debug, Clone, Deserialize)]
pub struct CursorExtra {
    /// Statistics about the query execution.
    stats: CursorStatistics,
    /// Warnings that occurred during query execution.
    warnings: Vec<Warning>,
}

impl CursorExtra {
    /// Returns the statistics about the query execution.
    pub fn stats(&self) -> &CursorStatistics {
        &self.stats
    }

    /// Returns warnings that occurred during query execution.
    pub fn warnings(&self) -> &[Warning] {
        &self.warnings
    }
}

/// Holds statistics information about the query execution.
#[allow(missing_copy_implementations)]
#[derive(Debug, Clone, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct CursorStatistics {
    /// The execution time of the query.
    execution_time: f64,
    /// The number of results that have been filtered out.
    filtered: u64,
    /// The total number of results that have been found.
    full_count: Option<u64>,
    /// The number of http requests.
    http_requests: u64,
    /// The number of full scans.
    scanned_full: u64,
    /// The number of index scans.
    scanned_index: u64,
    /// The number of write operations that have been executed.
    writes_executed: u64,
    /// The number of write operations that have been ignored.
    writes_ignored: u64,
}

impl CursorStatistics {
    /// Returns the time the execution of the query took.
    pub fn execution_time(&self) -> f64 {
        self.execution_time
    }

    /// Returns the number of results that have been filtered out.
    pub fn filtered(&self) -> u64 {
        self.filtered
    }

    /// Returns the total number of results that have been found.
    ///
    /// This property is only available if the option `CursorOptions.full_count`
    /// parameter has been set to `true` for this query.
    pub fn full_count(&self) -> Option<u64> {
        self.full_count
    }

    /// Returns the number of http request.
    pub fn http_requests(&self) -> u64 {
        self.http_requests
    }

    /// Returns the number of full scans.
    pub fn scanned_full(&self) -> u64 {
        self.scanned_full
    }

    /// Returns the number of index scans.
    pub fn scanned_index(&self) -> u64 {
        self.scanned_index
    }

    /// Returns the number of write operation that have been executed.
    pub fn writes_executed(&self) -> u64 {
        self.writes_executed
    }

    /// Returns the number of write operations that have been ignored.
    pub fn writes_ignored(&self) -> u64 {
        self.writes_ignored
    }
}

/// This struct defines the parameters of a cursor for an AQL query that is
/// to be created.
#[derive(Debug, Clone, PartialEq, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct NewCursor {
    /// Contains the query string to be executed.
    query: String,

    /// key/value pairs representing the bind parameters.
    bind_vars: HashMap<String, Value>,

    /// Indicates whether the number of documents in the result set should be
    /// returned in the "count" attribute of the result. Calculating the
    /// 'count' attribute might have a performance impact for some queries in
    /// the future so this option is turned off by default, and 'count' is only
    /// returned when requested.
    #[serde(skip_serializing_if = "Option::is_none")]
    count: Option<bool>,

    /// Maximum number of result documents to be transferred from the server to
    /// the client in one round-trip. If this attribute is not set, a
    /// server-controlled default value will be used. A batchSize value of 0 is
    /// disallowed.
    #[serde(skip_serializing_if = "Option::is_none")]
    batch_size: Option<u32>,

    /// A flag to determine whether the AQL query cache shall be used. If set to
    /// false, then any query cache lookup will be skipped for the query. If set
    /// to true, it will lead to the query cache being checked for the query if
    /// the query cache mode is either on or demand.
    #[serde(skip_serializing_if = "Option::is_none")]
    cache: Option<bool>,

    /// The maximum number of memory (measured in bytes) that the query is
    /// allowed to use. If set, then the query will fail with error 'resource
    /// limit exceeded' in case it allocates too much memory. A value of 0
    /// indicates that there is no memory limit.
    #[serde(skip_serializing_if = "Option::is_none")]
    memory_limit: Option<u64>,

    /// The time-to-live for the cursor (in seconds). The cursor will be removed
    /// on the server automatically after the specified amount of time. This is
    /// useful to ensure garbage collection of cursors that are not fully
    /// fetched by clients. If not set, a server-defined value will be used.
    #[serde(skip_serializing_if = "Option::is_none")]
    ttl: Option<u32>,

    /// Optional parameters for tweaking query execution.
    #[serde(skip_serializing_if = "Option::is_none")]
    options: Option<CursorOptions>,
}

impl NewCursor {
    /// Constructs a new instance of `NewCursor` from the given `Query`.
    pub fn new(query: Query) -> Self {
        let (query, bind_vars) = query.unwrap();
        NewCursor {
            query,
            bind_vars,
            count: None,
            batch_size: None,
            cache: None,
            memory_limit: None,
            ttl: None,
            options: None,
        }
    }

    /// Returns the query string to be executed.
    pub fn query(&self) -> &str {
        &self.query
    }

    /// Returns the bind parameters of this `Query`.
    pub fn bind_vars(&self) -> &HashMap<String, Value> {
        &self.bind_vars
    }

    /// Sets the flag whether number of documents in the result set should be
    /// returned.
    ///
    /// Calculating the 'count' attribute might have a performance impact for
    /// some queries in the future so this option is turned off by default, and
    /// 'count' is only returned when requested.
    pub fn set_count<C>(&mut self, count: C)
        where C: Into<Option<bool>>
    {
        self.count = count.into();
    }

    /// Returns whether the number of documents in the result set should be
    /// returned in the "count" attribute of the result.
    pub fn is_count(&self) -> Option<bool> {
        self.count
    }

    /// Sets the maximum number of result documents to be transferred from the
    /// server to the client in one round-trip.
    ///
    /// If this attribute is not set, a server-controlled default value will be
    /// used. A batchSize value of 0 is disallowed.
    pub fn set_batch_size<S>(&mut self, batch_size: S)
        where S: Into<Option<u32>>
    {
        self.batch_size = batch_size.into();
    }

    /// Returns the maximum number of result documents to be transferred from
    /// the server to the client in one round-trip.
    pub fn batch_size(&self) -> Option<u32> {
        self.batch_size
    }

    /// Sets the flag that indicates whether the AQL query cache shall be used.
    ///
    /// If set to false, then any query cache lookup will be skipped for the
    /// query. If set to true, it will lead to the query cache being checked
    /// for the query if the query cache mode is either on or demand.
    pub fn set_cache<C>(&mut self, cache: C)
        where C: Into<Option<bool>>
    {
        self.cache = cache.into();
    }

    /// Returns whether the AQL query cache shall be used.
    pub fn is_cache(&self) -> Option<bool> {
        self.cache
    }

    /// Sets the maximum number of memory (measured in bytes) that the query
    /// is allowed to use.
    ///
    /// If set, then the query will fail with error 'resource limit exceeded'
    /// in case it allocates too much memory. A value of 0 indicates that there
    /// is no memory limit.
    pub fn set_memory_limit<L>(&mut self, memory_limit: L)
        where L: Into<Option<u64>>
    {
        self.memory_limit = memory_limit.into();
    }

    /// Returns the maximum number of memory (measured in bytes) that the query
    /// is allowed to use.
    pub fn memory_limit(&self) -> Option<u64> {
        self.memory_limit
    }

    /// Sets the time-to-live for the cursor (in seconds).
    ///
    /// The cursor will be removed on the server automatically after the
    /// specified amount of time. This is useful to ensure garbage collection
    /// of cursors that are not fully fetched by clients. If not set, a
    /// server-defined value will be used.
    pub fn set_ttl<T>(&mut self, ttl: T)
        where T: Into<Option<u32>>
    {
        self.ttl = ttl.into();
    }

    /// Returns the time-to-live for the cursor (in seconds).
    pub fn ttl(&self) -> Option<u32> {
        self.ttl
    }

    /// Returns the optional cursor options as mutable reference for changing
    /// the optional cursor options in place.
    ///
    /// The cursor options can be used to tweak query execution.
    pub fn options_mut(&mut self) -> &mut CursorOptions {
        self.options.get_or_insert_with(CursorOptions::new)
    }

    /// Removes the currently set options from this struct and returns them.
    pub fn remove_options(&mut self) -> Option<CursorOptions> {
        mem::replace(&mut self.options, None)
    }

    /// Returns the optional cursor options for tweaking query execution.
    pub fn options(&self) -> Option<&CursorOptions> {
        self.options.as_ref()
    }
}

impl From<Query> for NewCursor {
    fn from(query: Query) -> Self {
        NewCursor::new(query)
    }
}

/// Optional parameters for tweaking query execution.
#[derive(Debug, Clone, PartialEq, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct CursorOptions {
    /// When set to true, the query will throw an exception and abort instead of
    /// producing a warning. This option should be used during development to
    /// catch potential issues early. When the attribute is set to false,
    /// warnings will not be propagated to exceptions and will be returned with
    /// the query result. There is also a server configuration option
    /// `--query.fail-on-warning` for setting the default value for
    /// `fail_on_warning` so it does not need to be set on a per-query level.
    #[serde(skip_serializing_if = "Option::is_none")]
    fail_on_warning: Option<bool>,

    /// If set to true, then the additional query profiling information will
    /// be returned in the sub-attribute profile of the extra return attribute
    /// if the query result is not served from the query cache.
    #[serde(skip_serializing_if = "Option::is_none")]
    profile: Option<bool>,

    /// Limits the maximum number of warnings a query will return. The number
    /// of warnings a query will return is limited to 10 by default, but that
    /// number can be increased or decreased by setting this attribute.
    #[serde(skip_serializing_if = "Option::is_none")]
    max_warning_count: Option<u32>,

    /// If set to true and the query contains a LIMIT clause, then the result
    /// will have an extra attribute with the sub-attributes stats and
    /// fullCount, `{ ... , "extra": { "stats": { "fullCount": 123 } } }`. The
    /// fullCount attribute will contain the number of documents in the result
    /// before the last LIMIT in the query was applied. It can be used to count
    /// the number of documents that match certain filter criteria, but only
    /// return a subset of them, in one go. It is thus similar to MySQL's
    /// `SQL_CALC_FOUND_ROWS` hint. Note that setting the option will disable a
    /// few LIMIT optimizations and may lead to more documents being processed,
    /// and thus make queries run longer. Note that the fullCount attribute will
    /// only be present in the result if the query has a LIMIT clause and the
    /// LIMIT clause is actually used in the query.
    #[serde(skip_serializing_if = "Option::is_none")]
    full_count: Option<bool>,

    /// Limits the maximum number of plans that are created by the AQL query
    /// optimizer.
    #[serde(skip_serializing_if = "Option::is_none")]
    max_plans: Option<u32>,

    #[serde(skip_serializing_if = "Option::is_none")]
    optimizer: Option<Optimizer>,

    #[cfg(feature = "rocksdb")]
    /// Maximum number of operations after which an intermediate commit is
    /// performed automatically.
    ///
    /// Honored by the RocksDB storage engine only.
    #[serde(skip_serializing_if = "Option::is_none")]
    intermediate_commit_count: Option<u32>,

    #[cfg(feature = "rocksdb")]
    /// Maximum total size of operations after which an intermediate commit is
    /// performed automatically.
    ///
    /// Honored by the RocksDB storage engine only.
    #[serde(skip_serializing_if = "Option::is_none")]
    intermediate_commit_size: Option<u32>,

    #[cfg(feature = "rocksdb")]
    /// Transaction size limit in bytes.
    ///
    /// Honored by the RocksDB storage engine only.
    #[serde(skip_serializing_if = "Option::is_none")]
    max_transaction_size: Option<u32>,

    #[cfg(feature = "enterprise")]
    /// This enterprise parameter allows to configure how long a DBServer will
    /// have time to bring the satellite collections involved in the query into
    /// sync. The default value is 60.0 (seconds). When the max time has been
    /// reached the query will be stopped.
    #[serde(skip_serializing_if = "Option::is_none")]
    satellite_sync_wait: Option<bool>,
}

impl CursorOptions {
    /// Constructs a new instance of an empty `CursorOptions` struct.
    ///
    /// All fields are set to `None`.
    fn new() -> Self {
        CursorOptions::default()
    }

    /// Sets the flag indicating whether the query shall fail on warnings.
    ///
    /// When set to true, the query will throw an exception and abort instead of
    /// producing a warning. This option should be used during development to
    /// catch potential issues early. When the attribute is set to false,
    /// warnings will not be propagated to exceptions and will be returned with
    /// the query result. There is also a server configuration option
    /// `--query.fail-on-warning` for setting the default value for
    /// `fail_on_warning` so it does not need to be set on a per-query level.
    pub fn set_fail_on_warning<W>(&mut self, fail_on_warning: W)
        where W: Into<Option<bool>>
    {
        self.fail_on_warning = fail_on_warning.into();
    }

    /// Returns whether the query shall fail on warnings.
    pub fn is_fail_on_warning(&self) -> Option<bool> {
        self.fail_on_warning
    }

    /// Sets the flag indicating whether additional query profiling information
    /// shall be returned.
    ///
    /// If set to true, then the additional query profiling information will
    /// be returned in the sub-attribute profile of the extra return attribute
    /// if the query result is not served from the query cache.
    pub fn set_profile<P>(&mut self, profile: P)
        where P: Into<Option<bool>>
    {
        self.profile = profile.into();
    }

    /// Returns whether additional query profiling information shall be
    /// returned.
    pub fn is_profile(&self) -> Option<bool> {
        self.profile
    }

    /// Sets the maximum number of warnings a query will return.
    ///
    /// The number of warnings a query will return is limited to 10 by default,
    /// but that number can be increased or decreased by setting this attribute.
    pub fn set_max_warning_count<C>(&mut self, max_warning_count: C)
        where C: Into<Option<u32>>
    {
        self.max_warning_count = max_warning_count.into();
    }

    /// Returns the maximum number of warnings a query will return.
    pub fn max_warning_count(&self) -> Option<u32> {
        self.max_warning_count
    }

    /// Set the flag indicating whether full count and stats should be returned.
    ///
    /// If set to true and the query contains a LIMIT clause, then the result
    /// will have an extra attribute with the sub-attributes stats and
    /// fullCount, `{ ... , "extra": { "stats": { "fullCount": 123 } } }`. The
    /// fullCount attribute will contain the number of documents in the result
    /// before the last LIMIT in the query was applied. It can be used to count
    /// the number of documents that match certain filter criteria, but only
    /// return a subset of them, in one go. It is thus similar to MySQL's
    /// `SQL_CALC_FOUND_ROWS` hint. Note that setting the option will disable a
    /// few LIMIT optimizations and may lead to more documents being processed,
    /// and thus make queries run longer. Note that the fullCount attribute will
    /// only be present in the result if the query has a LIMIT clause and the
    /// LIMIT clause is actually used in the query.
    pub fn set_full_count<C>(&mut self, full_count: C)
        where C: Into<Option<bool>>
    {
        self.full_count = full_count.into();
    }

    /// Returns whether full count and stats should be returned.
    pub fn is_full_count(&self) -> Option<bool> {
        self.full_count
    }

    /// Sets the maximum number of plans that are created by the AQL query
    /// optimizer.
    pub fn set_max_plans<P>(&mut self, max_plans: P)
        where P: Into<Option<u32>>
    {
        self.max_plans = max_plans.into();
    }

    /// Returns the maximum number of plans that are created by the AQL query
    /// optimizer.
    pub fn max_plans(&self) -> Option<u32> {
        self.max_plans
    }

    /// Returns a mutable reference to the optimizer options.
    pub fn optimizer_mut(&mut self) -> &mut Optimizer {
        self.optimizer.get_or_insert_with(Optimizer::new)
    }

    /// Removes the optimizer options from this struct and returns
    /// the them.
    pub fn remove_optimizer(&mut self) -> Option<Optimizer> {
        mem::replace(&mut self.optimizer, None)
    }

    /// Returns a reference to the optimizer options.
    pub fn optimizer(&self) -> Option<&Optimizer> {
        self.optimizer.as_ref()
    }

    #[cfg(feature = "rocksdb")]
    /// Sets the maximum number of operations after which an intermediate
    /// commit is performed automatically.
    ///
    /// Honored by the RocksDB storage engine only.
    pub fn set_intermediate_commit_count<C>(&mut self, intermediate_commit_count: C)
        where C: Into<Option<u32>>
    {
        self.intermediate_commit_count = intermediate_commit_count.into();
    }

    #[cfg(feature = "rocksdb")]
    /// Returns the maximum number of operations after which an intermediate
    /// commit is performed automatically.
    ///
    /// Honored by the RocksDB storage engine only.
    pub fn intermediate_commit_count(&self) -> Option<u32> {
        self.intermediate_commit_count
    }

    #[cfg(feature = "rocksdb")]
    /// Sets the maximum total size of operations after which an intermediate
    /// commit is performed automatically.
    ///
    /// Honored by the RocksDB storage engine only.
    pub fn set_intermediate_commit_size<S>(&mut self, intermediate_commit_size: S)
        where S: Into<Option<u32>>
    {
        self.intermediate_commit_size = intermediate_commit_size.into();
    }

    #[cfg(feature = "rocksdb")]
    /// Returns the maximum total size of operations after which an intermediate
    /// commit is performed automatically.
    ///
    /// Honored by the RocksDB storage engine only.
    pub fn intermediate_commit_size(&self) -> Option<u32> {
        self.intermediate_commit_size
    }

    #[cfg(feature = "rocksdb")]
    /// Sets the transaction size limit in bytes.
    ///
    /// Honored by the RocksDB storage engine only.
    pub fn set_max_transaction_size<S>(&mut self, max_transaction_size: S)
        where S: Into<Option<u32>>
    {
        self.max_transaction_size = max_transaction_size.into();
    }

    #[cfg(feature = "rocksdb")]
    /// Returns the transaction size limit in bytes.
    ///
    /// Honored by the RocksDB storage engine only.
    pub fn max_transaction_size(&self) -> Option<u32> {
        self.max_transaction_size
    }

    #[cfg(feature = "enterprise")]
    /// Sets the enterprise parameter that configures how long a DBServer will
    /// have time to bring the satellite collections involved in the query into
    /// sync.
    ///
    /// The default value is 60.0 (seconds). When the max time has been reached
    /// the query will be stopped.
    pub fn set_satellite_sync_wait<W>(&mut self, satellite_sync_wait: W)
        where W: Into<Option<bool>>
    {
        self.satellite_sync_wait = satellite_sync_wait.into();
    }

    #[cfg(feature = "enterprise")]
    /// Returns the enterprise parameter that configures how long a DBServer
    /// will have time to bring the satellite collections involved in the query
    /// into sync.
    pub fn satellite_sync_wait(&self) -> Option<bool> {
        self.satellite_sync_wait
    }
}

impl Default for CursorOptions {
    fn default() -> Self {
        CursorOptions {
            fail_on_warning: None,
            profile: None,
            max_warning_count: None,
            full_count: None,
            max_plans: None,
            optimizer: None,
            #[cfg(feature = "rocksdb")]
            intermediate_commit_count: None,
            #[cfg(feature = "rocksdb")]
            intermediate_commit_size: None,
            #[cfg(feature = "rocksdb")]
            max_transaction_size: None,
            #[cfg(feature = "enterprise")]
            satellite_sync_wait: None,
        }
    }
}