30#if defined(__SIZEOF_INT128__) && !defined(__GLIBCXX_TYPE_INT_N_0) && defined(__clang__) && __clang_major__ < 4
31#define __GLIBCXX_BITSIZE_INT_N_0 128
32#define __GLIBCXX_TYPE_INT_N_0 __int128
35#if !defined(__cplusplus) || __cplusplus < 201103L
36#if !defined(_MSC_VER) || _MSC_VER < 1900
37#error "C++11 compiler or better is required"
39#error "Please add `/Zc:__cplusplus` to MSVC compiler options to enforce it conform ISO C++"
43#if (defined(_WIN32) || defined(_WIN64)) && MDBX_WITHOUT_MSVC_CRT
44#error "CRT is required for C++ API, the MDBX_WITHOUT_MSVC_CRT option must be disabled"
48#define __has_include(header) (0)
51#if __has_include(<version>)
73#if defined(__cpp_lib_memory_resource) && __cpp_lib_memory_resource >= 201603L
74#include <memory_resource>
77#if defined(__cpp_lib_string_view) && __cpp_lib_string_view >= 201606L
81#ifndef MDBX_USING_CXX_EXPERIMETAL_FILESYSTEM
82#ifdef INCLUDE_STD_FILESYSTEM_EXPERIMENTAL
83#define MDBX_USING_CXX_EXPERIMETAL_FILESYSTEM 1
84#elif defined(__cpp_lib_filesystem) && __cpp_lib_filesystem >= 201703L && __cplusplus >= 201703L
85#define MDBX_USING_CXX_EXPERIMETAL_FILESYSTEM 0
86#elif (!defined(_MSC_VER) || __cplusplus >= 201403L || \
87 (defined(_MSC_VER) && defined(_SILENCE_EXPERIMENTAL_FILESYSTEM_DEPRECATION_WARNING) && __cplusplus >= 201403L))
88#if defined(__cpp_lib_experimental_filesystem) && __cpp_lib_experimental_filesystem >= 201406L
89#define MDBX_USING_CXX_EXPERIMETAL_FILESYSTEM 1
90#elif defined(__cpp_lib_string_view) && __cpp_lib_string_view >= 201606L && __has_include(<experimental/filesystem>)
91#define MDBX_USING_CXX_EXPERIMETAL_FILESYSTEM 1
93#define MDBX_USING_CXX_EXPERIMETAL_FILESYSTEM 0
96#define MDBX_USING_CXX_EXPERIMETAL_FILESYSTEM 0
100#if MDBX_USING_CXX_EXPERIMETAL_FILESYSTEM
101#include <experimental/filesystem>
102#elif defined(__cpp_lib_filesystem) && __cpp_lib_filesystem >= 201703L
106#if defined(__cpp_lib_span) && __cpp_lib_span >= 202002L
110#if __cplusplus >= 201103L
117#if (defined(__cpp_lib_bit_cast) && __cpp_lib_bit_cast >= 201806L) || \
118 (defined(__cpp_lib_endian) && __cpp_lib_endian >= 201907L) || \
119 (defined(__cpp_lib_bitops) && __cpp_lib_bitops >= 201907L) || \
120 (defined(__cpp_lib_int_pow2) && __cpp_lib_int_pow2 >= 202002L)
122#elif !(defined(__BYTE_ORDER__) && defined(__ORDER_LITTLE_ENDIAN__) && defined(__ORDER_BIG_ENDIAN__))
123#if defined(__BYTE_ORDER) && defined(__LITTLE_ENDIAN) && defined(__BIG_ENDIAN)
124#define __ORDER_LITTLE_ENDIAN__ __LITTLE_ENDIAN
125#define __ORDER_BIG_ENDIAN__ __BIG_ENDIAN
126#define __BYTE_ORDER__ __BYTE_ORDER
127#elif defined(_BYTE_ORDER) && defined(_LITTLE_ENDIAN) && defined(_BIG_ENDIAN)
128#define __ORDER_LITTLE_ENDIAN__ _LITTLE_ENDIAN
129#define __ORDER_BIG_ENDIAN__ _BIG_ENDIAN
130#define __BYTE_ORDER__ _BYTE_ORDER
132#define __ORDER_LITTLE_ENDIAN__ 1234
133#define __ORDER_BIG_ENDIAN__ 4321
134#if defined(__LITTLE_ENDIAN__) || (defined(_LITTLE_ENDIAN) && !defined(_BIG_ENDIAN)) || defined(__ARMEL__) || \
135 defined(__THUMBEL__) || defined(__AARCH64EL__) || defined(__MIPSEL__) || defined(_MIPSEL) || defined(__MIPSEL) || \
136 defined(_M_ARM) || defined(_M_ARM64) || defined(__e2k__) || defined(__elbrus_4c__) || defined(__elbrus_8c__) || \
137 defined(__bfin__) || defined(__BFIN__) || defined(__ia64__) || defined(_IA64) || defined(__IA64__) || \
138 defined(__ia64) || defined(_M_IA64) || defined(__itanium__) || defined(__ia32__) || defined(__CYGWIN__) || \
139 defined(_WIN64) || defined(_WIN32) || defined(__TOS_WIN__) || defined(__WINDOWS__)
140#define __BYTE_ORDER__ __ORDER_LITTLE_ENDIAN__
141#elif defined(__BIG_ENDIAN__) || (defined(_BIG_ENDIAN) && !defined(_LITTLE_ENDIAN)) || defined(__ARMEB__) || \
142 defined(__THUMBEB__) || defined(__AARCH64EB__) || defined(__MIPSEB__) || defined(_MIPSEB) || defined(__MIPSEB) || \
143 defined(__m68k__) || defined(M68000) || defined(__hppa__) || defined(__hppa) || defined(__HPPA__) || \
144 defined(__sparc__) || defined(__sparc) || defined(__370__) || defined(__THW_370__) || defined(__s390__) || \
145 defined(__s390x__) || defined(__SYSC_ZARCH__)
146#define __BYTE_ORDER__ __ORDER_BIG_ENDIAN__
154#define MDBX_CXX17_CONSTEXPR constexpr
155#elif defined(__cpp_constexpr) && __cpp_constexpr >= 201603L && \
156 ((defined(_MSC_VER) && _MSC_VER >= 1915) || (defined(__clang__) && __clang_major__ > 5) || \
157 (defined(__GNUC__) && __GNUC__ > 7) || (!defined(__GNUC__) && !defined(__clang__) && !defined(_MSC_VER)))
158#define MDBX_CXX17_CONSTEXPR constexpr
160#define MDBX_CXX17_CONSTEXPR inline
166#define MDBX_CXX20_CONSTEXPR constexpr
167#elif defined(__cpp_lib_is_constant_evaluated) && __cpp_lib_is_constant_evaluated >= 201811L && \
168 defined(__cpp_lib_constexpr_string) && __cpp_lib_constexpr_string >= 201907L
169#define MDBX_CXX20_CONSTEXPR constexpr
171#define MDBX_CXX20_CONSTEXPR inline
174#if CONSTEXPR_ENUM_FLAGS_OPERATIONS || defined(DOXYGEN)
175#define MDBX_CXX01_CONSTEXPR_ENUM MDBX_CXX01_CONSTEXPR
176#define MDBX_CXX11_CONSTEXPR_ENUM MDBX_CXX11_CONSTEXPR
177#define MDBX_CXX14_CONSTEXPR_ENUM MDBX_CXX14_CONSTEXPR
178#define MDBX_CXX17_CONSTEXPR_ENUM MDBX_CXX17_CONSTEXPR
179#define MDBX_CXX20_CONSTEXPR_ENUM MDBX_CXX20_CONSTEXPR
181#define MDBX_CXX01_CONSTEXPR_ENUM inline
182#define MDBX_CXX11_CONSTEXPR_ENUM inline
183#define MDBX_CXX14_CONSTEXPR_ENUM inline
184#define MDBX_CXX17_CONSTEXPR_ENUM inline
185#define MDBX_CXX20_CONSTEXPR_ENUM inline
190#if defined(CONSTEXPR_ASSERT)
191#define MDBX_CONSTEXPR_ASSERT(expr) CONSTEXPR_ASSERT(expr)
193#define MDBX_CONSTEXPR_ASSERT(expr) void(0)
195#define MDBX_CONSTEXPR_ASSERT(expr) ((expr) ? void(0) : [] { assert(!#expr); }())
199#if defined(DOXYGEN) || (defined(__GNUC__) || __has_builtin(__builtin_expect)) && !defined(__COVERITY__)
200#define MDBX_LIKELY(cond) __builtin_expect(!!(cond), 1)
202#define MDBX_LIKELY(x) (x)
207#if defined(DOXYGEN) || (defined(__GNUC__) || __has_builtin(__builtin_expect)) && !defined(__COVERITY__)
208#define MDBX_UNLIKELY(cond) __builtin_expect(!!(cond), 0)
210#define MDBX_UNLIKELY(x) (x)
217#define MDBX_IF_CONSTEXPR constexpr
218#elif defined(__cpp_if_constexpr) && __cpp_if_constexpr >= 201606L
219#define MDBX_IF_CONSTEXPR constexpr
221#define MDBX_IF_CONSTEXPR
224#if defined(DOXYGEN) || (__has_cpp_attribute(fallthrough) && (!defined(__clang__) || __clang__ > 4)) || \
225 __cplusplus >= 201703L
226#define MDBX_CXX17_FALLTHROUGH [[fallthrough]]
228#define MDBX_CXX17_FALLTHROUGH
231#if defined(DOXYGEN) || (__has_cpp_attribute(likely) >= 201803L && (!defined(__GNUC__) || __GNUC__ > 9))
232#define MDBX_CXX20_LIKELY [[likely]]
234#define MDBX_CXX20_LIKELY
237#ifndef MDBX_CXX20_UNLIKELY
238#if defined(DOXYGEN) || (__has_cpp_attribute(unlikely) >= 201803L && (!defined(__GNUC__) || __GNUC__ > 9))
239#define MDBX_CXX20_UNLIKELY [[unlikely]]
241#define MDBX_CXX20_UNLIKELY
245#ifndef MDBX_HAVE_CXX20_CONCEPTS
246#if defined(__cpp_lib_concepts) && __cpp_lib_concepts >= 202002L
248#define MDBX_HAVE_CXX20_CONCEPTS 1
249#elif defined(DOXYGEN)
250#define MDBX_HAVE_CXX20_CONCEPTS 1
252#define MDBX_HAVE_CXX20_CONCEPTS 0
256#ifndef MDBX_CXX20_CONCEPT
257#if MDBX_HAVE_CXX20_CONCEPTS || defined(DOXYGEN)
258#define MDBX_CXX20_CONCEPT(CONCEPT, NAME) CONCEPT NAME
260#define MDBX_CXX20_CONCEPT(CONCEPT, NAME) typename NAME
264#ifndef MDBX_ASSERT_CXX20_CONCEPT_SATISFIED
265#if MDBX_HAVE_CXX20_CONCEPTS || defined(DOXYGEN)
266#define MDBX_ASSERT_CXX20_CONCEPT_SATISFIED(CONCEPT, TYPE) static_assert(CONCEPT<TYPE>)
268#define MDBX_ASSERT_CXX20_CONCEPT_SATISFIED(CONCEPT, NAME) \
269 static_assert(true, MDBX_STRINGIFY(CONCEPT) "<" MDBX_STRINGIFY(TYPE) ">")
274#pragma warning(push, 4)
275#pragma warning(disable : 4127)
276#pragma warning(disable : 4251)
278#pragma warning(disable : 4275)
283#pragma warning(disable : 4702)
286#if defined(__LCC__) && __LCC__ >= 126
287#pragma diagnostic push
289#pragma diag_suppress 3058
291#pragma diag_suppress 3060
306#if defined(DOXYGEN) || (defined(__cpp_char8_t) && __cpp_char8_t >= 201811)
316using byte =
unsigned char;
319#if defined(__cpp_lib_endian) && __cpp_lib_endian >= 201907L
320using endian = ::std::endian;
321#elif defined(__BYTE_ORDER__) && defined(__ORDER_LITTLE_ENDIAN__) && defined(__ORDER_BIG_ENDIAN__)
322enum class endian { little = __ORDER_LITTLE_ENDIAN__, big = __ORDER_BIG_ENDIAN__, native = __BYTE_ORDER__ };
324#error "Please use a C++ compiler provides byte order information or C++20 support"
348#if defined(DOXYGEN) || \
349 (defined(__cpp_lib_memory_resource) && __cpp_lib_memory_resource >= 201603L && _GLIBCXX_USE_CXX11_ABI)
359template <
class ALLOCATOR = default_allocator,
class CAPACITY_POLICY = default_capacity_policy>
class buffer;
371template <
class ALLOCATOR = default_allocator>
372using string = ::std::basic_string<char, ::std::char_traits<char>, ALLOCATOR>;
375#if MDBX_USING_CXX_EXPERIMETAL_FILESYSTEM
377namespace filesystem = ::std::experimental::filesystem::v1;
379namespace filesystem = ::std::experimental::filesystem;
381#define MDBX_STD_FILESYSTEM_PATH ::mdbx::filesystem::path
382#elif defined(DOXYGEN) || \
383 (defined(__cpp_lib_filesystem) && __cpp_lib_filesystem >= 201703L && defined(__cpp_lib_string_view) && \
384 __cpp_lib_string_view >= 201606L && \
385 (!defined(__MAC_OS_X_VERSION_MIN_REQUIRED) || __MAC_OS_X_VERSION_MIN_REQUIRED >= 101500) && \
386 (!defined(__IPHONE_OS_VERSION_MIN_REQUIRED) || __IPHONE_OS_VERSION_MIN_REQUIRED >= 130100)) && \
387 (!defined(_MSC_VER) || __cplusplus >= 201703L)
388namespace filesystem = ::std::filesystem;
395#define MDBX_STD_FILESYSTEM_PATH ::mdbx::filesystem::path
398#ifdef MDBX_STD_FILESYSTEM_PATH
400#elif defined(_WIN32) || defined(_WIN64)
401using path = ::std::wstring;
403using path = ::std::string;
406#if defined(__SIZEOF_INT128__) || (defined(_INTEGRAL_MAX_BITS) && _INTEGRAL_MAX_BITS >= 128)
407#ifndef MDBX_U128_TYPE
408#define MDBX_U128_TYPE __uint128_t
410#ifndef MDBX_I128_TYPE
411#define MDBX_I128_TYPE __int128_t
415#if __cplusplus >= 201103L || defined(DOXYGEN)
417using duration = ::std::chrono::duration<unsigned, ::std::ratio<1, 65536>>;
428 ::std::exception_ptr captured_;
436 inline
bool is_clean() const noexcept;
437 inline
void capture() noexcept;
465 const
char *
what() const noexcept;
473 [[noreturn]]
void panic(const
char *context_where_when, const
char *func_who_what) const noexcept;
479 inline
void panic_on_failure(const
char *context_where, const
char *func_who) const noexcept;
480 inline
void success_or_panic(const
char *context_where, const
char *func_who) const noexcept;
484 static inline void throw_on_failure(
int error_code);
485 static inline bool boolean_or_throw(
int error_code);
486 static inline void success_or_throw(
int error_code,
const exception_thunk &);
487 static inline bool boolean_or_throw(
int error_code,
const exception_thunk &);
488 static inline void panic_on_failure(
int error_code,
const char *context_where,
const char *func_who)
noexcept;
489 static inline void success_or_panic(
int error_code,
const char *context_where,
const char *func_who)
noexcept;
497 using base = ::std::runtime_error;
516 fatal(const ::mdbx::error &)
noexcept;
526#define MDBX_DECLARE_EXCEPTION(NAME) \
527 struct LIBMDBX_API_TYPE NAME : public exception { \
528 NAME(const ::mdbx::error &); \
529 virtual ~NAME() noexcept; \
563#undef MDBX_DECLARE_EXCEPTION
573static MDBX_CXX14_CONSTEXPR size_t check_length(
size_t headroom,
size_t payload,
size_t tailroom);
582#if MDBX_HAVE_CXX20_CONCEPTS || defined(DOXYGEN)
589 { a.is_empty() } -> std::same_as<bool>;
590 { a.envisage_result_length() } -> std::same_as<size_t>;
591 { a.write_bytes(&array[0],
size_t(42)) } -> std::same_as<char *>;
599 { a.is_empty() } -> std::same_as<bool>;
600 { a.envisage_result_length() } -> std::same_as<size_t>;
601 { a.write_bytes(&array[0],
size_t(42)) } -> std::same_as<char *>;
610 { a.is_erroneous() } -> std::same_as<bool>;
622 const ALLOCATOR &allocator = ALLOCATOR());
624template <
class ALLOCATOR = default_allocator, MDBX_CXX20_CONCEPT(MutableByteProducer, PRODUCER)>
627template <
class ALLOCATOR = default_allocator, MDBX_CXX20_CONCEPT(ImmutableByteProducer, PRODUCER)>
663 template <
class CHAR,
class T,
class A>
672#if defined(DOXYGEN) || (defined(__cpp_lib_span) && __cpp_lib_span >= 202002L)
674 static_assert(::std::is_standard_layout<POD>::value && !::std::is_pointer<POD>::value,
675 "Must be a standard layout type!");
678 template <
typename POD> MDBX_CXX14_CONSTEXPR ::std::span<const POD>
as_span()
const {
679 static_assert(::std::is_standard_layout<POD>::value && !::std::is_pointer<POD>::value,
680 "Must be a standard layout type!");
683 return ::std::span<const POD>(
static_cast<const POD *
>(
data()),
size() /
sizeof(POD));
687 template <
typename POD> MDBX_CXX14_CONSTEXPR ::std::span<POD>
as_span() {
688 static_assert(::std::is_standard_layout<POD>::value && !::std::is_pointer<POD>::value,
689 "Must be a standard layout type!");
692 return ::std::span<POD>(
static_cast<POD *
>(
data()),
size() /
sizeof(POD));
702#if defined(DOXYGEN) || (defined(__cpp_lib_string_view) && __cpp_lib_string_view >= 201606L)
704 template <
class CHAR,
class T>
707 template <
class CHAR,
class T>
slice(::std::basic_string_view<CHAR, T> &&sv) :
slice(sv) { sv = {}; }
713 static_assert(::std::is_standard_layout<POD>::value && !::std::is_pointer<POD>::value,
714 "Must be a standard layout type!");
715 return slice(&pod,
sizeof(pod));
718 inline slice &assign(
const void *ptr,
size_t bytes);
719 inline slice &assign(
const slice &src)
noexcept;
720 inline slice &assign(const ::MDBX_val &src);
723 inline slice &assign(
const void *begin,
const void *end);
724 template <
class CHAR,
class T,
class ALLOCATOR>
slice &
assign(const ::std::basic_string<CHAR, T, ALLOCATOR> &str) {
725 return assign(str.data(), str.length() *
sizeof(CHAR));
727 inline slice &assign(
const char *c_str);
728#if defined(DOXYGEN) || (defined(__cpp_lib_string_view) && __cpp_lib_string_view >= 201606L)
729 template <
class CHAR,
class T>
slice &
assign(const ::std::basic_string_view<CHAR, T> &view) {
730 return assign(view.begin(), view.end());
732 template <
class CHAR,
class T>
slice &
assign(::std::basic_string_view<CHAR, T> &&view) {
743 operator const MDBX_val *()
const noexcept {
return this; }
745#if defined(DOXYGEN) || (defined(__cpp_lib_string_view) && __cpp_lib_string_view >= 201606L)
746 template <
class CHAR,
class T>
slice &
operator=(const ::std::basic_string_view<CHAR, T> &view) {
750 template <
class CHAR,
class T>
slice &
operator=(::std::basic_string_view<CHAR, T> &&view) {
return assign(view); }
753 template <
class CHAR =
char,
class T = ::std::
char_traits<CHAR>>
754 MDBX_CXX11_CONSTEXPR ::std::basic_string_view<CHAR, T>
string_view() const noexcept {
755 static_assert(
sizeof(CHAR) == 1,
"Must be single byte characters");
760 template <
class CHAR,
class T>
766 template <
class CHAR =
char,
class T = ::std::
char_traits<CHAR>,
class ALLOCATOR = default_allocator>
767 MDBX_CXX20_CONSTEXPR ::std::basic_string<CHAR, T, ALLOCATOR>
768 as_string(
const ALLOCATOR &allocator = ALLOCATOR())
const {
769 static_assert(
sizeof(CHAR) == 1,
"Must be single byte characters");
770 return ::std::basic_string<CHAR, T, ALLOCATOR>(
char_ptr(),
length(), allocator);
773 template <
class CHAR,
class T,
class ALLOCATOR>
779 template <
class ALLOCATOR = default_allocator>
780 inline string<ALLOCATOR> as_hex_string(
bool uppercase =
false,
unsigned wrap_width = 0,
781 const ALLOCATOR &allocator = ALLOCATOR())
const;
785 template <
class ALLOCATOR = default_allocator>
786 inline string<ALLOCATOR> as_base58_string(
unsigned wrap_width = 0,
const ALLOCATOR &allocator = ALLOCATOR())
const;
790 template <
class ALLOCATOR = default_allocator>
791 inline string<ALLOCATOR> as_base64_string(
unsigned wrap_width = 0,
const ALLOCATOR &allocator = ALLOCATOR())
const;
794 template <
class ALLOCATOR = default_allocator,
class CAPACITY_POLICY = default_capacity_policy>
796 const ALLOCATOR &allocator = ALLOCATOR())
const;
800 template <
class ALLOCATOR = default_allocator,
class CAPACITY_POLICY = default_capacity_policy>
802 const ALLOCATOR &allocator = ALLOCATOR())
const;
806 template <
class ALLOCATOR = default_allocator,
class CAPACITY_POLICY = default_capacity_policy>
808 const ALLOCATOR &allocator = ALLOCATOR())
const;
811 template <
class ALLOCATOR = default_allocator,
class CAPACITY_POLICY = default_capacity_policy>
813 const ALLOCATOR &allocator = ALLOCATOR())
const;
817 template <
class ALLOCATOR = default_allocator,
class CAPACITY_POLICY = default_capacity_policy>
819 const ALLOCATOR &allocator = ALLOCATOR())
const;
823 template <
class ALLOCATOR = default_allocator,
class CAPACITY_POLICY = default_capacity_policy>
825 const ALLOCATOR &allocator = ALLOCATOR())
const;
856#if defined(DOXYGEN) || (defined(__cpp_lib_string_view) && __cpp_lib_string_view >= 201606L)
857 template <
class CHAR,
class T>
void swap(::std::basic_string_view<CHAR, T> &view)
noexcept {
858 static_assert(
sizeof(CHAR) == 1,
"Must be single byte characters");
859 const auto temp = ::std::basic_string_view<CHAR, T>(*
this);
918 inline
void remove_prefix(
size_t n) noexcept;
922 inline
void remove_suffix(
size_t n) noexcept;
926 inline
void safe_remove_prefix(
size_t n);
930 inline
void safe_remove_suffix(
size_t n);
992 const
slice &b) noexcept;
1008 static_assert(::std::is_standard_layout<POD>::value && !::std::is_pointer<POD>::value,
1009 "Must be a standard layout type!");
1013 memcpy(&r,
data(),
sizeof(r));
1019#ifdef MDBX_U128_TYPE
1027#ifdef MDBX_I128_TYPE
1035#ifdef MDBX_U128_TYPE
1043#ifdef MDBX_I128_TYPE
1060#if defined(__cpp_lib_allocator_traits_is_always_equal) && __cpp_lib_allocator_traits_is_always_equal >= 201411L
1061 return ::std::allocator_traits<A>::is_always_equal::value;
1063 return ::std::is_empty<A>::value;
1067template <
typename T,
typename A =
typename T::allocator_type,
1068 bool PoCMA = ::std::allocator_traits<A>::propagate_on_container_move_assignment::value>
1077 assert(target->get_allocator() != source.get_allocator());
1083template <
typename T,
typename A>
struct move_assign_alloc<T, A, true> {
1084 static constexpr bool is_nothrow() noexcept {
1085 return allocator_is_always_equal<A>() || ::std::is_nothrow_move_assignable<A>::value;
1087 static constexpr bool is_moveable(T *, T &)
noexcept {
return true; }
1089 assert(target->get_allocator() != source.get_allocator());
1090 target->get_allocator() = ::std::move(source.get_allocator());
1094template <
typename T,
typename A =
typename T::allocator_type,
1095 bool PoCCA = ::std::allocator_traits<A>::propagate_on_container_copy_assignment::value>
1099 static constexpr bool is_nothrow() noexcept {
return false; }
1101 assert(target->get_allocator() != source.get_allocator());
1107template <
typename T,
typename A>
struct copy_assign_alloc<T, A, true> {
1108 static constexpr bool is_nothrow() noexcept {
1109 return allocator_is_always_equal<A>() || ::std::is_nothrow_copy_assignable<A>::value;
1111 static MDBX_CXX20_CONSTEXPR void propagate(T *target,
const T &source)
noexcept(is_nothrow()) {
1113 if (
MDBX_UNLIKELY(target->get_allocator() != source.get_allocator()))
1114 MDBX_CXX20_UNLIKELY target->get_allocator() =
1115 ::std::allocator_traits<A>::select_on_container_copy_construction(source.get_allocator());
1124template <
typename T,
typename A =
typename T::allocator_type,
1125 bool PoCS = ::std::allocator_traits<A>::propagate_on_container_swap::value>
1128template <
typename T,
typename A>
struct swap_alloc<T, A, false> {
1132 if (
MDBX_UNLIKELY(target->get_allocator() != source.get_allocator()))
1142template <
typename T,
typename A>
struct swap_alloc<T, A, true> {
1143 static constexpr bool is_nothrow() noexcept {
1144 return allocator_is_always_equal<A>() ||
1145#if defined(__cpp_lib_is_swappable) && __cpp_lib_is_swappable >= 201603L
1146 ::std::is_nothrow_swappable<A>() ||
1148 (::std::is_nothrow_move_constructible<A>::value && ::std::is_nothrow_move_assignable<A>::value);
1152 if (
MDBX_UNLIKELY(target->get_allocator() != source.get_allocator()))
1153 MDBX_CXX20_UNLIKELY ::std::swap(*target, source);
1170 static_assert(
pettiness_threshold >=
sizeof(uint64_t),
"pettiness_threshold must be > 7");
1178 if (wanna > current)
1182 if (current - wanna >
1186 return round(wanna);
1204 template <
class ALLOCATOR = default_allocator>
1210 template <
class ALLOCATOR = default_allocator,
typename CAPACITY_POLICY = default_capacity_policy>
1218 const size_t bytes =
source.length() << 1;
1229 ::std::ostream &
output(::std::ostream &out)
const;
1252 template <
class ALLOCATOR = default_allocator>
1259 template <
class ALLOCATOR = default_allocator,
typename CAPACITY_POLICY = default_capacity_policy>
1267 const size_t bytes = (
source.length() * 11 + 7) / 8;
1280 ::std::ostream &
output(::std::ostream &out)
const;
1303 template <
class ALLOCATOR = default_allocator>
1310 template <
class ALLOCATOR = default_allocator,
typename CAPACITY_POLICY = default_capacity_policy>
1318 const size_t bytes = (
source.length() + 2) / 3 * 4;
1331 ::std::ostream &
output(::std::ostream &out)
const;
1356 template <
class ALLOCATOR = default_allocator>
1362 template <
class ALLOCATOR = default_allocator,
typename CAPACITY_POLICY = default_capacity_policy>
1397 template <
class ALLOCATOR = default_allocator>
1404 template <
class ALLOCATOR = default_allocator,
typename CAPACITY_POLICY = default_capacity_policy>
1443 template <
class ALLOCATOR = default_allocator>
1450 template <
class ALLOCATOR = default_allocator,
typename CAPACITY_POLICY = default_capacity_policy>
1476template <class ALLOCATOR, typename CAPACITY_POLICY> class
buffer {
1478#if !defined(_MSC_VER) || _MSC_VER > 1900
1479 using allocator_type = typename ::std::allocator_traits<ALLOCATOR>::template rebind_alloc<uint64_t>;
1481 using allocator_type =
typename ALLOCATOR::template rebind<uint64_t>::other;
1500 using allocator_pointer =
typename allocator_traits::pointer;
1501 using allocator_const_pointer =
typename allocator_traits::const_pointer;
1503 MDBX_CXX20_CONSTEXPR ::std::pair<allocator_pointer, size_t> allocate_storage(
size_t bytes) {
1504 assert(bytes >=
sizeof(bin));
1505 constexpr size_t unit =
sizeof(
typename allocator_type::value_type);
1506 static_assert((unit & (unit - 1)) == 0,
"size of ALLOCATOR::value_type should be a power of 2");
1507 static_assert(unit > 0,
"size of ALLOCATOR::value_type must be > 0");
1508 const size_t n = (bytes + unit - 1) / unit;
1509 return ::std::make_pair(allocator_traits::allocate(get_allocator(), n), n * unit);
1512 constexpr size_t unit =
sizeof(
typename allocator_type::value_type);
1513 assert(ptr && bytes >=
sizeof(bin) && bytes >= unit && bytes % unit == 0);
1514 allocator_traits::deallocate(get_allocator(), ptr, bytes / unit);
1518#if defined(__cpp_lib_to_address) && __cpp_lib_to_address >= 201711L
1519 return static_cast<void *
>(::std::to_address(ptr));
1521 return static_cast<void *
>(::std::addressof(*ptr));
1525#if defined(__cpp_lib_to_address) && __cpp_lib_to_address >= 201711L
1526 return static_cast<const void *
>(::std::to_address(ptr));
1528 return static_cast<const void *
>(::std::addressof(*ptr));
1548 static_assert(
sizeof(
bin) ==
sizeof(
inplace_),
"WTF?");
1549 return capacity_bytes <
sizeof(
bin);
1555 << (
sizeof(
size_t ) - 1) * CHAR_BIT
1563 static_assert(std::numeric_limits<size_t>::max() - (std::numeric_limits<size_t>::max() >> CHAR_BIT) ==
1576 if (::std::is_trivial<allocator_pointer>::value)
1584 template <
bool construct_ptr>
1602 (void)capacity_bytes;
1614 if (ditto.is_inplace()) {
1621 ditto.make_inplace<
true>();
1627 if (ditto.is_inplace()) {
1644 if (ditto.is_allocated())
1645 ditto.make_inplace<
true>();
1653 const size_t advised = reservation_policy::advise(current, wanna);
1654 assert(advised >= wanna);
1655 return ::std::min(
size_t(
max_capacity), ::std::max(
sizeof(
bin) - 1, advised));
1669 if (bin_.is_suitable_for_inplace(
capacity))
1674 new (&bin_) bin(
pair.first,
pair.second);
1676 return bin_.address();
1680 if (bin_.is_allocated()) {
1681 deallocate_storage(bin_.allocated_.ptr_, bin_.allocated_.capacity_bytes_);
1682 bin_.template make_inplace<true>();
1686 template <
bool external_content>
1688 const void *
const content,
const size_t length) {
1689 assert(wanna_capacity >= wanna_headroom + length);
1690 const size_t old_capacity = bin_.capacity();
1691 const size_t new_capacity = bin::advise_capacity(old_capacity, wanna_capacity);
1694 assert(bin_.is_inplace() == bin::is_suitable_for_inplace(new_capacity));
1695 byte *
const new_place = bin_.address() + wanna_headroom;
1698 if (external_content)
1699 memcpy(new_place, content, length);
1701 const size_t old_headroom = bin_.address() -
static_cast<const byte *
>(content);
1702 assert(old_capacity >= old_headroom + length);
1704 MDBX_CXX20_UNLIKELY ::std::memmove(new_place, content, length);
1710 if (bin::is_suitable_for_inplace(new_capacity)) {
1711 assert(bin_.is_allocated());
1712 const auto old_allocated = ::std::move(bin_.allocated_.ptr_);
1713 byte *
const new_place = bin_.template make_inplace<true>() + wanna_headroom;
1716 deallocate_storage(old_allocated, old_capacity);
1720 if (!bin_.is_allocated()) {
1721 const auto pair = allocate_storage(new_capacity);
1722 assert(pair.second >= new_capacity);
1723 byte *
const new_place =
static_cast<byte *
>(to_address(pair.first)) + wanna_headroom;
1726 bin_.template make_allocated<true>(pair.first, pair.second);
1730 const auto old_allocated = ::std::move(bin_.allocated_.ptr_);
1731 if (external_content)
1732 deallocate_storage(old_allocated, old_capacity);
1733 const auto pair = allocate_storage(new_capacity);
1734 assert(pair.second >= new_capacity);
1735 byte *
const new_place = bin_.template make_allocated<false>(pair.first, pair.second) + wanna_headroom;
1738 if (!external_content)
1739 deallocate_storage(old_allocated, old_capacity);
1744 assert(capacity() >= offset);
1745 return bin_.address() + offset;
1748 assert(capacity() >= offset);
1749 return bin_.address() + offset;
1752 assert(capacity() >= offset + length);
1753 return static_cast<byte *
>(memcpy(get(offset), ptr, length));
1759 silo() noexcept : allocator_type() { init(0); }
1761 silo(
const allocator_type &alloc) noexcept : allocator_type(alloc) { init(0); }
1763 MDBX_CXX20_CONSTEXPR silo(
size_t capacity,
const allocator_type &alloc) : silo(alloc) { init(capacity); }
1765 MDBX_CXX20_CONSTEXPR silo(silo &&ditto)
noexcept(::std::is_nothrow_move_constructible<allocator_type>::value)
1766 : allocator_type(::std::move(ditto.get_allocator())), bin_(::std::move(ditto.bin_)) {}
1768 MDBX_CXX20_CONSTEXPR silo(
size_t capacity,
size_t headroom,
const void *ptr,
size_t length) : silo(capacity) {
1769 assert(capacity >= headroom + length);
1771 put(headroom, ptr, length);
1776 const allocator_type &alloc)
1777 : silo(capacity, alloc) {
1778 assert(capacity >= headroom + length);
1780 put(headroom, ptr, length);
1785 : silo(length, 0, ptr, length, alloc) {}
1787 ~silo() { release(); }
1791 MDBX_CXX20_CONSTEXPR void *assign(
size_t headroom,
const void *ptr,
size_t length,
size_t tailroom) {
1792 return reshape<true>(headroom + length + tailroom, headroom, ptr, length);
1794 MDBX_CXX20_CONSTEXPR void *assign(
const void *ptr,
size_t length) {
return assign(0, ptr, length, 0); }
1797 assert(ditto.get() + headroom == content.byte_ptr());
1798 if MDBX_IF_CONSTEXPR (!allocation_aware_details::allocator_is_always_equal<allocator_type>()) {
1799 if (
MDBX_UNLIKELY(get_allocator() != ditto.get_allocator()))
1800 MDBX_CXX20_UNLIKELY {
1802 allocation_aware_details::copy_assign_alloc<silo, allocator_type>::propagate(
this, ditto);
1805 content.iov_base = reshape<true>(ditto.capacity(), headroom, content.data(), content.length());
1810 assign(silo &&ditto,
size_t headroom,
1811 slice &content)
noexcept(allocation_aware_details::move_assign_alloc<silo, allocator_type>::is_nothrow()) {
1812 assert(ditto.get() + headroom == content.byte_ptr());
1813 if (allocation_aware_details::move_assign_alloc<silo, allocator_type>::is_moveable(
this, ditto)) {
1815 allocation_aware_details::move_assign_alloc<silo, allocator_type>::propagate(
this, ditto);
1817 bin_ = ::std::move(ditto.bin_);
1818 assert(get() + headroom == content.byte_ptr());
1821 content.iov_base = reshape<true>(ditto.capacity(), headroom, content.data(), content.length());
1829 return reshape<false>(whole_capacity, headroom,
nullptr, 0);
1832 content.iov_base = reshape<false>(capacity, headroom, content.iov_base, content.iov_len);
1835 swap(silo &ditto)
noexcept(allocation_aware_details::swap_alloc<silo, allocator_type>::is_nothrow()) {
1836 allocation_aware_details::swap_alloc<silo, allocator_type>::propagate(
this, ditto);
1837 ::std::swap(bin_, ditto.bin_);
1850 ::mdbx::slice slice_;
1853 assert(is_reference());
1855 slice_.iov_base = silo_.
data();
1859 return static_cast<const byte *
>(silo_.data());
1863 return silo_begin() + silo_.capacity();
1866 struct data_preserver :
public exception_thunk {
1868 data_preserver(allocator_type &allocator) : data(allocator) {}
1869 static int callback(
void *context,
MDBX_val *target,
const void *src,
size_t bytes)
noexcept {
1870 auto self =
static_cast<data_preserver *
>(context);
1871 assert(self->is_clean());
1872 assert(&self->data.slice_ == target);
1875 self->data.assign(src, bytes,
false);
1902 return size_t(
byte_ptr() - silo_begin()) < silo_.capacity();
1938 return const_cast<byte *
>(slice_.byte_ptr());
1946 return const_cast<byte *
>(slice_.end_byte_ptr());
1960 return const_cast<char *
>(slice_.char_ptr());
1968 return const_cast<char *
>(slice_.end_char_ptr());
1982 return const_cast<void *
>(slice_.data());
1990 return const_cast<void *
>(slice_.end());
2001 slice_.set_length(
bytes);
2023 : silo_(allocator), slice_(src) {
2024 if (!make_reference)
2029 :
buffer(src.slice_, make_reference, allocator) {}
2034 template <
class CHAR,
class T,
class A>
buffer(const ::std::basic_string<CHAR, T, A> &) =
delete;
2035 template <
class CHAR,
class T,
class A>
buffer(const ::std::basic_string<CHAR, T, A> &&) =
delete;
2040#if defined(DOXYGEN) || (defined(__cpp_lib_string_view) && __cpp_lib_string_view >= 201606L)
2041 template <
class CHAR,
class T>
2042 buffer(const ::std::basic_string_view<CHAR, T> &view,
bool make_reference,
2058 template <
class CHAR,
class T,
class A>
2067#if defined(DOXYGEN) || (defined(__cpp_lib_string_view) && __cpp_lib_string_view >= 201606L)
2068 template <
class CHAR,
class T>
2075 slice_.iov_base = silo_.init(check_length(head_room, tail_room));
2076 assert(slice_.iov_len == 0);
2080 slice_.iov_base = silo_.init(check_length(
capacity));
2081 assert(slice_.iov_len == 0);
2086 : silo_(allocator) {
2087 slice_.iov_base = silo_.init(check_length(head_room, src.
length(), tail_room));
2088 slice_.iov_len = src.
length();
2089 memcpy(slice_.iov_base, src.
data(), src.
length());
2093 :
buffer(head_room, src.slice_, tail_room, allocator) {}
2098 : silo_(::
std::move(src.silo_)), slice_(::
std::move(src.slice_)) {}
2104#if defined(DOXYGEN) || (defined(__cpp_lib_span) && __cpp_lib_span >= 202002L)
2106 static_assert(::std::is_standard_layout<POD>::value && !::std::is_pointer<POD>::value,
2107 "Must be a standard layout type!");
2110 template <
typename POD> MDBX_CXX14_CONSTEXPR ::std::span<const POD>
as_span()
const {
2113 template <
typename POD> MDBX_CXX14_CONSTEXPR ::std::span<POD>
as_span() {
return slice_.template
as_span<POD>(); }
2121 template <
typename POD>
2128#ifdef MDBX_U128_TYPE
2136#ifdef MDBX_I128_TYPE
2144#ifdef MDBX_U128_TYPE
2152#ifdef MDBX_I128_TYPE
2161 static buffer hex(const ::mdbx::slice &source,
bool uppercase =
false,
unsigned wrap_width = 0,
2180 template <
typename POD>
2181 static buffer hex(
const POD &pod,
bool uppercase =
false,
unsigned wrap_width = 0,
2188 template <
typename POD>
2195 template <
typename POD>
2256 void reserve(
size_t wanna_headroom,
size_t wanna_tailroom) {
2259 const size_t wanna_capacity = check_length(wanna_headroom, slice_.length(), wanna_tailroom);
2260 silo_.resize(wanna_capacity, wanna_headroom, slice_);
2273 slice_.assign(ptr,
bytes);
2278 silo_.
assign(
static_cast<const typename silo::value_type *
>(ptr), check_length(
bytes));
2284 silo_.swap(other.silo_);
2285 slice_.swap(other.slice_);
2303 return assign(src.iov_base, src.iov_len, make_reference);
2313 assign(src.iov_base, src.iov_len, make_reference);
2314 src.iov_base =
nullptr;
2319 return assign(begin,
static_cast<const byte *
>(
end) -
static_cast<const byte *
>(begin), make_reference);
2322 template <
class CHAR,
class T,
class A>
2323 buffer &
assign(const ::std::basic_string<CHAR, T, A> &str,
bool make_reference =
false) {
2324 return assign(str.data(), str.length(), make_reference);
2328 return assign(c_str, ::mdbx::strlen(c_str), make_reference);
2331#if defined(__cpp_lib_string_view) && __cpp_lib_string_view >= 201606L
2332 template <
class CHAR,
class T>
2333 buffer &assign(const ::std::basic_string_view<CHAR, T> &view,
bool make_reference =
false) {
2334 return assign(view.data(), view.length(), make_reference);
2337 template <
class CHAR,
class T> buffer &assign(::std::basic_string_view<CHAR, T> &&view,
bool make_reference =
false) {
2338 assign(view.data(), view.length(), make_reference);
2352#if defined(DOXYGEN) || (defined(__cpp_lib_string_view) && __cpp_lib_string_view >= 201606L)
2353 template <
class CHAR,
class T>
buffer &
operator=(const ::std::basic_string_view<CHAR, T> &view)
noexcept {
2358 template <
class CHAR =
char,
class T = ::std::
char_traits<CHAR>>
2360 return slice_.string_view<CHAR, T>();
2364 template <
class CHAR,
class T> operator ::std::basic_string_view<CHAR, T>() const noexcept {
2365 return string_view<CHAR, T>();
2384 template <
class CHAR =
char,
class T = ::std::
char_traits<CHAR>,
class A = legacy_allocator>
2385 MDBX_CXX20_CONSTEXPR ::std::basic_string<CHAR, T, A>
as_string(
const A &allocator = A())
const {
2386 return slice_.as_string<CHAR, T, A>(allocator);
2389 template <
class CHAR,
class T,
class A>
2396 return slice_.starts_with(prefix);
2401 return slice_.ends_with(suffix);
2405 void clear() noexcept { slice_.assign(silo_.clear(),
size_t(0)); }
2409 slice_.assign(silo_.clear_and_reserve(whole_capacity,
headroom),
size_t(0));
2485 slice_.iov_len +=
bytes;
2494 slice_.iov_base = memcpy(
static_cast<char *
>(slice_.iov_base) -
bytes, src,
bytes);
2495 slice_.iov_len +=
bytes;
2502 const size_t wanna_bytes = producer.envisage_result_length();
2509 const size_t wanna_bytes = producer.envisage_result_length();
2542 *slice_.end_byte_ptr() = uint8_t(u8);
2543 slice_.iov_len += 1;
2552 const auto ptr = slice_.end_byte_ptr();
2553 ptr[0] = uint8_t(u16);
2554 ptr[1] = uint8_t(u16 >> 8);
2555 slice_.iov_len += 2;
2562 const auto ptr = slice_.end_byte_ptr();
2563 ptr[0] = uint8_t(u24);
2564 ptr[1] = uint8_t(u24 >> 8);
2565 ptr[2] = uint8_t(u24 >> 16);
2566 slice_.iov_len += 3;
2573 const auto ptr = slice_.end_byte_ptr();
2574 ptr[0] = uint8_t(u32);
2575 ptr[1] = uint8_t(u32 >> 8);
2576 ptr[2] = uint8_t(u32 >> 16);
2577 ptr[3] = uint8_t(u32 >> 24);
2578 slice_.iov_len += 4;
2585 const auto ptr = slice_.end_byte_ptr();
2586 ptr[0] = uint8_t(u48);
2587 ptr[1] = uint8_t(u48 >> 8);
2588 ptr[2] = uint8_t(u48 >> 16);
2589 ptr[3] = uint8_t(u48 >> 24);
2590 ptr[4] = uint8_t(u48 >> 32);
2591 ptr[5] = uint8_t(u48 >> 40);
2592 slice_.iov_len += 6;
2599 const auto ptr = slice_.end_byte_ptr();
2600 ptr[0] = uint8_t(u64);
2601 ptr[1] = uint8_t(u64 >> 8);
2602 ptr[2] = uint8_t(u64 >> 16);
2603 ptr[3] = uint8_t(u64 >> 24);
2604 ptr[4] = uint8_t(u64 >> 32);
2605 ptr[5] = uint8_t(u64 >> 40);
2606 ptr[6] = uint8_t(u64 >> 48);
2607 ptr[7] = uint8_t(u64 >> 56);
2608 slice_.iov_len += 8;
2614 template <
size_t SIZE>
static buffer key_from(
const char (&text)[SIZE],
bool make_reference =
true) {
2618#if defined(DOXYGEN) || (defined(__cpp_lib_string_view) && __cpp_lib_string_view >= 201606L)
2619 template <
class CHAR,
class T>
2620 static buffer key_from(const ::std::basic_string_view<CHAR, T> &src,
bool make_reference =
false) {
2621 return buffer(src, make_reference);
2627 template <
class CHAR,
class T,
class A>
2628 static buffer key_from(const ::std::basic_string<CHAR, T, A> &src,
bool make_reference =
false) {
2629 return buffer(src, make_reference);
2667template <
class ALLOCATOR,
class CAPACITY_POLICY, MDBX_CXX20_CONCEPT(MutableByteProducer, PRODUCER)>
2678template <
class ALLOCATOR,
class CAPACITY_POLICY, MDBX_CXX20_CONCEPT(ImmutableByteProducer, PRODUCER)>
2689template <
class ALLOCATOR, MDBX_CXX20_CONCEPT(MutableByteProducer, PRODUCER)>
2694 result.resize(producer.envisage_result_length());
2695 result.resize(producer.write_bytes(
const_cast<char *
>(result.data()), result.capacity()) - result.data());
2700template <
class ALLOCATOR, MDBX_CXX20_CONCEPT(ImmutableByteProducer, PRODUCER)>
2705 result.resize(producer.envisage_result_length());
2706 result.resize(producer.write_bytes(
const_cast<char *
>(result.data()), result.capacity()) - result.data());
2746 const pair &b)
noexcept;
2775 using stl_pair = ::std::pair<buffer_type, buffer_type>;
2786 :
key(
key, make_reference, allocator),
value(
value, make_reference, allocator) {}
2797 :
key(
key, make_reference, allocator),
value(
value, make_reference, allocator) {}
2818 return key.is_freestanding() &&
value.is_freestanding();
2823 return key.is_reference() ||
value.is_reference();
2829 key.make_freestanding();
2830 value.make_freestanding();
2836template <
typename BUFFER>
2893#if CONSTEXPR_ENUM_FLAGS_OPERATIONS || defined(DOXYGEN)
2976 operator bool() const noexcept {
return dbi != 0; }
3026 inline
env &operator=(
env &&other) noexcept;
3027 inline
env(
env &&other) noexcept;
3028 inline ~
env() noexcept;
3051#if INTPTR_MAX > 0x7fffFFFFl
3059#if INTPTR_MAX > 0x7fffFFFFl
3107 inline geometry &make_fixed(intptr_t size)
noexcept;
3108 inline geometry &make_dynamic(intptr_t lower = default_value, intptr_t upper = default_value)
noexcept;
3198 bool use_subdirectory =
false
3235 static inline
size_t dbsize_min(intptr_t pagesize);
3238 static inline
size_t dbsize_max(intptr_t pagesize);
3328#ifdef MDBX_STD_FILESYSTEM_PATH
3331#if defined(_WIN32) || defined(_WIN64) || defined(DOXYGEN)
3332 env &
copy(const ::std::wstring &destination,
bool compactify,
bool force_dynamic_size =
false);
3333 env &
copy(
const wchar_t *destination,
bool compactify,
bool force_dynamic_size =
false);
3335 env &
copy(const ::std::string &destination,
bool compactify,
bool force_dynamic_size =
false);
3336 env &
copy(
const char *destination,
bool compactify,
bool force_dynamic_size =
false);
3360#ifdef MDBX_STD_FILESYSTEM_PATH
3363#if defined(_WIN32) || defined(_WIN64) || defined(DOXYGEN)
3383 inline info get_info()
const;
3387 inline stat get_stat(
const txn &)
const;
3391 inline info get_info(
const txn &)
const;
3440#if __cplusplus >= 201103L || defined(DOXYGEN)
3527 inline env &set_extra_option(extra_runtime_option option, uint64_t value);
3530 inline uint64_t extra_option(extra_runtime_option option)
const;
3536 inline env &set_geometry(
const geometry &size);
3541 inline bool sync_to_disk(
bool force =
true,
bool nonblock =
false);
3590 size_t used,
size_t retained)
noexcept;
3656 using inherited =
env;
3665#ifdef MDBX_STD_FILESYSTEM_PATH
3668#if defined(_WIN32) || defined(_WIN64) || defined(DOXYGEN)
3687#ifdef MDBX_STD_FILESYSTEM_PATH
3689 bool accede =
true);
3691#if defined(_WIN32) || defined(_WIN64) || defined(DOXYGEN)
3693 bool accede =
true);
3695 bool accede =
true);
3718 MDBX_CXX20_UNLIKELY {
3719 assert(
handle_ != other.handle_);
3747 inline
txn &operator=(
txn &&other) noexcept;
3748 inline
txn(
txn &&other) noexcept;
3749 inline ~
txn() noexcept;
3762 inline uint64_t
id() const;
3771 inline
bool is_dirty(const
void *ptr) const;
3781 inline info get_info(
bool scan_reader_lock_table =
false)
const;
3791 return size_t(
get_info().txn_space_dirty);
3797 inline void reset_reading();
3800 inline void renew_reading();
3803 inline void make_broken();
3806 inline void park_reading(
bool autounpark =
true);
3810 inline bool unpark_reading(
bool restart_if_ousted =
true);
3838 inline map_handle open_map_accede(
const char *name)
const;
3840 inline map_handle open_map_accede(const ::std::string &name)
const;
3842 inline map_handle open_map_accede(const ::mdbx::slice &name)
const;
3859 bool drop_map(
const char *name,
bool throw_if_absent =
false);
3863 inline bool drop_map(const ::std::string &name,
bool throw_if_absent =
false);
3867 bool drop_map(const ::mdbx::slice &name,
bool throw_if_absent =
false);
3873 bool clear_map(
const char *name,
bool throw_if_absent =
false);
3876 inline bool clear_map(const ::std::string &name,
bool throw_if_absent =
false);
3879 bool clear_map(const ::mdbx::slice &name,
bool throw_if_absent =
false);
3890 bool rename_map(
const char *old_name,
const char *new_name,
bool throw_if_absent =
false);
3894 bool rename_map(const ::std::string &old_name, const ::std::string &new_name,
bool throw_if_absent =
false);
3898 bool rename_map(const ::mdbx::slice &old_name, const ::mdbx::slice &new_name,
bool throw_if_absent =
false);
3900#if defined(DOXYGEN) || (defined(__cpp_lib_string_view) && __cpp_lib_string_view >= 201606L)
3918 bool drop_map(const ::std::string_view &name,
bool throw_if_absent =
false) {
3923 bool clear_map(const ::std::string_view &name,
bool throw_if_absent =
false) {
3931 bool rename_map(const ::std::string_view &old_name, const ::std::string_view &new_name,
3932 bool throw_if_absent =
false) {
4023 template <
class ALLOCATOR,
typename CAPACITY_POLICY>
4030 template <
class ALLOCATOR,
typename CAPACITY_POLICY>
4036 template <
class ALLOCATOR,
typename CAPACITY_POLICY>
4058 inline void append(
map_handle map,
const slice &key,
const slice &value,
bool multivalue_order_preserved =
true);
4060 return append(map, kv.
key, kv.
value, multivalue_order_preserved);
4063 size_t put_multiple_samelength(
map_handle map,
const slice &key,
const size_t value_length,
const void *values_array,
4064 size_t values_count,
put_mode mode,
bool allow_partial =
false);
4065 template <
typename VALUE>
4067 put_mode mode,
bool allow_partial =
false) {
4068 static_assert(::std::is_standard_layout<VALUE>::value && !::std::is_pointer<VALUE>::value &&
4069 !::std::is_array<VALUE>::value,
4070 "Must be a standard layout type!");
4073 template <
typename VALUE>
4080 inline ptrdiff_t estimate_from_first(
map_handle map,
const slice &to)
const;
4081 inline ptrdiff_t estimate_to_last(
map_handle map,
const slice &from)
const;
4093 using inherited =
txn;
4101 txn_managed(txn_managed &&) = default;
4102 txn_managed &operator=(txn_managed &&other) noexcept {
4104 MDBX_CXX20_UNLIKELY {
4105 assert(
handle_ != other.handle_);
4165 inline ~
cursor() noexcept;
4197 inline void *get_context() const noexcept;
4200 inline
cursor &set_context(
void *your_context);
4257 bool throw_notfound);
4280 template <
typename CALLABLE_PREDICATE>
4283 static int probe(
void *context,
MDBX_val *key,
MDBX_val *value,
void *arg)
noexcept {
4284 auto thunk =
static_cast<wrapper *
>(context);
4285 assert(thunk->is_clean());
4286 auto &predicate = *
static_cast<CALLABLE_PREDICATE *
>(arg);
4300 template <
typename CALLABLE_PREDICATE>
bool fullscan(CALLABLE_PREDICATE predicate,
bool backward =
false) {
4304 template <
typename CALLABLE_PREDICATE>
4308 static int probe(
void *context,
MDBX_val *key,
MDBX_val *value,
void *arg)
noexcept {
4309 auto thunk =
static_cast<wrapper *
>(context);
4310 assert(thunk->is_clean());
4311 auto &predicate = *
static_cast<CALLABLE_PREDICATE *
>(arg);
4325 template <
typename CALLABLE_PREDICATE>
4329 static int probe(
void *context,
MDBX_val *key,
MDBX_val *value,
void *arg)
noexcept {
4330 auto thunk =
static_cast<wrapper *
>(context);
4331 assert(thunk->is_clean());
4332 auto &predicate = *
static_cast<CALLABLE_PREDICATE *
>(arg);
4347 return move_result(*
this, operation, throw_notfound);
4353 return move_result(*
this, operation, key, value, throw_notfound);
4356 return move(operation, &key, &value, throw_notfound);
4435 inline bool seek(
const slice &key);
4436 inline move_result find(
const slice &key,
bool throw_notfound =
true);
4437 inline move_result lower_bound(
const slice &key,
bool throw_notfound =
false);
4438 inline move_result upper_bound(
const slice &key,
bool throw_notfound =
false);
4441 inline size_t count_multivalue()
const;
4443 inline move_result find_multivalue(
const slice &key,
const slice &value,
bool throw_notfound =
true);
4444 inline move_result lower_bound_multivalue(
const slice &key,
const slice &value,
bool throw_notfound =
false);
4445 inline move_result upper_bound_multivalue(
const slice &key,
const slice &value,
bool throw_notfound =
false);
4463 inline bool eof()
const;
4464 inline bool on_first()
const;
4465 inline bool on_last()
const;
4466 inline bool on_first_multival()
const;
4467 inline bool on_last_multival()
const;
4470 inline estimate_result
estimate(move_operation operation)
const;
4477 inline void renew(const ::mdbx::txn &
txn);
4487 inline ::mdbx::txn
txn()
const;
4490 inline operator ::mdbx::txn()
const {
return txn(); }
4491 inline operator ::mdbx::map_handle()
const {
return map(); }
4495 inline void insert(
const slice &key,
slice value);
4497 inline slice insert_reserve(
const slice &key,
size_t value_length);
4501 inline slice upsert_reserve(
const slice &key,
size_t value_length);
4504 inline bool try_update(
const slice &key,
const slice &value);
4505 inline slice update_reserve(
const slice &key,
size_t value_length);
4515 inline bool erase(
bool whole_multivalue =
false);
4520 inline bool erase(
const slice &key,
bool whole_multivalue =
true);
4524 inline bool erase(
const slice &key,
const slice &value);
4535 using inherited =
cursor;
4551 cursor_managed &
operator=(cursor_managed &&other)
noexcept {
4553 MDBX_CXX20_UNLIKELY {
4554 assert(
handle_ != other.handle_);
4571template <
class ALLOCATOR,
typename CAPACITY_POLICY>
4598#if defined(__cpp_lib_is_constant_evaluated) && __cpp_lib_is_constant_evaluated >= 201811L
4599 if (::std::is_constant_evaluated()) {
4600 for (
size_t i = 0; c_str; ++i)
4606#if defined(__cpp_lib_string_view) && __cpp_lib_string_view >= 201606L
4607 return c_str ? ::std::string_view(c_str).length() : 0;
4609 return c_str ? ::std::strlen(c_str) : 0;
4614#if defined(__cpp_lib_is_constant_evaluated) && __cpp_lib_is_constant_evaluated >= 201811L
4615 if (::std::is_constant_evaluated()) {
4616 for (
size_t i = 0; i < bytes; ++i)
4617 static_cast<byte *
>(dest)[i] =
static_cast<const byte *
>(src)[i];
4621 return ::std::memcpy(dest, src, bytes);
4625#if defined(__cpp_lib_is_constant_evaluated) && __cpp_lib_is_constant_evaluated >= 201811L
4626 if (::std::is_constant_evaluated()) {
4627 for (
size_t i = 0; i < bytes; ++i) {
4628 const int diff = int(
static_cast<const byte *
>(a)[i]) - int(
static_cast<const byte *
>(b)[i]);
4635 return ::std::memcmp(a, b, bytes);
4645 return check_length(check_length(headroom) + check_length(payload));
4649 return check_length(check_length(headroom, payload) + check_length(tailroom));
4656 captured_ = ::std::current_exception();
4661 MDBX_CXX20_UNLIKELY ::std::rethrow_exception(captured_);
4719 MDBX_CXX20_UNLIKELY
panic(context_where, func_who);
4724 MDBX_CXX20_UNLIKELY
panic(context_where, func_who);
4729 MDBX_CXX20_UNLIKELY
error(error_code).throw_exception();
4738 error rc(error_code);
4743 switch (error_code) {
4779 : ::
MDBX_val({
const_cast<void *
>(ptr), check_length(
bytes)}) {}
4782 :
slice(begin, static_cast<const
byte *>(
end) - static_cast<const
byte *>(begin)) {}
4793 iov_base =
const_cast<void *
>(ptr);
4794 iov_len = check_length(
bytes);
4799 iov_base = src.iov_base;
4800 iov_len = src.iov_len;
4813 assign(src.iov_base, src.iov_len);
4814 src.iov_base =
nullptr;
4819 return assign(begin,
static_cast<const byte *
>(
end) -
static_cast<const byte *
>(begin));
4829 const auto temp = *
this;
4835 return static_cast<const byte *
>(iov_base);
4840MDBX_CXX11_CONSTEXPR ::mdbx::byte *
slice::byte_ptr() noexcept {
return static_cast<byte *
>(iov_base); }
4863 iov_len = check_length(
bytes);
4888 assert(n <=
size());
4889 iov_base =
static_cast<byte *
>(iov_base) + n;
4900 assert(n <=
size());
4911 return length() >= prefix.length() && memcmp(
data(), prefix.data(), prefix.length()) == 0;
4915 return length() >= suffix.length() &&
4916 memcmp(
byte_ptr() +
length() - suffix.length(), suffix.data(), suffix.length()) == 0;
4920 size_t h =
length() * 3977471;
4921 for (
size_t i = 0; i <
length(); ++i)
4922 h = (h ^
static_cast<const uint8_t *
>(
data())[i]) * 1664525 + 1013904223;
4923 return h ^ 3863194411 * (h >> 11);
4973 const intptr_t diff = intptr_t(a.length()) - intptr_t(b.length());
4975 :
MDBX_UNLIKELY(a.length() == 0 || a.data() == b.data()) ? 0
4976 : memcmp(a.data(), b.data(), a.length());
4980 const size_t shortest = ::std::min(a.length(), b.length());
4983 const intptr_t diff = memcmp(a.data(), b.data(), shortest);
4987 return intptr_t(a.length()) - intptr_t(b.length());
5014template <
class ALLOCATOR>
5016 return to_hex(*
this, uppercase, wrap_width).
as_string<ALLOCATOR>(allocator);
5019template <
class ALLOCATOR>
5024template <
class ALLOCATOR>
5029template <
class ALLOCATOR,
class CAPACITY_POLICY>
5031 const ALLOCATOR &allocator)
const {
5032 return to_hex(*
this, uppercase, wrap_width).
as_buffer<ALLOCATOR, CAPACITY_POLICY>(allocator);
5035template <
class ALLOCATOR,
class CAPACITY_POLICY>
5037 return to_base58(*
this, wrap_width).
as_buffer<ALLOCATOR, CAPACITY_POLICY>(allocator);
5040template <
class ALLOCATOR,
class CAPACITY_POLICY>
5042 return to_base64(*
this, wrap_width).
as_buffer<ALLOCATOR, CAPACITY_POLICY>(allocator);
5045template <
class ALLOCATOR,
class CAPACITY_POLICY>
5047 return from_hex(*
this, ignore_spaces).
as_buffer<ALLOCATOR, CAPACITY_POLICY>(allocator);
5050template <
class ALLOCATOR,
class CAPACITY_POLICY>
5055template <
class ALLOCATOR,
class CAPACITY_POLICY>
5085 return a.key.length() == b.key.length() && a.value.length() == b.value.length() &&
5086 memcmp(a.key.data(), b.key.data(), a.key.length()) == 0 &&
5087 memcmp(a.value.data(), b.value.data(), a.value.length()) == 0;
5107 return a.key.length() != b.key.length() || a.value.length() != b.value.length() ||
5108 memcmp(a.key.data(), b.key.data(), a.key.length()) != 0 ||
5109 memcmp(a.value.data(), b.value.data(), a.value.length()) != 0;
5114template <
class ALLOCATOR,
typename CAPACITY_POLICY>
5138 other.handle_ =
nullptr;
5189 return static_cast<size_t>(result);
5196 return static_cast<size_t>(result);
5207 return static_cast<size_t>(result);
5218 return static_cast<size_t>(result);
5231 return static_cast<size_t>(result);
5242 return static_cast<size_t>(result);
5251 return static_cast<size_t>(result);
5262 return static_cast<size_t>(result);
5273 return static_cast<size_t>(result);
5284 return static_cast<size_t>(result);
5295 return static_cast<size_t>(result);
5394 unsigned seconds_16dot16;
5396 return seconds_16dot16;
5405#if __cplusplus >= 201103L
5450 size_t retained) noexcept
5457 static int cb(
void *ctx,
int number,
int slot,
mdbx_pid_t pid,
mdbx_tid_t thread, uint64_t txnid, uint64_t lag,
5458 size_t used,
size_t retained)
noexcept {
5459 reader_visitor_thunk *thunk =
static_cast<reader_visitor_thunk *
>(ctx);
5460 assert(thunk->is_clean());
5462 const reader_info info(slot, pid, thread, txnid, lag, used, retained);
5471 reader_visitor_thunk thunk(visitor);
5473 thunk.rethrow_captured();
5480 assert(dead_count >= 0);
5481 return static_cast<unsigned>(dead_count);
5494 assert(ptr !=
nullptr);
5501 assert(ptr !=
nullptr);
5508 assert(ptr !=
nullptr);
5515 assert(ptr !=
nullptr);
5527 other.handle_ =
nullptr;
5618 assert(map.
dbi != 0);
5627 assert(map.
dbi != 0);
5634 assert(map.
dbi != 0);
5641 assert(map.
dbi != 0);
5650 assert(map.
dbi != 0);
5659 assert(map.
dbi != 0);
5747 return ::mdbx_dcmp(
handle_, map.
dbi, &a, &b);
5777 return value_at_absence;
5790 return value_at_absence;
5807 return pair_result{result.key, result.value,
true};
5809 return pair_result{result.key, result.value,
false};
5831 const int err =
put(map, key, &value ,
5844 slice result(
nullptr, value_length);
5851 slice result(
nullptr, value_length);
5852 const int err =
put(map, key, &result ,
5869 slice result(
nullptr, value_length);
5891 slice result(
nullptr, value_length);
5897 slice result(
nullptr, value_length);
5938template <
class ALLOCATOR,
typename CAPACITY_POLICY>
5942 typename buffer<ALLOCATOR, CAPACITY_POLICY>::data_preserver result(allocator);
5948template <
class ALLOCATOR,
typename CAPACITY_POLICY>
5952 typename buffer<ALLOCATOR, CAPACITY_POLICY>::data_preserver result(allocator);
5959template <
class ALLOCATOR,
typename CAPACITY_POLICY>
5963 typename buffer<ALLOCATOR, CAPACITY_POLICY>::data_preserver result(allocator);
5976 const void *values_array,
size_t values_count,
put_mode mode,
5977 bool allow_partial) {
5978 MDBX_val args[2] = {{
const_cast<void *
>(values_array), value_length}, {
nullptr, values_count}};
5991 return args[1].iov_len ;
6037 other.handle_ =
nullptr;
6077 bool throw_notfound)
6079 this->
done =
cursor.move(operation, &this->key, &this->value, throw_notfound);
6090 if (!throw_notfound)
6181 return ::mdbx::txn(
txn);
6218 slice result(
nullptr, value_length);
6225 slice result(
nullptr, value_length);
6226 const int err =
put(key, &result ,
6243 slice result(
nullptr, value_length);
6265 slice result(
nullptr, value_length);
6271 slice result(
nullptr, value_length);
6296 bool found =
seek(key);
6297 return found ?
erase(whole_multivalue) : found;
6323template <
class ALLOCATOR,
typename CAPACITY_POLICY>
6324inline string to_string(const ::mdbx::buffer<ALLOCATOR, CAPACITY_POLICY> &buffer) {
6336inline string to_string(const ::mdbx::env::geometry &value) {
6342inline string to_string(const ::mdbx::env::operate_parameters &value) {
6354inline string to_string(const ::mdbx::env::durability &value) {
6360inline string to_string(const ::mdbx::env::reclaiming_options &value) {
6366inline string to_string(const ::mdbx::env::operate_options &value) {
6372inline string to_string(const ::mdbx::env_managed::create_parameters &value) {
6405#if defined(__LCC__) && __LCC__ >= 126
6406#pragma diagnostic pop
#define MDBX_CXX11_CONSTEXPR
Definition mdbx.h:443
#define MDBX_MAYBE_UNUSED
Definition mdbx.h:509
#define MDBX_CXX14_CONSTEXPR
Definition mdbx.h:462
#define MDBX_NOTHROW_PURE_FUNCTION
The 'pure nothrow' function attribute for optimization.
Definition mdbx.h:259
mode_t mdbx_mode_t
Definition mdbx.h:174
int(* MDBX_preserve_func)(void *context, MDBX_val *target, const void *src, size_t bytes)
Definition mdbx.h:5039
#define LIBMDBX_API
Definition mdbx.h:590
#define LIBMDBX_API_TYPE
Definition mdbx.h:605
struct iovec MDBX_val
Generic structure used for passing keys and data in and out of the table. .
Definition mdbx.h:765
LIBMDBX_API int mdbx_replace_ex(MDBX_txn *txn, MDBX_dbi dbi, const MDBX_val *key, MDBX_val *new_data, MDBX_val *old_data, MDBX_put_flags_t flags, MDBX_preserve_func preserver, void *preserver_context)
pthread_t mdbx_tid_t
Definition mdbx.h:173
struct MDBX_env MDBX_env
Opaque structure for a database environment.
Definition mdbx.h:697
int mdbx_filehandle_t
Definition mdbx.h:171
pid_t mdbx_pid_t
Definition mdbx.h:172
@ MDBX_MAX_PAGESIZE
Definition mdbx.h:779
@ MDBX_MAXDATASIZE
Definition mdbx.h:773
@ MDBX_MAX_DBI
Definition mdbx.h:770
@ MDBX_MIN_PAGESIZE
Definition mdbx.h:776
libmdbx build information
Definition mdbx.h:633
The fours integers markers (aka "canary") associated with the environment.
Definition mdbx.h:4414
Latency of commit stages in 1/65536 of seconds units.
Definition mdbx.h:4063
Information about the environment.
Definition mdbx.h:2789
Statistics for a table in the environment.
Definition mdbx.h:2743
Information about the transaction.
Definition mdbx.h:3965
libmdbx version information,
Definition mdbx.h:615
LIBMDBX_API int mdbx_cursor_del(MDBX_cursor *cursor, MDBX_put_flags_t flags)
Delete current key/data pair.
LIBMDBX_API int mdbx_dbi_sequence(MDBX_txn *txn, MDBX_dbi dbi, uint64_t *result, uint64_t increment)
Sequence generation for a table.
LIBMDBX_API int mdbx_get_equal_or_great(const MDBX_txn *txn, MDBX_dbi dbi, MDBX_val *key, MDBX_val *data)
Get equal or great item from a table.
LIBMDBX_API int mdbx_cursor_scan(MDBX_cursor *cursor, MDBX_predicate_func *predicate, void *context, MDBX_cursor_op start_op, MDBX_cursor_op turn_op, void *arg)
Сканирует таблицу с использованием передаваемого предиката, с уменьшением сопутствующих накладных рас...
LIBMDBX_API int mdbx_canary_put(MDBX_txn *txn, const MDBX_canary *canary)
Set integers markers (aka "canary") associated with the environment.
LIBMDBX_API int mdbx_canary_get(const MDBX_txn *txn, MDBX_canary *canary)
Returns fours integers markers (aka "canary") associated with the environment.
MDBX_put_flags_t
Data changing flags.
Definition mdbx.h:1625
LIBMDBX_API int mdbx_cursor_count(const MDBX_cursor *cursor, size_t *count)
Return count values (aka duplicates) for current key.
LIBMDBX_API int mdbx_cursor_scan_from(MDBX_cursor *cursor, MDBX_predicate_func *predicate, void *context, MDBX_cursor_op from_op, MDBX_val *from_key, MDBX_val *from_value, MDBX_cursor_op turn_op, void *arg)
int MDBX_cmp_func(const MDBX_val *a, const MDBX_val *b) noexcept
A callback function used to compare two keys in a table.
Definition mdbx.h:4474
LIBMDBX_API int mdbx_del(MDBX_txn *txn, MDBX_dbi dbi, const MDBX_val *key, const MDBX_val *data)
Delete items from a table.
LIBMDBX_API int mdbx_get_ex(const MDBX_txn *txn, MDBX_dbi dbi, MDBX_val *key, MDBX_val *data, size_t *values_count)
Get items from a table and optionally number of data items for a given key.
LIBMDBX_API int mdbx_cursor_put(MDBX_cursor *cursor, const MDBX_val *key, MDBX_val *data, MDBX_put_flags_t flags)
Store by cursor.
LIBMDBX_API int mdbx_put(MDBX_txn *txn, MDBX_dbi dbi, const MDBX_val *key, MDBX_val *data, MDBX_put_flags_t flags)
Store items into a table.
LIBMDBX_API int mdbx_drop(MDBX_txn *txn, MDBX_dbi dbi, bool del)
Empty or delete and close a table.
LIBMDBX_API int mdbx_cursor_get(MDBX_cursor *cursor, MDBX_val *key, MDBX_val *data, MDBX_cursor_op op)
Retrieve by cursor.
LIBMDBX_API int mdbx_get(const MDBX_txn *txn, MDBX_dbi dbi, const MDBX_val *key, MDBX_val *data)
Get items from a table.
@ MDBX_MULTIPLE
Definition mdbx.h:1662
@ MDBX_ALLDUPS
Definition mdbx.h:1645
@ MDBX_CURRENT
Definition mdbx.h:1640
@ MDBX_APPENDDUP
Definition mdbx.h:1658
@ MDBX_APPEND
Definition mdbx.h:1653
@ MDBX_UPSERT
Definition mdbx.h:1627
@ MDBX_RESERVE
Definition mdbx.h:1649
@ MDBX_NOOVERWRITE
Definition mdbx.h:1630
LIBMDBX_API int mdbx_cursor_on_first_dup(const MDBX_cursor *cursor)
Определяет стоит ли курсор на первом или единственном мульти-значении соответствующем ключу.
LIBMDBX_API int mdbx_cursor_renew(const MDBX_txn *txn, MDBX_cursor *cursor)
Renew a cursor handle for use within the given transaction.
LIBMDBX_API int mdbx_cursor_unbind(MDBX_cursor *cursor)
Unbind cursor from a transaction.
LIBMDBX_API MDBX_cursor * mdbx_cursor_create(void *context)
Create a cursor handle but not bind it to transaction nor DBI-handle.
LIBMDBX_API MDBX_dbi mdbx_cursor_dbi(const MDBX_cursor *cursor)
Return the cursor's table handle.
MDBX_cursor_op
Cursor operationsThis is the set of all operations for retrieving data using a cursor.
Definition mdbx.h:1702
LIBMDBX_API int mdbx_cursor_compare(const MDBX_cursor *left, const MDBX_cursor *right, bool ignore_multival)
Сравнивает позицию курсоров.
LIBMDBX_API int mdbx_cursor_on_last_dup(const MDBX_cursor *cursor)
Определяет стоит ли курсор на последнем или единственном мульти-значении соответствующем ключу.
LIBMDBX_API int mdbx_cursor_on_first(const MDBX_cursor *cursor)
Determines whether the cursor is pointed to the first key-value pair or not.
struct MDBX_cursor MDBX_cursor
Opaque structure for navigating through a table.
Definition mdbx.h:727
LIBMDBX_API int mdbx_cursor_set_userctx(MDBX_cursor *cursor, void *ctx)
Set application information associated with the cursor.
LIBMDBX_API int mdbx_cursor_open(const MDBX_txn *txn, MDBX_dbi dbi, MDBX_cursor **cursor)
Create a cursor handle for the specified transaction and DBI handle.
LIBMDBX_API int mdbx_cursor_eof(const MDBX_cursor *cursor)
Determines whether the cursor is pointed to a key-value pair or not, i.e. was not positioned or point...
LIBMDBX_API int mdbx_cursor_bind(const MDBX_txn *txn, MDBX_cursor *cursor, MDBX_dbi dbi)
Bind cursor to specified transaction and DBI-handle.
LIBMDBX_API void * mdbx_cursor_get_userctx(const MDBX_cursor *cursor)
Get the application information associated with the MDBX_cursor.
LIBMDBX_API void mdbx_cursor_close(MDBX_cursor *cursor)
Close a cursor handle.
LIBMDBX_API MDBX_txn * mdbx_cursor_txn(const MDBX_cursor *cursor)
Return the cursor's transaction handle.
LIBMDBX_API int mdbx_txn_release_all_cursors(const MDBX_txn *txn, bool unbind)
Unbind or closes all cursors of a given transaction.
LIBMDBX_API int mdbx_cursor_on_last(const MDBX_cursor *cursor)
Determines whether the cursor is pointed to the last key-value pair or not.
LIBMDBX_API int mdbx_cursor_copy(const MDBX_cursor *src, MDBX_cursor *dest)
Copy cursor position and state.
@ MDBX_GET_CURRENT
Definition mdbx.h:1717
@ MDBX_GET_BOTH
Definition mdbx.h:1710
@ MDBX_TO_KEY_EQUAL
Definition mdbx.h:1797
@ MDBX_GET_BOTH_RANGE
Definition mdbx.h:1714
@ MDBX_SET_KEY
Definition mdbx.h:1757
@ MDBX_FIRST_DUP
Definition mdbx.h:1707
@ MDBX_TO_KEY_LESSER_OR_EQUAL
Definition mdbx.h:1796
@ MDBX_GET_MULTIPLE
Definition mdbx.h:1722
@ MDBX_TO_EXACT_KEY_VALUE_GREATER_THAN
Definition mdbx.h:1807
@ MDBX_NEXT_NODUP
Definition mdbx.h:1742
@ MDBX_TO_EXACT_KEY_VALUE_LESSER_OR_EQUAL
Definition mdbx.h:1804
@ MDBX_TO_EXACT_KEY_VALUE_EQUAL
Definition mdbx.h:1805
@ MDBX_TO_PAIR_LESSER_OR_EQUAL
Definition mdbx.h:1810
@ MDBX_PREV_MULTIPLE
Definition mdbx.h:1764
@ MDBX_SET_RANGE
Definition mdbx.h:1760
@ MDBX_LAST_DUP
Definition mdbx.h:1728
@ MDBX_PREV
Definition mdbx.h:1745
@ MDBX_TO_PAIR_GREATER_OR_EQUAL
Definition mdbx.h:1812
@ MDBX_TO_PAIR_GREATER_THAN
Definition mdbx.h:1813
@ MDBX_LAST
Definition mdbx.h:1725
@ MDBX_TO_KEY_LESSER_THAN
Definition mdbx.h:1795
@ MDBX_PREV_DUP
Definition mdbx.h:1748
@ MDBX_TO_EXACT_KEY_VALUE_LESSER_THAN
Definition mdbx.h:1803
@ MDBX_SET
Definition mdbx.h:1754
@ MDBX_NEXT
Definition mdbx.h:1731
@ MDBX_TO_KEY_GREATER_OR_EQUAL
Definition mdbx.h:1798
@ MDBX_TO_PAIR_LESSER_THAN
Definition mdbx.h:1809
@ MDBX_NEXT_MULTIPLE
Definition mdbx.h:1739
@ MDBX_PREV_NODUP
Definition mdbx.h:1751
@ MDBX_TO_PAIR_EQUAL
Definition mdbx.h:1811
@ MDBX_NEXT_DUP
Definition mdbx.h:1734
@ MDBX_TO_EXACT_KEY_VALUE_GREATER_OR_EQUAL
Definition mdbx.h:1806
@ MDBX_TO_KEY_GREATER_THAN
Definition mdbx.h:1799
@ MDBX_FIRST
Definition mdbx.h:1704
LIBMDBX_API int mdbx_dbi_rename(MDBX_txn *txn, MDBX_dbi dbi, const char *name)
Переименовает таблицу по DBI-дескриптору
LIBMDBX_API int mdbx_dbi_rename2(MDBX_txn *txn, MDBX_dbi dbi, const MDBX_val *name)
Переименовает таблицу по DBI-дескриптору
LIBMDBX_API int mdbx_dbi_close(MDBX_env *env, MDBX_dbi dbi)
Close a table handle. Normally unnecessary.
LIBMDBX_API int mdbx_dbi_open(MDBX_txn *txn, const char *name, MDBX_db_flags_t flags, MDBX_dbi *dbi)
Open or Create a named table in the environment.
LIBMDBX_API int mdbx_dbi_open2(MDBX_txn *txn, const MDBX_val *name, MDBX_db_flags_t flags, MDBX_dbi *dbi)
Open or Create a named table in the environment.
uint32_t MDBX_dbi
A handle for an individual table (key-value spaces) in the environment.
Definition mdbx.h:720
MDBX_db_flags_t
Table flags.
Definition mdbx.h:1575
@ MDBX_INTEGERDUP
Definition mdbx.h:1599
@ MDBX_DB_ACCEDE
Definition mdbx.h:1617
@ MDBX_DB_DEFAULTS
Definition mdbx.h:1577
@ MDBX_REVERSEKEY
Definition mdbx.h:1580
@ MDBX_DUPFIXED
Definition mdbx.h:1594
@ MDBX_INTEGERKEY
Definition mdbx.h:1590
@ MDBX_REVERSEDUP
Definition mdbx.h:1602
@ MDBX_CREATE
Definition mdbx.h:1605
@ MDBX_DUPSORT
Definition mdbx.h:1583
MDBX_log_level_t
Definition mdbx.h:840
MDBX_debug_flags_t
Runtime debug flags.
Definition mdbx.h:897
LIBMDBX_API int mdbx_env_set_hsr(MDBX_env *env, MDBX_hsr_func *hsr_callback)
Sets a Handle-Slow-Readers callback to resolve database full/overflow issue due to a reader(s) which ...
int MDBX_hsr_func(const MDBX_env *env, const MDBX_txn *txn, mdbx_pid_t pid, mdbx_tid_t tid, uint64_t laggard, unsigned gap, size_t space, int retry) noexcept
A Handle-Slow-Readers callback function to resolve database full/overflow issue due to a reader(s) wh...
Definition mdbx.h:6204
MDBX_error_t
Errors and return codes.
Definition mdbx.h:1821
@ MDBX_FIRST_LMDB_ERRCODE
Definition mdbx.h:1835
@ MDBX_BAD_TXN
Definition mdbx.h:1901
@ MDBX_LAST_LMDB_ERRCODE
Definition mdbx.h:1915
@ MDBX_SUCCESS
Definition mdbx.h:1823
@ MDBX_NOTFOUND
Definition mdbx.h:1838
@ MDBX_RESULT_TRUE
Definition mdbx.h:1829
@ MDBX_BUSY
Definition mdbx.h:1919
@ MDBX_EINVAL
Definition mdbx.h:1993
@ MDBX_ENOMEM
Definition mdbx.h:1995
@ MDBX_FIRST_ADDED_ERRCODE
Definition mdbx.h:1922
@ MDBX_RESULT_FALSE
Definition mdbx.h:1826
@ MDBX_LAST_ADDED_ERRCODE
Definition mdbx.h:1972
@ MDBX_KEYEXIST
Definition mdbx.h:1832
MDBX_env_flags_t
Environment flags.
Definition mdbx.h:1016
LIBMDBX_API int mdbx_estimate_distance(const MDBX_cursor *first, const MDBX_cursor *last, ptrdiff_t *distance_items)
Estimates the distance between cursors as a number of elements.
LIBMDBX_API int mdbx_estimate_move(const MDBX_cursor *cursor, MDBX_val *key, MDBX_val *data, MDBX_cursor_op move_op, ptrdiff_t *distance_items)
Estimates the move distance.
LIBMDBX_API int mdbx_estimate_range(const MDBX_txn *txn, MDBX_dbi dbi, const MDBX_val *begin_key, const MDBX_val *begin_data, const MDBX_val *end_key, const MDBX_val *end_data, ptrdiff_t *distance_items)
Estimates the size of a range as a number of elements.
LIBMDBX_API int mdbx_env_get_option(const MDBX_env *env, const MDBX_option_t option, uint64_t *pvalue)
Gets the value of extra runtime options from an environment.
int mdbx_env_set_syncperiod(MDBX_env *env, unsigned seconds_16dot16)
Sets relative period since the last unsteady commit to force flush the data buffers to disk,...
Definition mdbx.h:3033
MDBX_option_t
MDBX environment extra runtime options.
Definition mdbx.h:2099
LIBMDBX_API int mdbx_env_set_geometry(MDBX_env *env, intptr_t size_lower, intptr_t size_now, intptr_t size_upper, intptr_t growth_step, intptr_t shrink_threshold, intptr_t pagesize)
Set all size-related parameters of environment, including page size and the min/max size of the memor...
int mdbx_env_set_syncbytes(MDBX_env *env, size_t threshold)
Sets threshold to force flush the data buffers to disk, even any of MDBX_SAFE_NOSYNC flag in the envi...
Definition mdbx.h:2972
LIBMDBX_API int mdbx_env_set_option(MDBX_env *env, const MDBX_option_t option, uint64_t value)
Sets the value of a extra runtime options for an environment.
LIBMDBX_API int mdbx_env_set_userctx(MDBX_env *env, void *ctx)
Sets application information (a context pointer) associated with the environment.
LIBMDBX_API int mdbx_env_set_flags(MDBX_env *env, MDBX_env_flags_t flags, bool onoff)
Set environment flags.
@ MDBX_opt_txn_dp_initial
Controls the in-process initial allocation size for dirty pages list of a write transaction....
Definition mdbx.h:2204
@ MDBX_opt_txn_dp_limit
Controls the in-process limit of dirty pages for a write transaction.
Definition mdbx.h:2200
@ MDBX_opt_prefault_write_enable
Controls prevention of page-faults of reclaimed and allocated pages in the MDBX_WRITEMAP mode by clea...
Definition mdbx.h:2304
@ MDBX_opt_max_db
Controls the maximum number of named tables for the environment.
Definition mdbx.h:2108
@ MDBX_opt_merge_threshold_16dot16_percent
Controls the in-process threshold of semi-empty pages merge.
Definition mdbx.h:2271
@ MDBX_opt_sync_bytes
Controls interprocess/shared threshold to force flush the data buffers to disk, if MDBX_SAFE_NOSYNC i...
Definition mdbx.h:2131
@ MDBX_opt_spill_min_denominator
Controls the in-process how minimal part of the dirty pages should be spilled when necessary.
Definition mdbx.h:2236
@ MDBX_opt_spill_parent4child_denominator
Controls the in-process how much of the parent transaction dirty pages will be spilled while start ea...
Definition mdbx.h:2259
@ MDBX_opt_loose_limit
Controls the in-process limit to grow a cache of dirty pages for reuse in the current transaction.
Definition mdbx.h:2171
@ MDBX_opt_rp_augment_limit
Controls the in-process limit to grow a list of reclaimed/recycled page's numbers for finding a seque...
Definition mdbx.h:2158
@ MDBX_opt_max_readers
Defines the maximum number of threads/reader slots for all processes interacting with the database.
Definition mdbx.h:2125
@ MDBX_opt_spill_max_denominator
Controls the in-process how maximal part of the dirty pages may be spilled when necessary.
Definition mdbx.h:2220
@ MDBX_opt_sync_period
Controls interprocess/shared relative period since the last unsteady commit to force flush the data b...
Definition mdbx.h:2137
@ MDBX_opt_dp_reserve_limit
Controls the in-process limit of a pre-allocated memory items for dirty pages.
Definition mdbx.h:2185
@ MDBX_opt_writethrough_threshold
Controls the choosing between use write-through disk writes and usual ones with followed flush by the...
Definition mdbx.h:2299
LIBMDBX_API int mdbx_dbi_stat(const MDBX_txn *txn, MDBX_dbi dbi, MDBX_stat *stat, size_t bytes)
Retrieve statistics for a table.
LIBMDBX_API uint64_t mdbx_txn_id(const MDBX_txn *txn)
Return the transaction's ID.
LIBMDBX_API intptr_t mdbx_limits_valsize_max(intptr_t pagesize, MDBX_db_flags_t flags)
Returns maximal data size in bytes for given page size and table flags, or -1 if pagesize is invalid.
LIBMDBX_API int mdbx_env_info_ex(const MDBX_env *env, const MDBX_txn *txn, MDBX_envinfo *info, size_t bytes)
Return information about the MDBX environment.
int mdbx_env_get_maxreaders(const MDBX_env *env, unsigned *readers)
Get the maximum number of threads/reader slots for the environment.
Definition mdbx.h:3669
int mdbx_env_get_syncperiod(const MDBX_env *env, unsigned *period_seconds_16dot16)
Get relative period since the last unsteady commit to force flush the data buffers to disk,...
Definition mdbx.h:3053
LIBMDBX_API int mdbx_env_get_maxkeysize_ex(const MDBX_env *env, MDBX_db_flags_t flags)
Returns the maximum size of keys can put.
LIBMDBX_API int mdbx_env_get_maxvalsize_ex(const MDBX_env *env, MDBX_db_flags_t flags)
Returns the maximum size of data we can put.
LIBMDBX_API int mdbx_env_stat_ex(const MDBX_env *env, const MDBX_txn *txn, MDBX_stat *stat, size_t bytes)
Return statistics about the MDBX environment.
LIBMDBX_API int mdbx_env_get_pairsize4page_max(const MDBX_env *env, MDBX_db_flags_t flags)
Returns maximal size of key-value pair to fit in a single page for specified table flags.
int mdbx_env_get_syncbytes(const MDBX_env *env, size_t *threshold)
Get threshold to force flush the data buffers to disk, even any of MDBX_SAFE_NOSYNC flag in the envir...
Definition mdbx.h:2990
LIBMDBX_API intptr_t mdbx_limits_valsize4page_max(intptr_t pagesize, MDBX_db_flags_t flags)
Returns maximal data size in bytes to fit in a leaf-page or single large/overflow-page with the given...
LIBMDBX_API intptr_t mdbx_limits_txnsize_max(intptr_t pagesize)
Returns maximal write transaction size (i.e. limit for summary volume of dirty pages) in bytes for gi...
LIBMDBX_API int mdbx_dbi_dupsort_depthmask(const MDBX_txn *txn, MDBX_dbi dbi, uint32_t *mask)
Retrieve depth (bitmask) information of nested dupsort (multi-value) B+trees for given table.
LIBMDBX_API int mdbx_txn_info(const MDBX_txn *txn, MDBX_txn_info *info, bool scan_rlt)
Return information about the MDBX transaction.
LIBMDBX_API int mdbx_is_dirty(const MDBX_txn *txn, const void *ptr)
Determines whether the given address is on a dirty database page of the transaction or not.
MDBX_dbi_state_t
DBI state bits returted by mdbx_dbi_flags_ex()
Definition mdbx.h:4739
LIBMDBX_API int mdbx_env_get_valsize4page_max(const MDBX_env *env, MDBX_db_flags_t flags)
Returns maximal data size in bytes to fit in a leaf-page or single large/overflow-page for specified ...
LIBMDBX_API int mdbx_env_get_fd(const MDBX_env *env, mdbx_filehandle_t *fd)
Return the file descriptor for the given environment.
LIBMDBX_API void * mdbx_env_get_userctx(const MDBX_env *env)
Returns an application information (a context pointer) associated with the environment.
int mdbx_env_get_maxdbs(const MDBX_env *env, MDBX_dbi *dbs)
Get the maximum number of named tables for the environment.
Definition mdbx.h:3714
LIBMDBX_API intptr_t mdbx_limits_keysize_max(intptr_t pagesize, MDBX_db_flags_t flags)
Returns maximal key size in bytes for given page size and table flags, or -1 if pagesize is invalid.
LIBMDBX_API int mdbx_reader_list(const MDBX_env *env, MDBX_reader_list_func *func, void *ctx)
Enumerate the entries in the reader lock table.
LIBMDBX_API intptr_t mdbx_limits_pairsize4page_max(intptr_t pagesize, MDBX_db_flags_t flags)
Returns maximal size of key-value pair to fit in a single page with the given size and table flags,...
LIBMDBX_API intptr_t mdbx_limits_dbsize_max(intptr_t pagesize)
Returns maximal database size in bytes for given page size, or -1 if pagesize is invalid.
LIBMDBX_API intptr_t mdbx_limits_dbsize_min(intptr_t pagesize)
Returns minimal database size in bytes for given page size, or -1 if pagesize is invalid.
LIBMDBX_API int mdbx_env_get_flags(const MDBX_env *env, unsigned *flags)
Get environment flags.
LIBMDBX_API int mdbx_dbi_flags_ex(const MDBX_txn *txn, MDBX_dbi dbi, unsigned *flags, unsigned *state)
Retrieve the DB flags and status for a table handle.
LIBMDBX_API int mdbx_txn_break(MDBX_txn *txn)
Marks transaction as broken to prevent further operations.
LIBMDBX_API int mdbx_txn_set_userctx(MDBX_txn *txn, void *ctx)
Sets application information associated (a context pointer) with the transaction.
LIBMDBX_API int mdbx_txn_park(MDBX_txn *txn, bool autounpark)
Переводит читающую транзакцию в "припаркованное" состояние.
LIBMDBX_API int mdbx_txn_unpark(MDBX_txn *txn, bool restart_if_ousted)
Распарковывает ранее припаркованную читающую транзакцию.
MDBX_txn_flags_t
Definition mdbx.h:1477
LIBMDBX_API void * mdbx_txn_get_userctx(const MDBX_txn *txn)
Returns an application information (a context pointer) associated with the transaction.
int mdbx_txn_begin(MDBX_env *env, MDBX_txn *parent, MDBX_txn_flags_t flags, MDBX_txn **txn)
Create a transaction for use with the environment.
Definition mdbx.h:3934
struct MDBX_txn MDBX_txn
Opaque structure for a transaction handle.
Definition mdbx.h:708
LIBMDBX_API int mdbx_txn_reset(MDBX_txn *txn)
Reset a read-only transaction.
LIBMDBX_API int mdbx_txn_renew(MDBX_txn *txn)
Renew a read-only transaction.
LIBMDBX_API MDBX_txn_flags_t mdbx_txn_flags(const MDBX_txn *txn)
Return the transaction's flags.
@ MDBX_TXN_RDONLY
Definition mdbx.h:1488
@ MDBX_TXN_RDONLY_PREPARE
Definition mdbx.h:1497
@ MDBX_TXN_READWRITE
Definition mdbx.h:1482
@ MDBX_TXN_TRY
Definition mdbx.h:1503
bool rename_map(const ::mdbx::slice &old_name, const ::mdbx::slice &new_name, bool throw_if_absent=false)
Переименовывает таблицу ключ-значение.
MDBX_NOTHROW_PURE_FUNCTION constexpr bool is_reference() const noexcept
Checks whether the buffer just refers to data located outside the buffer, rather than stores it.
Definition mdbx.h++:1907
MDBX_CXX14_CONSTEXPR struct slice tail(size_t n) const noexcept
Definition mdbx.h++:2463
buffer & assign(const void *begin, const void *end, bool make_reference=false)
Definition mdbx.h++:2318
buffer(size_t head_room, const struct slice &src, size_t tail_room, const allocator_type &allocator=allocator_type())
Definition mdbx.h++:2084
friend class env
Definition mdbx.h++:4094
MDBX_commit_latency commit_latency
Definition mdbx.h++:4128
env_managed(const char *pathname, const operate_parameters &, bool accede=true)
MDBX_CXX14_CONSTEXPR struct slice middle(size_t from, size_t n) const noexcept
Definition mdbx.h++:2467
::MDBX_txn_info info
Definition mdbx.h++:3779
cursor_managed(void *your_context=nullptr)
Creates a new managed cursor with underlying object.
Definition mdbx.h++:4542
::MDBX_stat map_stat
Definition mdbx.h++:3937
env & set_sync_period(const duration &period)
Sets relative period since the last unsteady commit to force flush the data buffers to disk,...
MDBX_NOTHROW_PURE_FUNCTION constexpr size_t size() const noexcept
Returns the number of bytes.
Definition mdbx.h++:2376
txn_managed start_nested()
Start nested write transaction.
extra_runtime_option
MDBX environment extra runtime options.
Definition mdbx.h++:3489
@ prefault_write_enable
Controls prevention of page-faults of reclaimed and allocated pages in the MDBX_WRITEMAP mode by clea...
Definition mdbx.h++:3523
@ spill_min_denominator
Controls the in-process how minimal part of the dirty pages should be spilled when necessary.
Definition mdbx.h++:3515
@ spill_parent4child_denominator
Controls the in-process how much of the parent transaction dirty pages will be spilled while start ea...
Definition mdbx.h++:3517
@ writethrough_threshold
Controls the choosing between use write-through disk writes and usual ones with followed flush by the...
Definition mdbx.h++:3521
@ sync_bytes
Controls interprocess/shared threshold to force flush the data buffers to disk, if MDBX_SAFE_NOSYNC i...
Definition mdbx.h++:3498
@ dp_limit
Controls the in-process limit of dirty pages for a write transaction.
Definition mdbx.h++:3509
@ dp_initial
Controls the in-process initial allocation size for dirty pages list of a write transaction....
Definition mdbx.h++:3511
@ spill_max_denominator
Controls the in-process how maximal part of the dirty pages may be spilled when necessary.
Definition mdbx.h++:3513
@ merge_threshold_16dot16_percent
Controls the in-process threshold of semi-empty pages merge.
Definition mdbx.h++:3519
@ rp_augment_limit
Controls the in-process limit to grow a list of reclaimed/recycled page's numbers for finding a seque...
Definition mdbx.h++:3503
@ loose_limit
Controls the in-process limit to grow a cache of dirty pages for reuse in the current transaction.
Definition mdbx.h++:3505
@ dp_reserve_limit
Controls the in-process limit of a pre-allocated memory items for dirty pages.
Definition mdbx.h++:3507
static buffer key_from(silo &&src) noexcept
Definition mdbx.h++:2632
env_managed & operator=(env_managed &&other) noexcept
Definition mdbx.h++:3716
MDBX_CXX14_CONSTEXPR struct slice safe_middle(size_t from, size_t n) const
Definition mdbx.h++:2479
MDBX_CXX14_CONSTEXPR int64_t as_int64() const
Definition mdbx.h++:2139
constexpr allocator_type get_allocator() const
Definition mdbx.h++:1896
bool drop_map(const ::std::string_view &name, bool throw_if_absent=false)
Drop key-value map.
Definition mdbx.h++:3918
env_managed(const char *pathname, const create_parameters &, const operate_parameters &, bool accede=true)
map_handle(const map_handle &) noexcept=default
void reserve_tailroom(size_t wanna_tailroom)
Reserves space after the payload.
Definition mdbx.h++:2269
::MDBX_db_flags_t flags
Definition mdbx.h++:2979
path get_path() const
Return the path that was used for opening the environment.
static buffer hex_decode(const ::mdbx::slice &source, bool ignore_spaces=false, const allocator_type &allocator=allocator_type())
Decodes hexadecimal dump from the slice content to returned buffer.
Definition mdbx.h++:2218
int64_t as_int64_adapt() const
Definition mdbx.h++:2155
constexpr ::std::basic_string< CHAR, T, A > as_string(const A &allocator=A()) const
Definition mdbx.h++:2385
move_result to_exact_key_value_lesser_or_equal(const slice &key, const slice &value, bool throw_notfound=true)
Definition mdbx.h++:4403
move_result previous_multiple_samelength(bool throw_notfound=false)
Definition mdbx.h++:4459
buffer encode_base64(unsigned wrap_width=0, const allocator_type &allocator=allocator_type()) const
Definition mdbx.h++:2213
static buffer key_from(const double *ieee754_64bit)
Definition mdbx.h++:2638
static buffer base58(const POD &pod, unsigned wrap_width=0, const allocator_type &allocator=allocator_type())
Returns a new buffer with a Base58 dump of the given pod.
Definition mdbx.h++:2189
MDBX_NOTHROW_PURE_FUNCTION MDBX_CXX14_CONSTEXPR size_t length() const noexcept
Returns the number of bytes.
Definition mdbx.h++:1994
static bool remove(const ::std::wstring &pathname, const remove_mode mode=just_remove)
MDBX_CXX14_CONSTEXPR ::std::span< const POD > as_span() const
Definition mdbx.h++:2110
MDBX_CXX11_CONSTEXPR map_handle(MDBX_dbi dbi) noexcept
Definition mdbx.h++:2973
buffer & assign(const char *c_str, bool make_reference=false)
Definition mdbx.h++:2327
void reserve(size_t wanna_headroom, size_t wanna_tailroom)
Reserves storage space.
Definition mdbx.h++:2256
buffer & assign(const struct slice &src, bool make_reference=false)
Definition mdbx.h++:2298
void reserve_headroom(size_t wanna_headroom)
Reserves space before the payload.
Definition mdbx.h++:2266
durability
Durability level.
Definition mdbx.h++:3128
@ lazy_weak_tail
Definition mdbx.h++:3131
@ robust_synchronous
Definition mdbx.h++:3129
@ whole_fragile
Definition mdbx.h++:3132
@ half_synchronous_weak_last
Definition mdbx.h++:3130
void commit_embark_read()
Commit all the operations of a transaction into the database and then start read transaction.
constexpr buffer(const buffer &src, const allocator_type &allocator=allocator_type())
Definition mdbx.h++:2052
MDBX_CXX11_CONSTEXPR txn_managed() noexcept=default
MDBX_CXX11_CONSTEXPR bool is_null() const noexcept
Checks whether the data pointer of the buffer is nullptr.
Definition mdbx.h++:2373
::std::allocator_traits< allocator_type > allocator_traits
Definition mdbx.h++:1483
static buffer base64_decode(const ::mdbx::slice &source, bool ignore_spaces=false, const allocator_type &allocator=allocator_type())
Decodes Base64 dump from the slice content to returned buffer.
Definition mdbx.h++:2232
size_t dbsize_min() const
Returns the minimal database size in bytes for the environment.
Definition mdbx.h++:3311
buffer & append_decoded_hex(const struct slice &data, bool ignore_spaces=false)
Definition mdbx.h++:2527
map_handle & operator=(const map_handle &) noexcept=default
duration sync_period() const
Gets relative period since the last unsteady commit that used to force flush the data buffers to disk...
buffer(const ::std::basic_string_view< CHAR, T > &view, bool make_reference, const allocator_type &allocator=allocator_type())
Definition mdbx.h++:2042
MDBX_NOTHROW_PURE_FUNCTION MDBX_CXX14_CONSTEXPR size_t hash_value() const noexcept
Returns the hash value of the data.
Definition mdbx.h++:2382
MDBX_NOTHROW_PURE_FUNCTION constexpr size_t tailroom() const noexcept
Returns the number of bytes that available in currently allocated storage after the currently data en...
Definition mdbx.h++:1923
buffer & assign_freestanding(const void *ptr, size_t bytes)
Definition mdbx.h++:2277
constexpr void swap(buffer &other) noexcept(swap_alloc::is_nothrow())
Definition mdbx.h++:2283
buffer & operator=(const buffer &src)
Definition mdbx.h++:2344
estimate_result estimate(move_operation operation, slice &key) const
uint16_t as_uint16_adapt() const
Definition mdbx.h++:2149
buffer & append_u16(uint_fast16_t u16)
Definition mdbx.h++:2549
MDBX_NOTHROW_PURE_FUNCTION constexpr bool is_freestanding() const noexcept
Checks whether data chunk stored inside the buffer, otherwise buffer just refers to data located outs...
Definition mdbx.h++:1900
static bool remove(const char *pathname, const remove_mode mode=just_remove)
friend class cursor
Definition mdbx.h++:3740
move_result to_pair_equal(const slice &key, const slice &value, bool throw_notfound=true)
Definition mdbx.h++:4422
::MDBX_canary canary
Definition mdbx.h++:3946
env & copy(const wchar_t *destination, bool compactify, bool force_dynamic_size=false)
void safe_remove_suffix(size_t n)
Drops the last "n" bytes from the data chunk.
Definition mdbx.h++:2429
void safe_remove_prefix(size_t n)
Drops the first "n" bytes from the data chunk.
Definition mdbx.h++:2425
bool is_readwrite() const
Checks whether the transaction is read-write.
Definition mdbx.h++:3777
MDBX_CXX11_CONSTEXPR void * end() noexcept
Return a pointer to the end of the referenced data.
Definition mdbx.h++:1988
map_handle open_map_accede(const ::std::string_view &name) const
Open existing key-value map.
move_result move(move_operation operation, const slice &key, const slice &value, bool throw_notfound)
Definition mdbx.h++:4352
MDBX_CXX11_CONSTEXPR const void * data() const noexcept
Return a const pointer to the beginning of the referenced data.
Definition mdbx.h++:1972
static buffer key_from(const ::std::basic_string< CHAR, T, A > &src, bool make_reference=false)
Definition mdbx.h++:2628
env_managed(const wchar_t *pathname, const operate_parameters &, bool accede=true)
move_result to_pair_lesser_than(const slice &key, const slice &value, bool throw_notfound=true)
Definition mdbx.h++:4416
buffer base64_decode(bool ignore_spaces=false, const allocator_type &allocator=allocator_type()) const
Decodes Base64 dump from the buffer content to new returned buffer.
Definition mdbx.h++:2251
bool clear_map(const char *name, bool throw_if_absent=false)
buffer & add_header(const void *src, size_t bytes)
Definition mdbx.h++:2491
uint8_t as_uint8_adapt() const
Definition mdbx.h++:2150
MDBX_NOTHROW_PURE_FUNCTION bool starts_with(const struct slice &prefix) const noexcept
Checks if the data starts with the given prefix.
Definition mdbx.h++:2395
move_result to_pair_exact(const slice &key, const slice &value, bool throw_notfound=true)
Definition mdbx.h++:4425
buffer encode_base58(unsigned wrap_width=0, const allocator_type &allocator=allocator_type()) const
Definition mdbx.h++:2208
MDBX_CXX14_CONSTEXPR struct slice safe_tail(size_t n) const
Definition mdbx.h++:2475
void rename_map(map_handle map, const ::std::string_view &new_name)
Переименовывает таблицу ключ-значение.
env & copy(filehandle fd, bool compactify, bool force_dynamic_size=false)
Copy an environment to the specified file descriptor.
::std::basic_string_view< CHAR, T > string_view() const noexcept
Definition mdbx.h++:2359
buffer(size_t head_room, const buffer &src, size_t tail_room, const allocator_type &allocator=allocator_type())
Definition mdbx.h++:2092
buffer & assign(const ::std::basic_string< CHAR, T, A > &str, bool make_reference=false)
Definition mdbx.h++:2323
env_managed(const ::mdbx::filesystem::path &pathname, const operate_parameters &, bool accede=true)
Open existing database.
static buffer key_from_jsonInteger(const int64_t json_integer)
Definition mdbx.h++:2648
static buffer hex(const POD &pod, bool uppercase=false, unsigned wrap_width=0, const allocator_type &allocator=allocator_type())
Returns a new buffer with a hexadecimal dump of the given pod.
Definition mdbx.h++:2181
static bool remove(const ::std::string &pathname, const remove_mode mode=just_remove)
void put(const pair &kv, put_mode mode)
Definition mdbx.h++:4508
move_result current(bool throw_notfound=true) const
Definition mdbx.h++:4370
MDBX_CXX14_CONSTEXPR uint128_t as_uint128() const
Definition mdbx.h++:2129
MDBX_CXX14_CONSTEXPR ::std::span< POD > as_span()
Definition mdbx.h++:2113
env & copy(const char *destination, bool compactify, bool force_dynamic_size=false)
move_result to_previous_last_multi(bool throw_notfound=true)
Definition mdbx.h++:4361
MDBX_CXX14_CONSTEXPR buffer & set_end(const void *ptr)
Sets the length by specifying the end of the data.
Definition mdbx.h++:2006
static buffer key_from(const float ieee754_32bit)
Definition mdbx.h++:2654
static bool remove(const ::mdbx::filesystem::path &pathname, const remove_mode mode=just_remove)
Removes the environment's files in a proper and multiprocess-safe way.
bool drop_map(const char *name, bool throw_if_absent=false)
Drops key-value map using name.
MDBX_CXX11_CONSTEXPR map_handle() noexcept
Definition mdbx.h++:2972
bool is_same_or_after_than(const cursor &other, bool ignore_nested=false) const
Definition mdbx.h++:4192
size_t unbind_all_cursors() const
Unbind all cursors.
Definition mdbx.h++:3825
static buffer hex(const ::mdbx::slice &source, bool uppercase=false, unsigned wrap_width=0, const allocator_type &allocator=allocator_type())
Returns a new buffer with a hexadecimal dump of the slice content.
Definition mdbx.h++:2161
void upsert(map_handle map, const pair &kv)
Definition mdbx.h++:4011
move_result to_key_greater_or_equal(const slice &key, bool throw_notfound=true)
Definition mdbx.h++:4393
bool is_same_position(const cursor &other, bool ignore_nested=false) const
Definition mdbx.h++:4184
buffer(const buffer &src, bool make_reference, const allocator_type &allocator=allocator_type())
Definition mdbx.h++:2028
bool is_after_than(const cursor &other, bool ignore_nested=false) const
Definition mdbx.h++:4188
static buffer base58_decode(const ::mdbx::slice &source, bool ignore_spaces=false, const allocator_type &allocator=allocator_type())
Decodes Base58 dump from the slice content to returned buffer.
Definition mdbx.h++:2225
buffer & operator=(const ::std::basic_string_view< CHAR, T > &view) noexcept
Definition mdbx.h++:2353
uint32_t as_uint32_adapt() const
Definition mdbx.h++:2148
buffer(size_t head_room, size_t tail_room, const allocator_type &allocator=allocator_type())
Definition mdbx.h++:2074
constexpr buffer() noexcept=default
static buffer key_from_double(const double ieee754_64bit)
Definition mdbx.h++:2634
void remove_suffix(size_t n) noexcept
Drops the last "n" bytes from the data chunk.
Definition mdbx.h++:2421
env_managed & operator=(const env_managed &)=delete
map_handle create_map(const ::std::string_view &name, const ::mdbx::key_mode key_mode=::mdbx::key_mode::usual, const ::mdbx::value_mode value_mode=::mdbx::value_mode::single)
Create new or open existing key-value map.
Definition mdbx.h++:3910
buffer & assign(struct slice &&src, bool make_reference=false)
Definition mdbx.h++:2306
static size_t default_pagesize() noexcept
Returns default page size for current system/platform.
Definition mdbx.h++:3225
MDBX_CXX11_CONSTEXPR cursor() noexcept=default
MDBX_CXX14_CONSTEXPR uint32_t as_uint32() const
Definition mdbx.h++:2132
move_result to_next_first_multi(bool throw_notfound=true)
Definition mdbx.h++:4377
buffer & assign(const void *ptr, size_t bytes, bool make_reference=false)
Definition mdbx.h++:2294
bool clear_map(const ::mdbx::slice &name, bool throw_if_absent=false)
void clear_and_reserve(size_t whole_capacity, size_t headroom=0) noexcept
Clears the contents and reserve storage.
Definition mdbx.h++:2408
static buffer base64(const POD &pod, unsigned wrap_width=0, const allocator_type &allocator=allocator_type())
Returns a new buffer with a Base64 dump of the given pod.
Definition mdbx.h++:2196
MDBX_txn * handle_
Definition mdbx.h++:3741
void abort()
Abandon all the operations of the transaction instead of saving ones.
static buffer key_from_u64(const uint64_t unsigned_int64)
Definition mdbx.h++:2640
move_result move(move_operation operation, const slice &key, bool throw_notfound)
Definition mdbx.h++:4349
mode
Operation mode.
Definition mdbx.h++:3120
@ write_mapped_io
Definition mdbx.h++:3123
@ nested_transactions
Definition mdbx.h++:3124
@ readonly
Definition mdbx.h++:3121
@ write_file_io
Definition mdbx.h++:3122
move_result move(move_operation operation, bool throw_notfound)
Definition mdbx.h++:4346
MDBX_CXX14_CONSTEXPR ::std::span< const byte > bytes() const
Definition mdbx.h++:2115
bool scan_from(CALLABLE_PREDICATE predicate, slice &from, move_operation start=key_greater_or_equal, move_operation turn=next)
Definition mdbx.h++:4305
::MDBX_envinfo info
Information about the environment.
Definition mdbx.h++:3374
operator::mdbx::txn() const
Definition mdbx.h++:4490
MDBX_NOTHROW_PURE_FUNCTION constexpr size_t headroom() const noexcept
Returns the number of bytes that available in currently allocated storage ahead the currently beginni...
Definition mdbx.h++:1917
buffer & append_base64(const struct slice &data, unsigned wrap_width=0)
Definition mdbx.h++:2523
MDBX_env * handle_
Definition mdbx.h++:3020
static buffer key_from(const ::std::basic_string_view< CHAR, T > &src, bool make_reference=false)
Definition mdbx.h++:2620
move_result to_exact_key_value_greater_or_equal(const slice &key, const slice &value, bool throw_notfound=true)
Definition mdbx.h++:4409
buffer & append_byte(uint_fast8_t byte)
Definition mdbx.h++:2547
commit_latency commit_get_latency()
Commit all the operations of a transaction into the database and return latency information.
Definition mdbx.h++:4141
static buffer base58(const ::mdbx::slice &source, unsigned wrap_width=0, const allocator_type &allocator=allocator_type())
Returns a new buffer with a Base58 dump of the slice content.
Definition mdbx.h++:2168
bool is_same_or_before_than(const cursor &other, bool ignore_nested=false) const
Definition mdbx.h++:4180
static buffer key_from_float(const float ieee754_32bit)
Definition mdbx.h++:2652
buffer(const struct slice &src, bool make_reference, const allocator_type &allocator=allocator_type())
Definition mdbx.h++:2022
MDBX_CXX14_CONSTEXPR int128_t as_int128() const
Definition mdbx.h++:2137
move_result to_first(bool throw_notfound=true)
Definition mdbx.h++:4359
buffer hex_decode(bool ignore_spaces=false, const allocator_type &allocator=allocator_type()) const
Decodes hexadecimal dump from the buffer content to new returned buffer.
Definition mdbx.h++:2239
move_result to_last(bool throw_notfound=true)
Definition mdbx.h++:4379
buffer & operator=(const struct slice &src)
Definition mdbx.h++:2348
constexpr buffer(const void *ptr, size_t bytes, const allocator_type &allocator=allocator_type())
Definition mdbx.h++:2055
buffer(const ::mdbx::txn &txn, const struct slice &src, const allocator_type &allocator=allocator_type())
void close()
Explicitly closes the cursor.
MDBX_NOTHROW_PURE_FUNCTION constexpr bool empty() const noexcept
Checks whether the string is empty.
Definition mdbx.h++:2370
constexpr buffer(const ::std::basic_string< CHAR, T, A > &str, const allocator_type &allocator=allocator_type())
Definition mdbx.h++:2059
buffer & append_base58(const struct slice &data, unsigned wrap_width=0)
Definition mdbx.h++:2519
MDBX_CXX11_CONSTEXPR void * data() noexcept
Return a pointer to the beginning of the referenced data.
Definition mdbx.h++:1980
MDBX_CXX11_CONSTEXPR const struct slice & slice() const noexcept
Definition mdbx.h++:2100
bool is_pristine() const
Returns true for a freshly created database, but false if at least one transaction was committed.
move_result to_key_exact(const slice &key, bool throw_notfound=true)
Definition mdbx.h++:4390
bool is_readonly() const
Checks whether the transaction is read-only.
Definition mdbx.h++:3774
MDBX_CXX11_CONSTEXPR const char * char_ptr() const noexcept
Returns casted to const pointer to char an address of data.
Definition mdbx.h++:1950
buffer & assign(::MDBX_val &&src, bool make_reference=false)
Definition mdbx.h++:2312
static buffer key_from(const float *ieee754_32bit)
Definition mdbx.h++:2656
constexpr buffer(const ::std::basic_string_view< CHAR, T > &view, const allocator_type &allocator=allocator_type())
Definition mdbx.h++:2069
buffer & append_u48(uint_fast64_t u48)
Definition mdbx.h++:2582
move_result next_multiple_samelength(bool throw_notfound=false)
Definition mdbx.h++:4455
env_managed(const ::std::wstring &pathname, const operate_parameters &, bool accede=true)
MDBX_CXX14_CONSTEXPR uint8_t as_uint8() const
Definition mdbx.h++:2134
MDBX_CXX14_CONSTEXPR int16_t as_int16() const
Definition mdbx.h++:2141
void append(map_handle map, const pair &kv, bool multivalue_order_preserved=true)
Definition mdbx.h++:4059
cursor_managed & operator=(const cursor_managed &)=delete
default_capacity_policy reservation_policy
Definition mdbx.h++:1484
remove_mode
Deletion modes for remove().
Definition mdbx.h++:3342
@ ensure_unused
Make sure that the environment is not being used by other processes, or return an error otherwise.
Definition mdbx.h++:3352
@ wait_for_unused
Wait until other processes closes the environment before deletion.
Definition mdbx.h++:3355
@ just_remove
Just delete the environment's files and directory if any.
Definition mdbx.h++:3349
MDBX_CXX14_CONSTEXPR byte & at(size_t n)
Accesses the specified byte of data chunk with bounds checking.
Definition mdbx.h++:2451
static buffer key_from(const int64_t signed_int64)
Definition mdbx.h++:2646
MDBX_CXX11_CONSTEXPR byte * byte_ptr() noexcept
Returns casted to pointer to byte an address of data.
Definition mdbx.h++:1936
bool scan(CALLABLE_PREDICATE predicate, move_operation start=first, move_operation turn=next)
Definition mdbx.h++:4281
move_result to_current_first_multi(bool throw_notfound=true)
Definition mdbx.h++:4364
buffer & operator=(struct slice &&src)
Definition mdbx.h++:2350
buffer & add_header(const struct slice &chunk)
Definition mdbx.h++:2499
MDBX_CXX14_CONSTEXPR ::std::span< const char > chars() const
Definition mdbx.h++:2117
buffer & append_u32(uint_fast32_t u32)
Definition mdbx.h++:2570
buffer & append_decoded_base58(const struct slice &data, bool ignore_spaces=false)
Definition mdbx.h++:2531
bool scan_from(CALLABLE_PREDICATE predicate, pair &from, move_operation start=pair_greater_or_equal, move_operation turn=next)
Definition mdbx.h++:4326
uint128_t as_uint128_adapt() const
Definition mdbx.h++:2145
cursor_managed & operator=(cursor_managed &&other) noexcept
Definition mdbx.h++:4551
::MDBX_dbi_state_t state
Definition mdbx.h++:2980
MDBX_CXX14_CONSTEXPR uint16_t as_uint16() const
Definition mdbx.h++:2133
env_managed(env_managed &&)=default
bool poll_sync_to_disk()
Performs non-blocking polling of sync-to-disk thresholds.
Definition mdbx.h++:3546
cursor_managed(cursor_managed &&)=default
void commit(commit_latency &latency)
Commit all the operations of a transaction into the database and collect latency information.
Definition mdbx.h++:4136
MDBX_CXX14_CONSTEXPR byte at(size_t n) const
Accesses the specified byte of data chunk with bounds checking.
Definition mdbx.h++:2447
static bool remove(const wchar_t *pathname, const remove_mode mode=just_remove)
size_t key_max(key_mode mode) const
Returns the maximal key size in bytes for specified keys mode.
Definition mdbx.h++:3317
MDBX_CXX14_CONSTEXPR POD as_pod() const
Definition mdbx.h++:2126
move_result to_pair_lesser_or_equal(const slice &key, const slice &value, bool throw_notfound=true)
Definition mdbx.h++:4419
env & copy(const ::mdbx::filesystem::path &destination, bool compactify, bool force_dynamic_size=false)
Make a copy (backup) of an existing environment to the specified path.
static buffer key_from_i32(const int32_t signed_int32)
Definition mdbx.h++:2662
move_result get_multiple_samelength(bool throw_notfound=false)
Definition mdbx.h++:4451
move_result to_key_lesser_than(const slice &key, bool throw_notfound=true)
Definition mdbx.h++:4381
move_result to_next(bool throw_notfound=true)
Definition mdbx.h++:4378
env_managed(const ::std::string &pathname, const operate_parameters &, bool accede=true)
MDBX_CXX14_CONSTEXPR size_t operator()(::mdbx::slice const &slice) const noexcept
Definition mdbx.h++:6399
operator::mdbx::map_handle() const
Definition mdbx.h++:4491
size_t dbsize_max() const
Returns the maximal database size in bytes for the environment.
Definition mdbx.h++:3313
move_result get_multiple_samelength(const slice &key, bool throw_notfound=true)
Definition mdbx.h++:4447
buffer encode_hex(bool uppercase=false, unsigned wrap_width=0, const allocator_type &allocator=allocator_type()) const
Definition mdbx.h++:2201
static buffer wrap(const POD &pod, bool make_reference=false, const allocator_type &allocator=allocator_type())
Definition mdbx.h++:2122
static buffer key_from_u32(const uint32_t unsigned_int32)
Definition mdbx.h++:2658
void remove_prefix(size_t n) noexcept
Drops the first "n" bytes from the data chunk.
Definition mdbx.h++:2417
bool drop_map(const ::mdbx::slice &name, bool throw_if_absent=false)
Drop key-value map.
size_t close_all_cursors() const
Close all cursors.
Definition mdbx.h++:3822
static buffer key_from(const uint32_t unsigned_int32)
Definition mdbx.h++:2660
buffer & assign_reference(const void *ptr, size_t bytes)
Definition mdbx.h++:2271
void commit()
Commit all the operations of a transaction into the database.
move_result to_key_greater_than(const slice &key, bool throw_notfound=true)
Definition mdbx.h++:4396
size_t get_pagesize() const
Returns pagesize of this MDBX environment.
Definition mdbx.h++:3380
void make_freestanding()
Makes buffer owning the data.
Definition mdbx.h++:2014
void put(map_handle map, const pair &kv, put_mode mode)
Definition mdbx.h++:4008
MDBX_CXX14_CONSTEXPR buffer & set_length(size_t bytes)
Set length of data.
Definition mdbx.h++:1999
env_managed(const ::std::string &pathname, const create_parameters &, const operate_parameters &, bool accede=true)
buffer & assign(const ::MDBX_val &src, bool make_reference=false)
Definition mdbx.h++:2302
MDBX_CXX14_CONSTEXPR int32_t as_int32() const
Definition mdbx.h++:2140
friend int compare_position(const cursor &left, const cursor &right, bool ignore_nested)
Definition mdbx.h++:6063
buffer(const char *c_str, bool make_reference, const allocator_type &allocator=allocator_type())
Definition mdbx.h++:2037
constexpr buffer(const struct slice &src, const allocator_type &allocator=allocator_type())
Definition mdbx.h++:2048
MDBX_CXX11_CONSTEXPR byte operator[](size_t n) const noexcept
Accesses the specified byte of data chunk.
Definition mdbx.h++:2433
void put_multiple_samelength(map_handle map, const slice &key, const ::std::vector< VALUE > &vector, put_mode mode)
Definition mdbx.h++:4074
MDBX_CXX14_CONSTEXPR struct slice safe_head(size_t n) const
Definition mdbx.h++:2471
env_managed(const wchar_t *pathname, const create_parameters &, const operate_parameters &, bool accede=true)
size_t transaction_size_max() const
Returns the maximal write transaction size (i.e. limit for summary volume of dirty pages) in bytes.
Definition mdbx.h++:3324
map_handle open_map(const ::std::string_view &name, const ::mdbx::key_mode key_mode=::mdbx::key_mode::usual, const ::mdbx::value_mode value_mode=::mdbx::value_mode::single) const
Open existing key-value map.
Definition mdbx.h++:3903
allocation_aware_details::move_assign_alloc< silo, allocator_type > move_assign_alloc
Definition mdbx.h++:1892
int32_t as_int32_adapt() const
Definition mdbx.h++:2156
buffer & assign(const buffer &src, bool make_reference=false)
Definition mdbx.h++:2292
size_t put_multiple_samelength(map_handle map, const slice &key, const VALUE *values_array, size_t values_count, put_mode mode, bool allow_partial=false)
Definition mdbx.h++:4066
MDBX_CXX11_CONSTEXPR char * end_char_ptr() noexcept
Returns casted to pointer to char an end of data.
Definition mdbx.h++:1966
allocation_aware_details::copy_assign_alloc< silo, allocator_type > copy_assign_alloc
Definition mdbx.h++:1893
bool rename_map(const ::std::string &old_name, const ::std::string &new_name, bool throw_if_absent=false)
Переименовывает таблицу ключ-значение.
buffer(const void *ptr, size_t bytes, bool make_reference, const allocator_type &allocator=allocator_type())
Definition mdbx.h++:2031
buffer & append(const struct slice &chunk)
Definition mdbx.h++:2489
MDBX_CXX14_CONSTEXPR int8_t as_int8() const
Definition mdbx.h++:2142
bool is_empty() const
Checks whether the database is empty.
MDBX_CXX11_CONSTEXPR const byte * byte_ptr() const noexcept
Definition mdbx.h++:1928
buffer & append_decoded_base64(const struct slice &data, bool ignore_spaces=false)
Definition mdbx.h++:2535
void close(bool dont_sync=false)
Explicitly closes the environment and release the memory map.
MDBX_NOTHROW_PURE_FUNCTION bool ends_with(const struct slice &suffix) const noexcept
Checks if the data ends with the given suffix.
Definition mdbx.h++:2400
move_result to_pair_greater_than(const slice &key, const slice &value, bool throw_notfound=true)
Definition mdbx.h++:4431
env & copy(const ::std::string &destination, bool compactify, bool force_dynamic_size=false)
move_operation
Definition mdbx.h++:4202
@ multi_exactkey_lowerboundvalue
Definition mdbx.h++:4217
@ multi_exactkey_value_equal
Definition mdbx.h++:4234
@ pair_greater_or_equal
Definition mdbx.h++:4242
@ key_lesser_than
Definition mdbx.h++:4224
@ next
Definition mdbx.h++:4205
@ pair_exact
Definition mdbx.h++:4241
@ multi_exactkey_value_greater_or_equal
Definition mdbx.h++:4235
@ pair_lesser_or_equal
Definition mdbx.h++:4239
@ batch_samelength
Definition mdbx.h++:4245
@ seek_key
Definition mdbx.h++:4219
@ key_lowerbound
Definition mdbx.h++:4221
@ pair_lesser_than
Definition mdbx.h++:4238
@ pair_equal
Definition mdbx.h++:4240
@ key_greater_than
Definition mdbx.h++:4228
@ batch_samelength_next
Definition mdbx.h++:4246
@ multi_find_pair
Definition mdbx.h++:4216
@ key_greater_or_equal
Definition mdbx.h++:4227
@ key_exact
Definition mdbx.h++:4220
@ key_equal
Definition mdbx.h++:4226
@ multi_currentkey_prevvalue
Definition mdbx.h++:4211
@ key_lesser_or_equal
Definition mdbx.h++:4225
@ multi_nextkey_firstvalue
Definition mdbx.h++:4214
@ get_current
Definition mdbx.h++:4207
@ multi_exactkey_value_lesser_or_equal
Definition mdbx.h++:4233
@ multi_prevkey_lastvalue
Definition mdbx.h++:4209
@ previous
Definition mdbx.h++:4206
@ last
Definition mdbx.h++:4204
@ pair_greater_than
Definition mdbx.h++:4243
@ multi_exactkey_value_lesser_than
Definition mdbx.h++:4232
@ multi_currentkey_firstvalue
Definition mdbx.h++:4210
@ first
Definition mdbx.h++:4203
@ batch_samelength_previous
Definition mdbx.h++:4247
@ multi_currentkey_nextvalue
Definition mdbx.h++:4212
@ multi_exactkey_value_greater
Definition mdbx.h++:4236
@ multi_currentkey_lastvalue
Definition mdbx.h++:4213
virtual ~env_managed() noexcept
MDBX_CXX14_CONSTEXPR uint64_t as_uint64() const
Definition mdbx.h++:2131
MDBX_CXX14_CONSTEXPR struct slice head(size_t n) const noexcept
Definition mdbx.h++:2459
bool move(move_operation operation, slice &key, slice &value, bool throw_notfound)
Definition mdbx.h++:4355
static buffer key_from(const char(&text)[SIZE], bool make_reference=true)
Definition mdbx.h++:2614
void insert(const pair &kv)
Definition mdbx.h++:4509
buffer & append(const void *src, size_t bytes)
Definition mdbx.h++:2481
cursor_managed(const cursor_managed &)=delete
env_managed(const ::std::wstring &pathname, const create_parameters &, const operate_parameters &, bool accede=true)
MDBX_CXX14_CONSTEXPR ::std::span< char > chars()
Definition mdbx.h++:2118
void upsert(const pair &kv)
Definition mdbx.h++:4511
move_result to_current_prev_multi(bool throw_notfound=true)
Definition mdbx.h++:4367
void shrink_to_fit()
Reduces memory usage by freeing unused storage space.
Definition mdbx.h++:2413
MDBX_CXX11_CONSTEXPR const char * end_char_ptr() const noexcept
Returns casted to const pointer to char an end of data.
Definition mdbx.h++:1953
int16_t as_int16_adapt() const
Definition mdbx.h++:2157
txn_managed & operator=(const txn_managed &)=delete
static buffer key_from(const int32_t signed_int32)
Definition mdbx.h++:2664
void clear() noexcept
Clears the contents and storage.
Definition mdbx.h++:2405
static buffer base64(const ::mdbx::slice &source, unsigned wrap_width=0, const allocator_type &allocator=allocator_type())
Returns a new buffer with a Base64 dump of the slice content.
Definition mdbx.h++:2174
bool clear_map(const ::std::string_view &name, bool throw_if_absent=false)
Definition mdbx.h++:3923
move_result to_exact_key_value_equal(const slice &key, const slice &value, bool throw_notfound=true)
Definition mdbx.h++:4406
MDBX_CXX11_CONSTEXPR const void * end() const noexcept
Return a const pointer to the end of the referenced data.
Definition mdbx.h++:1975
typename ::std::allocator_traits< default_allocator >::template rebind_alloc< uint64_t > allocator_type
Definition mdbx.h++:1479
bool rename_map(const char *old_name, const char *new_name, bool throw_if_absent=false)
Переименовывает таблицу ключ-значение.
env_managed(const env_managed &)=delete
static buffer key_from(const double ieee754_64bit)
Definition mdbx.h++:2636
move_result to_current_last_multi(bool throw_notfound=true)
Definition mdbx.h++:4374
MDBX_CXX11_CONSTEXPR char * char_ptr() noexcept
Returns casted to pointer to char an address of data.
Definition mdbx.h++:1958
value_result try_insert(const pair &kv)
Definition mdbx.h++:4510
move_result to_key_lesser_or_equal(const slice &key, bool throw_notfound=true)
Definition mdbx.h++:4384
MDBX_CXX11_CONSTEXPR env_managed() noexcept=default
static buffer key_from_i64(const int64_t signed_int64)
Definition mdbx.h++:2644
move_result to_pair_greater_or_equal(const slice &key, const slice &value, bool throw_notfound=true)
Definition mdbx.h++:4428
uint64_t as_uint64_adapt() const
Definition mdbx.h++:2147
size_t value_max(value_mode mode) const
Returns the maximal value size in bytes for specified values mode.
Definition mdbx.h++:3321
MDBX_cursor * handle_
Definition mdbx.h++:4157
buffer & append_u8(uint_fast8_t u8)
Definition mdbx.h++:2539
~cursor_managed() noexcept
Definition mdbx.h++:4563
buffer & append_u24(uint_fast32_t u24)
Definition mdbx.h++:2559
buffer(buffer &&src) noexcept(move_assign_alloc::is_nothrow())
Definition mdbx.h++:2097
MDBX_dbi dbi
Definition mdbx.h++:2971
buffer(const ::std::basic_string< CHAR, T, A > &&)=delete
move_result to_exact_key_value_lesser_than(const slice &key, const slice &value, bool throw_notfound=true)
Definition mdbx.h++:4400
static buffer key_from(const uint64_t unsigned_int64)
Definition mdbx.h++:2642
move_result to_current_next_multi(bool throw_notfound=true)
Definition mdbx.h++:4371
buffer & append_u64(uint_fast64_t u64)
Definition mdbx.h++:2596
MDBX_NOTHROW_PURE_FUNCTION constexpr size_t capacity() const noexcept
Returns the number of bytes that can be held in currently allocated storage.
Definition mdbx.h++:1911
MDBX_CXX11_CONSTEXPR env() noexcept=default
MDBX_CXX11_CONSTEXPR const byte * end_byte_ptr() const noexcept
Returns casted to const pointer to byte an end of data.
Definition mdbx.h++:1931
MDBX_CXX11_CONSTEXPR byte & operator[](size_t n) noexcept
Accesses the specified byte of data chunk.
Definition mdbx.h++:2440
buffer(const ::std::basic_string< CHAR, T, A > &)=delete
buffer & append_hex(const struct slice &data, bool uppercase=false, unsigned wrap_width=0)
Definition mdbx.h++:2515
MDBX_CXX14_CONSTEXPR buffer(const ::std::span< POD > &span)
Definition mdbx.h++:2105
size_t size_max() const
Returns maximal write transaction size (i.e. limit for summary volume of dirty pages) in bytes.
Definition mdbx.h++:3785
MDBX_CXX11_CONSTEXPR byte * end_byte_ptr() noexcept
Returns casted to pointer to byte an end of data.
Definition mdbx.h++:1944
buffer & operator=(buffer &&src) noexcept(move_assign_alloc::is_nothrow())
Definition mdbx.h++:2346
env & copy(const ::std::wstring &destination, bool compactify, bool force_dynamic_size=false)
move_result to_exact_key_value_greater_than(const slice &key, const slice &value, bool throw_notfound=true)
Definition mdbx.h++:4412
txn_managed(const txn_managed &)=delete
friend int compare_position_nothrow(const cursor &left, const cursor &right, bool ignore_nested) noexcept
Definition mdbx.h++:6059
static buffer clone(const buffer &src, const allocator_type &allocator=allocator_type())
Definition mdbx.h++:2288
buffer(size_t capacity, const allocator_type &allocator=allocator_type())
Definition mdbx.h++:2079
MDBX_CXX14_CONSTEXPR ::std::span< byte > bytes()
Definition mdbx.h++:2116
::MDBX_stat stat
Statistics for a database in the MDBX environment.
Definition mdbx.h++:3371
size_t value_min(value_mode mode) const noexcept
Returns the minimal value size in bytes for specified values mode.
Definition mdbx.h++:3319
value_result try_insert(map_handle map, const pair &kv)
Definition mdbx.h++:4010
buffer & append_producer(PRODUCER &producer)
Definition mdbx.h++:2501
void insert(map_handle map, const pair &kv)
Definition mdbx.h++:4009
buffer & append_producer(const PRODUCER &producer)
Definition mdbx.h++:2508
MDBX_CXX11_CONSTEXPR txn() noexcept=default
int128_t as_int128_adapt() const
Definition mdbx.h++:2153
env_managed(const ::mdbx::filesystem::path &pathname, const create_parameters &, const operate_parameters &, bool accede=true)
Create new or open existing database.
static buffer key_from(const char *src, bool make_reference=false)
Definition mdbx.h++:2625
bool rename_map(const ::std::string_view &old_name, const ::std::string_view &new_name, bool throw_if_absent=false)
Переименовывает таблицу ключ-значение.
Definition mdbx.h++:3931
move_result to_key_equal(const slice &key, bool throw_notfound=true)
Definition mdbx.h++:4387
@ pettiness_threshold
Definition mdbx.h++:1489
@ max_length
Definition mdbx.h++:1486
@ max_capacity
Definition mdbx.h++:1487
@ extra_inplace_storage
Definition mdbx.h++:1488
move_result to_previous(bool throw_notfound=true)
Definition mdbx.h++:4360
constexpr buffer(const char *c_str, const allocator_type &allocator=allocator_type())
Definition mdbx.h++:2064
friend class txn
Definition mdbx.h++:1493
bool is_before_than(const cursor &other, bool ignore_nested=false) const
Definition mdbx.h++:4176
size_t key_min(key_mode mode) const noexcept
Returns the minimal key size in bytes for specified keys mode.
Definition mdbx.h++:3315
int8_t as_int8_adapt() const
Definition mdbx.h++:2158
size_t size_current() const
Returns current write transaction size (i.e.summary volume of dirty pages) in bytes.
Definition mdbx.h++:3789
buffer base58_decode(bool ignore_spaces=false, const allocator_type &allocator=allocator_type()) const
Decodes Base58 dump from the buffer content to new returned buffer.
Definition mdbx.h++:2245
bool fullscan(CALLABLE_PREDICATE predicate, bool backward=false)
Definition mdbx.h++:4300
The chunk of data stored inside the buffer or located outside it.
Definition mdbx.h++:1476
Unmanaged cursor.
Definition mdbx.h++:4155
Managed cursor.
Definition mdbx.h++:4534
Unmanaged database environment.
Definition mdbx.h++:3016
Managed database environment.
Definition mdbx.h++:3655
Unmanaged database transaction.
Definition mdbx.h++:3738
Managed database transaction.
Definition mdbx.h++:4092
static size_t key_min(MDBX_db_flags_t flags) noexcept
Returns the minimal key size in bytes for specified table flags.
Definition mdbx.h++:5199
polymorphic_allocator default_allocator
Definition mdbx.h++:352
MDBX_CXX11_CONSTEXPR txn(MDBX_txn *ptr) noexcept
Definition mdbx.h++:5523
buffer< ALLOCATOR, CAPACITY_POLICY > encode_base58(unsigned wrap_width=0, const ALLOCATOR &allocator=ALLOCATOR()) const
Returns a buffer with a Base58 dump of the slice content.
Definition mdbx.h++:5036
env & set_HandleSlowReaders(MDBX_hsr_func *)
Sets a Handle-Slow-Readers callback to resolve database full/overflow issue due to a reader(s) which ...
Definition mdbx.h++:5484
MDBX_CXX11_CONSTEXPR bool is_success() const noexcept
Definition mdbx.h++:4677
void * get_context() const noexcept
Returns the application context associated with the transaction.
Definition mdbx.h++:5549
static size_t value_max(intptr_t pagesize, MDBX_db_flags_t flags)
Returns the maximal value size in bytes for specified page size and table flags.
Definition mdbx.h++:5227
void replace(map_handle map, const slice &key, slice old_value, const slice &new_value)
Replaces the particular multi-value of the key with a new value.
Definition mdbx.h++:5933
value_mode
Kind of the values and sorted multi-values with corresponding comparison.
Definition mdbx.h++:2884
MDBX_CXX14_CONSTEXPR void clear() noexcept
Makes the slice empty and referencing to nothing.
Definition mdbx.h++:4882
MDBX_CXX11_CONSTEXPR byte operator[](size_t n) const noexcept
Returns the nth byte in the referenced data.
Definition mdbx.h++:4926
MDBX_CXX11_CONSTEXPR_ENUM mdbx::key_mode key_mode() const noexcept
Definition mdbx.h++:5124
void reset_reading()
Reset read-only transaction.
Definition mdbx.h++:5582
void success_or_panic(const char *context_where, const char *func_who) const noexcept
Definition mdbx.h++:4722
void rethrow_captured() const
Definition mdbx.h++:4659
move_result find_multivalue(const slice &key, const slice &value, bool throw_notfound=true)
Definition mdbx.h++:6128
ptrdiff_t estimate(move_operation operation, MDBX_val *key, MDBX_val *value) const
Definition mdbx.h++:6104
MDBX_CXX14_CONSTEXPR void invalidate() noexcept
Depletes content of slice and make it invalid.
Definition mdbx.h++:4880
map_handle create_map(const char *name, const ::mdbx::key_mode key_mode=::mdbx::key_mode::usual, const ::mdbx::value_mode value_mode=::mdbx::value_mode::single)
Create new or open existing key-value map.
Definition mdbx.h++:5654
static size_t dbsize_max(intptr_t pagesize)
Returns the maximal database size in bytes for specified page size.
Definition mdbx.h++:5192
geometry & make_dynamic(intptr_t lower=default_value, intptr_t upper=default_value) noexcept
Definition mdbx.h++:5166
value_result try_update_reserve(map_handle map, const slice &key, size_t value_length)
Definition mdbx.h++:5896
value_result try_insert_reserve(map_handle map, const slice &key, size_t value_length)
Definition mdbx.h++:5850
void close_map(const map_handle &)
Close a key-value map (aka table) handle. Normally unnecessary.
Definition mdbx.h++:5446
MDBX_CXX11_CONSTEXPR byte at(size_t n) const
Returns the nth byte in the referenced data with bounds checking.
Definition mdbx.h++:4931
env & set_sync_threshold(size_t bytes)
Sets threshold to force flush the data buffers to disk, for non-sync durability modes.
Definition mdbx.h++:5377
move_result(const cursor &cursor, bool throw_notfound)
Definition mdbx.h++:6072
MDBX_CXX11_CONSTEXPR const version_info & get_version() noexcept
Returns libmdbx version information.
Definition mdbx.h++:4594
ptrdiff_t estimate_from_first(map_handle map, const slice &to) const
Definition mdbx.h++:6006
void remove_suffix(size_t n) noexcept
Drops the last "n" bytes from this slice.
Definition mdbx.h++:4899
slice & assign(const void *ptr, size_t bytes)
Definition mdbx.h++:4792
env & operator=(env &&other) noexcept
Definition mdbx.h++:5136
void unbind()
Unbind cursor from a transaction.
Definition mdbx.h++:6176
MDBX_CXX11_CONSTEXPR const void * end() const noexcept
Return a pointer to the ending of the referenced data.
Definition mdbx.h++:4854
::std::chrono::duration< unsigned, ::std::ratio< 1, 65536 > > duration
Duration in 1/65536 units of second.
Definition mdbx.h++:417
slice insert_reserve(map_handle map, const slice &key, size_t value_length)
Definition mdbx.h++:5843
string< ALLOCATOR > as_hex_string(bool uppercase=false, unsigned wrap_width=0, const ALLOCATOR &allocator=ALLOCATOR()) const
Returns a string with a hexadecimal dump of the slice content.
Definition mdbx.h++:5015
void rename_map(map_handle map, const char *new_name)
Переименовывает таблицу ключ-значение.
Definition mdbx.h++:5667
void throw_on_failure() const
Definition mdbx.h++:4699
bool try_update(const slice &key, const slice &value)
Definition mdbx.h++:6252
void update(const slice &key, const slice &value)
Definition mdbx.h++:6248
int compare_keys(map_handle map, const slice &a, const slice &b) const noexcept
Compare two keys according to a particular key-value map (aka table).
Definition mdbx.h++:5742
MDBX_CXX11_CONSTEXPR MDBX_error_t code() const noexcept
Returns error code.
Definition mdbx.h++:4687
txn & set_context(void *your_context)
Sets the application context associated with the transaction.
Definition mdbx.h++:5551
txn_managed start_write(txn &parent)
Starts write (read-write) transaction.
Definition mdbx.h++:5512
int compare_position_nothrow(const cursor &left, const cursor &right, bool ignore_nested=false) noexcept
Definition mdbx.h++:6059
env::durability get_durability() const
Returns current durability mode.
Definition mdbx.h++:5310
uint64_t sequence(map_handle map) const
Definition mdbx.h++:5730
void upsert(const slice &key, const slice &value)
Definition mdbx.h++:6238
MDBX_CXX11_CONSTEXPR const byte * byte_ptr() const noexcept
Returns casted to pointer to byte an address of data.
Definition mdbx.h++:4834
MDBX_CXX11_CONSTEXPR bool is_mdbx_error() const noexcept
Returns true for MDBX's errors.
Definition mdbx.h++:4689
bool is_clean() const noexcept
Definition mdbx.h++:4652
string< ALLOCATOR > as_base58_string(unsigned wrap_width=0, const ALLOCATOR &allocator=ALLOCATOR()) const
Returns a string with a Base58 dump of the slice content.
Definition mdbx.h++:5020
MDBX_CXX11_CONSTEXPR const char * end_char_ptr() const noexcept
Returns casted to pointer to char an end of data.
Definition mdbx.h++:4846
MDBX_CXX01_CONSTEXPR_ENUM bool is_reverse(key_mode mode) noexcept
Definition mdbx.h++:2876
static bool boolean_or_throw(int error_code)
Definition mdbx.h++:4742
MDBX_CXX14_CONSTEXPR slice safe_tail(size_t n) const
Returns the last "n" bytes of the slice.
Definition mdbx.h++:4958
void swap(slice &other) noexcept
Definition mdbx.h++:4828
env::operate_parameters get_operation_parameters() const
Returns current operation parameters.
Definition mdbx.h++:5300
void bind(const ::mdbx::txn &txn, ::mdbx::map_handle map_handle)
Bind/renew a cursor with a new transaction and specified key-value map handle.
Definition mdbx.h++:6172
MDBX_CXX01_CONSTEXPR_ENUM bool is_msgpack(key_mode mode) noexcept
Definition mdbx.h++:2880
::std::basic_string< char, ::std::char_traits< char >, ALLOCATOR > string
Default single-byte string.
Definition mdbx.h++:372
MDBX_NOTHROW_PURE_FUNCTION MDBX_CXX14_CONSTEXPR bool starts_with(const slice &prefix) const noexcept
Checks if the data starts with the given prefix.
Definition mdbx.h++:4910
MDBX_env_flags_t get_flags() const
Returns environment flags.
Definition mdbx.h++:5352
static size_t dbsize_min(intptr_t pagesize)
Returns the minimal database size in bytes for specified page size.
Definition mdbx.h++:5185
MDBX_CXX11_CONSTEXPR slice() noexcept
Create an empty slice.
Definition mdbx.h++:4776
static MDBX_NOTHROW_PURE_FUNCTION MDBX_CXX14_CONSTEXPR intptr_t compare_fast(const slice &a, const slice &b) noexcept
Three-way fast non-lexicographically length-based comparison.
Definition mdbx.h++:4972
MDBX_CXX11_CONSTEXPR size_t size() const noexcept
Returns the number of bytes.
Definition mdbx.h++:4876
void insert(const slice &key, slice value)
Definition mdbx.h++:6199
MDBX_CXX11_CONSTEXPR reader_info(int slot, mdbx_pid_t pid, mdbx_tid_t thread, uint64_t txnid, uint64_t lag, size_t used, size_t retained) noexcept
Definition mdbx.h++:5449
move_result lower_bound_multivalue(const slice &key, const slice &value, bool throw_notfound=false)
Definition mdbx.h++:6132
::std::pmr::string::allocator_type polymorphic_allocator
Default polymorphic allocator for modern code.
Definition mdbx.h++:351
MDBX_CXX14_CONSTEXPR slice safe_head(size_t n) const
Returns the first "n" bytes of the slice.
Definition mdbx.h++:4952
MDBX_CXX01_CONSTEXPR_ENUM bool is_usual(key_mode mode) noexcept
Definition mdbx.h++:2864
MDBX_hsr_func * get_HandleSlowReaders() const noexcept
Returns the current Handle-Slow-Readers callback used to resolve database full/overflow issue due to ...
Definition mdbx.h++:5489
cursor_managed clone(void *your_context=nullptr) const
Definition mdbx.h++:6022
~cursor() noexcept
Definition mdbx.h++:6043
~txn() noexcept
Definition mdbx.h++:5533
size_t sync_threshold() const
Gets threshold used to force flush the data buffers to disk, for non-sync durability modes.
Definition mdbx.h++:5382
MDBX_CXX11_CONSTEXPR bool is_null() const noexcept
Checks whether the slice data pointer is nullptr.
Definition mdbx.h++:4874
move_result upper_bound(const slice &key, bool throw_notfound=false)
Definition mdbx.h++:6124
inline ::mdbx::txn txn() const
Returns the cursor's transaction.
Definition mdbx.h++:6178
MDBX_CXX11_CONSTEXPR const void * data() const noexcept
Return a pointer to the beginning of the referenced data.
Definition mdbx.h++:4852
value_result try_insert_reserve(const slice &key, size_t value_length)
Definition mdbx.h++:6224
static env::operate_options options_from_flags(MDBX_env_flags_t flags) noexcept
Definition mdbx.h++:5177
map_handle map() const
Definition mdbx.h++:6184
unsigned sync_period__seconds_16dot16() const
Controls interprocess/shared relative period since the last unsteady commit to force flush the data b...
Definition mdbx.h++:5393
MDBX_CXX11_CONSTEXPR info(map_handle::flags flags, map_handle::state state) noexcept
Definition mdbx.h++:5121
MDBX_CXX11_CONSTEXPR_ENUM mdbx::value_mode value_mode() const noexcept
Definition mdbx.h++:5128
move_result find(const slice &key, bool throw_notfound=true)
Definition mdbx.h++:6116
move_result upper_bound_multivalue(const slice &key, const slice &value, bool throw_notfound=false)
Definition mdbx.h++:6136
MDBX_CXX01_CONSTEXPR_ENUM bool is_multi(value_mode mode) noexcept
Definition mdbx.h++:2945
MDBX_NOTHROW_PURE_FUNCTION bool is_base64(bool ignore_spaces=false) const noexcept
Checks whether the content of the slice is a Base64 dump.
Definition mdbx.h++:5068
void success_or_throw() const
Definition mdbx.h++:4704
buffer< ALLOCATOR, CAPACITY_POLICY > encode_base64(unsigned wrap_width=0, const ALLOCATOR &allocator=ALLOCATOR()) const
Returns a buffer with a Base64 dump of the slice content.
Definition mdbx.h++:5041
void renew_reading()
Renew read-only transaction.
Definition mdbx.h++:5586
buffer< ALLOCATOR, CAPACITY_POLICY > base64_decode(bool ignore_spaces=false, const ALLOCATOR &allocator=ALLOCATOR()) const
Decodes Base64 dump from the slice content to returned buffer.
Definition mdbx.h++:5056
bool sync_to_disk(bool force=true, bool nonblock=false)
Flush the environment data buffers.
Definition mdbx.h++:5433
MDBX_CXX11_CONSTEXPR env(MDBX_env *ptr) noexcept
Definition mdbx.h++:5134
int compare_position(const cursor &left, const cursor &right, bool ignore_nested=false)
Definition mdbx.h++:6063
static MDBX_NOTHROW_PURE_FUNCTION MDBX_CXX14_CONSTEXPR intptr_t compare_lexicographically(const pair &a, const pair &b) noexcept
Three-way lexicographically comparison.
Definition mdbx.h++:5079
size_t count_multivalue() const
Return count of duplicates for current key.
Definition mdbx.h++:6142
static size_t pagesize_max() noexcept
Returns the maximal database page size in bytes.
Definition mdbx.h++:5183
MDBX_CXX11_CONSTEXPR error(MDBX_error_t error_code) noexcept
Definition mdbx.h++:4666
bool is_dirty(const void *ptr) const
Checks whether the given data is on a dirty page.
Definition mdbx.h++:5556
slice upsert_reserve(const slice &key, size_t value_length)
Definition mdbx.h++:6242
env::mode get_mode() const
Returns current operation mode.
Definition mdbx.h++:5308
MDBX_NOTHROW_PURE_FUNCTION bool is_hex(bool ignore_spaces=false) const noexcept
Checks whether the content of the slice is a hexadecimal dump.
Definition mdbx.h++:5060
MDBX_CXX01_CONSTEXPR_ENUM bool is_samelength(key_mode mode) noexcept
Definition mdbx.h++:2872
void capture() noexcept
Definition mdbx.h++:4654
inline ::mdbx::env env() const noexcept
Returns the transaction's environment.
Definition mdbx.h++:5568
uint32_t get_tree_deepmask(map_handle map) const
Returns depth (bitmask) information of nested dupsort (multi-value) B+trees for given table.
Definition mdbx.h++:5707
bool try_update(map_handle map, const slice &key, const slice &value)
Definition mdbx.h++:5878
void safe_remove_prefix(size_t n)
Drops the first "n" bytes from this slice.
Definition mdbx.h++:4893
comparator default_comparator(key_mode mode) noexcept
Definition mdbx.h++:2993
MDBX_NOTHROW_PURE_FUNCTION bool is_base58(bool ignore_spaces=false) const noexcept
Checks whether the content of the slice is a Base58 dump.
Definition mdbx.h++:5064
slice insert_reserve(const slice &key, size_t value_length)
Definition mdbx.h++:6217
static size_t pairsize4page_max(intptr_t pagesize, MDBX_db_flags_t flags)
Returns maximal size of key-value pair to fit in a single page for specified size and table flags.
Definition mdbx.h++:5247
env & set_sync_period__seconds_16dot16(unsigned seconds_16dot16)
Sets relative period since the last unsteady commit to force flush the data buffers to disk,...
Definition mdbx.h++:5388
ptrdiff_t estimate(map_handle map, const pair &from, const pair &to) const
Definition mdbx.h++:5994
MDBX_CXX14_CONSTEXPR slice tail(size_t n) const noexcept
Returns the last "n" bytes of the slice.
Definition mdbx.h++:4942
env::reclaiming_options get_reclaiming() const
Returns current reclaiming options.
Definition mdbx.h++:5314
void drop_map(map_handle map)
Drops key-value map using handle.
Definition mdbx.h++:5663
ptrdiff_t estimate_to_last(map_handle map, const slice &from) const
Definition mdbx.h++:6012
void append(map_handle map, const slice &key, const slice &value, bool multivalue_order_preserved=true)
Adding a key-value pair, provided that ascending order of the keys and (optionally) values are preser...
Definition mdbx.h++:5970
MDBX_CXX11_CONSTEXPR bool empty() const noexcept
Checks whether the slice is empty.
Definition mdbx.h++:4872
env::operate_options get_options() const
Returns current operate options.
Definition mdbx.h++:5318
buffer< ALLOCATOR, CAPACITY_POLICY > extract(map_handle map, const slice &key, const typename buffer< ALLOCATOR, CAPACITY_POLICY >::allocator_type &allocator=buffer< ALLOCATOR, CAPACITY_POLICY >::allocator_type())
Removes and return a value of the key.
Definition mdbx.h++:5940
void park_reading(bool autounpark=true)
Park read-only transaction.
Definition mdbx.h++:5588
cursor & set_context(void *your_context)
Sets the application context associated with the cursor.
Definition mdbx.h++:6030
map_stat get_map_stat(map_handle map) const
Returns statistics for a table.
Definition mdbx.h++:5701
bool move(move_operation operation, MDBX_val *key, MDBX_val *value, bool throw_notfound) const
Definition mdbx.h++:6082
static size_t value_min(MDBX_db_flags_t flags) noexcept
Returns the minimal values size in bytes for specified table flags.
Definition mdbx.h++:5223
int compare_values(map_handle map, const slice &a, const slice &b) const noexcept
Compare two values according to a particular key-value map (aka table).
Definition mdbx.h++:5746
static env::reclaiming_options reclaiming_from_flags(MDBX_env_flags_t flags) noexcept
Definition mdbx.h++:5173
buffer< ALLOCATOR, CAPACITY_POLICY > encode_hex(bool uppercase=false, unsigned wrap_width=0, const ALLOCATOR &allocator=ALLOCATOR()) const
Returns a buffer with a hexadecimal dump of the slice content.
Definition mdbx.h++:5030
cursor & operator=(cursor &&other) noexcept
Definition mdbx.h++:6035
txn & put_canary(const canary &)
Set integers markers (aka "canary") associated with the environment.
Definition mdbx.h++:5719
slice upsert_reserve(map_handle map, const slice &key, size_t value_length)
Definition mdbx.h++:5868
MDBX_NOTHROW_PURE_FUNCTION MDBX_CXX14_CONSTEXPR bool operator<(const slice &a, const slice &b) noexcept
Definition mdbx.h++:4994
buffer< ALLOCATOR, CAPACITY_POLICY > hex_decode(bool ignore_spaces=false, const ALLOCATOR &allocator=ALLOCATOR()) const
Decodes hexadecimal dump from the slice content to returned buffer.
Definition mdbx.h++:5046
MDBX_CXX14_CONSTEXPR slice head(size_t n) const noexcept
Returns the first "n" bytes of the slice.
Definition mdbx.h++:4937
string to_string(const ::mdbx::slice &value)
Definition mdbx.h++:6317
env & set_sync_period__seconds_double(double seconds)
Sets relative period since the last unsteady commit to force flush the data buffers to disk,...
Definition mdbx.h++:5399
bool on_first() const
Definition mdbx.h++:6150
MDBX_NOTHROW_PURE_FUNCTION MDBX_CXX14_CONSTEXPR size_t hash_value() const noexcept
Returns the hash value of referenced data.
Definition mdbx.h++:4919
::MDBX_version_info version_info
libmdbx version information,
Definition mdbx.h++:328
bool eof() const
Definition mdbx.h++:6148
void make_broken()
Marks transaction as broken to prevent further operations.
Definition mdbx.h++:5584
MDBX_txn_flags_t flags() const
Returns transaction's flags.
Definition mdbx.h++:5570
void * get_context() const noexcept
Returns the application context associated with the environment.
Definition mdbx.h++:5370
MDBX_error_t put(const slice &key, slice *value, MDBX_put_flags_t flags) noexcept
Definition mdbx.h++:6191
map_handle open_map_accede(const char *name) const
Open existing key-value map.
Definition mdbx.h++:5638
txn_managed prepare_read() const
Creates but not start read transaction.
Definition mdbx.h++:5498
::MDBX_build_info build_info
libmdbx build information
Definition mdbx.h++:332
void safe_remove_suffix(size_t n)
Drops the last "n" bytes from this slice.
Definition mdbx.h++:4904
bool seek(const slice &key)
Definition mdbx.h++:6140
env & alter_flags(MDBX_env_flags_t flags, bool on_off)
Alter environment flags.
Definition mdbx.h++:5422
env & set_context(void *your_context)
Sets the application context associated with the environment.
Definition mdbx.h++:5372
static size_t transaction_size_max(intptr_t pagesize)
Returns the maximal write transaction size (i.e. limit for summary volume of dirty pages) in bytes fo...
Definition mdbx.h++:5291
MDBX_CXX11_CONSTEXPR size_t length() const noexcept
Returns the number of bytes.
Definition mdbx.h++:4860
void clear_map(map_handle map)
Clear key-value map.
Definition mdbx.h++:5665
env & set_extra_option(extra_runtime_option option, uint64_t value)
Sets the value of a extra runtime options for an environment.
Definition mdbx.h++:5411
void remove_prefix(size_t n) noexcept
Drops the first "n" bytes from this slice.
Definition mdbx.h++:4887
MDBX_CXX11_CONSTEXPR bool is_result_true() const noexcept
Definition mdbx.h++:4679
MDBX_CXX11_CONSTEXPR bool operator==(const error &a, const error &b) noexcept
Definition mdbx.h++:4673
value_result try_insert(const slice &key, slice value)
Definition mdbx.h++:6204
static void throw_on_nullptr(const void *ptr, MDBX_error_t error_code)
Definition mdbx.h++:4727
string< ALLOCATOR > as_base64_string(unsigned wrap_width=0, const ALLOCATOR &allocator=ALLOCATOR()) const
Returns a string with a Base58 dump of the slice content.
Definition mdbx.h++:5025
::MDBX_cmp_func * comparator
Definition mdbx.h++:2992
put_mode
Key-value pairs put mode.
Definition mdbx.h++:3001
double sync_period__seconds_double() const
Controls interprocess/shared relative period since the last unsteady commit to force flush the data b...
Definition mdbx.h++:5403
::mdbx_filehandle_t filehandle
Definition mdbx.h++:374
MDBX_CXX14_CONSTEXPR slice & set_end(const void *ptr)
Sets the length by specifying the end of the slice data.
Definition mdbx.h++:4867
static MDBX_NOTHROW_PURE_FUNCTION MDBX_CXX14_CONSTEXPR intptr_t compare_fast(const pair &a, const pair &b) noexcept
Three-way fast non-lexicographically length-based comparison.
Definition mdbx.h++:5074
static size_t valsize4page_max(intptr_t pagesize, MDBX_db_flags_t flags)
Returns maximal data size in bytes to fit in a leaf-page or single large/overflow-page for specified ...
Definition mdbx.h++:5269
MDBX_CXX11_CONSTEXPR cursor(MDBX_cursor *ptr) noexcept
Definition mdbx.h++:6020
MDBX_NOTHROW_PURE_FUNCTION MDBX_CXX14_CONSTEXPR bool operator<=(const slice &a, const slice &b) noexcept
Definition mdbx.h++:5002
char8_t byte
Definition mdbx.h++:312
canary get_canary() const
Returns fours integers markers (aka "canary") associated with the environment.
Definition mdbx.h++:5724
txn & operator=(txn &&other) noexcept
Definition mdbx.h++:5525
bool erase(bool whole_multivalue=false)
Removes single key-value pair or all multi-values at the current cursor position.
Definition mdbx.h++:6283
buffer< ALLOCATOR, CAPACITY_POLICY > replace_reserve(map_handle map, const slice &key, slice &new_value, const typename buffer< ALLOCATOR, CAPACITY_POLICY >::allocator_type &allocator=buffer< ALLOCATOR, CAPACITY_POLICY >::allocator_type())
Definition mdbx.h++:5961
stat get_stat() const
Returns snapshot statistics about the MDBX environment.
Definition mdbx.h++:5322
uint64_t id() const
Return the transaction's ID.
Definition mdbx.h++:5576
value_result try_insert(map_handle map, const slice &key, slice value)
Definition mdbx.h++:5830
::std::string::allocator_type legacy_allocator
Legacy allocator but it is recommended to use polymorphic_allocator.
Definition mdbx.h++:346
MDBX_CXX11_CONSTEXPR const byte * end_byte_ptr() const noexcept
Returns casted to pointer to byte an end of data.
Definition mdbx.h++:4838
ptrdiff_t estimate(const cursor &from, const cursor &to)
Definition mdbx.h++:6110
slice update_reserve(map_handle map, const slice &key, size_t value_length)
Definition mdbx.h++:5890
MDBX_NOTHROW_PURE_FUNCTION MDBX_CXX14_CONSTEXPR bool ends_with(const slice &suffix) const noexcept
Checks if the data ends with the given suffix.
Definition mdbx.h++:4914
MDBX_CXX14_CONSTEXPR slice & set_length(size_t bytes)
Set slice length.
Definition mdbx.h++:4862
~env() noexcept
Definition mdbx.h++:5144
loop_control
Loop control constants for readers enumeration functor and other cases.
Definition mdbx.h++:2845
slice get(map_handle map, const slice &key) const
Get value by key from a key-value map (aka table).
Definition mdbx.h++:5758
size_t put_multiple_samelength(map_handle map, const slice &key, const size_t value_length, const void *values_array, size_t values_count, put_mode mode, bool allow_partial=false)
Definition mdbx.h++:5975
void update(map_handle map, const slice &key, const slice &value)
Definition mdbx.h++:5874
key_mode
Kinds of the keys and corresponding modes of comparing it.
Definition mdbx.h++:2848
txn_managed start_read() const
Starts read (read-only) transaction.
Definition mdbx.h++:5491
::mdbx::filesystem::path path
Definition mdbx.h++:399
bool on_last_multival() const
Definition mdbx.h++:6156
unsigned max_maps() const
Returns the maximum number of named tables for the environment.
Definition mdbx.h++:5364
void insert(map_handle map, const slice &key, slice value)
Definition mdbx.h++:5825
unsigned max_readers() const
Returns the maximum number of threads/reader slots for the environment.
Definition mdbx.h++:5358
static size_t key_max(intptr_t pagesize, MDBX_db_flags_t flags)
Returns the maximal key size in bytes for specified page size and table flags.
Definition mdbx.h++:5203
int enumerate_readers(VISITOR &visitor)
Enumerate readers.
Definition mdbx.h++:5454
void * get_context() const noexcept
Returns the application context associated with the cursor.
Definition mdbx.h++:6028
static size_t max_map_handles(void)
Returns the maximum opened map handles, aka DBI-handles.
Definition mdbx.h++:5298
cursor_managed open_cursor(map_handle map) const
Opens cursor for specified key-value map handle.
Definition mdbx.h++:5600
MDBX_CXX01_CONSTEXPR_ENUM bool is_ordinal(key_mode mode) noexcept
Definition mdbx.h++:2868
bool unpark_reading(bool restart_if_ousted=true)
Resume parked read-only transaction.
Definition mdbx.h++:5590
uint64_t extra_option(extra_runtime_option option) const
Gets the value of extra runtime options from an environment.
Definition mdbx.h++:5416
bool on_first_multival() const
Definition mdbx.h++:6154
MDBX_error_t put(map_handle map, const slice &key, slice *value, MDBX_put_flags_t flags) noexcept
Definition mdbx.h++:5817
void panic_on_failure(const char *context_where, const char *func_who) const noexcept
Definition mdbx.h++:4717
info get_info() const
Return snapshot information about the MDBX environment.
Definition mdbx.h++:5334
void upsert(map_handle map, const slice &key, const slice &value)
Definition mdbx.h++:5864
static size_t pagesize_min() noexcept
Returns the minimal database page size in bytes.
Definition mdbx.h++:5181
MDBX_NOTHROW_PURE_FUNCTION MDBX_CXX14_CONSTEXPR bool operator>(const slice &a, const slice &b) noexcept
Definition mdbx.h++:4998
slice update_reserve(const slice &key, size_t value_length)
Definition mdbx.h++:6264
move_result lower_bound(const slice &key, bool throw_notfound=false)
Definition mdbx.h++:6120
MDBX_CXX14_CONSTEXPR slice middle(size_t from, size_t n) const noexcept
Returns the middle "n" bytes of the slice.
Definition mdbx.h++:4947
MDBX_CXX11_CONSTEXPR bool operator!=(const error &a, const error &b) noexcept
Definition mdbx.h++:4675
unsigned check_readers()
Checks for stale readers in the lock table and return number of cleared slots.
Definition mdbx.h++:5477
bool erase(map_handle map, const slice &key)
Removes all values for given key.
Definition mdbx.h++:5909
MDBX_CXX14_CONSTEXPR slice safe_middle(size_t from, size_t n) const
Returns the middle "n" bytes of the slice.
Definition mdbx.h++:4964
bool on_last() const
Definition mdbx.h++:6152
MDBX_CXX11_CONSTEXPR const char * char_ptr() const noexcept
Returns casted to pointer to char an address of data.
Definition mdbx.h++:4844
#define MDBX_STD_FILESYSTEM_PATH
Defined if mdbx::filesystem::path is available.
Definition mdbx.h++:395
static MDBX_NOTHROW_PURE_FUNCTION MDBX_CXX14_CONSTEXPR intptr_t compare_lexicographically(const slice &a, const slice &b) noexcept
Three-way lexicographically comparison.
Definition mdbx.h++:4979
buffer< ALLOCATOR, CAPACITY_POLICY > base58_decode(bool ignore_spaces=false, const ALLOCATOR &allocator=ALLOCATOR()) const
Decodes Base58 dump from the slice content to returned buffer.
Definition mdbx.h++:5051
filehandle get_filehandle() const
Returns the file descriptor for the DXB file of MDBX environment.
Definition mdbx.h++:5346
env & set_geometry(const geometry &size)
Set all size-related parameters of environment.
Definition mdbx.h++:5427
map_handle::info get_handle_info(map_handle map) const
Returns information about key-value map (aka table) handle.
Definition mdbx.h++:5713
void renew(const ::mdbx::txn &txn)
Renew/bind a cursor with a new transaction and previously used key-value map handle.
Definition mdbx.h++:6170
geometry & make_fixed(intptr_t size) noexcept
Definition mdbx.h++:5160
size_t release_all_cursors(bool unbind) const
Unbind or close all cursors.
Definition mdbx.h++:5606
MDBX_CXX11_CONSTEXPR bool is_failure() const noexcept
Definition mdbx.h++:4683
MDBX_CXX11_CONSTEXPR const build_info & get_build() noexcept
Returns libmdbx build information.
Definition mdbx.h++:4595
value_result try_update_reserve(const slice &key, size_t value_length)
Definition mdbx.h++:6270
map_handle open_map(const char *name, const ::mdbx::key_mode key_mode=::mdbx::key_mode::usual, const ::mdbx::value_mode value_mode=::mdbx::value_mode::single) const
Open existing key-value map.
Definition mdbx.h++:5622
buffer< default_allocator, default_capacity_policy > default_buffer
Default buffer.
Definition mdbx.h++:368
txn_managed try_start_write()
Tries to start write (read-write) transaction without blocking.
Definition mdbx.h++:5519
MDBX_CXX11_CONSTEXPR bool is_result_false() const noexcept
Definition mdbx.h++:4681
info get_info(bool scan_reader_lock_table=false) const
Returns information about the MDBX transaction.
Definition mdbx.h++:5594
pair_result get_equal_or_great(map_handle map, const slice &key) const
Get value for equal or great key from a table.
Definition mdbx.h++:5796
MDBX_NOTHROW_PURE_FUNCTION MDBX_CXX14_CONSTEXPR bool operator>=(const slice &a, const slice &b) noexcept
Definition mdbx.h++:5006
@ multi_reverse_samelength
Definition mdbx.h++:2917
@ multi_samelength
Definition mdbx.h++:2902
@ multi_ordinal
Definition mdbx.h++:2909
@ msgpack
Definition mdbx.h++:2932
@ single
Definition mdbx.h++:2885
@ multi
Definition mdbx.h++:2887
@ multi_reverse
Definition mdbx.h++:2894
@ upsert
Insert or update.
Definition mdbx.h++:3003
@ update
Update existing, don't insert new.
Definition mdbx.h++:3004
@ insert_unique
Insert only unique keys.
Definition mdbx.h++:3002
@ continue_loop
Definition mdbx.h++:2845
@ exit_loop
Definition mdbx.h++:2845
@ usual
Definition mdbx.h++:2849
@ ordinal
Definition mdbx.h++:2854
@ reverse
Definition mdbx.h++:2851
@ msgpack
Definition mdbx.h++:2859
A handle for an individual table (aka key-value space, maps or sub-database) in the environment.
Definition mdbx.h++:2970
MDBX_CXX11_CONSTEXPR size_t envisage_result_length() const noexcept
Returns the buffer size in bytes needed for Base58 dump of passed slice.
Definition mdbx.h++:1266
MDBX_CXX11_CONSTEXPR bool is_valid() const noexcept
Checks the slice is not refers to null address or has zero length.
Definition mdbx.h++:1001
MDBX_CXX14_CONSTEXPR ::std::span< const char > chars() const
Definition mdbx.h++:698
buffer< ALLOCATOR, CAPACITY_POLICY > as_buffer(const ALLOCATOR &allocator=ALLOCATOR()) const
Decodes Base58 dump from a passed slice to returned buffer.
Definition mdbx.h++:1405
buffer< ALLOCATOR, CAPACITY_POLICY > as_buffer(const ALLOCATOR &allocator=ALLOCATOR()) const
Returns a buffer with a hexadecimal dump of a passed slice.
Definition mdbx.h++:1211
constexpr slice(const ::std::basic_string< CHAR, T, A > &str)
Create a slice that refers to the contents of "str".
Definition mdbx.h++:664
const slice source
Definition mdbx.h++:1294
bool is_erroneous() const noexcept
Checks whether the content of a passed slice is a valid Base58 dump, and therefore there could be dec...
slice & assign(::std::basic_string_view< CHAR, T > &&view)
Definition mdbx.h++:732
MDBX_CXX11_CONSTEXPR slice(const slice &) noexcept=default
int8_t as_int8_adapt() const
MDBX_NOTHROW_PURE_FUNCTION constexpr bool is_reference() const noexcept
Checks whether one of the buffers just refers to data located outside the buffer, rather than stores ...
Definition mdbx.h++:2822
static MDBX_CXX11_CONSTEXPR size_t advise(const size_t current, const size_t wanna)
Definition mdbx.h++:1175
buffer< ALLOCATOR, CAPACITY_POLICY > buffer_type
Definition mdbx.h++:2771
@ max_length
Definition mdbx.h++:642
MDBX_NOTHROW_PURE_FUNCTION constexpr bool is_freestanding() const noexcept
Checks whether data chunk stored inside the buffers both, otherwise at least one of buffers just refe...
Definition mdbx.h++:2817
slice & operator=(::std::basic_string_view< CHAR, T > &&view)
Definition mdbx.h++:750
MDBX_CXX14_CONSTEXPR ::std::span< const POD > as_span() const
Definition mdbx.h++:678
buffer_pair_spec(buffer_pair_spec &&pair) noexcept(buffer_type::move_assign_alloc::is_nothrow())
Definition mdbx.h++:2812
buffer< ALLOCATOR, CAPACITY_POLICY > as_buffer(const ALLOCATOR &allocator=ALLOCATOR()) const
Returns a buffer with a Base58 dump of a passed slice.
Definition mdbx.h++:1260
const bool ignore_spaces
Definition mdbx.h++:1389
MDBX_NOTHROW_PURE_FUNCTION bool is_printable(bool disable_utf8=false) const noexcept
Checks whether the content of the slice is printable.
void swap(::std::basic_string_view< CHAR, T > &view) noexcept
Definition mdbx.h++:857
MDBX_CXX14_CONSTEXPR uint8_t as_uint8() const
Definition mdbx.h++:1025
value_result & operator=(const value_result &) noexcept=default
MDBX_CXX11_CONSTEXPR to_base58(const slice &source, unsigned wrap_width=0) noexcept
Definition mdbx.h++:1246
buffer_type value
Definition mdbx.h++:2776
MDBX_CXX14_CONSTEXPR uint64_t as_uint64() const
Definition mdbx.h++:1022
int128_t as_int128_adapt() const
char * write_bytes(char *dest, size_t dest_size) const
Fills the destination with data decoded from Base64 dump from a passed slice.
string< ALLOCATOR > as_string(const ALLOCATOR &allocator=ALLOCATOR()) const
Decodes Base58 dump from a passed slice to returned string.
Definition mdbx.h++:1398
string< ALLOCATOR > as_string(const ALLOCATOR &allocator=ALLOCATOR()) const
Decodes Base64 dump from a passed slice to returned string.
Definition mdbx.h++:1444
slice value
Definition mdbx.h++:2714
::std::ostream & output(::std::ostream &out) const
Output Base64 dump of passed slice to the std::ostream.
MDBX_CXX11_CONSTEXPR pair_result(const slice &key, const slice &value, bool done) noexcept
Definition mdbx.h++:2760
bool is_empty() const noexcept
Checks whether a passed slice is empty, and therefore there will be no output bytes.
Definition mdbx.h++:1233
static MDBX_CXX14_CONSTEXPR slice wrap(const char(&text)[SIZE])
Definition mdbx.h++:710
MDBX_CXX14_CONSTEXPR slice(const ::std::span< POD > &span)
Definition mdbx.h++:673
buffer_pair_spec(const slice &key, const slice &value, const allocator_type &allocator=allocator_type())
Definition mdbx.h++:2793
slice value
Definition mdbx.h++:2729
::std::pair< buffer_type, buffer_type > stl_pair
Definition mdbx.h++:2775
::std::ostream & output(::std::ostream &out) const
Output hexadecimal dump of passed slice to the std::ostream.
pair_result(const pair_result &) noexcept=default
MDBX_CXX11_CONSTEXPR slice(size_t invalid_length) noexcept
Definition mdbx.h++:1052
const slice source
Definition mdbx.h++:1388
const slice source
Definition mdbx.h++:1195
const unsigned wrap_width
Definition mdbx.h++:1197
buffer_pair_spec(const txn &txn, const pair &pair, const allocator_type &allocator=allocator_type())
Definition mdbx.h++:2807
buffer< ALLOCATOR, CAPACITY_POLICY > as_buffer(const ALLOCATOR &allocator=ALLOCATOR()) const
Decodes hexadecimal dump from a passed slice to returned buffer.
Definition mdbx.h++:1363
slice & assign(const ::std::basic_string< CHAR, T, ALLOCATOR > &str)
Definition mdbx.h++:724
const bool ignore_spaces
Definition mdbx.h++:1349
char * write_bytes(char *dest, size_t dest_size) const
Fills the destination with data decoded from Base58 dump from a passed slice.
pair & operator=(const pair &) noexcept=default
bool is_empty() const noexcept
Checks whether a passed slice is empty, and therefore there will be no output bytes.
Definition mdbx.h++:1467
uint16_t as_uint16_adapt() const
static MDBX_CXX14_CONSTEXPR slice invalid() noexcept
Build an invalid slice which non-zero length and refers to null address.
Definition mdbx.h++:1005
buffer< ALLOCATOR, CAPACITY_POLICY > as_buffer(const ALLOCATOR &allocator=ALLOCATOR()) const
Returns a buffer with a Base64 dump of a passed slice.
Definition mdbx.h++:1311
buffer_pair_spec(const slice &key, const slice &value, bool make_reference, const allocator_type &allocator=allocator_type())
Definition mdbx.h++:2795
slice & operator=(const ::std::basic_string_view< CHAR, T > &view)
Definition mdbx.h++:746
std::pair< slice, slice > stl_pair
Definition mdbx.h++:2728
value_result(const value_result &) noexcept=default
MDBX_CXX11_CONSTEXPR pair_result() noexcept
Definition mdbx.h++:2759
@ pettiness_threshold
Definition mdbx.h++:1165
@ extra_inplace_storage
Definition mdbx.h++:1165
@ max_reserve
Definition mdbx.h++:1165
string< ALLOCATOR > as_string(const ALLOCATOR &allocator=ALLOCATOR()) const
Returns a string with a hexadecimal dump of a passed slice.
Definition mdbx.h++:1205
buffer_pair_spec(const stl_pair &pair, bool make_reference, const allocator_type &allocator=allocator_type())
Definition mdbx.h++:2790
MDBX_CXX14_CONSTEXPR ::std::span< const byte > bytes() const
Definition mdbx.h++:696
buffer_type key
Definition mdbx.h++:2776
MDBX_CXX14_CONSTEXPR int16_t as_int16() const
Definition mdbx.h++:1032
MDBX_CXX14_CONSTEXPR ::std::span< char > chars()
Definition mdbx.h++:699
bool is_empty() const noexcept
Checks whether a passed slice is empty, and therefore there will be no output bytes.
Definition mdbx.h++:1284
value_result(const slice &value, bool done) noexcept
Definition mdbx.h++:2716
bool is_empty() const noexcept
Checks whether a passed slice is empty, and therefore there will be no output bytes.
Definition mdbx.h++:1423
const slice source
Definition mdbx.h++:1243
MDBX_CXX11_CONSTEXPR pair(const stl_pair &couple) noexcept
Definition mdbx.h++:2731
MDBX_CXX14_CONSTEXPR ::std::span< byte > bytes()
Definition mdbx.h++:697
MDBX_CXX14_CONSTEXPR ::std::span< POD > as_span()
Definition mdbx.h++:687
MDBX_CXX11_CONSTEXPR from_hex(const slice &source, bool ignore_spaces=false) noexcept
Definition mdbx.h++:1350
bool is_erroneous() const noexcept
Checks whether the content of a passed slice is a valid data and could be encoded or unexpectedly not...
Definition mdbx.h++:1237
uint8_t as_uint8_adapt() const
string< ALLOCATOR > as_string(const ALLOCATOR &allocator=ALLOCATOR()) const
Decodes hexadecimal dump from a passed slice to returned string.
Definition mdbx.h++:1357
buffer_pair_spec(const txn &txn, const slice &key, const slice &value, const allocator_type &allocator=allocator_type())
Definition mdbx.h++:2804
slice & assign(const ::std::basic_string_view< CHAR, T > &view)
Definition mdbx.h++:729
MDBX_CXX14_CONSTEXPR uint128_t as_uint128() const
Definition mdbx.h++:1020
bool is_empty() const noexcept
Checks whether a passed slice is empty, and therefore there will be no output bytes.
Definition mdbx.h++:1378
int32_t as_int32_adapt() const
MDBX_CXX11_CONSTEXPR size_t envisage_result_length() const noexcept
Returns the buffer size in bytes needed for hexadecimal dump of a passed slice.
Definition mdbx.h++:1217
string< ALLOCATOR > as_string(const ALLOCATOR &allocator=ALLOCATOR()) const
Returns a string with a Base64 dump of a passed slice.
Definition mdbx.h++:1304
MDBX_CXX11_CONSTEXPR size_t envisage_result_length() const noexcept
Returns the number of bytes needed for conversion Base58 dump from a passed slice to decoded data.
Definition mdbx.h++:1412
buffer_pair_spec(const buffer_type &key, const buffer_type &value, const allocator_type &allocator=allocator_type())
Definition mdbx.h++:2782
MDBX_CXX11_CONSTEXPR to_hex(const slice &source, bool uppercase=false, unsigned wrap_width=0) noexcept
Definition mdbx.h++:1198
char * write_bytes(char *dest, size_t dest_size) const
Fills the buffer by hexadecimal dump of a passed slice.
MDBX_CXX11_CONSTEXPR to_base64(const slice &source, unsigned wrap_width=0) noexcept
Definition mdbx.h++:1297
MDBX_CXX11_CONSTEXPR ::std::basic_string_view< CHAR, T > string_view() const noexcept
Return a string_view that references the same data as this slice.
Definition mdbx.h++:754
MDBX_CXX14_CONSTEXPR uint32_t as_uint32() const
Definition mdbx.h++:1023
bool done
Definition mdbx.h++:2758
::std::ostream & output(::std::ostream &out) const
Output Base58 dump of passed slice to the std::ostream.
bool is_erroneous() const noexcept
Checks whether the content of a passed slice is a valid data and could be encoded or unexpectedly not...
Definition mdbx.h++:1288
buffer_pair_spec(const pair &pair, bool make_reference, const allocator_type &allocator=allocator_type())
Definition mdbx.h++:2801
MDBX_CXX14_CONSTEXPR int8_t as_int8() const
Definition mdbx.h++:1033
buffer< ALLOCATOR, CAPACITY_POLICY > as_buffer(const ALLOCATOR &allocator=ALLOCATOR()) const
Decodes Base64 dump from a passed slice to returned buffer.
Definition mdbx.h++:1451
MDBX_CXX11_CONSTEXPR size_t envisage_result_length() const noexcept
Returns the number of bytes needed for conversion Base64 dump from a passed slice to decoded data.
Definition mdbx.h++:1458
const bool uppercase
Definition mdbx.h++:1196
static MDBX_CXX11_CONSTEXPR size_t round(const size_t value)
Definition mdbx.h++:1167
MDBX_CXX14_CONSTEXPR int64_t as_int64() const
Definition mdbx.h++:1030
void make_freestanding()
Makes buffers owning the data.
Definition mdbx.h++:2828
const bool ignore_spaces
Definition mdbx.h++:1435
pair(const pair &) noexcept=default
bool is_erroneous() const noexcept
Checks whether the content of a passed slice is a valid Base64 dump, and therefore there could be dec...
slice & operator=(const slice &) noexcept=default
uint128_t as_uint128_adapt() const
slice key
Definition mdbx.h++:2729
const slice source
Definition mdbx.h++:1434
pair_result & operator=(const pair_result &) noexcept=default
string< ALLOCATOR > as_string(const ALLOCATOR &allocator=ALLOCATOR()) const
Returns a string with a Base58 dump of a passed slice.
Definition mdbx.h++:1253
bool is_empty() const noexcept
Checks whether a passed slice is empty, and therefore there will be no output bytes.
Definition mdbx.h++:1335
MDBX_CXX14_CONSTEXPR int32_t as_int32() const
Definition mdbx.h++:1031
typename buffer_type::allocator_traits allocator_traits
Definition mdbx.h++:2773
char * write_bytes(char *dest, size_t dest_size) const
Fills the destination with data decoded from hexadecimal dump from a passed slice.
MDBX_CXX11_CONSTEXPR size_t envisage_result_length() const noexcept
Returns the number of bytes needed for conversion hexadecimal dump from a passed slice to decoded dat...
Definition mdbx.h++:1369
MDBX_CXX14_CONSTEXPR POD as_pod() const
Definition mdbx.h++:1007
static MDBX_CXX14_CONSTEXPR pair invalid() noexcept
Definition mdbx.h++:2739
int64_t as_int64_adapt() const
buffer_pair_spec(const stl_pair &pair, const allocator_type &allocator=allocator_type())
Definition mdbx.h++:2788
constexpr ::std::basic_string< CHAR, T, ALLOCATOR > as_string(const ALLOCATOR &allocator=ALLOCATOR()) const
Definition mdbx.h++:768
MDBX_CXX11_CONSTEXPR pair(const slice &key, const slice &value) noexcept
Definition mdbx.h++:2730
CAPACITY_POLICY reservation_policy
Definition mdbx.h++:2774
MDBX_CXX14_CONSTEXPR slice(const ::std::basic_string_view< CHAR, T > &sv)
Create a slice that refers to the same contents as "string_view".
Definition mdbx.h++:705
MDBX_CXX14_CONSTEXPR uint16_t as_uint16() const
Definition mdbx.h++:1024
bool is_erroneous() const noexcept
Checks whether the content of a passed slice is a valid hexadecimal dump, and therefore there could b...
MDBX_CXX11_CONSTEXPR from_base64(const slice &source, bool ignore_spaces=false) noexcept
Definition mdbx.h++:1436
const unsigned wrap_width
Definition mdbx.h++:1244
MDBX_CXX11_CONSTEXPR from_base58(const slice &source, bool ignore_spaces=false) noexcept
Definition mdbx.h++:1390
const unsigned wrap_width
Definition mdbx.h++:1295
uint32_t as_uint32_adapt() const
buffer_pair_spec(const pair &pair, const allocator_type &allocator=allocator_type())
Definition mdbx.h++:2799
char * write_bytes(char *dest, size_t dest_size) const
Fills the buffer by Base64 dump of passed slice.
buffer_pair_spec(buffer_type &&key, buffer_type &&value) noexcept(buffer_type::move_assign_alloc::is_nothrow())
Definition mdbx.h++:2810
static MDBX_CXX14_CONSTEXPR slice wrap(const POD &pod)
Definition mdbx.h++:712
MDBX_CXX11_CONSTEXPR size_t envisage_result_length() const noexcept
Returns the buffer size in bytes needed for Base64 dump of passed slice.
Definition mdbx.h++:1317
int16_t as_int16_adapt() const
MDBX_CXX14_CONSTEXPR int128_t as_int128() const
Definition mdbx.h++:1028
typename buffer_type::allocator_type allocator_type
Definition mdbx.h++:2772
bool is_erroneous() const noexcept
Checks whether the content of a passed slice is a valid data and could be encoded or unexpectedly not...
Definition mdbx.h++:1339
uint64_t as_uint64_adapt() const
constexpr buffer_pair_spec() noexcept=default
buffer_pair_spec(const buffer_type &key, const buffer_type &value, bool make_reference, const allocator_type &allocator=allocator_type())
Definition mdbx.h++:2784
slice(::std::basic_string_view< CHAR, T > &&sv)
Definition mdbx.h++:707
bool done
Definition mdbx.h++:2715
char * write_bytes(char *dest, size_t dest_size) const
Fills the buffer by Base58 dump of passed slice.
const slice source
Definition mdbx.h++:1348
buffer< ALLOCATOR, CAPACITY_POLICY > make_buffer(PRODUCER &producer, const ALLOCATOR &allocator=ALLOCATOR())
Definition mdbx.h++:2668
inline ::std::ostream & operator<<(::std::ostream &out, const to_hex &wrapper)
Definition mdbx.h++:1342
string< ALLOCATOR > make_string(PRODUCER &producer, const ALLOCATOR &allocator=ALLOCATOR())
Definition mdbx.h++:2690
buffer_pair_spec< typename BUFFER::allocator_type, typename BUFFER::reservation_policy > buffer_pair
Definition mdbx.h++:2837
Base58 decoder which satisfy SliceTranscoder concept.
Definition mdbx.h++:1387
Base64 decoder which satisfy SliceTranscoder concept.
Definition mdbx.h++:1433
Hexadecimal decoder which satisfy SliceTranscoder concept.
Definition mdbx.h++:1347
Combines pair of slices for key and value to represent result of certain operations.
Definition mdbx.h++:2727
Combines pair of slices for key and value with boolean flag to represent result of certain operations...
Definition mdbx.h++:2757
References a data located outside the slice.
Definition mdbx.h++:637
Base58 encoder which satisfy SliceTranscoder concept.
Definition mdbx.h++:1242
Base64 encoder which satisfy SliceTranscoder concept.
Definition mdbx.h++:1293
Hexadecimal encoder which satisfy SliceTranscoder concept.
Definition mdbx.h++:1194
Combines data slice with boolean flag to represent result of certain operations.
Definition mdbx.h++:2713
incompatible_operation(const ::mdbx::error &)
fatal(exception &&src) noexcept
Definition mdbx.h++:518
remote_media(const ::mdbx::error &)
dangling_map_id(const ::mdbx::error &)
fatal(const ::mdbx::error &) noexcept
reader_slot_busy(const ::mdbx::error &)
exception(const exception &)=default
MDBX_CXX11_CONSTEXPR friend bool operator!=(const error &a, const error &b) noexcept
Definition mdbx.h++:4675
::std::string message() const
Returns message for any errors.
not_found(const ::mdbx::error &)
operation_not_permitted(const ::mdbx::error &)
key_exists(const ::mdbx::error &)
permission_denied_or_not_writeable(const ::mdbx::error &)
void throw_exception() const
fatal(const exception &src) noexcept
Definition mdbx.h++:517
no_data(const ::mdbx::error &)
transaction_full(const ::mdbx::error &)
exception(exception &&)=default
db_too_large(const ::mdbx::error &)
bad_map_id(const ::mdbx::error &)
transaction_overlapping(const ::mdbx::error &)
void panic(const char *context_where_when, const char *func_who_what) const noexcept
Panics on unrecoverable errors inside destructors etc.
static void success_or_throw(int error_code)
Definition mdbx.h++:483
db_full(const ::mdbx::error &)
duplicated_lck_file(const ::mdbx::error &)
const ::mdbx::error error() const noexcept
Definition mdbx.h++:507
error(const error &)=default
virtual ~fatal() noexcept
something_busy(const ::mdbx::error &)
fatal & operator=(fatal &&)=default
const char * what() const noexcept
Returns message for MDBX's errors only and "SYSTEM" for others.
fatal(const fatal &src) noexcept
Definition mdbx.h++:519
MDBX_CXX11_CONSTEXPR friend bool operator==(const error &a, const error &b) noexcept
Definition mdbx.h++:4673
transaction_ousted(const ::mdbx::error &)
key_mismatch(const ::mdbx::error &)
db_invalid(const ::mdbx::error &)
exception & operator=(exception &&)=default
db_wanna_write_for_recovery(const ::mdbx::error &)
error & operator=(error &&)=default
bad_transaction(const ::mdbx::error &)
internal_problem(const ::mdbx::error &)
multivalue(const ::mdbx::error &)
fatal(fatal &&src) noexcept
Definition mdbx.h++:520
fatal & operator=(const fatal &)=default
max_readers_reached(const ::mdbx::error &)
db_version_mismatch(const ::mdbx::error &)
exception_thunk() noexcept=default
exception & operator=(const exception &)=default
exception(const ::mdbx::error &) noexcept
db_unable_extend(const ::mdbx::error &)
error & operator=(const error &)=default
virtual ~exception() noexcept
thread_mismatch(const ::mdbx::error &)
db_corrupted(const ::mdbx::error &)
internal_page_full(const ::mdbx::error &)
mvcc_retarded(const ::mdbx::error &)
max_maps_reached(const ::mdbx::error &)
bad_value_size(const ::mdbx::error &)
Implements error information and throwing corresponding exceptions.
Definition mdbx.h++:442
Transfers C++ exceptions thru C callbacks.
Definition mdbx.h++:427
LIBMDBX_API void throw_allocators_mismatch()
#define MDBX_DECLARE_EXCEPTION(NAME)
Definition mdbx.h++:526
LIBMDBX_API void throw_incomparable_cursors()
LIBMDBX_API void throw_out_range()
LIBMDBX_API void throw_bad_value_size()
LIBMDBX_API void throw_max_length_exceeded()
LIBMDBX_API void throw_too_small_target_buffer()
uint64_t mdbx_key_from_int64(const int64_t i64)
Definition mdbx.h:4678
LIBMDBX_API uint32_t mdbx_key_from_ptrfloat(const float *const ieee754_32bit)
LIBMDBX_API uint64_t mdbx_key_from_double(const double ieee754_64bit)
LIBMDBX_API uint32_t mdbx_key_from_float(const float ieee754_32bit)
LIBMDBX_API uint64_t mdbx_key_from_ptrdouble(const double *const ieee754_64bit)
uint32_t mdbx_key_from_int32(const int32_t i32)
Definition mdbx.h:4682
LIBMDBX_API uint64_t mdbx_key_from_jsonInteger(const int64_t json_integer)
#define MDBX_CXX20_CONSTEXPR
Definition mdbx.h++:166
#define MDBX_CXX17_FALLTHROUGH
Definition mdbx.h++:226
#define MDBX_ASSERT_CXX20_CONCEPT_SATISFIED(CONCEPT, TYPE)
Definition mdbx.h++:266
#define MDBX_LIKELY(cond)
Definition mdbx.h++:200
#define MDBX_CXX11_CONSTEXPR_ENUM
Definition mdbx.h++:176
#define MDBX_UNLIKELY(cond)
Definition mdbx.h++:208
#define MDBX_CXX17_CONSTEXPR
Definition mdbx.h++:154
#define MDBX_CONSTEXPR_ASSERT(expr)
Definition mdbx.h++:195
#define MDBX_IF_CONSTEXPR
Definition mdbx.h++:217
#define MDBX_CXX01_CONSTEXPR_ENUM
Definition mdbx.h++:175
#define MDBX_CXX20_LIKELY
Definition mdbx.h++:232
The libmdbx C API header file.
constexpr bool allocator_is_always_equal() noexcept
Definition mdbx.h++:1059
The libmdbx C++ API namespace.
Definition mdbx.h++:299
constexpr allocated(allocator_pointer ptr, size_t bytes) noexcept
Definition mdbx.h++:1536
constexpr allocated(const allocated &) noexcept=default
constexpr allocated(allocated &&) noexcept=default
allocator_pointer ptr_
Definition mdbx.h++:1534
size_t capacity_bytes_
Definition mdbx.h++:1535
estimate_result(const cursor &cursor, move_operation operation)
Definition mdbx.h++:4264
estimate_result & operator=(const estimate_result &) noexcept=default
ptrdiff_t approximate_quantity
Definition mdbx.h++:4263
estimate_result(const estimate_result &) noexcept=default
estimate_result(const cursor &cursor, move_operation operation, const slice &key)
Definition mdbx.h++:4266
move_result & operator=(const move_result &) noexcept=default
move_result(const move_result &) noexcept=default
move_result(cursor &cursor, move_operation operation, const slice &key, bool throw_notfound)
Definition mdbx.h++:4254
move_result(cursor &cursor, move_operation operation, bool throw_notfound)
Definition mdbx.h++:4252
Tagged type for output to std::ostream.
Definition mdbx.h++:3067
MDBX_CXX11_CONSTEXPR size(intptr_t bytes) noexcept
Definition mdbx.h++:3069
intptr_t bytes
Definition mdbx.h++:3068
Database geometry for size management.
Definition mdbx.h++:3043
MDBX_CXX11_CONSTEXPR geometry() noexcept
Definition mdbx.h++:3109
intptr_t size_upper
The upper bound of database size in bytes.
Definition mdbx.h++:3091
intptr_t pagesize
The database page size for new database creation or default_value otherwise.
Definition mdbx.h++:3105
@ GB
bytes (0x3B9A_CA00)
Definition mdbx.h++:3050
@ minimal_value
Means "minimal acceptable".
Definition mdbx.h++:3046
@ MB
bytes (0x000F_4240)
Definition mdbx.h++:3049
@ GiB
bytes (0x4000_0000)
Definition mdbx.h++:3058
@ maximal_value
Means "maximal acceptable".
Definition mdbx.h++:3047
@ default_value
Means "keep current or use default".
Definition mdbx.h++:3045
@ kB
bytes (0x03E8)
Definition mdbx.h++:3048
@ MiB
bytes (0x0010_0000)
Definition mdbx.h++:3057
@ KiB
bytes (0x0400)
Definition mdbx.h++:3056
intptr_t growth_step
The growth step in bytes, must be greater than zero to allow the database to grow.
Definition mdbx.h++:3095
MDBX_CXX11_CONSTEXPR geometry(const geometry &) noexcept=default
intptr_t size_now
The size in bytes to setup the database size for now.
Definition mdbx.h++:3079
intptr_t shrink_threshold
The shrink threshold in bytes, must be greater than zero to allow the database to shrink.
Definition mdbx.h++:3099
intptr_t size_lower
The lower bound of database size in bytes.
Definition mdbx.h++:3074
MDBX_CXX11_CONSTEXPR geometry(intptr_t size_lower, intptr_t size_now=default_value, intptr_t size_upper=default_value, intptr_t growth_step=default_value, intptr_t shrink_threshold=default_value, intptr_t pagesize=default_value) noexcept
Definition mdbx.h++:3112
Operate options.
Definition mdbx.h++:3149
bool disable_readahead
Definition mdbx.h++:3158
bool enable_validation
Definition mdbx.h++:3162
bool no_sticky_threads
Definition mdbx.h++:3151
bool disable_clear_memory
Definition mdbx.h++:3160
bool exclusive
Definition mdbx.h++:3156
bool nested_write_transactions
Разрешает вложенные транзакции ценой отключения MDBX_WRITEMAP и увеличением накладных расходов.
Definition mdbx.h++:3154
operate_options(MDBX_env_flags_t) noexcept
MDBX_CXX14_CONSTEXPR operate_options & operator=(const operate_options &) noexcept=default
MDBX_CXX11_CONSTEXPR operate_options() noexcept
Definition mdbx.h++:3163
MDBX_CXX11_CONSTEXPR operate_options(const operate_options &) noexcept=default
Operate parameters.
Definition mdbx.h++:3171
env::durability durability
Definition mdbx.h++:3179
MDBX_CXX14_CONSTEXPR operate_parameters & operator=(const operate_parameters &) noexcept=default
env::operate_options options
Definition mdbx.h++:3181
static env::mode mode_from_flags(MDBX_env_flags_t) noexcept
MDBX_CXX11_CONSTEXPR operate_parameters(const unsigned max_maps, const unsigned max_readers=0, const env::mode mode=env::mode::write_mapped_io, env::durability durability=env::durability::robust_synchronous, const env::reclaiming_options &reclaiming=env::reclaiming_options(), const env::operate_options &options=env::operate_options()) noexcept
Definition mdbx.h++:3185
MDBX_CXX11_CONSTEXPR operate_parameters(const operate_parameters &) noexcept=default
MDBX_CXX11_CONSTEXPR operate_parameters() noexcept
Definition mdbx.h++:3183
unsigned max_readers
The maximum number of threads/reader slots for the environment. Zero means default value.
Definition mdbx.h++:3177
env::reclaiming_options reclaiming
Definition mdbx.h++:3180
env::mode mode
Definition mdbx.h++:3178
static env::durability durability_from_flags(MDBX_env_flags_t) noexcept
unsigned max_maps
The maximum number of named tables/maps for the environment. Zero means default value.
Definition mdbx.h++:3174
MDBX_env_flags_t make_flags(bool accede=true, bool use_subdirectory=false) const
Reader information.
Definition mdbx.h++:3569
mdbx_tid_t thread
The reader thread ID.
Definition mdbx.h++:3572
uint64_t transaction_lag
Definition mdbx.h++:3575
size_t bytes_used
Definition mdbx.h++:3579
uint64_t transaction_id
Definition mdbx.h++:3573
int slot
The reader lock table slot number.
Definition mdbx.h++:3570
mdbx_pid_t pid
The reader process ID.
Definition mdbx.h++:3571
size_t bytes_retained
Definition mdbx.h++:3582
Garbage reclaiming options.
Definition mdbx.h++:3136
MDBX_CXX11_CONSTEXPR reclaiming_options(const reclaiming_options &) noexcept=default
bool coalesce
Definition mdbx.h++:3140
reclaiming_options(MDBX_env_flags_t) noexcept
MDBX_CXX11_CONSTEXPR reclaiming_options() noexcept
Definition mdbx.h++:3141
MDBX_CXX14_CONSTEXPR reclaiming_options & operator=(const reclaiming_options &) noexcept=default
bool lifo
Definition mdbx.h++:3138
Additional parameters for creating a new database.
Definition mdbx.h++:3678
mdbx_mode_t file_mode_bits
Definition mdbx.h++:3680
MDBX_CXX11_CONSTEXPR create_parameters() noexcept=default
bool use_subdirectory
Definition mdbx.h++:3681
env::geometry geometry
Definition mdbx.h++:3679
map_handle::state state
Definition mdbx.h++:2983
info(const info &) noexcept=default
map_handle::flags flags
Definition mdbx.h++:2982
info & operator=(const info &) noexcept=default
constexpr bool is_inplace() const noexcept
Definition mdbx.h++:1561
static constexpr size_t advise_capacity(const size_t current, const size_t wanna)
Definition mdbx.h++:1649
constexpr bin & operator=(const bin &ditto) noexcept
Definition mdbx.h++:1626
allocated allocated_
Definition mdbx.h++:1543
constexpr bin(size_t capacity_bytes=0) noexcept
Definition mdbx.h++:1599
static constexpr bool is_suitable_for_inplace(size_t capacity_bytes) noexcept
Definition mdbx.h++:1547
constexpr byte inplace_lastbyte() const noexcept
Definition mdbx.h++:1558
constexpr bool is_allocated() const noexcept
Definition mdbx.h++:1568
constexpr bin(bin &&ditto) noexcept
Definition mdbx.h++:1613
constexpr byte & inplace_lastbyte() noexcept
Definition mdbx.h++:1559
constexpr bin(allocator_pointer ptr, size_t capacity_bytes) noexcept
Definition mdbx.h++:1604
constexpr size_t capacity() const noexcept
Definition mdbx.h++:1664
constexpr ~bin()
Definition mdbx.h++:1608
uint64_t align_hint_
Definition mdbx.h++:1544
constexpr const byte * address() const noexcept
Definition mdbx.h++:1658
constexpr byte * make_allocated(allocator_pointer ptr, size_t capacity_bytes) noexcept
Definition mdbx.h++:1585
@ inplace_signature_limit
Definition mdbx.h++:1554
byte inplace_[(sizeof(allocated)+extra_inplace_storage+7u) &~size_t(7)]
Definition mdbx.h++:1545
constexpr byte * address() noexcept
Definition mdbx.h++:1661
constexpr bin & operator=(bin &&ditto) noexcept
Definition mdbx.h++:1642
@ lastbyte_inplace_signature
Definition mdbx.h++:1552
constexpr byte * make_inplace() noexcept
Definition mdbx.h++:1570