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
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
//! Query API, a simple builder-like constructor for EJDB queries.

use std::borrow::Cow;
use std::ops::{Deref, DerefMut};

use bson::{Bson, Document};

use utils::bson::BsonNumber;

/// A container of EJDB query options.
///
/// This structure is a wrapper around a BSON document with various options affecting query
/// execution in EJDB. It implements `Deref<Target=bson::Document>` and `DerefMut`, therefore
/// it is possible to work with it as a BSON document directly. It also has
/// `into_bson()`/`as_bson()` methods and `Into<bson::Document>`/`From<bson::Document>`
/// implementations. If an invalid document is constructed and passed as a hints map when
/// executing a query, an error will be returned.
///
/// Query hints are a part of any query operation and are passed with the actual query to
/// `Collection::query()` method; they can be empty if the default behavior is sufficient.
#[derive(Clone, PartialEq, Debug)]
pub struct QueryHints {
    hints: Document,
}

impl QueryHints {
    /// Creates a new, empty query hints set.
    #[inline]
    pub fn new() -> QueryHints {
        QueryHints {
            hints: Document::new(),
        }
    }

    /// Sets the maximum number of entries which should be returned by the query.
    ///
    /// Corresponds to `$max` hint in EJDB query hints syntax.
    #[inline]
    pub fn max(mut self, n: i64) -> QueryHints {
        self.hints.insert("$max", n);
        self
    }

    /// Sets the number of entries which should be skipped first when query results are inspected.
    ///
    /// Corresponds to `$skip` hint in EJDB query hints syntax.
    #[inline]
    pub fn skip(mut self, n: i64) -> QueryHints {
        self.hints.insert("$skip", n);
        self
    }

    /// Returns a builder for ordering hint for the provided field.
    ///
    /// Corresponds to `$orderBy` hint in EJDB query hints syntax.
    #[inline]
    pub fn order_by<S: Into<String>>(self, field: S) -> QueryHintsOrderBy {
        QueryHintsOrderBy(self, field.into())
    }

    /// Returns a builder for setting inclusion/exclusion flag of the provided field.
    ///
    /// Corresponds to `$fields` hint in EJDB query syntax.
    #[inline]
    pub fn field<S: Into<String>>(self, field: S) -> QueryHintsField {
        QueryHintsField(self, field.into())
    }

    fn add_hint(&mut self, key: &str, subkey: String, value: i32) {
        if !self.hints.contains_key(key) {
            self.hints.insert(key, bson! { subkey => value });
        } else {
            match self.hints.get_mut(key) {
                Some(&mut Bson::Document(ref mut doc)) => {
                    doc.insert(subkey, value);
                }
                _ => unreachable!(),
            }
        }
    }

    /// Converts these hints to a BSON document.
    #[inline]
    pub fn into_bson(self) -> Document {
        self.hints
    }

    /// Returns a reference to these hints as a BSON document.
    #[inline]
    pub fn as_bson(&self) -> &Document {
        &self.hints
    }

    /// Returns a mutable reference to these hints as a BSON document.
    ///
    /// Be careful when modifying the document directly because it may lead to invalid hints.
    #[inline]
    pub fn as_bson_mut(&mut self) -> &mut Document {
        &mut self.hints
    }
}

/// A builder for the hint to order by a specific field.
pub struct QueryHintsOrderBy(QueryHints, String);

impl QueryHintsOrderBy {
    fn add_hint(mut self, value: i32) -> QueryHints {
        self.0.add_hint("$orderby", self.1, value);
        self.0
    }

    /// Sets that query results must be sorted by this field in descending order.
    #[inline]
    pub fn desc(self) -> QueryHints {
        self.add_hint(-1)
    }

    /// Sets that query results must be sorted by this field in ascending order.
    #[inline]
    pub fn asc(self) -> QueryHints {
        self.add_hint(1)
    }
}

/// A builder for inclusion/exclusion flag for a specific field.
pub struct QueryHintsField(QueryHints, String);

impl QueryHintsField {
    fn add_hint(mut self, value: i32) -> QueryHints {
        self.0.add_hint("$fields", self.1, value);
        self.0
    }

    /// Sets that query results must not contain a field with this name.
    #[inline]
    pub fn exclude(self) -> QueryHints {
        self.add_hint(-1)
    }

    /// Sets that query results must contain a field with this name, if available.
    #[inline]
    pub fn include(self) -> QueryHints {
        self.add_hint(1)
    }
}

impl From<Document> for QueryHints {
    #[inline]
    fn from(document: Document) -> QueryHints {
        QueryHints { hints: document }
    }
}

impl Into<Document> for QueryHints {
    #[inline]
    fn into(self) -> Document {
        self.hints
    }
}

impl Deref for QueryHints {
    type Target = Document;

    #[inline]
    fn deref(&self) -> &Document {
        self.as_bson()
    }
}

impl DerefMut for QueryHints {
    #[inline]
    fn deref_mut(&mut self) -> &mut Document {
        self.as_bson_mut()
    }
}

