MongoDB C++ Driver  mongocxx-3.3.0
All Classes Namespaces Functions Enumerations Enumerator Friends Pages
pipeline.hpp
1 // Copyright 2014 MongoDB Inc.
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 // http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
14 
15 #pragma once
16 
17 #include <cstdint>
18 #include <memory>
19 #include <string>
20 
21 #include <bsoncxx/array/view.hpp>
22 #include <bsoncxx/document/view.hpp>
23 #include <bsoncxx/document/view_or_value.hpp>
24 
25 #include <mongocxx/config/prelude.hpp>
26 
27 namespace mongocxx {
28 MONGOCXX_INLINE_NAMESPACE_BEGIN
29 
30 class collection;
31 
35 class MONGOCXX_API pipeline {
36  public:
42  pipeline();
43 
47  pipeline(pipeline&&) noexcept;
48 
52  pipeline& operator=(pipeline&&) noexcept;
53 
57  ~pipeline();
58 
73  pipeline& add_fields(bsoncxx::document::view_or_value fields_to_add);
74 
89  pipeline& bucket(bsoncxx::document::view_or_value bucket_args);
90 
106  pipeline& bucket_auto(bsoncxx::document::view_or_value bucket_auto_args);
107 
121  pipeline& coll_stats(
123 
136  pipeline& count(std::string field);
137 
152  pipeline& facet(bsoncxx::document::view_or_value facet_args);
153 
167  pipeline& geo_near(bsoncxx::document::view_or_value geo_near_args);
168 
182  pipeline& graph_lookup(bsoncxx::document::view_or_value graph_lookup_args);
183 
202  pipeline& group(bsoncxx::document::view_or_value group_args);
203 
213  pipeline& index_stats();
214 
227  pipeline& limit(std::int32_t limit);
228 
243  pipeline& lookup(bsoncxx::document::view_or_value lookup_args);
244 
259 
274  pipeline& out(std::string collection_name);
275 
288  pipeline& project(bsoncxx::document::view_or_value projection);
289 
303  pipeline& redact(bsoncxx::document::view_or_value restrictions);
304 
318  pipeline& replace_root(bsoncxx::document::view_or_value replace_root_args);
319 
333  pipeline& sample(std::int32_t size);
334 
348  pipeline& skip(std::int32_t docs_to_skip);
349 
363 
381  pipeline& sort_by_count(bsoncxx::document::view_or_value field_expression);
382 
401  pipeline& sort_by_count(std::string field_expression);
402 
421  pipeline& unwind(bsoncxx::document::view_or_value unwind_args);
422 
441  pipeline& unwind(std::string field_name);
442 
446  bsoncxx::array::view view_array() const;
447 
453  MONGOCXX_DEPRECATED bsoncxx::document::view view() const;
454  bsoncxx::document::view view_deprecated() const;
455 
456  private:
457  friend class collection;
458 
459  class MONGOCXX_PRIVATE impl;
460  std::unique_ptr<impl> _impl;
461 };
462 
463 MONGOCXX_INLINE_NAMESPACE_END
464 } // namespace mongocxx
465 
466 #include <mongocxx/config/postlude.hpp>
Top level namespace for the MongoDB C++ driver.
Definition: bulk_write.hpp:24
A read-only, non-owning view of a BSON document.
Definition: view.hpp:33
A read-only, non-owning view of a BSON document.
Definition: view.hpp:33
Class representing a MongoDB aggregation pipeline.
Definition: pipeline.hpp:35
Class representing server side document groupings within a MongoDB database.
Definition: collection.hpp:87