// Copyright 2015 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 namespace mongocxx { MONGOCXX_INLINE_NAMESPACE_BEGIN /// /// Class representing criteria for document validation, to be applied to a collection. /// /// @see https://docs.mongodb.com/master/core/document-validation/ /// class MONGOCXX_API validation_criteria { public: /// /// Sets a validation rule for this validation object. /// /// @param rule /// Document representing a validation rule. /// /// @return /// A reference to the object on which this member function is being called. This facilitates /// method chaining. /// validation_criteria& rule(bsoncxx::document::view_or_value rule); /// /// Gets the validation rule for this validation object. /// /// @return /// Document representing a validation rule. /// const stdx::optional& rule() const; /// /// A class to represent the different validation level options. /// /// - k_off: Disable validation entirely. /// - k_moderate: Apply validation rules to inserts, and apply validation rules to updates only /// if the document to be updated already fulfills the validation criteria. /// - k_strict: Apply validation rules to all inserts and updates. /// enum class validation_level { k_off, k_moderate, k_strict, }; /// /// Sets a validation level. /// /// @param level /// An enumerated validation level. /// /// @return /// A reference to the object on which this member function is being called. This facilitates /// method chaining. /// validation_criteria& level(validation_level level); /// /// Gets the validation level. /// /// @return /// The enumerated validation level. /// const stdx::optional& level() const; /// /// A class to represent the different validation action options. /// /// - k_error: Reject any insertion or update that violates the validation criteria. /// - k_warn: Log any violations of the validation criteria, but allow the insertion or update /// to proceed. /// enum class validation_action { k_error, k_warn, }; /// /// Sets a validation action to run when documents failing validation are inserted or modified. /// /// @param action /// An enumerated validation action. /// /// @return /// A reference to the object on which this member function is being called. This facilitates /// method chaining. /// validation_criteria& action(validation_action action); /// /// Gets the validation action to run when documents failing validation are inserted or /// modified. /// /// @return /// The enumerated validation action. /// const stdx::optional& action() const; /// /// Returns a bson document representing this set of validation criteria. /// /// @deprecated /// This method is deprecated. To determine which options are set on this object, use the /// provided accessors instead. /// /// @return Validation criteria, as a document. /// MONGOCXX_DEPRECATED bsoncxx::document::value to_document() const; bsoncxx::document::value to_document_deprecated() const; /// /// @deprecated /// This method is deprecated. To determine which options are set on this object, use the /// provided accessors instead. /// MONGOCXX_DEPRECATED MONGOCXX_INLINE operator bsoncxx::document::value() const; private: stdx::optional _rule; stdx::optional _level; stdx::optional _action; }; MONGOCXX_API bool MONGOCXX_CALL operator==(const validation_criteria& lhs, const validation_criteria& rhs); MONGOCXX_API bool MONGOCXX_CALL operator!=(const validation_criteria& lhs, const validation_criteria& rhs); MONGOCXX_INLINE validation_criteria::operator bsoncxx::document::value() const { return to_document_deprecated(); } MONGOCXX_INLINE_NAMESPACE_END } // namespace mongocxx #include