/// An entry point for constructing query hints.
///
/// This is a convenience API. This structure provides the same methods as `QueryHints`
/// structure and inside them a fresh `QueryHints` instance is created and the corresponding
/// method is called on it. This is the main approach for constructing query hints.
///
/// # Example
///
/// ```
/// use ejdb::query::{QueryHints, QH};
///
/// assert_eq!(
///     QueryHints::new().max(128).field("name").include().order_by("date").desc(),
///     QH.max(128).field("name").include().order_by("date").desc()
/// )
/// ```
pub struct QH;

impl QH {
    #[inline(always)]
    pub fn empty(self) -> QueryHints {
        QueryHints::new()
    }

    #[inline(always)]
    pub fn max(self, n: i64) -> QueryHints {
        QueryHints::new().max(n)
    }

    #[inline(always)]
    pub fn skip(self, n: i64) -> QueryHints {
        QueryHints::new().skip(n)
    }

    #[inline(always)]
    pub fn order_by<S: Into<String>>(self, field: S) -> QueryHintsOrderBy {
        QueryHints::new().order_by(field)
    }

    #[inline(always)]
    pub fn field<S: Into<String>>(self, field: S) -> QueryHintsField {
        QueryHints::new().field(field)
    }
}

/// An EJDB query.
///
/// This structure represents both a find query and an update query, because both kinds of
/// queries are executed in the same way.
///
/// A query internally is a BSON document of a [certain format][queries], very similar to
/// MongoDB queries. This structure provides convenience methods to build such a document.
/// Additionally, a query may have hints, i.e. non-data parameters affecting its behavior.
/// These parameters are encapsulated in the `QueryHints` structure and are passed to the
/// `Collection::query()` method separately.
///
/// This structure implements `Deref<Target=bson::Document>` and `DerefMut`, and it also
/// has `as_bson()`/`as_bson_mut()`/`into_bson()` methods and
/// `Into<bson::Document>`/`From<bson::Document>` implementations, so it is possible to
/// work with the query as with a regular BSON document. Note, however, that an invalid
/// query will result in an error when it is executed, so it is recommended to use the
/// builder API to construct queries.
///
/// Most of the building methods here are as generic as possible; e.g. they take `Into<String>`
/// instead of `&str` or `String`; same with iterable objects. This is done for maximum
/// flexibility - these methods will consume almost anything which is sensible to pass to them.
///
///   [queries]: http://ejdb.org/doc/ql/ql.html
#[derive(Clone, PartialEq, Debug)]
pub struct Query {
    query: Document,
}

impl Query {
    /// Creates a new empty query with empty hints.
    ///
    /// This method can be a starting point for building a query; see `Q` struct, however.
    #[inline]
    pub fn new() -> Query {
        Query {
            query: Document::new(),
        }
    }

    /// Builds `$and` query.
    ///
    /// Selects all records which satisfy all of the provided queries simultaneously.
    pub fn and<I>(mut self, queries: I) -> Query
    where
        I: IntoIterator,
        I::Item: Into<Document>,
    {
        self.query.insert(
            "$and",
            queries
                .into_iter()
                .map(|v| v.into().into())
                .collect::<Vec<Bson>>(),
        );
        self
    }

    /// Builds `$or` query.
    ///
    /// Selects all records which satisfy at least one of the provided queries.
    pub fn or<I>(mut self, queries: I) -> Query
    where
        I: IntoIterator,
        I::Item: Into<Document>,
    {
        self.query.insert(
            "$or",
            queries
                .into_iter()
                .map(|v| v.into().into())
                .collect::<Vec<Bson>>(),
        );
        self
    }

    /// Sets equality constraint for `_id` field.
    ///
    /// This is just a shortcut for `query.field("_id").eq(value)`.
    #[inline]
    pub fn id<V: Into<Bson>>(self, value: V) -> Query {
        self.field("_id").eq(value)
    }

    /// Returns a builder object for a field constraint.
    ///
    /// This is the main method to set query constraints. Usually a query contains one or
    /// more such constraints.
    #[inline]
    pub fn field<S: Into<String>>(self, name: S) -> FieldConstraint {
        FieldConstraint(name.into().into(), FieldConstraintData::Root(self))
    }

    /// Constructs a `$join` query.
    ///
    /// Joins this collection with another one by the value of `_id` field.
    pub fn join<S: Into<String>, C: Into<String>>(self, key: S, coll: C) -> Query {
        self.add_subkey_at_key("$do", key, bson!("$join" => (coll.into())))
    }

