1use crate::{
2 database::Database,
3 error::{mdbx_result, Error, Result},
4 flags::EnvironmentFlags,
5 transaction::{RO, RW},
6 txn_manager::{TxnManager, TxnManagerMessage, TxnPtr},
7 txn_pool::ReadTxnPool,
8 Mode, SyncMode, Transaction, TransactionKind,
9};
10use byteorder::{ByteOrder, NativeEndian};
11use mem::size_of;
12use std::{
13 ffi::CString,
14 fmt::{self, Debug},
15 mem,
16 ops::{Bound, RangeBounds},
17 path::Path,
18 ptr,
19 sync::{mpsc::sync_channel, Arc},
20 thread::sleep,
21 time::Duration,
22};
23use tracing::warn;
24
25#[cfg(feature = "read-tx-timeouts")]
27const DEFAULT_MAX_READ_TRANSACTION_DURATION: Duration = Duration::from_secs(5 * 60);
28
29#[derive(Clone)]
34pub struct Environment {
35 inner: Arc<EnvironmentInner>,
36}
37
38impl Environment {
39 pub fn builder() -> EnvironmentBuilder {
41 EnvironmentBuilder {
42 flags: EnvironmentFlags::default(),
43 max_readers: None,
44 max_dbs: None,
45 sync_bytes: None,
46 sync_period: None,
47 rp_augment_limit: None,
48 loose_limit: None,
49 dp_reserve_limit: None,
50 txn_dp_limit: None,
51 spill_max_denominator: None,
52 spill_min_denominator: None,
53 geometry: None,
54 log_level: None,
55 kind: Default::default(),
56 handle_slow_readers: None,
57 #[cfg(feature = "read-tx-timeouts")]
58 max_read_transaction_duration: None,
59 }
60 }
61
62 #[inline]
64 pub fn is_write_map(&self) -> bool {
65 self.inner.env_kind.is_write_map()
66 }
67
68 #[inline]
70 pub fn env_kind(&self) -> EnvironmentKind {
71 self.inner.env_kind
72 }
73
74 #[inline]
76 pub fn is_read_write(&self) -> Result<bool> {
77 Ok(!self.is_read_only()?)
78 }
79
80 #[inline]
82 pub fn is_read_only(&self) -> Result<bool> {
83 Ok(matches!(self.info()?.mode(), Mode::ReadOnly))
84 }
85
86 #[inline]
88 pub(crate) fn txn_manager(&self) -> &TxnManager {
89 &self.inner.txn_manager
90 }
91
92 #[cfg(feature = "read-tx-timeouts")]
94 pub fn timed_out_not_aborted_transactions(&self) -> usize {
95 self.inner.txn_manager.timed_out_not_aborted_read_transactions().unwrap_or(0)
96 }
97
98 #[inline]
103 pub fn begin_ro_txn(&self) -> Result<Transaction<RO>> {
104 if let Some(txn_ptr) = self.inner.ro_txn_pool.pop() {
105 return Ok(Transaction::new_from_ptr(self.clone(), txn_ptr));
106 }
107 Transaction::new(self.clone())
108 }
109
110 #[inline]
112 pub(crate) fn ro_txn_pool(&self) -> &ReadTxnPool {
113 &self.inner.ro_txn_pool
114 }
115
116 pub fn begin_rw_txn(&self) -> Result<Transaction<RW>> {
119 let mut warned = false;
120 let txn = loop {
121 let (tx, rx) = sync_channel(0);
122 self.txn_manager().send_message(TxnManagerMessage::Begin {
123 parent: TxnPtr(ptr::null_mut()),
124 flags: RW::OPEN_FLAGS,
125 sender: tx,
126 });
127 let res = rx.recv().unwrap();
128 if matches!(&res, Err(Error::Busy)) {
129 if !warned {
130 warned = true;
131 warn!(target: "libmdbx", "Process stalled, awaiting read-write transaction lock.");
132 }
133 sleep(Duration::from_millis(250));
134 continue
135 }
136
137 break res
138 }?;
139 Ok(Transaction::new_from_ptr(self.clone(), txn.0))
140 }
141
142 #[inline]
147 pub(crate) fn env_ptr(&self) -> *mut ffi::MDBX_env {
148 self.inner.env
149 }
150
151 #[inline]
157 #[doc(hidden)]
158 pub fn with_raw_env_ptr<F, T>(&self, f: F) -> T
159 where
160 F: FnOnce(*mut ffi::MDBX_env) -> T,
161 {
162 f(self.env_ptr())
163 }
164
165 pub fn sync(&self, force: bool) -> Result<bool> {
167 mdbx_result(unsafe { ffi::mdbx_env_sync_ex(self.env_ptr(), force, false) })
168 }
169
170 pub fn stat(&self) -> Result<Stat> {
172 unsafe {
173 let mut stat = Stat::new();
174 mdbx_result(ffi::mdbx_env_stat_ex(
175 self.env_ptr(),
176 ptr::null(),
177 stat.mdbx_stat(),
178 size_of::<Stat>(),
179 ))?;
180 Ok(stat)
181 }
182 }
183
184 pub fn info(&self) -> Result<Info> {
186 unsafe {
187 let mut info = Info(mem::zeroed());
188 mdbx_result(ffi::mdbx_env_info_ex(
189 self.env_ptr(),
190 ptr::null(),
191 &mut info.0,
192 size_of::<Info>(),
193 ))?;
194 Ok(info)
195 }
196 }
197
198 pub fn freelist(&self) -> Result<usize> {
224 let mut freelist: usize = 0;
225 let txn = self.begin_ro_txn()?;
226 let db = Database::freelist_db();
227 let cursor = txn.cursor(db.dbi())?;
228
229 for result in cursor.iter_slices() {
230 let (_key, value) = result?;
231 if value.len() < size_of::<u32>() {
232 return Err(Error::Corrupted)
233 }
234 let s = &value[..size_of::<u32>()];
235 freelist += NativeEndian::read_u32(s) as usize;
236 }
237
238 Ok(freelist)
239 }
240}
241
242struct EnvironmentInner {
247 env: *mut ffi::MDBX_env,
251 env_kind: EnvironmentKind,
253 txn_manager: TxnManager,
255 ro_txn_pool: ReadTxnPool,
257}
258
259impl Drop for EnvironmentInner {
260 fn drop(&mut self) {
261 self.ro_txn_pool.drain();
263
264 unsafe {
266 ffi::mdbx_env_close_ex(self.env, false);
267 }
268 }
269}
270
271unsafe impl Send for EnvironmentInner {}
274unsafe impl Sync for EnvironmentInner {}
275
276#[derive(Debug, Clone, Copy, PartialEq, Eq, Default)]
280pub enum EnvironmentKind {
281 #[default]
283 Default,
284 WriteMap,
295}
296
297impl EnvironmentKind {
298 #[inline]
300 pub const fn is_write_map(&self) -> bool {
301 matches!(self, Self::WriteMap)
302 }
303
304 pub(crate) const fn extra_flags(&self) -> ffi::MDBX_env_flags_t {
306 match self {
307 Self::Default => ffi::MDBX_ENV_DEFAULTS,
308 Self::WriteMap => ffi::MDBX_WRITEMAP,
309 }
310 }
311}
312
313#[derive(Copy, Clone, Debug)]
314pub(crate) struct EnvPtr(pub(crate) *mut ffi::MDBX_env);
315unsafe impl Send for EnvPtr {}
316unsafe impl Sync for EnvPtr {}
317
318#[derive(Debug)]
322#[repr(transparent)]
323pub struct Stat(ffi::MDBX_stat);
324
325impl Stat {
326 pub(crate) const fn new() -> Self {
328 unsafe { Self(mem::zeroed()) }
329 }
330
331 pub(crate) const fn mdbx_stat(&mut self) -> *mut ffi::MDBX_stat {
333 &mut self.0
334 }
335}
336
337impl Stat {
338 #[inline]
340 pub const fn page_size(&self) -> u32 {
341 self.0.ms_psize
342 }
343
344 #[inline]
346 pub const fn depth(&self) -> u32 {
347 self.0.ms_depth
348 }
349
350 #[inline]
352 pub const fn branch_pages(&self) -> usize {
353 self.0.ms_branch_pages as usize
354 }
355
356 #[inline]
358 pub const fn leaf_pages(&self) -> usize {
359 self.0.ms_leaf_pages as usize
360 }
361
362 #[inline]
364 pub const fn overflow_pages(&self) -> usize {
365 self.0.ms_overflow_pages as usize
366 }
367
368 #[inline]
370 pub const fn entries(&self) -> usize {
371 self.0.ms_entries as usize
372 }
373}
374
375#[derive(Debug)]
376#[repr(transparent)]
377pub struct GeometryInfo(ffi::MDBX_envinfo__bindgen_ty_1);
378
379impl GeometryInfo {
380 pub const fn min(&self) -> u64 {
381 self.0.lower
382 }
383}
384
385#[derive(Debug)]
389#[repr(transparent)]
390pub struct Info(ffi::MDBX_envinfo);
391
392impl Info {
393 pub const fn geometry(&self) -> GeometryInfo {
394 GeometryInfo(self.0.mi_geo)
395 }
396
397 #[inline]
399 pub const fn map_size(&self) -> usize {
400 self.0.mi_mapsize as usize
401 }
402
403 #[inline]
405 pub const fn last_pgno(&self) -> usize {
406 self.0.mi_last_pgno as usize
407 }
408
409 #[inline]
411 pub const fn last_txnid(&self) -> usize {
412 self.0.mi_recent_txnid as usize
413 }
414
415 #[inline]
417 pub const fn max_readers(&self) -> usize {
418 self.0.mi_maxreaders as usize
419 }
420
421 #[inline]
423 pub const fn num_readers(&self) -> usize {
424 self.0.mi_numreaders as usize
425 }
426
427 #[inline]
429 pub const fn page_ops(&self) -> PageOps {
430 PageOps {
431 newly: self.0.mi_pgop_stat.newly,
432 cow: self.0.mi_pgop_stat.cow,
433 clone: self.0.mi_pgop_stat.clone,
434 split: self.0.mi_pgop_stat.split,
435 merge: self.0.mi_pgop_stat.merge,
436 spill: self.0.mi_pgop_stat.spill,
437 unspill: self.0.mi_pgop_stat.unspill,
438 wops: self.0.mi_pgop_stat.wops,
439 prefault: self.0.mi_pgop_stat.prefault,
440 mincore: self.0.mi_pgop_stat.mincore,
441 msync: self.0.mi_pgop_stat.msync,
442 fsync: self.0.mi_pgop_stat.fsync,
443 }
444 }
445
446 #[inline]
448 pub const fn mode(&self) -> Mode {
449 let mode = self.0.mi_mode as ffi::MDBX_env_flags_t;
450 if (mode & ffi::MDBX_RDONLY) != 0 {
451 Mode::ReadOnly
452 } else if (mode & ffi::MDBX_UTTERLY_NOSYNC) != 0 {
453 Mode::ReadWrite { sync_mode: SyncMode::UtterlyNoSync }
454 } else if (mode & ffi::MDBX_NOMETASYNC) != 0 {
455 Mode::ReadWrite { sync_mode: SyncMode::NoMetaSync }
456 } else if (mode & ffi::MDBX_SAFE_NOSYNC) != 0 {
457 Mode::ReadWrite { sync_mode: SyncMode::SafeNoSync }
458 } else {
459 Mode::ReadWrite { sync_mode: SyncMode::Durable }
460 }
461 }
462}
463
464impl fmt::Debug for Environment {
465 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
466 f.debug_struct("Environment").field("kind", &self.inner.env_kind).finish_non_exhaustive()
467 }
468}
469
470#[derive(Clone, Debug, PartialEq, Eq)]
475pub enum PageSize {
476 MinimalAcceptable,
477 Set(usize),
478}
479
480#[derive(Clone, Debug, PartialEq, Eq)]
482pub struct PageOps {
483 pub newly: u64,
485 pub cow: u64,
487 pub clone: u64,
489 pub split: u64,
491 pub merge: u64,
493 pub spill: u64,
495 pub unspill: u64,
497 pub wops: u64,
499 pub msync: u64,
501 pub fsync: u64,
503 pub prefault: u64,
505 pub mincore: u64,
507}
508
509#[derive(Clone, Debug, PartialEq, Eq)]
511pub struct Geometry<R> {
512 pub size: Option<R>,
514 pub growth_step: Option<isize>,
515 pub shrink_threshold: Option<isize>,
516 pub page_size: Option<PageSize>,
517}
518
519impl<R> Default for Geometry<R> {
520 fn default() -> Self {
521 Self { size: None, growth_step: None, shrink_threshold: None, page_size: None }
522 }
523}
524
525pub type HandleSlowReadersCallback = extern "C" fn(
569 env: *const ffi::MDBX_env,
570 txn: *const ffi::MDBX_txn,
571 pid: ffi::mdbx_pid_t,
572 tid: ffi::mdbx_tid_t,
573 laggard: u64,
574 gap: std::ffi::c_uint,
575 space: usize,
576 retry: std::ffi::c_int,
577) -> HandleSlowReadersReturnCode;
578
579#[derive(Debug)]
580#[repr(i32)]
581pub enum HandleSlowReadersReturnCode {
582 Error = -2,
584 ProceedWithoutKillingReader = -1,
587 Success = 0,
592 ClearReaderSlot = 1,
596 ReaderProcessTerminated = 2,
599}
600
601#[derive(Debug, Clone)]
603pub struct EnvironmentBuilder {
604 flags: EnvironmentFlags,
605 max_readers: Option<u64>,
606 max_dbs: Option<u64>,
607 sync_bytes: Option<u64>,
608 sync_period: Option<u64>,
609 rp_augment_limit: Option<u64>,
610 loose_limit: Option<u64>,
611 dp_reserve_limit: Option<u64>,
612 txn_dp_limit: Option<u64>,
613 spill_max_denominator: Option<u64>,
614 spill_min_denominator: Option<u64>,
615 geometry: Option<Geometry<(Option<usize>, Option<usize>)>>,
616 log_level: Option<ffi::MDBX_log_level_t>,
617 kind: EnvironmentKind,
618 handle_slow_readers: Option<HandleSlowReadersCallback>,
619 #[cfg(feature = "read-tx-timeouts")]
620 max_read_transaction_duration: Option<read_transactions::MaxReadTransactionDuration>,
623}
624
625impl EnvironmentBuilder {
626 pub fn open(&self, path: &Path) -> Result<Environment> {
630 self.open_with_permissions(path, 0o644)
631 }
632
633 pub fn open_with_permissions(
637 &self,
638 path: &Path,
639 mode: ffi::mdbx_mode_t,
640 ) -> Result<Environment> {
641 let mut env: *mut ffi::MDBX_env = ptr::null_mut();
642 unsafe {
643 if let Some(log_level) = self.log_level {
644 ffi::mdbx_setup_debug(log_level, ffi::MDBX_DBG_DONTCHANGE, None);
647 }
648
649 mdbx_result(ffi::mdbx_env_create(&mut env))?;
650
651 if let Err(e) = (|| {
652 if let Some(geometry) = &self.geometry {
653 let mut min_size = -1;
654 let mut max_size = -1;
655
656 if let Some(size) = geometry.size {
657 if let Some(size) = size.0 {
658 min_size = size as isize;
659 }
660
661 if let Some(size) = size.1 {
662 max_size = size as isize;
663 }
664 }
665
666 mdbx_result(ffi::mdbx_env_set_geometry(
667 env,
668 min_size,
669 -1,
670 max_size,
671 geometry.growth_step.unwrap_or(-1),
672 geometry.shrink_threshold.unwrap_or(-1),
673 match geometry.page_size {
674 None => -1,
675 Some(PageSize::MinimalAcceptable) => 0,
676 Some(PageSize::Set(size)) => size as isize,
677 },
678 ))?;
679 }
680 for (opt, v) in [
681 (ffi::MDBX_opt_max_db, self.max_dbs),
682 (ffi::MDBX_opt_rp_augment_limit, self.rp_augment_limit),
683 (ffi::MDBX_opt_loose_limit, self.loose_limit),
684 (ffi::MDBX_opt_dp_reserve_limit, self.dp_reserve_limit),
685 (ffi::MDBX_opt_txn_dp_limit, self.txn_dp_limit),
686 (ffi::MDBX_opt_spill_max_denominator, self.spill_max_denominator),
687 (ffi::MDBX_opt_spill_min_denominator, self.spill_min_denominator),
688 ] {
689 if let Some(v) = v {
690 mdbx_result(ffi::mdbx_env_set_option(env, opt, v))?;
691 }
692 }
693
694 if let Some(max_readers) = self.max_readers {
696 mdbx_result(ffi::mdbx_env_set_option(
697 env,
698 ffi::MDBX_opt_max_readers,
699 max_readers,
700 ))?;
701 }
702
703 if let Some(handle_slow_readers) = self.handle_slow_readers {
704 mdbx_result(ffi::mdbx_env_set_hsr(
705 env,
706 convert_hsr_fn(Some(handle_slow_readers)),
707 ))?;
708 }
709
710 #[cfg(unix)]
711 fn path_to_bytes<P: AsRef<Path>>(path: P) -> Vec<u8> {
712 use std::os::unix::ffi::OsStrExt;
713 path.as_ref().as_os_str().as_bytes().to_vec()
714 }
715
716 #[cfg(windows)]
717 fn path_to_bytes<P: AsRef<Path>>(path: P) -> Vec<u8> {
718 path.as_ref().to_string_lossy().to_string().into_bytes()
722 }
723
724 let path = match CString::new(path_to_bytes(path)) {
725 Ok(path) => path,
726 Err(_) => return Err(Error::Invalid),
727 };
728 mdbx_result(ffi::mdbx_env_open(
729 env,
730 path.as_ptr(),
731 self.flags.make_flags() | self.kind.extra_flags(),
732 mode,
733 ))?;
734
735 for (opt, v) in [
736 (ffi::MDBX_opt_sync_bytes, self.sync_bytes),
737 (ffi::MDBX_opt_sync_period, self.sync_period),
738 ] {
739 if let Some(v) = v {
740 mdbx_result(ffi::mdbx_env_set_option(env, opt, v))?;
741 }
742 }
743
744 Ok(())
745 })() {
746 ffi::mdbx_env_close_ex(env, false);
747
748 return Err(e)
749 }
750 }
751
752 let env_ptr = EnvPtr(env);
753
754 #[cfg(not(feature = "read-tx-timeouts"))]
755 let txn_manager = TxnManager::new(env_ptr);
756
757 #[cfg(feature = "read-tx-timeouts")]
758 let txn_manager = {
759 if let crate::MaxReadTransactionDuration::Set(duration) = self
760 .max_read_transaction_duration
761 .unwrap_or(read_transactions::MaxReadTransactionDuration::Set(
762 DEFAULT_MAX_READ_TRANSACTION_DURATION,
763 ))
764 {
765 TxnManager::new_with_max_read_transaction_duration(env_ptr, duration)
766 } else {
767 TxnManager::new(env_ptr)
768 }
769 };
770
771 let env = EnvironmentInner {
772 env,
773 txn_manager,
774 env_kind: self.kind,
775 ro_txn_pool: ReadTxnPool::new(),
776 };
777
778 Ok(Environment { inner: Arc::new(env) })
779 }
780
781 pub const fn set_kind(&mut self, kind: EnvironmentKind) -> &mut Self {
783 self.kind = kind;
784 self
785 }
786
787 pub const fn write_map(&mut self) -> &mut Self {
791 self.set_kind(EnvironmentKind::WriteMap)
792 }
793
794 pub const fn set_flags(&mut self, flags: EnvironmentFlags) -> &mut Self {
796 self.flags = flags;
797 self
798 }
799
800 pub const fn set_max_readers(&mut self, max_readers: u64) -> &mut Self {
806 self.max_readers = Some(max_readers);
807 self
808 }
809
810 pub const fn set_max_dbs(&mut self, v: usize) -> &mut Self {
820 self.max_dbs = Some(v as u64);
821 self
822 }
823
824 pub const fn set_sync_bytes(&mut self, v: usize) -> &mut Self {
827 self.sync_bytes = Some(v as u64);
828 self
829 }
830
831 pub fn set_sync_period(&mut self, v: Duration) -> &mut Self {
834 let as_mdbx_units = (v.as_secs_f64() * 65536f64) as u64;
836 self.sync_period = Some(as_mdbx_units);
837 self
838 }
839
840 pub const fn set_rp_augment_limit(&mut self, v: u64) -> &mut Self {
841 self.rp_augment_limit = Some(v);
842 self
843 }
844
845 pub const fn set_loose_limit(&mut self, v: u64) -> &mut Self {
846 self.loose_limit = Some(v);
847 self
848 }
849
850 pub const fn set_dp_reserve_limit(&mut self, v: u64) -> &mut Self {
851 self.dp_reserve_limit = Some(v);
852 self
853 }
854
855 pub const fn set_txn_dp_limit(&mut self, v: u64) -> &mut Self {
856 self.txn_dp_limit = Some(v);
857 self
858 }
859
860 pub fn set_spill_max_denominator(&mut self, v: u8) -> &mut Self {
861 self.spill_max_denominator = Some(v.into());
862 self
863 }
864
865 pub fn set_spill_min_denominator(&mut self, v: u8) -> &mut Self {
866 self.spill_min_denominator = Some(v.into());
867 self
868 }
869
870 pub fn set_geometry<R: RangeBounds<usize>>(&mut self, geometry: Geometry<R>) -> &mut Self {
873 let convert_bound = |bound: Bound<&usize>| match bound {
874 Bound::Included(v) | Bound::Excluded(v) => Some(*v),
875 _ => None,
876 };
877 self.geometry = Some(Geometry {
878 size: geometry.size.map(|range| {
879 (convert_bound(range.start_bound()), convert_bound(range.end_bound()))
880 }),
881 growth_step: geometry.growth_step,
882 shrink_threshold: geometry.shrink_threshold,
883 page_size: geometry.page_size,
884 });
885 self
886 }
887
888 pub const fn set_log_level(&mut self, log_level: ffi::MDBX_log_level_t) -> &mut Self {
889 self.log_level = Some(log_level);
890 self
891 }
892
893 pub fn set_handle_slow_readers(&mut self, hsr: HandleSlowReadersCallback) -> &mut Self {
896 self.handle_slow_readers = Some(hsr);
897 self
898 }
899}
900
901#[cfg(feature = "read-tx-timeouts")]
902pub(crate) mod read_transactions {
903 use crate::EnvironmentBuilder;
904 use std::time::Duration;
905
906 #[derive(Debug, Clone, Copy)]
908 #[cfg(feature = "read-tx-timeouts")]
909 pub enum MaxReadTransactionDuration {
910 Unbounded,
912 Set(Duration),
914 }
915
916 #[cfg(feature = "read-tx-timeouts")]
917 impl MaxReadTransactionDuration {
918 pub const fn as_duration(&self) -> Option<Duration> {
919 match self {
920 Self::Unbounded => None,
921 Self::Set(duration) => Some(*duration),
922 }
923 }
924 }
925
926 impl EnvironmentBuilder {
927 pub const fn set_max_read_transaction_duration(
929 &mut self,
930 max_read_transaction_duration: MaxReadTransactionDuration,
931 ) -> &mut Self {
932 self.max_read_transaction_duration = Some(max_read_transaction_duration);
933 self
934 }
935 }
936}
937
938fn convert_hsr_fn(callback: Option<HandleSlowReadersCallback>) -> ffi::MDBX_hsr_func {
940 unsafe { std::mem::transmute(callback) }
941}
942
943#[cfg(test)]
944mod tests {
945 use crate::{Environment, Error, Geometry, HandleSlowReadersReturnCode, PageSize, WriteFlags};
946 use std::{
947 ops::RangeInclusive,
948 sync::atomic::{AtomicBool, Ordering},
949 };
950
951 #[test]
952 fn test_handle_slow_readers_callback() {
953 static CALLED: AtomicBool = AtomicBool::new(false);
954
955 extern "C" fn handle_slow_readers(
956 _env: *const ffi::MDBX_env,
957 _txn: *const ffi::MDBX_txn,
958 _pid: ffi::mdbx_pid_t,
959 _tid: ffi::mdbx_tid_t,
960 _laggard: u64,
961 _gap: std::ffi::c_uint,
962 _space: usize,
963 _retry: std::ffi::c_int,
964 ) -> HandleSlowReadersReturnCode {
965 CALLED.store(true, Ordering::Relaxed);
966 HandleSlowReadersReturnCode::ProceedWithoutKillingReader
967 }
968
969 let tempdir = tempfile::tempdir().unwrap();
970 let env = Environment::builder()
971 .set_geometry(Geometry::<RangeInclusive<usize>> {
972 size: Some(0..=1024 * 1024), page_size: Some(PageSize::MinimalAcceptable), ..Default::default()
975 })
976 .set_handle_slow_readers(handle_slow_readers)
977 .open(tempdir.path())
978 .unwrap();
979
980 {
982 let tx = env.begin_rw_txn().unwrap();
983 let db = tx.open_db(None).unwrap();
984 for i in 0usize..1_000 {
985 tx.put(db.dbi(), i.to_le_bytes(), b"0", WriteFlags::empty()).unwrap()
986 }
987 tx.commit().unwrap();
988 }
989
990 let _tx_ro = env.begin_ro_txn().unwrap();
992
993 {
995 let tx = env.begin_rw_txn().unwrap();
996 let db = tx.open_db(None).unwrap();
997 for i in 0usize..1_000 {
998 tx.put(db.dbi(), i.to_le_bytes(), b"1", WriteFlags::empty()).unwrap();
999 }
1000 tx.commit().unwrap();
1001 }
1002
1003 {
1006 let tx = env.begin_rw_txn().unwrap();
1007 let db = tx.open_db(None).unwrap();
1008 for i in 1_000usize..1_000_000 {
1009 match tx.put(db.dbi(), i.to_le_bytes(), b"0", WriteFlags::empty()) {
1010 Ok(_) => {}
1011 Err(Error::MapFull) => break,
1012 result @ Err(_) => result.unwrap(),
1013 }
1014 }
1015 let _ = tx.commit();
1019 }
1020
1021 assert!(CALLED.load(Ordering::Relaxed));
1023 }
1024}