123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527 |
- // Copyright 2014 MongoDB Inc.
- //
- // Licensed under the Apache License, Version 2.0 (the "License");
- // you may not use this file except in compliance with the License.
- // You may obtain a copy of the License at
- //
- // http://www.apache.org/licenses/LICENSE-2.0
- //
- // Unless required by applicable law or agreed to in writing, software
- // distributed under the License is distributed on an "AS IS" BASIS,
- // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- // See the License for the specific language governing permissions and
- // limitations under the License.
- #pragma once
- #include <chrono>
- #include <cstdint>
- #include <bsoncxx/document/view_or_value.hpp>
- #include <bsoncxx/stdx/optional.hpp>
- #include <bsoncxx/string/view_or_value.hpp>
- #include <mongocxx/cursor.hpp>
- #include <mongocxx/hint.hpp>
- #include <mongocxx/read_preference.hpp>
- #include <mongocxx/config/prelude.hpp>
- namespace mongocxx {
- MONGOCXX_INLINE_NAMESPACE_BEGIN
- namespace options {
- ///
- /// Class representing the optional arguments to a MongoDB query.
- ///
- class MONGOCXX_API find {
- public:
- ///
- /// Enables writing to temporary files on the server. When set to true, the server
- /// can write temporary data to disk while executing the find operation.
- ///
- /// This option is sent only if the caller explicitly provides a value. The default
- /// is to not send a value.
- ///
- /// This option may only be used with MongoDB version 4.4 or later.
- ///
- /// @param allow_disk_use
- /// Whether to allow writing temporary files on the server.
- ///
- /// @return
- /// A reference to this object to facilitate method chaining.
- ///
- /// @see https://docs.mongodb.com/manual/reference/command/find/
- ///
- find& allow_disk_use(bool allow_disk_use);
- ///
- /// Gets the current setting for allowing disk use on the server.
- ///
- /// This option may only be used with MongoDB version 4.4 or later.
- ///
- /// @return Whether disk use on the server is allowed.
- ///
- const stdx::optional<bool>& allow_disk_use() const;
- ///
- /// Sets whether to allow partial results from a mongos if some shards are down (instead of
- /// throwing an error).
- ///
- /// @param allow_partial
- /// Whether to allow partial results from mongos.
- ///
- /// @return
- /// A reference to the object on which this member function is being called. This facilitates
- /// method chaining.
- ///
- /// @see https://docs.mongodb.com/master/reference/command/find/
- ///
- find& allow_partial_results(bool allow_partial);
- ///
- /// Gets the current setting for allowing partial results from mongos.
- ///
- /// @return Whether partial results from mongos are allowed.
- ///
- /// @see https://docs.mongodb.com/master/reference/command/find/
- ///
- const stdx::optional<bool>& allow_partial_results() const;
- ///
- /// Sets the number of documents to return per batch.
- ///
- /// @param batch_size
- /// The size of the batches to request.
- ///
- /// @return
- /// A reference to the object on which this member function is being called. This facilitates
- /// method chaining.
- ///
- /// @see https://docs.mongodb.com/master/reference/command/find/
- ///
- find& batch_size(std::int32_t batch_size);
- ///
- /// The current batch size setting.
- ///
- /// @return The current batch size.
- ///
- /// @see https://docs.mongodb.com/master/reference/command/find/
- ///
- const stdx::optional<std::int32_t>& batch_size() const;
- ///
- /// Sets the collation for this operation.
- ///
- /// @param collation
- /// The new collation.
- ///
- /// @return
- /// A reference to the object on which this member function is being called. This facilitates
- /// method chaining.
- ///
- /// @see https://docs.mongodb.com/master/reference/command/find/
- ///
- find& collation(bsoncxx::document::view_or_value collation);
- ///
- /// Retrieves the current collation for this operation.
- ///
- /// @return
- /// The current collation.
- ///
- /// @see https://docs.mongodb.com/master/reference/command/find/
- ///
- const stdx::optional<bsoncxx::document::view_or_value>& collation() const;
- ///
- /// Attaches a comment to the query. If $comment also exists in the modifiers document then
- /// the comment field overwrites $comment.
- ///
- /// @param comment
- /// The comment to attach to this query.
- ///
- /// @return
- /// A reference to the object on which this member function is being called. This facilitates
- /// method chaining.
- ///
- /// @see https://docs.mongodb.com/master/reference/command/find/
- ///
- find& comment(bsoncxx::string::view_or_value comment);
- ///
- /// Gets the current comment attached to this query.
- ///
- /// @return The comment attached to this query.
- ///
- /// @see https://docs.mongodb.com/master/reference/command/find/
- ///
- const stdx::optional<bsoncxx::string::view_or_value>& comment() const;
- ///
- /// Indicates the type of cursor to use for this query.
- ///
- /// @param cursor_type
- /// The cursor type to set.
- ///
- /// @return
- /// A reference to the object on which this member function is being called. This facilitates
- /// method chaining.
- ///
- /// @see https://docs.mongodb.com/master/reference/command/find/
- ///
- find& cursor_type(cursor::type cursor_type);
- ///
- /// Gets the current cursor type.
- ///
- /// @return The current cursor type.
- ///
- /// @see https://docs.mongodb.com/master/reference/command/find/
- ///
- const stdx::optional<cursor::type>& cursor_type() const;
- ///
- /// Sets the index to use for this operation.
- ///
- /// @see https://docs.mongodb.com/master/reference/command/find/
- ///
- /// @note if the server already has a cached shape for this query, it may
- /// ignore a hint.
- ///
- /// @param index_hint
- /// Object representing the index to use.
- ///
- /// @return
- /// A reference to the object on which this member function is being called. This facilitates
- /// method chaining.
- ///
- find& hint(class hint index_hint);
- ///
- /// Gets the current hint.
- ///
- /// @return The current hint, if one is set.
- ///
- /// @see https://docs.mongodb.com/master/reference/command/find/
- ///
- const stdx::optional<class hint>& hint() const;
- ///
- /// Sets maximum number of documents to return.
- ///
- /// @param limit
- /// The maximum number of documents to return.
- ///
- /// @return
- /// A reference to the object on which this member function is being called. This facilitates
- /// method chaining.
- /// @see https://docs.mongodb.com/master/reference/command/find/
- ///
- find& limit(std::int64_t limit);
- ///
- /// Gets the current limit.
- ///
- /// @return The current limit.
- ///
- /// @see https://docs.mongodb.com/master/reference/command/find/
- ///
- const stdx::optional<std::int64_t>& limit() const;
- ///
- /// Gets the current exclusive upper bound for a specific index.
- ///
- /// @param max
- /// The exclusive upper bound for a specific index.
- ///
- /// @return
- /// A reference to the object on which this member function is being called. This facilitates
- /// method chaining.
- ///
- /// @see https://docs.mongodb.com/master/reference/command/find/
- ///
- find& (max)(bsoncxx::document::view_or_value max);
- ///
- /// Sets the current exclusive upper bound for a specific index.
- ///
- /// @return The exclusive upper bound for a specific index.
- ///
- /// @see https://docs.mongodb.com/master/reference/command/find/
- ///
- const stdx::optional<bsoncxx::document::view_or_value>& (max)() const;
- ///
- /// The maximum amount of time for the server to wait on new documents to satisfy a tailable
- /// cursor query. This only applies to a TAILABLE_AWAIT cursor. When the cursor is not a
- /// TAILABLE_AWAIT cursor, this option is ignored. The default on the server is to wait for one
- /// second.
- ///
- /// @note On servers < 3.2, this option is ignored.
- ///
- /// @param max_await_time
- /// The max amount of time (in milliseconds) to wait for new documents.
- ///
- /// @return
- /// A reference to the object on which this member function is being called. This facilitates
- /// method chaining.
- ///
- /// @see https://docs.mongodb.com/master/reference/command/find/
- ///
- find& max_await_time(std::chrono::milliseconds max_await_time);
- ///
- /// The maximum amount of time for the server to wait on new documents to satisfy a tailable
- /// cursor query.
- ///
- /// @return The current max await time (in milliseconds).
- ///
- /// @see https://docs.mongodb.com/master/reference/command/find/
- ///
- const stdx::optional<std::chrono::milliseconds>& max_await_time() const;
- ///
- /// Sets the maximum amount of time for this operation to run (server-side) in milliseconds.
- ///
- /// @param max_time
- /// The max amount of time (in milliseconds).
- ///
- /// @return
- /// A reference to the object on which this member function is being called. This facilitates
- /// method chaining.
- ///
- /// @see https://docs.mongodb.com/master/reference/command/find/
- ///
- find& max_time(std::chrono::milliseconds max_time);
- ///
- /// The current max_time_ms setting.
- ///
- /// @return The current max time (in milliseconds).
- ///
- /// @see https://docs.mongodb.com/master/reference/command/find/
- ///
- const stdx::optional<std::chrono::milliseconds>& max_time() const;
- ///
- /// Gets the current inclusive lower bound for a specific index.
- ///
- /// @param min
- /// The inclusive lower bound for a specific index.
- ///
- /// @return
- /// A reference to the object on which this member function is being called. This facilitates
- /// method chaining.
- ///
- /// @see https://docs.mongodb.com/master/reference/command/find/
- ///
- find& (min)(bsoncxx::document::view_or_value min);
- ///
- /// Sets the current inclusive lower bound for a specific index.
- ///
- /// @return The inclusive lower bound for a specific index.
- ///
- /// @see https://docs.mongodb.com/master/reference/command/find/
- ///
- const stdx::optional<bsoncxx::document::view_or_value>& (min)() const;
- ///
- /// Sets the cursor flag to prevent cursor from timing out server-side due to a period of
- /// inactivity.
- ///
- /// @param no_cursor_timeout
- /// When true prevents the cursor from timing out.
- ///
- /// @return
- /// A reference to the object on which this member function is being called. This facilitates
- /// method chaining.
- ///
- /// @see https://docs.mongodb.com/master/reference/command/find/
- ///
- find& no_cursor_timeout(bool no_cursor_timeout);
- ///
- /// Gets the current no_cursor_timeout setting.
- ///
- /// @return The current no_cursor_timeout setting.
- ///
- /// @see https://docs.mongodb.com/master/reference/command/find/
- ///
- const stdx::optional<bool>& no_cursor_timeout() const;
- ///
- /// Sets a projection which limits the returned fields for all matching documents.
- ///
- /// @param projection
- /// The projection document.
- ///
- /// @return
- /// A reference to the object on which this member function is being called. This facilitates
- /// method chaining.
- ///
- /// @see https://docs.mongodb.com/master/reference/command/find/
- ///
- find& projection(bsoncxx::document::view_or_value projection);
- ///
- /// Gets the current projection set on this query.
- ///
- /// @return The current projection.
- ///
- /// @see https://docs.mongodb.com/master/reference/command/find/
- ///
- const stdx::optional<bsoncxx::document::view_or_value>& projection() const;
- ///
- /// Sets the read_preference for this operation.
- ///
- /// @param rp
- /// The new read_preference.
- ///
- /// @return
- /// A reference to the object on which this member function is being called. This facilitates
- /// method chaining.
- ///
- /// @see https://docs.mongodb.com/master/reference/command/find/
- ///
- find& read_preference(class read_preference rp);
- ///
- /// The current read_preference for this operation.
- ///
- /// @return
- /// The current read_preference.
- ///
- /// @see https://docs.mongodb.com/master/reference/command/find/
- ///
- const stdx::optional<class read_preference>& read_preference() const;
- ///
- /// Sets whether to return the index keys associated with the query results, instead of the
- /// actual query results themselves.
- ///
- /// @param return_key
- /// Whether to return the index keys associated with the query results, instead of the actual
- /// query results themselves.
- ///
- /// @return
- /// A reference to the object on which this member function is being called. This facilitates
- /// method chaining.
- ///
- /// @see https://docs.mongodb.com/master/reference/command/find/
- ///
- find& return_key(bool return_key);
- ///
- /// Gets the current setting for returning the index keys associated with the query results,
- /// instead of the actual query results themselves.
- ///
- /// @return
- /// Whether index keys associated with the query results are returned, instead of the actual
- /// query results themselves.
- ///
- /// @see https://docs.mongodb.com/master/reference/command/find/
- ///
- const stdx::optional<bool>& return_key() const;
- ///
- /// Sets whether to include the record identifier for each document in the query results.
- ///
- /// @param show_record_id
- /// Whether to include the record identifier.
- ///
- /// @return
- /// A reference to the object on which this member function is being called. This facilitates
- /// method chaining.
- ///
- /// @see https://docs.mongodb.com/master/reference/command/find/
- ///
- find& show_record_id(bool show_record_id);
- ///
- /// Gets the current setting for whether the record identifier is returned for each document in
- /// the query results.
- ///
- /// @return
- /// Whether the record identifier is included.
- ///
- /// @see https://docs.mongodb.com/master/reference/command/find/
- ///
- const stdx::optional<bool>& show_record_id() const;
- ///
- /// Sets the number of documents to skip before returning results.
- ///
- /// @param skip
- /// The number of documents to skip.
- ///
- /// @return
- /// A reference to the object on which this member function is being called. This facilitates
- /// method chaining.
- ///
- /// @see https://docs.mongodb.com/master/reference/command/find/
- ///
- find& skip(std::int64_t skip);
- ///
- /// Gets the current number of documents to skip.
- ///
- /// @return The number of documents to skip.
- ///
- /// @see https://docs.mongodb.com/master/reference/command/find/
- ///
- const stdx::optional<std::int64_t>& skip() const;
- ///
- /// The order in which to return matching documents. If $orderby also exists in the modifiers
- /// document, the sort field takes precedence over $orderby.
- ///
- /// @param ordering
- /// Document describing the order of the documents to be returned.
- ///
- /// @return
- /// A reference to the object on which this member function is being called. This facilitates
- /// method chaining.
- ///
- /// @see https://docs.mongodb.com/master/reference/command/find/
- ///
- find& sort(bsoncxx::document::view_or_value ordering);
- ///
- /// Gets the current sort ordering for this query.
- ///
- /// @return The current sort ordering.
- ///
- /// @see https://docs.mongodb.com/master/reference/command/find/
- ///
- const stdx::optional<bsoncxx::document::view_or_value>& sort() const;
- private:
- stdx::optional<bool> _allow_disk_use;
- stdx::optional<bool> _allow_partial_results;
- stdx::optional<std::int32_t> _batch_size;
- stdx::optional<bsoncxx::document::view_or_value> _collation;
- stdx::optional<bsoncxx::string::view_or_value> _comment;
- stdx::optional<cursor::type> _cursor_type;
- stdx::optional<class hint> _hint;
- stdx::optional<std::int64_t> _limit;
- stdx::optional<bsoncxx::document::view_or_value> _max;
- stdx::optional<std::chrono::milliseconds> _max_await_time;
- stdx::optional<std::chrono::milliseconds> _max_time;
- stdx::optional<bsoncxx::document::view_or_value> _min;
- stdx::optional<bool> _no_cursor_timeout;
- stdx::optional<bsoncxx::document::view_or_value> _projection;
- stdx::optional<class read_preference> _read_preference;
- stdx::optional<bool> _return_key;
- stdx::optional<bool> _show_record_id;
- stdx::optional<std::int64_t> _skip;
- stdx::optional<bsoncxx::document::view_or_value> _ordering;
- };
- } // namespace options
- MONGOCXX_INLINE_NAMESPACE_END
- } // namespace mongocxx
- #include <mongocxx/config/postlude.hpp>
|