    fn modify_document_at_key<K, F1, F2, V>(
        mut self,
        key: K,
        value: V,
        on_document: F1,
        on_something_else: F2,
    ) -> Query
    where
        K: Into<String> + AsRef<str>,
        F1: FnOnce(&mut Document, V),    // Document is value at key K
        F2: FnOnce(&mut Document, K, V), // Document is the query itself
    {
        // unsafe is to overcome non-lexical borrow issues (and entry API is not available)
        let r = self
            .query
            .get_mut(key.as_ref())
            .map(|p| unsafe { &mut *(p as *mut _) });
        if let Some(&mut Bson::Document(ref mut d)) = r {
            on_document(d, value);
        } else {
            on_something_else(&mut self.query, key, value);
        }

        self
    }

    fn add_subkey_at_key<K, S, V>(self, key: K, subkey: S, value: V) -> Query
    where
        K: Into<String> + AsRef<str>,
        S: Into<String>,
        V: Into<Bson>,
    {
        self.modify_document_at_key(
            key,
            (subkey, value),
            |d, (s, v)| {
                d.insert(s, v);
            },
            |q, k, (s, v)| {
                q.insert(k.into(), bson! { s.into() => (v.into()) });
            },
        )
    }

    fn merge_documents_at_key<K, D>(self, key: K, document: D) -> Query
    where
        K: Into<String> + AsRef<str>,
        D: Into<Document>,
    {
        self.modify_document_at_key(
            key,
            document,
            |d, v| {
                for (k, v) in v.into() {
                    d.insert(k, v);
                }
            },
            |q, k, v| {
                q.insert(k.into(), v.into());
            },
        )
    }

    /// Constructs an `$addToSet` update query.
    ///
    /// Adds `value` to the set (represented as a BSON array) at the field `key`.
    pub fn add_to_set<S: Into<String>, V: Into<Bson>>(self, key: S, value: V) -> Query {
        self.add_subkey_at_key("$addToSet", key, value)
    }

    /// Constructs a multi-valued `$addToSet` update query.
    ///
    /// Adds all items from `values` to the set (represented as a BSON array) at the field `key`.
    pub fn add_to_set_all<S, I>(self, key: S, values: I) -> Query
    where
        S: Into<String>,
        I: IntoIterator,
        I::Item: Into<Bson>,
    {
        let values: Vec<_> = values.into_iter().map(I::Item::into).collect();
        self.add_subkey_at_key("$addToSet", key, values)
    }

    /// Constructs an `$unset` update query.
    ///
    /// Removes the field `key`.
    pub fn unset<S: Into<String>>(self, key: S) -> Query {
        self.add_subkey_at_key("$unset", key, "")
    }

    /// Constructs an `$inc` update query.
    ///
    /// Increments the numerical value in field `key` by `delta`. Use negative `delta` for
    /// decrements.
    pub fn inc<S: Into<String>, D: BsonNumber>(self, key: S, delta: D) -> Query {
        self.add_subkey_at_key("$inc", key, delta.to_bson())
    }

    /// Constructs a `$dropall` update query.
    ///
    /// Removes all records from the collection.
    pub fn drop_all(mut self) -> Query {
        self.query.insert("$dropall", true);
        self
    }

    /// Constructs a `$set` update query for a single field.
    ///
    /// Sets the field `key` to the value `value` in all matched records. Multiple sequential
    /// `set()`s will be merged.
    pub fn set<S: Into<String>, V: Into<Bson>>(self, key: S, value: V) -> Query {
        self.add_subkey_at_key("$set", key, value)
    }

    /// Constructs an entire `$set` update query.
    ///
    /// Sets all fields from the `document` to their respective values in all matched records.
    /// Overwrites all previous `set()` and `set_many()` invocations.
    pub fn set_many<D: Into<Document>>(mut self, document: D) -> Query {
        self.query.insert("$set", document.into());
        self
    }

    /// Constructs an `$upsert` update query for a single field.
    ///
    /// Like `set()`, but will insert new record if none matched. Multiple sequential
    /// `set()`s will be merged.
    pub fn upsert<S: Into<String>, V: Into<Bson>>(self, key: S, value: V) -> Query {
        self.add_subkey_at_key("$upsert", key, value)
    }

    /// Constructs an entire `$upsert` update query.
    ///
    /// Like `set()`, but will insert new record if none matched. Overwrites all previous
    /// `upsert()` and `upsert_field()` calls.
    pub fn upsert_many<D: Into<Document>>(mut self, document: D) -> Query {
        self.query.insert("$upsert", document.into());
        self
    }

    /// Constructs a `$pull` update query.
    ///
    /// Removes the `value` from an array at the field `key` in all matched records.
    pub fn pull<S: Into<String>, V: Into<Bson>>(self, key: S, value: V) -> Query {
        self.add_subkey_at_key("$pull", key, value)
    }

    /// Constructs a multiple-valued `$pull` update query.
    ///
    /// Removes all values from `values` from an array at the field `key` in all matched records.
    /// Multiple `push_all()` calls will be merged.
    pub fn pull_all<S, I>(self, key: S, values: I) -> Query
    where
        S: Into<String>,
        I: IntoIterator,
        I::Item: Into<Bson>,
    {
        let values: Vec<_> = values.into_iter().map(I::Item::into).collect();
        self.add_subkey_at_key("$pullAll", key, values)
    }

