20 #include <bsoncxx/types-fwd.hpp>
22 #include <bsoncxx/array/view.hpp>
23 #include <bsoncxx/decimal128.hpp>
24 #include <bsoncxx/document/view.hpp>
25 #include <bsoncxx/oid.hpp>
26 #include <bsoncxx/stdx/string_view.hpp>
27 #include <bsoncxx/stdx/type_traits.hpp>
29 #include <bsoncxx/config/prelude.hpp>
31 #pragma push_macro("BSONCXX_ENUM")
34 BSONCXX_PUSH_WARNINGS();
35 BSONCXX_DISABLE_WARNING(GNU(
"-Wfloat-equal"));
48 enum class type : std::uint8_t {
49 #define BSONCXX_ENUM(name, val) k_##name = val,
50 #include <bsoncxx/enums/type.hpp>
69 #define BSONCXX_ENUM(name, val) k_##name = val,
70 #include <bsoncxx/enums/binary_sub_type.hpp>
100 static constexpr
auto type_id = type::k_double;
107 BSONCXX_INLINE
operator double()
const {
118 return lhs.value == rhs.value;
125 static constexpr
auto type_id = type::k_string;
133 template <
typename T, detail::requires_not_t<
int, detail::is_alike<b_
string, T>> = 0>
136 stdx::string_view
value;
141 BSONCXX_INLINE
operator stdx::string_view()
const {
152 return lhs.value == rhs.value;
166 static constexpr
auto type_id = type::k_document;
191 return lhs.value == rhs.value;
198 static constexpr
auto type_id = type::k_array;
216 return lhs.value == rhs.value;
223 static constexpr
auto type_id = type::k_binary;
227 const uint8_t* bytes;
236 return lhs.sub_type == rhs.sub_type && lhs.size == rhs.size &&
237 (!lhs.size || (std::memcmp(lhs.bytes, rhs.bytes, lhs.size) == 0));
247 static constexpr
auto type_id = type::k_undefined;
263 static constexpr
auto type_id = type::k_oid;
274 return lhs.value == rhs.value;
281 static constexpr
auto type_id = type::k_bool;
288 BSONCXX_INLINE
operator bool()
const {
299 return lhs.value == rhs.value;
306 static constexpr
auto type_id = type::k_date;
324 explicit b_date(
const std::chrono::system_clock::time_point& tp)
325 :
value(std::chrono::duration_cast<std::chrono::milliseconds>(tp.time_since_epoch())) {}
327 std::chrono::milliseconds
value;
332 BSONCXX_INLINE
operator int64_t()
const {
333 return value.count();
340 return value.count();
346 BSONCXX_INLINE
operator std::chrono::system_clock::time_point()
const {
347 return std::chrono::system_clock::time_point(
348 std::chrono::duration_cast<std::chrono::system_clock::duration>(
value));
358 return lhs.value == rhs.value;
365 static constexpr
auto type_id = type::k_null;
381 static constexpr
auto type_id = type::k_regex;
392 template <
typename T,
393 typename U = stdx::string_view,
394 detail::requires_not_t<int, detail::is_alike<b_regex, T>> = 0>
395 BSONCXX_INLINE
explicit b_regex(T&& regex, U&& options = U{})
396 : regex(std::forward<T>(regex)), options(std::forward<U>(options)) {}
398 stdx::string_view regex;
399 stdx::string_view options;
408 return lhs.regex == rhs.regex && lhs.options == rhs.options;
418 static constexpr
auto type_id = type::k_dbpointer;
420 stdx::string_view collection;
430 return lhs.collection == rhs.collection && lhs.value == rhs.value;
437 static constexpr
auto type_id = type::k_code;
445 template <
typename T, detail::requires_not_t<
int, detail::is_alike<b_code, T>> = 0>
446 BSONCXX_INLINE
explicit b_code(T&& t) : code(std::forward<T>(t)) {}
448 stdx::string_view code;
453 BSONCXX_INLINE
operator stdx::string_view()
const {
464 return lhs.code == rhs.code;
474 static constexpr
auto type_id = type::k_symbol;
482 template <
typename T, detail::requires_not_t<
int, detail::is_alike<b_symbol, T>> = 0>
483 BSONCXX_INLINE
explicit b_symbol(T&& t) : symbol(std::forward<T>(t)) {}
485 stdx::string_view symbol;
490 BSONCXX_INLINE
operator stdx::string_view()
const {
501 return lhs.symbol == rhs.symbol;
508 static constexpr
auto type_id = type::k_codewscope;
519 template <
typename T,
521 detail::requires_not_t<int, detail::is_alike<b_codewscope, T>> = 0>
523 : code(std::forward<T>(code)), scope(std::forward<U>(scope)) {}
525 stdx::string_view code;
535 return lhs.code == rhs.code && lhs.scope == rhs.scope;
542 static constexpr
auto type_id = type::k_int32;
549 BSONCXX_INLINE
operator int32_t()
const {
560 return lhs.value == rhs.value;
567 static constexpr
auto type_id = type::k_timestamp;
579 return lhs.increment == rhs.increment && lhs.timestamp == rhs.timestamp;
586 static constexpr
auto type_id = type::k_int64;
593 BSONCXX_INLINE
operator int64_t()
const {
604 return lhs.value == rhs.value;
611 static constexpr
auto type_id = type::k_decimal128;
621 template <
typename T, detail::requires_not_t<
int, detail::is_alike<b_decimal128, T>> = 0>
631 return lhs.value == rhs.value;
638 static constexpr
auto type_id = type::k_minkey;
654 static constexpr
auto type_id = type::k_maxkey;
666 #define BSONCXX_ENUM(name, val) \
667 BSONCXX_INLINE bool operator!=(const b_##name& lhs, const b_##name& rhs) { \
668 return !(lhs == rhs); \
670 #include <bsoncxx/enums/type.hpp>
677 BSONCXX_POP_WARNINGS();
681 using ::bsoncxx::v_noabi::to_string;
688 using ::bsoncxx::v_noabi::types::b_utf8;
690 using ::bsoncxx::v_noabi::types::operator==;
691 using ::bsoncxx::v_noabi::types::operator!=;
697 static_assert(
false,
"BSONCXX_ENUM must be undef'ed");
699 #pragma pop_macro("BSONCXX_ENUM")
701 #include <bsoncxx/config/postlude.hpp>
A read-only, non-owning view of a BSON document.
Definition: view.hpp:36
Represents an IEEE 754-2008 BSON Decimal128 value in a platform-independent way.
Definition: decimal128.hpp:32
A read-only, non-owning view of a BSON document.
Definition: view.hpp:35
Represents a MongoDB ObjectId.
Definition: oid.hpp:40
A view-only variant that can contain any BSON type.
Definition: view.hpp:41
binary_sub_type
An enumeration of each BSON binary sub type.
Definition: types.hpp:68
std::string to_string(type rhs)
Returns a stringification of the given type.
type
An enumeration of each BSON type.
Definition: types.hpp:48
The top-level namespace for bsoncxx library entities.
Definition: element-fwd.hpp:19
A BSON array value.
Definition: types.hpp:197
bool operator==(const b_array &lhs, const b_array &rhs)
free function comparator for b_array
Definition: types.hpp:215
A BSON binary data value.
Definition: types.hpp:222
bool operator==(const b_binary &lhs, const b_binary &rhs)
free function comparator for b_binary
Definition: types.hpp:235
A BSON boolean value.
Definition: types.hpp:280
bool operator==(const b_bool &lhs, const b_bool &rhs)
free function comparator for b_bool
Definition: types.hpp:298
A BSON JavaScript code value.
Definition: types.hpp:436
bool operator==(const b_code &lhs, const b_code &rhs)
free function comparator for b_code
Definition: types.hpp:463
b_code(T &&t)
Constructor for b_code.
Definition: types.hpp:446
A BSON JavaScript code with scope value.
Definition: types.hpp:507
bool operator==(const b_codewscope &lhs, const b_codewscope &rhs)
free function comparator for b_codewscope
Definition: types.hpp:534
b_codewscope(T &&code, U &&scope)
Constructor for b_codewscope.
Definition: types.hpp:522
A BSON date value.
Definition: types.hpp:305
bool operator==(const b_date &lhs, const b_date &rhs)
free function comparator for b_date
Definition: types.hpp:357
b_date(const std::chrono::system_clock::time_point &tp)
Constructor for b_date.
Definition: types.hpp:324
int64_t to_int64() const
Manually convert this b_date to an int64_t.
Definition: types.hpp:339
b_date(std::chrono::milliseconds value)
Constructor for b_date.
Definition: types.hpp:315
A BSON DBPointer value.
Definition: types.hpp:417
bool operator==(const b_dbpointer &lhs, const b_dbpointer &rhs)
free function comparator for b_dbpointer
Definition: types.hpp:429
A BSON Decimal128 value.
Definition: types.hpp:610
bool operator==(const b_decimal128 &lhs, const b_decimal128 &rhs)
free function comparator for b_decimal128
Definition: types.hpp:630
b_decimal128(T &&t)
Constructor for b_decimal128.
Definition: types.hpp:622
A BSON document value.
Definition: types.hpp:165
document::view view()
Returns an unwrapped document::view.
Definition: types.hpp:180
bool operator==(const b_document &lhs, const b_document &rhs)
free function comparator for b_document
Definition: types.hpp:190
A BSON double value.
Definition: types.hpp:99
bool operator==(const b_double &lhs, const b_double &rhs)
free function comparator for b_double
Definition: types.hpp:117
A BSON signed 32-bit integer value.
Definition: types.hpp:541
bool operator==(const b_int32 &lhs, const b_int32 &rhs)
free function comparator for b_int32
Definition: types.hpp:559
A BSON 64-bit signed integer value.
Definition: types.hpp:585
bool operator==(const b_int64 &lhs, const b_int64 &rhs)
free function comparator for b_int64
Definition: types.hpp:603
A BSON max-key value.
Definition: types.hpp:653
bool operator==(const b_maxkey &, const b_maxkey &)
free function comparator for b_maxkey
Definition: types.hpp:662
A BSON min-key value.
Definition: types.hpp:637
bool operator==(const b_minkey &, const b_minkey &)
free function comparator for b_minkey
Definition: types.hpp:646
A BSON null value.
Definition: types.hpp:364
bool operator==(const b_null &, const b_null &)
free function comparator for b_null
Definition: types.hpp:373
A BSON ObjectId value.
Definition: types.hpp:262
bool operator==(const b_oid &lhs, const b_oid &rhs)
free function comparator for b_oid
Definition: types.hpp:273
A BSON regex value.
Definition: types.hpp:380
bool operator==(const b_regex &lhs, const b_regex &rhs)
free function comparator for b_regex
Definition: types.hpp:407
b_regex(T &®ex, U &&options=U{})
Constructor for b_regex.
Definition: types.hpp:395
A BSON UTF-8 encoded string value.
Definition: types.hpp:124
b_string(T &&t)
Constructor for b_string.
Definition: types.hpp:134
bool operator==(const b_string &lhs, const b_string &rhs)
free function comparator for b_string
Definition: types.hpp:151
A BSON Symbol value.
Definition: types.hpp:473
b_symbol(T &&t)
Constructor for b_symbol.
Definition: types.hpp:483
bool operator==(const b_symbol &lhs, const b_symbol &rhs)
free function comparator for b_symbol
Definition: types.hpp:500
A BSON replication timestamp value.
Definition: types.hpp:566
bool operator==(const b_timestamp &lhs, const b_timestamp &rhs)
free function comparator for b_timestamp
Definition: types.hpp:578
A BSON undefined value.
Definition: types.hpp:246
bool operator==(const b_undefined &, const b_undefined &)
free function comparator for b_undefined
Definition: types.hpp:255