123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275 |
- // 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 <mongocxx/hint.hpp>
- #include <mongocxx/options/find_one_common_options.hpp>
- #include <mongocxx/stdx.hpp>
- #include <mongocxx/write_concern.hpp>
- #include <mongocxx/config/prelude.hpp>
- namespace mongocxx {
- MONGOCXX_INLINE_NAMESPACE_BEGIN
- namespace options {
- ///
- /// Class representing the optional arguments to a MongoDB find_and_modify replace operation
- ///
- class MONGOCXX_API find_one_and_replace {
- public:
- /// 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/findAndModify/
- ///
- find_one_and_replace& 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/findAndModify/
- ///
- const stdx::optional<bsoncxx::document::view_or_value>& collation() const;
- ///
- /// Whether or not to bypass document validation for this operation.
- ///
- /// @note
- /// On servers >= 3.2, the server applies validation by default. On servers < 3.2, this option
- /// is ignored.
- ///
- /// @param bypass_document_validation
- /// Whether or not to bypass document validation.
- ///
- /// @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/findAndModify/
- ///
- find_one_and_replace& bypass_document_validation(bool bypass_document_validation);
- ///
- /// The current setting for bypassing document validation.
- ///
- /// @return the current bypass document validation setting.
- ///
- /// @see https://docs.mongodb.com/master/reference/command/findAndModify/
- ///
- const stdx::optional<bool>& bypass_document_validation() const;
- ///
- /// Sets the index to use for this operation.
- ///
- /// @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_one_and_replace& hint(class hint index_hint);
- ///
- /// Gets the current hint.
- ///
- /// @return The current hint, if one is set.
- ///
- const stdx::optional<class hint>& hint() 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/findAndModify/
- ///
- find_one_and_replace& max_time(std::chrono::milliseconds max_time);
- ///
- /// The current max_time setting.
- ///
- /// @return the current max allowed running time (in milliseconds).
- ///
- /// @see https://docs.mongodb.com/master/reference/command/findAndModify/
- ///
- const stdx::optional<std::chrono::milliseconds>& max_time() const;
- ///
- /// Sets a projection, which limits the fields to return.
- ///
- /// @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/findAndModify/
- ///
- find_one_and_replace& projection(bsoncxx::document::view_or_value projection);
- ///
- /// Gets the current projection for this operation.
- ///
- /// @return The current projection.
- ///
- /// @see https://docs.mongodb.com/master/reference/command/findAndModify/
- ///
- const stdx::optional<bsoncxx::document::view_or_value>& projection() const;
- ///
- /// Set the desired version of the replaced document to return, either the original
- /// document, or the replacement. By default, the original document is returned.
- ///
- /// @param return_document
- /// Version of document to return, either original or replaced.
- ///
- /// @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/findAndModify/
- /// @see mongocxx::options::return_document
- ///
- find_one_and_replace& return_document(return_document return_document);
- ///
- /// Which version of the replaced document to return.
- ///
- /// @return Version of document to return, either original or replacement.
- ///
- /// @see https://docs.mongodb.com/master/reference/command/findAndModify/
- /// @see mongocxx::options::return_document
- ///
- const stdx::optional<mongocxx::options::return_document>& return_document() const;
- ///
- /// Sets the order by which to search the collection for a matching document.
- ///
- /// @warning This can influence which document the operation modifies if the provided filter
- /// selects multiple documents.
- ///
- /// @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/findAndModify/
- ///
- find_one_and_replace& sort(bsoncxx::document::view_or_value ordering);
- ///
- /// Gets the current sort ordering.
- ///
- /// @return The current sort ordering.
- ///
- /// @see https://docs.mongodb.com/master/reference/command/findAndModify/
- ///
- const stdx::optional<bsoncxx::document::view_or_value>& sort() const;
- ///
- /// Sets the upsert flag on the operation. When @c true, the operation creates a new document if
- /// no document matches the filter. When @c false, this operation will do nothing if there are
- /// no matching documents. The server-side default is false.
- ///
- /// @param upsert
- /// Whether or not to perform an upsert.
- ///
- /// @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/findAndModify/
- ///
- find_one_and_replace& upsert(bool upsert);
- ///
- /// Gets the current upsert setting.
- ///
- /// @return The current upsert setting.
- ///
- /// @see https://docs.mongodb.com/master/reference/command/findAndModify/
- ///
- const stdx::optional<bool>& upsert() const;
- ///
- /// Sets the write concern for this operation.
- ///
- /// @param write_concern
- /// Object representing the write concern.
- ///
- /// @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/findAndModify/
- ///
- find_one_and_replace& write_concern(mongocxx::write_concern write_concern);
- ///
- /// Gets the current write concern.
- ///
- /// @return
- /// The current write concern.
- ///
- /// @see
- /// https://docs.mongodb.com/master/reference/command/findAndModify/
- ///
- const stdx::optional<mongocxx::write_concern>& write_concern() const;
- private:
- stdx::optional<bool> _bypass_document_validation;
- stdx::optional<bsoncxx::document::view_or_value> _collation;
- stdx::optional<class hint> _hint;
- stdx::optional<std::chrono::milliseconds> _max_time;
- stdx::optional<bsoncxx::document::view_or_value> _projection;
- stdx::optional<mongocxx::options::return_document> _return_document;
- stdx::optional<bsoncxx::document::view_or_value> _ordering;
- stdx::optional<bool> _upsert;
- stdx::optional<mongocxx::write_concern> _write_concern;
- };
- } // namespace options
- MONGOCXX_INLINE_NAMESPACE_END
- } // namespace mongocxx
- #include <mongocxx/config/postlude.hpp>
|