    /// Constructs a `$push` update query.
    ///
    /// Appends the provided `value` to an array field `key` in all matched records. Multiple
    /// `push()` calls will be merged.
    pub fn push<S: Into<String>, V: Into<Bson>>(self, key: S, value: V) -> Query {
        self.add_subkey_at_key("$push", key, value)
    }

    /// Constructs a multiple-valued `$push` update query.
    ///
    /// Appends all values from `values` to an array field `key` in all matched records. Multiple
    /// `push_all()` calls will be merged.
    pub fn push_all<S, I>(self, key: S, values: I) -> Query
    where
        S: Into<String>,
        I: IntoIterator,
        I::Item: Into<Bson>,
    {
        let values: Vec<_> = values.into_iter().map(I::Item::into).collect();
        self.add_subkey_at_key("$pushAll", key, values)
    }

    /// Constructs a `$rename` update query.
    ///
    /// Renames field `key` to `new_key` in all matched records. Multiple `rename()` calls will
    /// be merged.
    pub fn rename<S1: Into<String>, S2: Into<String>>(self, key: S1, new_key: S2) -> Query {
        self.add_subkey_at_key("$rename", key, new_key.into())
    }

    /// Constructs a limit-only `$slice` query.
    ///
    /// Limits the number of array items of the field `key` in the returned result. `limit` is
    /// the number of elements which will be taken from the beginning of the array.
    pub fn slice<S: Into<String>>(self, key: S, limit: i64) -> Query {
        self.add_subkey_at_key("$do", key, bson!("$slice" => limit))
    }

    /// Constructs a full `$slice` query.
    ///
    /// Limits the number of array items of the field `key` in the returned result. `limit` is
    /// the maximum number of elements to be returned starting from `offset`.
    pub fn slice_with_offset<S: Into<String>>(self, key: S, offset: i64, limit: i64) -> Query {
        self.add_subkey_at_key(
            "$do",
            key,
            bson!("$slice" => [ (offset.to_bson()), (limit.to_bson()) ]),
        )
    }

    /// Converts this query to a BSON document.
    #[inline]
    pub fn into_bson(self) -> Document {
        self.query
    }

    /// Returns a reference to this query as a BSON document.
    #[inline]
    pub fn as_bson(&self) -> &Document {
        &self.query
    }

    /// Returns a mutable reference to this query as a BSON document.
    ///
    /// Be careful when modifying the document directly because it may lead to invalid queries.
    #[inline]
    pub fn as_bson_mut(&mut self) -> &mut Document {
        &mut self.query
    }
}

impl From<Document> for Query {
    #[inline]
    fn from(document: Document) -> Query {
        Query { query: document }
    }
}

impl Into<Document> for Query {
    #[inline]
    fn into(self) -> Document {
        self.query
    }
}

impl Deref for Query {
    type Target = Document;

    #[inline]
    fn deref(&self) -> &Document {
        self.as_bson()
    }
}

impl DerefMut for Query {
    #[inline]
    fn deref_mut(&mut self) -> &mut Document {
        self.as_bson_mut()
    }
}

enum FieldConstraintData {
    Root(Query),
    Child(Box<FieldConstraint>),
}

