// Copyright 2018-present 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 namespace mongocxx { MONGOCXX_INLINE_NAMESPACE_BEGIN namespace options { /// /// Class representing the optional arguments to a MongoDB replace operation. /// class MONGOCXX_API replace { public: /// /// Sets the bypass_document_validation option. /// If true, allows the write to opt-out of document level validation. /// /// @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. /// replace& bypass_document_validation(bool bypass_document_validation); /// /// Gets the current value of the bypass_document_validation option. /// /// @return The optional value of the bypass_document_validation option. /// const stdx::optional& bypass_document_validation() 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/collation/ /// 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/collation/ /// const stdx::optional& collation() const; /// /// Sets the upsert option. /// /// By default, if no document matches the filter, the replace operation does nothing. /// However, by specifying upsert as @c true, this operation either updates matching documents /// or inserts a new document using the replace specification if no matching document exists. /// /// @param upsert /// If set to @c true, creates a new document when no document matches the query criteria. /// The server-side default is @c false, which does not insert a new document if a match /// is not found. /// /// @return /// A reference to the object on which this member function is being called. This facilitates /// method chaining. /// replace& upsert(bool upsert); /// /// Gets the current value of the upsert option. /// /// @return The optional value of the upsert option. /// const stdx::optional& upsert() const; /// /// Sets the write_concern for this operation. /// /// @param wc /// The new 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/core/write-concern/ /// replace& write_concern(class write_concern wc); /// /// The current write_concern for this operation. /// /// @return /// The current write_concern /// /// @see https://docs.mongodb.com/master/core/write-concern/ /// const stdx::optional& write_concern() 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. /// replace& hint(class hint index_hint); /// /// Gets the current hint. /// /// @return The current hint, if one is set. /// const stdx::optional& hint() const; private: stdx::optional _bypass_document_validation; stdx::optional _collation; stdx::optional _upsert; stdx::optional _write_concern; stdx::optional _hint; }; } // namespace options MONGOCXX_INLINE_NAMESPACE_END } // namespace mongocxx #include