MongoDB C++ Driver  mongocxx-3.3.1
All Classes Namespaces Functions Enumerations Enumerator Friends Pages
error_code.hpp
1 // Copyright 2015 MongoDB Inc.
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 // http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
14 
15 #pragma once
16 
17 #include <cstdint>
18 #include <system_error>
19 
20 #include <bsoncxx/config/prelude.hpp>
21 
22 namespace bsoncxx {
23 BSONCXX_INLINE_NAMESPACE_BEGIN
24 
28 enum class error_code : std::int32_t {
31 
34 
37 
40 
43 #define BSONCXX_ENUM(name, value) k_need_element_type_k_##name,
44 #include <bsoncxx/enums/type.hpp>
45 #undef BSONCXX_ENUM
46  k_need_key,
48 
51 
54 
55  // Attempted to view or extract a document when a key was still awaiting a matching value.
56  k_unmatched_key_in_builder,
57 
60 
63 
66 
67  // This type is unused and deprecated.
68  k_failed_converting_bson_to_json,
69 
72 
75 
78 
81 
84 
87 
89 #define BSONCXX_ENUM(name, value) k_cannot_append_##name,
90 #include <bsoncxx/enums/type.hpp>
91 #undef BSONCXX_ENUM
92  // Add new constant string message to error_code.cpp as well!
93 };
94 
100 BSONCXX_API const std::error_category& BSONCXX_CALL error_category();
101 
108 BSONCXX_INLINE std::error_code make_error_code(error_code error) {
109  return {static_cast<int>(error), error_category()};
110 }
111 
112 BSONCXX_INLINE_NAMESPACE_END
113 } // namespace bsoncxx
114 
115 #include <bsoncxx/config/postlude.hpp>
116 
117 namespace std {
118 // Specialize is_error_code_enum so we get simpler std::error_code construction
119 template <>
120 struct is_error_code_enum<bsoncxx::error_code> : public true_type {};
121 } // namespace std
No key was provided when one was needed.
Failed to begin appending a BSON document to a BSON document or array.
Failed to complete appending an array to a BSON document or array.
Definition: error_code.hpp:117
An Object ID string failed to parse.
An array was closed while no array was open.
BSON data could not be processed, but no specific reason was available.
A subarray was closed while building a subdocument.
const std::error_category & error_category()
Get the error_category for exceptions originating from the bsoncxx library.
error_code
Enum representing the various error types that can occur while operating on BSON values.
Definition: error_code.hpp:28
A document was closed while no document was open.
Failed to complete appending a BSON document to a BSON document or array.
std::error_code make_error_code(error_code error)
Translate a bsoncxx::error_code into a std::error_code.
Definition: error_code.hpp:108
A document operation was performed while building an array.
Failed to begin appending an array to a BSON document or array.
An empty element was accessed.
An array operation was performed while building a document.
A Decimal128 string failed to parse.
A JSON document failed to parse.
A subdocument was closed while building a subarray.
Top level namespace for MongoDB C++ BSON functionality.
Definition: element.hpp:24
A new key was appended while building a subarray.