/// A transient builder for adding field-based query constraints.
///
/// Instances of this structure are returned by `Query::field()` and `FieldConstraint::field()`
/// methods.
pub struct FieldConstraint(Cow<'static, str>, FieldConstraintData);

impl FieldConstraint {
    fn process<T: Into<Bson>>(self, value: T) -> Query {
        match self.1 {
            FieldConstraintData::Root(mut q) => match value.into() {
                Bson::Document(doc) => q.merge_documents_at_key(self.0.into_owned(), doc),
                value => {
                    q.query.insert(self.0.into_owned(), value);
                    q
                }
            },
            FieldConstraintData::Child(fc) => {
                fc.process(bson!(self.0.into_owned() => (value.into())))
            }
        }
    }

    /// Returns a constraint builder for a deeper field.
    pub fn field<S: Into<String>>(self, name: S) -> FieldConstraint {
        FieldConstraint(
            name.into().into(),
            FieldConstraintData::Child(Box::new(self)),
        )
    }

    /// Adds an equality constraint for this field and `value`.
    pub fn eq<V: Into<Bson>>(self, value: V) -> Query {
        self.process(value)
    }

    /// Adds a `$begin` constraint for this field.
    ///
    /// The value of this field must start with `value`. The field type should be string.
    pub fn begin<S: Into<String>>(self, value: S) -> Query {
        self.process(bson!("$begin" => (value.into())))
    }

    /// Adds a `$between` constraint for this field.
    ///
    /// The value of this field must be greater than or equal to `left` and less than or
    /// equal to `right`. The field type should be numeric.
    pub fn between<N1: BsonNumber, N2: BsonNumber>(self, left: N1, right: N2) -> Query {
        self.process(bson!("$bt" => [ (left.to_bson()), (right.to_bson()) ]))
    }

    /// Adds a `$gt` constraint for this field.
    ///
    /// The value of this field must be strictly greater than `value`. The field type
    /// should be numeric.
    pub fn gt<N: BsonNumber>(self, value: N) -> Query {
        self.process(bson!("$gt" => (value.to_bson())))
    }

    /// Adds a `$gte` constraint for this field.
    ///
    /// The value of this field must be greater than or equal to `value`. The field type
    /// should be numeric.
    pub fn gte<N: BsonNumber>(self, value: N) -> Query {
        self.process(bson!("$gte" => (value.to_bson())))
    }

    /// Adds an `$lt` constraint for this field.
    ///
    /// The value of this field must be strictly less than `value`. The field type
    /// should be numeric.
    pub fn lt<N: BsonNumber>(self, value: N) -> Query {
        self.process(bson!("$lt" => (value.to_bson())))
    }

    /// Adds an `$lte` constraint for this field.
    ///
    /// The value of this field must be less than or equal to `value`. The field type
    /// should be numeric.
    pub fn lte<N: BsonNumber>(self, value: N) -> Query {
        self.process(bson!("$lte" => (value.to_bson())))
    }

    /// Adds an `$exists` constraint for this field.
    ///
    /// The field must exist if `exists` is `true`, the opposite otherwise.
    pub fn exists(self, exists: bool) -> Query {
        self.process(bson!("$exists" => exists))
    }

    /// Adds an `$elemMatch` constraint for this field.
    ///
    /// Any element of the array contained in this field must match `query`. The query argument
    /// is a regular EJDB query; you can pass another `Query` object to it.
    pub fn elem_match<Q: Into<Document>>(self, query: Q) -> Query {
        self.process(bson!("$elemMatch" => (query.into())))
    }

    /// Adds an `$in` constraint for this field.
    ///
    /// The value of this field must be equal to one of the values yielded by `values`.
    pub fn contained_in<I>(self, values: I) -> Query
    where
        I: IntoIterator,
        I::Item: Into<Bson>,
    {
        self.process(bson!("$in" => (values.into_iter().map(I::Item::into).collect::<Vec<_>>())))
    }

    /// Adds an `$nin` constraint for this field.
    ///
    /// The value of this field must not be equal to any of the values yielded by `values`.
    pub fn not_contained_in<I>(self, values: I) -> Query
    where
        I: IntoIterator,
        I::Item: Into<Bson>,
    {
        self.process(bson!("$nin" => (values.into_iter().map(I::Item::into).collect::<Vec<_>>())))
    }

    /// Adds a `$icase` constraint for this field.
    ///
    /// Makes all further constraints for this field case insensitive with regard to string
    /// values.
    pub fn case_insensitive(self) -> FieldConstraint {
        FieldConstraint("$icase".into(), FieldConstraintData::Child(Box::new(self)))
    }

    /// Adds a `$not` constraint for this field.
    ///
    /// Inverts the further query, making only those elements which do NOT satisfy the
    /// following constraints to match.
    pub fn not(self) -> FieldConstraint {
        FieldConstraint("$not".into(), FieldConstraintData::Child(Box::new(self)))
    }

    /// Adds an `$strand` constraint for this field.
    ///
    /// 1. If this field holds an array of strings, `$strand` returns those records whose
    ///    array contains all elements from `values`.
    /// 2. If this field holds a string, it is first split into an array by space `' '` or comma
    ///    `','` characters, and the resulting array is queried like in 1.
    pub fn str_and<I>(self, values: I) -> Query
    where
        I: IntoIterator,
        I::Item: Into<String>,
    {
        self.process(bson! {
            "$strand" => (
                values.into_iter().map(|v| v.into().into())  // S -> String -> Bson
                    .collect::<Vec<Bson>>()
            )
        })
    }

    /// Adds an `$stror` constraint for this field.
    ///
    /// 1. If this field holds an array of strings, `$stror` returns those records whose
    ///    array contains at least one element from `values`.
    /// 2. If this field holds a string, it is first split into an array by space `' '` or comma
    ///    `','` characters, and the resulting array is queried like in 1.
    pub fn str_or<I>(self, values: I) -> Query
    where
        I: IntoIterator,
        I::Item: Into<String>,
    {
        self.process(bson! {
            "$stror" => (
                values.into_iter().map(|v| v.into().into())  // S -> String -> Bson
                    .collect::<Vec<Bson>>()
            )
        })
    }
}

/// An entry point for constructing queries.
///
/// This is a convenience API. This structure provides the same methods as `Query`
/// structure and inside them a fresh `Query` instance is created and the corresponding
/// method is called on it. This is the main approach for constructing queries.
///
/// # Example
///
/// ```
/// use ejdb::query::{Query, Q};
///
/// assert_eq!(
///     Query::new().field("name").eq("Foo").inc("rating", 1).set("favorite", true),
///     Q.field("name").eq("Foo").inc("rating", 1).set("favorite", true)
/// )
/// ```
pub struct Q;

impl Q {
    #[inline(always)]
    pub fn empty(self) -> Query {
        Query::new()
    }

    #[inline(always)]
    pub fn and<I>(self, queries: I) -> Query
    where
        I: IntoIterator,
        I::Item: Into<Document>,
    {
        Query::new().and(queries)
    }

    #[inline(always)]
    pub fn or<I>(self, queries: I) -> Query
    where
        I: IntoIterator,
        I::Item: Into<Document>,
    {
        Query::new().or(queries)
    }

    #[inline(always)]
    pub fn id<V: Into<Bson>>(self, value: V) -> Query {
        Query::new().id(value)
    }

    #[inline(always)]
    pub fn field<S: Into<String>>(self, name: S) -> FieldConstraint {
        Query::new().field(name)
    }

    #[inline(always)]
    pub fn join<S: Into<String>, C: Into<String>>(self, key: S, coll: C) -> Query {
        Query::new().join(key, coll)
    }

    #[inline(always)]
    pub fn add_to_set<S: Into<String>, V: Into<Bson>>(self, key: S, value: V) -> Query {
        Query::new().add_to_set(key, value)
    }

    #[inline(always)]
    pub fn add_to_set_all<S, I>(self, key: S, values: I) -> Query
    where
        S: Into<String>,
        I: IntoIterator,
        I::Item: Into<Bson>,
    {
        Query::new().add_to_set_all(key, values)
    }

    #[inline(always)]
    pub fn unset<S: Into<String>>(self, key: S) -> Query {
        Query::new().unset(key)
    }

    #[inline(always)]
    pub fn inc<S: Into<String>, D: BsonNumber>(self, key: S, delta: D) -> Query {
        Query::new().inc(key, delta)
    }

    #[inline(always)]
    pub fn drop_all(self) -> Query {
        Query::new().drop_all()
    }

    #[inline(always)]
    pub fn upsert_many<D: Into<Document>>(self, document: D) -> Query {
        Query::new().upsert_many(document)
    }

    #[inline(always)]
    pub fn upsert<S: Into<String>, V: Into<Bson>>(self, key: S, value: V) -> Query {
        Query::new().upsert(key, value)
    }

    #[inline(always)]
    pub fn set<S: Into<String>, V: Into<Bson>>(self, key: S, value: V) -> Query {
        Query::new().set(key, value)
    }

    #[inline(always)]
    pub fn set_many<D: Into<Document>>(self, document: D) -> Query {
        Query::new().set_many(document)
    }

    #[inline(always)]
    pub fn pull<S: Into<String>, V: Into<Bson>>(self, key: S, value: V) -> Query {
        Query::new().pull(key, value)
    }

    #[inline(always)]
    pub fn pull_all<S, I>(self, key: S, values: I) -> Query
    where
        S: Into<String>,
        I: IntoIterator,
        I::Item: Into<Bson>,
    {
        Query::new().pull_all(key, values)
    }

    #[inline(always)]
    pub fn push<S: Into<String>, V: Into<Bson>>(self, key: S, value: V) -> Query {
        Query::new().push(key, value)
    }

    #[inline(always)]
    pub fn push_all<S, I>(self, key: S, values: I) -> Query
    where
        S: Into<String>,
        I: IntoIterator,
        I::Item: Into<Bson>,
    {
        Query::new().push_all(key, values)
    }

    #[inline(always)]
    pub fn rename<S1: Into<String>, S2: Into<String>>(self, key: S1, new_key: S2) -> Query {
        Query::new().rename(key, new_key)
    }

    #[inline(always)]
    pub fn slice<S: Into<String>>(self, key: S, limit: i64) -> Query {
        Query::new().slice(key, limit)
    }

    #[inline(always)]
    pub fn slice_with_offset<S: Into<String>>(self, key: S, offset: i64, limit: i64) -> Query {
        Query::new().slice_with_offset(key, offset, limit)
    }
}

#[cfg(test)]
mod tests {
    use bson::oid::ObjectId;

    use super::*;

    #[test]
    fn test_and() {
        let q = Q
            .and(vec![Q.field("a").eq(1), Q.field("b").eq("c")])
            .into_bson();
        assert_eq!(
            q,
            bson! {
                "$and" => [
                    { "a" => 1 },
                    { "b" => "c" }
                ]
            }
        );
    }

    #[test]
    fn test_or() {
        let q = Q
            .or(vec![
                Q.field("a").eq(1),
                Q.field("b").contained_in(vec!["d", "e", "f"]),
            ]).into_bson();
        assert_eq!(
            q,
            bson! {
                "$or" => [
                    { "a" => 1 },
                    { "b" => { "$in" => ["d", "e", "f"] } }
                ]
            }
        );
    }

    #[test]
    fn test_join() {
        let q = Q
            .field("_id")
            .eq("12345")
            .join("user", "users")
            .join("tag", "tags")
            .into_bson();
        assert_eq!(
            q,
            bson! {
                "_id" => "12345",
                "$do" => {
                    "user" => { "$join" => "users" },
                    "tag" => { "$join" => "tags" }
                }
            }
        );
    }

    #[test]
    fn test_add_to_set() {
        let q = Q
            .field("_id")
            .eq(12345)
            .add_to_set("tag", "new tag")
            .into_bson();
        assert_eq!(
            q,
            bson! {
                "_id"=> 12345,
                "$addToSet" => {
                    "tag" => "new tag"
                }
            }
        );
    }

    #[test]
    fn test_add_to_set_all() {
        let q = Q
            .add_to_set_all("tag", vec!["tag 1", "tag 2", "tag 3"])
            .into_bson();
        assert_eq!(
            q,
            bson! {
                "$addToSet" => {
                    "tag" => [ "tag 1", "tag 2", "tag 3" ]
                }
            }
        )
    }

    #[test]
    fn test_unset() {
        let q = Q
            .id(12345)
            .unset("some_field")
            .unset("another_field")
            .into_bson();
        assert_eq!(
            q,
            bson! {
                "_id" => 12345,
                "$unset" => {
                    "some_field" => "",
                    "another_field" => ""
                }
            }
        );
    }

    #[test]
    fn test_inc() {
        let q = Q
            .id(12345)
            .inc("x", 12)
            .inc("y", -13i64)
            .inc("z", 14.5)
            .into_bson();
        assert_eq!(
            q,
            bson! {
                "_id" => 12345,
                "$inc" => {
                    "x" => 12,
                    "y" => (-13i64),
                    "z" => 14.5
                }
            }
        );
    }

    #[test]
    fn test_drop_all() {
        let q = Q.field("x").between(-42, 42.5).drop_all().into_bson();
        assert_eq!(
            q,
            bson! {
                "x" => { "$bt" => [ (-42), 42.5 ] },
                "$dropall" => true
            }
        );
    }

    #[test]
    fn test_upsert() {
        let q = Q
            .field("isbn")
            .eq("0123456789")
            .upsert("missing", "value")
            .upsert_many(bson! {   // overwrites
                "isbn" => "0123456789",
                "name" => "my book"
            }).upsert("another_field", "another_value")
            .into_bson();
        assert_eq!(
            q,
            bson! {
                "isbn" => "0123456789",
                "$upsert" => {
                    "isbn" => "0123456789",
                    "name" => "my book",
                    "another_field" => "another_value"
                }
            }
        );
    }

    #[test]
    fn test_set() {
        let q = Q
            .id(12345)
            .set("x", 12)
            .set_many(bson! { "a" => "x", "b" => "y" }) // overwrites
            .set("y", 34)
            .into_bson();
        assert_eq!(
            q,
            bson! {
                "_id" => 12345,
                "$set" => {
                    "a" => "x",
                    "b" => "y",
                    "y" => 34
                }
            }
        );
    }

    #[test]
    fn test_pull() {
        let q = Q
            .id(12345)
            .pull("xs", 12)
            .pull_all("ys", bson![34, 56.7])
            .into_bson();
        assert_eq!(
            q,
            bson! {
                "_id" => 12345,
                "$pull" => {
                    "xs" => 12
                },
                "$pullAll" => {
                    "ys" => [ 34, 56.7 ]
                }
            }
        );
    }

    #[test]
    fn test_push() {
        let q = Q
            .id(12345)
            .push("xs", "a")
            .push_all("ys", bson!["w", "v"])
            .into_bson();
        assert_eq!(
            q,
            bson! {
                "_id" => 12345,
                "$push" => {
                    "xs" => "a"
                },
                "$pushAll" => {
                    "ys" => [ "w", "v" ]
                }
            }
        );
    }

    #[test]
    fn test_rename() {
        let q = Q
            .id("12345")
            .rename("input", "output")
            .rename("alpha", "omega")
            .into_bson();
        assert_eq!(
            q,
            bson! {
                "_id" => "12345",
                "$rename" => {
                    "input" => "output",
                    "alpha" => "omega"
                }
            }
        );
    }

    #[test]
    fn test_slice() {
        let q = Q
            .id(12345)
            .slice("array", 123)
            .slice_with_offset("array_2", 456, 789)
            .into_bson();
        assert_eq!(
            q,
            bson! {
                "_id" => 12345,
                "$do" => {
                    "array" => { "$slice" => 123i64 },
                    "array_2" => { "$slice" => [ 456i64, 789i64 ] }
                }
            }
        );
    }

    #[test]
    fn test_field_field() {
        let q = Q.field("a").field("b").field("c").eq(12345).into_bson();
        assert_eq!(
            q,
            bson! {
                "a" => { "b" => { "c" => 12345 } }
            }
        );
    }

    #[test]
    fn test_field_eq() {
        let q = Q.field("_id").eq(ObjectId::with_timestamp(128)).into_bson();
        assert_eq!(
            q,
            bson! {
                "_id" => (ObjectId::with_timestamp(128))
            }
        );
    }

    #[test]
    fn test_field_begin() {
        let q = Q.field("name").begin("something").into_bson();
        assert_eq!(
            q,
            bson! {
                "name" => {
                    "$begin" => "something"
                }
            }
        );
    }

    #[test]
    fn test_field_between() {
        let q = Q.field("x").between(0.1, 123i64).into_bson();
        assert_eq!(
            q,
            bson! {
                "x" => {
                    "$bt" => [ 0.1, 123i64 ]
                }
            }
        );
    }

    #[test]
    fn test_field_gt_lt() {
        let q = Q.field("x").gt(0.1).field("x").lt(9.9).into_bson();
        assert_eq!(
            q,
            bson! {
                "x" => {
                    "$gt" => 0.1,
                    "$lt" => 9.9
                }
            }
        );
    }

    #[test]
    fn test_field_gte_lte() {
        let q = Q.field("y").gte(1).field("y").lte(99).into_bson();
        assert_eq!(
            q,
            bson! {
                "y" => {
                    "$gte" => 1,
                    "$lte" => 99
                }
            }
        );
    }

    #[test]
    fn test_field_exists() {
        let q = Q
            .field("name")
            .exists(true)
            .field("wat")
            .exists(false)
            .into_bson();
        assert_eq!(
            q,
            bson! {
                "name" => { "$exists" => true },
                "wat" => { "$exists" => false }
            }
        );
    }

    #[test]
    fn test_field_elem_match() {
        let q = Q
            .field("props")
            .elem_match(bson! { "a" => 1, "b" => "c" })
            .into_bson();
        assert_eq!(
            q,
            bson! {
                "props" => {
                    "$elemMatch" => {
                        "a" => 1,
                        "b" => "c"
                    }
                }
            }
        );
    }

    #[test]
    fn test_contained_in() {
        let q = Q
            .field("x")
            .contained_in(vec![1, 2, 3])
            .field("y")
            .not_contained_in(vec![7, 8, 9])
            .into_bson();
        assert_eq!(
            q,
            bson! {
                "x" => {
                    "$in" => [1, 2, 3]
                },
                "y" => {
                    "$nin" => [7, 8, 9]
                }
            }
        );
    }

    #[test]
    fn test_case_insensitive() {
        let q = Q
            .field("msg")
            .case_insensitive()
            .eq("hello world")
            .field("err")
            .case_insensitive()
            .contained_in(vec!["whatever", "pfff"])
            .into_bson();
        assert_eq!(
            q,
            bson! {
                "msg" => {
                    "$icase" => "hello world"
                },
                "err" => {
                    "$icase" => {
                        "$in" => [ "whatever", "pfff" ]
                    }
                }
            }
        );
    }

    #[test]
    fn test_not() {
        let q = Q
            .field("x")
            .not()
            .eq(42)
            .field("y")
            .not()
            .between(10.0, 20.32)
            .into_bson();
        assert_eq!(
            q,
            bson! {
                "x" => {
                    "$not" => 42
                },
                "y" => {
                    "$not" => {
                        "$bt" => [ 10.0, 20.32 ]
                    }
                }
            }
        );
    }

    #[test]
    fn test_strand_stror() {
        let q = Q
            .field("name")
            .str_and(["me", "xyzzy", "wab"].iter().cloned())
            .field("title")
            .str_or(["foo", "bar", "baz"].iter().cloned())
            .into_bson();
        assert_eq!(
            q,
            bson! {
                "name" => {
                    "$strand" => [ "me", "xyzzy", "wab" ]
                },
                "title" => {
                    "$stror" => [ "foo", "bar", "baz" ]
                }
            }
        );
    }

    #[test]
    fn test_hints_empty() {
        let qh = QH.empty().into_bson();
        assert!(qh.is_empty());
    }

    #[test]
    fn test_hints_max() {
        let qh = QH.max(12).into_bson();
        assert_eq!(
            qh,
            bson! {
                "$max" => 12i64
            }
        );
    }

    #[test]
    fn test_hints_skip() {
        let qh = QH.skip(12).into_bson();
        assert_eq!(
            qh,
            bson! {
                "$skip" => 12i64
            }
        );
    }

    #[test]
    fn test_hints_include_exclude() {
        let qh = QH.field("a").include().field("b").exclude().into_bson();
        assert_eq!(
            qh,
            bson! {
                "$fields" => {
                    "a" => 1,
                    "b" => (-1)
                }
            }
        );
    }

    #[test]
    fn test_hints_asc_desc() {
        let qh = QH.order_by("a").asc().order_by("b").desc().into_bson();
        assert_eq!(
            qh,
            bson! {
                "$orderby" => {
                    "a" => 1,
                    "b" => (-1)
                }
            }
        );
    }
}