// 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 #include #include #include #include #include #include #include #include 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& 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& 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& 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& 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& 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& 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& 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& 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& write_concern() const; private: stdx::optional _bypass_document_validation; stdx::optional _collation; stdx::optional _hint; stdx::optional _max_time; stdx::optional _projection; stdx::optional _return_document; stdx::optional _ordering; stdx::optional _upsert; stdx::optional _write_concern; }; } // namespace options MONGOCXX_INLINE_NAMESPACE_END } // namespace mongocxx #include