rarena_allocator/
allocator.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
use core::ptr::NonNull;

use super::*;

macro_rules! impl_bytes_utils_for_allocator {
  ($this:ident::$from:ident($ty:ident, $offset:ident)) => {{
    const SIZE: usize = core::mem::size_of::<$ty>();

    let allocated = $this.allocated();
    if $offset + SIZE > allocated {
      return Err(Error::OutOfBounds { $offset, allocated });
    }

    let buf = unsafe {
      let ptr = $this.raw_ptr().add($offset);
      core::slice::from_raw_parts(ptr, SIZE)
    };

    Ok($ty::$from(buf.try_into().unwrap()))
  }};
  (unsafe $this:ident::$from:ident($ty:ident, $offset:ident)) => {{
    const SIZE: usize = core::mem::size_of::<$ty>();

    let buf = unsafe {
      let ptr = $this.raw_ptr().add($offset);
      core::slice::from_raw_parts(ptr, SIZE)
    };

    $ty::$from(buf.try_into().unwrap())
  }};
}

macro_rules! define_bytes_utils {
  ($($ty:ident:$endian:literal), +$(,)?) => {
    $(
      paste::paste! {
        #[doc = "Returns a `" $ty "` from the allocator."]
        fn [< get_ $ty _ $endian >](&self, offset: usize) -> Result<$ty, Error> {
          impl_bytes_utils_for_allocator!(self::[< from_ $endian _bytes >]($ty, offset))
        }

        #[doc = "Returns a `" $ty "` from the allocator without bounds checking."]
        ///
        /// ## Safety
        /// - `offset..offset + size` must be within allocated memory.
        unsafe fn [< get_ $ty _ $endian _unchecked>](&self, offset: usize) -> $ty {
          impl_bytes_utils_for_allocator!(unsafe self::[< from_ $endian _bytes >]($ty, offset))
        }
      }
    )*
  };
}

macro_rules! impl_leb128_utils_for_allocator {
  ($this:ident($ty:ident, $offset:ident, $size:literal)) => {{
    let allocated = $this.allocated();
    if $offset >= allocated {
      return Err(Error::OutOfBounds { $offset, allocated });
    }

    let buf = unsafe {
      let ptr = $this.get_pointer($offset);
      let gap = (allocated - $offset).min($size);
      core::slice::from_raw_parts(ptr, gap)
    };

    paste::paste! {
      dbutils::leb128::[< decode_ $ty _varint >](buf).map_err(Into::into)
    }
  }};
}

macro_rules! define_leb128_utils {
  ($($ty:ident:$size:literal), +$(,)?) => {
    $(
      paste::paste! {
        #[doc = "Returns a `" $ty "` in LEB128 format from the allocator at the given offset."]
        ///
        /// ## Safety
        /// - `offset` must be within the allocated memory of the allocator.
        fn [< get_ $ty _varint >](&self, offset: usize) -> Result<(usize, $ty), Error> {
          impl_leb128_utils_for_allocator!(self($ty, offset, $size))
        }
      }
    )*
  };
}

/// A trait for easily interacting with the sync and unsync allocator allocators.
pub trait Allocator: sealed::Sealed {
  /// The path type of the allocator.
  #[cfg(all(feature = "memmap", not(target_family = "wasm")))]
  #[cfg_attr(docsrs, doc(cfg(all(feature = "memmap", not(target_family = "wasm")))))]
  type Path;

  /// Returns the number of bytes that are reserved by the allocator.
  fn reserved_bytes(&self) -> usize;

  /// Returns the reserved bytes of the allocator specified in the [`Options::with_reserved`].
  fn reserved_slice(&self) -> &[u8];

  /// Returns the mutable reserved bytes of the allocator specified in the [`Options::with_reserved`].
  ///
  /// ## Safety
  /// - The caller need to make sure there is no data-race
  ///
  /// # Panic
  /// - If in read-only mode, and num of reserved bytes is greater than 0, this method will panic.
  #[allow(clippy::mut_from_ref)]
  unsafe fn reserved_slice_mut(&self) -> &mut [u8];

  /// Allocates a `T` in the allocator.
  ///
  /// ## Safety
  ///
  /// - If `T` needs to be dropped and callers invoke [`RefMut::detach`](crate::RefMut::detach),
  ///   then the caller must ensure that the `T` is dropped before the allocator is dropped.
  ///   Otherwise, it will lead to memory leaks.
  ///
  /// - If this is file backed allocator, then `T` must be recoverable from bytes.
  ///   1. Types require allocation are not recoverable.
  ///   2. Pointers are not recoverable, like `*const T`, `*mut T`, `NonNull` and any structs contains pointers,
  ///      although those types are on stack, but they cannot be recovered, when reopens the file.
  ///
  /// ## Examples
  ///
  /// ## Memory leak
  ///
  /// The following example demonstrates the memory leak when the `T` is a heap allocated type and detached.
  ///
  /// ```ignore
  ///
  /// let arena = Options::new().with_capacity(100).alloc::<Arena>().unwrap();
  ///
  /// {
  ///   let mut data = arena.alloc::<Vec<u8>>().unwrap();
  ///   data.detach();
  ///   data.write(vec![1, 2, 3]);
  /// }
  ///
  /// drop(arena); // memory leak, the `Vec<u8>` is not dropped.
  /// ```
  ///
  /// ## Undefined behavior
  ///
  /// The following example demonstrates the undefined behavior when the `T` is not recoverable.
  ///
  /// ```ignore
  ///
  /// struct TypeOnHeap {
  ///   data: Vec<u8>,
  /// }
  ///
  /// let arena = Options::new().with_create_new(1000).with_read(true).with_write(true).map_mut::<Arena, _>("path/to/file").unwrap();
  ///
  /// let mut data = arena.alloc::<TypeOnHeap>().unwrap();
  /// data.detach();
  /// data.write(TypeOnHeap { data: vec![1, 2, 3] });
  /// let offset = data.offset();
  /// drop(arena);
  ///
  /// // reopen the file
  /// let arena = Options::new().with_read(true).map::<Arena, _>("path/to/file").unwrap();
  ///
  /// let foo = &*arena.get_aligned_pointer::<TypeOnHeap>(offset as usize);
  /// let b = foo.data[1]; // undefined behavior, the `data`'s pointer stored in the file is not valid anymore.
  /// ```
  ///
  /// ## Good practice
  ///
  /// Some examples about how to use this method correctly.
  ///
  /// ### Heap allocated type with carefull memory management
  ///
  /// ```ignore
  /// let arena = Options::new().with_capacity(100).alloc::<Arena>().unwrap();
  ///
  /// // Do not invoke detach, so when the data is dropped, the drop logic will be handled by the allocator.
  /// // automatically.
  /// {
  ///   let mut data = arena.alloc::<Vec<u8>>().unwrap();
  ///   data.write(vec![1, 2, 3]);
  /// }
  ///
  ///
  /// let mut detached_data = arena.alloc::<Vec<u8>>().unwrap();
  /// detached_data.detach();
  /// detached_data.write(vec![4, 5, 6]);
  ///
  /// // some other logic
  ///
  /// core::ptr::drop_in_place(detached_data.as_mut()); // drop the `Vec` manually.
  ///
  /// drop(arena); // it is safe, the `Vec` is already dropped.
  /// ```
  ///
  /// ### Recoverable type with file backed allocator
  ///
  /// ```ignore
  ///
  /// struct Recoverable {
  ///   field1: u64,
  ///   field2: AtomicU32,
  /// }
  ///
  /// let arena = Options::new().with_create_new(1000).with_read(true).with_write(true).map_mut::<Arena, _>("path/to/file").unwrap();
  ///
  /// let mut data = arena.alloc::<Recoverable>().unwrap();
  /// data.write(Recoverable { field1: 10, field2: AtomicU32::new(20) });
  /// data.detach();
  /// let offset = data.offset();
  /// drop(arena);
  ///
  /// // reopen the file
  /// let arena = Options::new().with_read(true).map::<Arena, _>("path/to/file").unwrap();
  ///
  /// let foo = &*arena.get_aligned_pointer::<Recoverable>(offset as usize);
  ///
  /// assert_eq!(foo.field1, 10);
  /// assert_eq!(foo.field2.load(Ordering::Acquire), 20);
  /// ```
  unsafe fn alloc<T>(&self) -> Result<RefMut<'_, T, Self>, Error>;

  /// Allocates a byte slice that can hold a well-aligned `T` and extra `size` bytes.
  ///
  /// The layout of the allocated memory is:
  ///
  /// ```text
  /// | T | [u8; size] |
  /// ```
  ///
  /// ## Example
  ///
  /// ```ignore
  /// let mut bytes = arena.alloc_aligned_bytes::<T>(extra).unwrap();
  /// bytes.put(val).unwrap(); // write `T` to the byte slice.
  /// ```
  fn alloc_aligned_bytes<T>(&self, size: u32) -> Result<BytesRefMut<'_, Self>, Error>;

  /// Allocates an owned byte slice that can hold a well-aligned `T` and extra `size` bytes.
  ///
  /// The layout of the allocated memory is:
  ///
  /// ```text
  /// | T | [u8; size] |
  /// ```
  ///
  /// ## Example
  ///
  /// ```ignore
  /// let mut bytes = arena.alloc_aligned_bytes_owned::<T>(extra).unwrap();
  /// bytes.put(val).unwrap(); // write `T` to the byte slice.
  /// ```
  fn alloc_aligned_bytes_owned<T>(&self, size: u32) -> Result<BytesMut<Self>, Error> {
    self
      .alloc_aligned_bytes::<T>(size)
      .map(|mut b| b.to_owned())
  }

  // /// Allocates an owned byte slice that can hold a well-aligned `T` and extra `size` bytes.
  // ///
  // /// The layout of the allocated memory is:
  // ///
  // /// ```text
  // /// | T | [u8; size] |
  // /// ```
  // ///
  // /// ## Example
  // ///
  // /// ```ignore
  // /// let mut bytes = arena.alloc_aligned_bytes_owned_within_page::<T>(extra).unwrap();
  // /// bytes.put(val).unwrap(); // write `T` to the byte slice.
  // /// ```
  // #[cfg(all(feature = "memmap", not(target_family = "wasm")))]
  // #[cfg_attr(docsrs, doc(cfg(all(feature = "memmap", not(target_family = "wasm")))))]
  // fn alloc_aligned_bytes_owned_within_page<T>(&self, size: u32) -> Result<BytesMut<Self>, Error> {
  //   self
  //     .alloc_aligned_bytes_within_page::<T>(size)
  //     .map(|mut b| b.to_owned())
  // }

  // /// Allocates a byte slice that can hold a well-aligned `T` and extra `size` bytes within a page.
  // ///
  // /// The layout of the allocated memory is:
  // ///
  // /// ```text
  // /// | T | [u8; size] |
  // /// ```
  // ///
  // /// ## Example
  // ///
  // /// ```ignore
  // /// let mut bytes = arena.alloc_aligned_bytes_within_page::<T>(extra).unwrap();
  // /// bytes.put(val).unwrap(); // write `T` to the byte slice.
  // /// ```
  // #[cfg(all(feature = "memmap", not(target_family = "wasm")))]
  // #[cfg_attr(docsrs, doc(cfg(all(feature = "memmap", not(target_family = "wasm")))))]
  // fn alloc_aligned_bytes_within_page<T>(&self, size: u32) -> Result<BytesRefMut<'_, Self>, Error>;

  /// Allocates a slice of memory in the allocator.
  ///
  /// The [`BytesRefMut`](crate::BytesRefMut) is zeroed out.
  ///
  /// If you want a [`BytesMut`](crate::BytesMut), see [`alloc_bytes_owned`](Allocator::alloc_bytes_owned).
  fn alloc_bytes(&self, size: u32) -> Result<BytesRefMut<'_, Self>, Error>;

  /// Allocates an owned slice of memory in the allocator.
  ///
  /// The cost of this method is an extra atomic operation, compared to [`alloc_bytes`](Allocator::alloc_bytes).
  fn alloc_bytes_owned(&self, size: u32) -> Result<BytesMut<Self>, Error> {
    self.alloc_bytes(size).map(|mut b| b.to_owned())
  }

  // /// Allocates an owned slice of memory in the allocator in the same page.
  // ///
  // /// Compared to [`alloc_bytes_owned`](Self::alloc_bytes_owned), this method only allocates from the main memory, so
  // /// the it means that if main memory does not have enough space but the freelist has segments can hold the size,
  // /// this method will still return an error.
  // ///
  // /// The cost of this method is an extra atomic operation, compared to [`alloc_bytes_within_page`](Allocator::alloc_bytes_within_page).
  // #[cfg(all(feature = "memmap", not(target_family = "wasm")))]
  // #[cfg_attr(docsrs, doc(cfg(all(feature = "memmap", not(target_family = "wasm")))))]
  // fn alloc_bytes_owned_within_page(&self, size: u32) -> Result<BytesMut<Self>, Error> {
  //   self.alloc_bytes_within_page(size).map(|mut b| b.to_owned())
  // }

  // /// Allocates a slice of memory in the allocator in the same page.
  // ///
  // /// Compared to [`alloc_bytes`](Allocator::alloc_bytes), this method only allocates from the main memory, so
  // /// the it means that if main memory does not have enough space but the freelist has segments can hold the size,
  // /// this method will still return an error.
  // ///
  // /// The [`BytesRefMut`](crate::BytesRefMut) is zeroed out.
  // ///
  // /// If you want a [`BytesMut`](crate::BytesMut), see [`alloc_bytes_owned_within_page`](Allocator::alloc_bytes_owned_within_page).
  // #[cfg(all(feature = "memmap", not(target_family = "wasm")))]
  // #[cfg_attr(docsrs, doc(cfg(all(feature = "memmap", not(target_family = "wasm")))))]
  // fn alloc_bytes_within_page(&self, size: u32) -> Result<BytesRefMut<'_, Self>, Error>;

  /// Allocates a `T` in the allocator. Like [`alloc`](Allocator::alloc), but returns an `Owned`.
  ///
  /// The cost is one more atomic operation than [`alloc`](Allocator::alloc).
  ///
  /// ## Safety
  ///
  /// - See [`alloc`](Allocator::alloc) for safety.
  ///
  /// ## Example
  ///
  /// ```rust
  /// use rarena_allocator::{sync::Arena, Options, Allocator};
  ///
  /// let arena = Options::new().with_capacity(100).alloc::<Arena>().unwrap();
  ///
  /// unsafe {
  ///   let mut data = arena.alloc_owned::<u64>().unwrap();
  ///   data.write(10);
  ///
  ///   assert_eq!(*data.as_ref(), 10);
  /// }
  /// ```
  unsafe fn alloc_owned<T>(&self) -> Result<Owned<T, Self>, Error> {
    self.alloc::<T>().map(|mut r| r.to_owned())
  }

  // /// Allocates a `T` in the allocator in the same page. Like [`alloc_within_page`](Allocator::alloc_within_page), but returns an `Owned`.
  // ///
  // /// ## Safety
  // /// - See [`alloc`](Allocator::alloc) for safety.
  // #[cfg(all(feature = "memmap", not(target_family = "wasm")))]
  // #[cfg_attr(docsrs, doc(cfg(all(feature = "memmap", not(target_family = "wasm")))))]
  // unsafe fn alloc_owned_within_page<T>(&self) -> Result<Owned<T, Self>, Error> {
  //   self.alloc_within_page::<T>().map(|mut r| r.to_owned())
  // }

  // /// Allocates a `T` in the allocator in the same page.
  // ///
  // /// ## Safety
  // ///
  // /// - See [`alloc`](Allocator::alloc) for safety.
  // #[cfg(all(feature = "memmap", not(target_family = "wasm")))]
  // #[cfg_attr(docsrs, doc(cfg(all(feature = "memmap", not(target_family = "wasm")))))]
  // unsafe fn alloc_within_page<T>(&self) -> Result<RefMut<'_, T, Self>, Error>;

  /// Returns the number of bytes allocated by the allocator.
  ///
  /// ## Example
  ///
  /// ```rust
  /// use rarena_allocator::{sync::Arena, Options, Allocator};
  ///
  /// let arena = Options::new().with_capacity(100).alloc::<Arena>().unwrap();
  /// let allocated = arena.allocated();
  /// ```
  fn allocated(&self) -> usize;

  /// Returns the whole main memory of the allocator as a byte slice.
  ///
  /// ## Example
  ///
  /// ```rust
  /// use rarena_allocator::{sync::Arena, Options, Allocator};
  ///
  /// let arena = Options::new().with_capacity(100).alloc::<Arena>().unwrap();
  /// let memory = arena.allocated_memory();
  /// ```
  #[inline]
  fn allocated_memory(&self) -> &[u8] {
    let allocated = self.allocated();
    unsafe { core::slice::from_raw_parts(self.raw_ptr(), allocated) }
  }

  /// Returns the start pointer of the main memory of the allocator.
  fn raw_mut_ptr(&self) -> *mut u8;

  /// Returns the start pointer of the main memory of the allocator.
  fn raw_ptr(&self) -> *const u8;

  /// Returns the capacity of the allocator.
  ///
  /// ## Example
  ///
  /// ```rust
  /// use rarena_allocator::{sync::Arena, Options, Allocator};
  ///
  /// let arena = Options::new().with_capacity(100).alloc::<Arena>().unwrap();
  /// let capacity = arena.capacity();
  /// ```
  #[inline]
  fn capacity(&self) -> usize {
    self.as_ref().cap() as usize
  }

  /// Clear the allocator.
  ///
  /// ## Safety
  /// - The current pointers get from the allocator cannot be used anymore after calling this method.
  /// - This method is not thread-safe.
  ///
  /// ## Examples
  ///
  /// Undefine behavior:
  ///
  /// ```ignore
  /// let mut data = arena.alloc::<Vec<u8>>().unwrap();
  ///
  /// arena.clear();
  ///
  /// data.write(vec![1, 2, 3]); // undefined behavior
  /// ```
  ///
  /// Good practice:
  ///
  /// ```rust
  /// use rarena_allocator::{sync::Arena, Options, Allocator};
  ///
  /// let arena = Options::new().with_capacity(100).alloc::<Arena>().unwrap();
  ///
  /// unsafe {
  ///   let mut data = arena.alloc::<Vec<u8>>().unwrap();
  ///   data.write(vec![1, 2, 3]);
  ///
  ///   arena.clear().unwrap();
  /// }
  ///
  /// ```
  unsafe fn clear(&self) -> Result<(), Error>;

  /// Returns the data offset of the allocator. The offset is the end of the reserved bytes of the allocator.
  ///
  /// ## Example
  ///
  /// ```rust
  /// use rarena_allocator::{sync::Arena, Options, Allocator};
  ///
  /// let arena = Options::new().with_capacity(100).alloc::<Arena>().unwrap();
  /// let data_offset = arena.data_offset();
  /// ```
  #[inline]
  fn data_offset(&self) -> usize {
    self.as_ref().data_offset()
  }

  /// Returns the data section of the allocator as a byte slice, header is not included.
  ///
  /// ## Example
  ///
  /// ```rust
  /// use rarena_allocator::{sync::Arena, Options, Allocator};
  ///
  /// let arena = Options::new().with_capacity(100).alloc::<Arena>().unwrap();
  /// let data = arena.data();
  /// ```
  #[inline]
  fn data(&self) -> &[u8] {
    unsafe {
      let offset = self.data_offset();
      let ptr = self.raw_ptr().add(offset);
      let allocated = self.allocated();
      core::slice::from_raw_parts(ptr, allocated - offset)
    }
  }

  /// Deallocates the memory at the given offset and size, the `offset..offset + size` will be made to a segment,
  /// returns `true` if the deallocation is successful.
  ///
  /// ## Safety
  /// - you must ensure the same `offset..offset + size` is not deallocated twice.
  /// - `offset` must be larger than the [`Allocator::data_offset`].
  /// - `offset + size` must be less than the [`Allocator::allocated`].
  unsafe fn dealloc(&self, offset: u32, size: u32) -> bool;

  /// Discards all freelist nodes in the allocator.
  ///
  /// Returns the number of bytes discarded.
  ///
  /// ## Example
  ///
  /// ```rust
  /// use rarena_allocator::{sync::Arena, Options, Allocator};
  ///
  /// let arena = Options::new().with_capacity(100).alloc::<Arena>().unwrap();
  /// arena.discard_freelist();
  /// ```
  fn discard_freelist(&self) -> Result<u32, Error>;

  /// Returns the number of bytes discarded by the allocator.
  ///
  /// ## Example
  ///
  /// ```rust
  /// use rarena_allocator::{sync::Arena, Options, Allocator};
  ///
  /// let arena = Options::new().with_capacity(100).alloc::<Arena>().unwrap();
  /// let discarded = arena.discarded();
  /// ```
  fn discarded(&self) -> u32;

  /// Flushes the memory-mapped file to disk.
  ///
  /// ## Example
  ///
  /// ```rust
  /// use rarena_allocator::{sync::Arena, Options, Allocator};
  /// # let path = tempfile::NamedTempFile::new().unwrap().into_temp_path();
  /// # std::fs::remove_file(&path);
  ///
  ///
  ///
  /// let mut arena = unsafe { Options::new().with_create_new(true).with_read(true).with_write(true).with_capacity(100).map_mut::<Arena, _>(&path).unwrap() };
  /// arena.flush().unwrap();
  ///
  /// # std::fs::remove_file(path);
  /// ```
  #[cfg(all(feature = "memmap", not(target_family = "wasm")))]
  #[cfg_attr(docsrs, doc(cfg(all(feature = "memmap", not(target_family = "wasm")))))]
  #[inline]
  fn flush(&self) -> std::io::Result<()> {
    self.as_ref().flush()
  }

  /// Flushes the memory-mapped file to disk asynchronously.
  ///
  /// ## Example
  ///
  /// ```rust
  /// use rarena_allocator::{sync::Arena, Options, Allocator};
  ///
  /// # let path = tempfile::NamedTempFile::new().unwrap().into_temp_path();
  /// # std::fs::remove_file(&path);
  ///
  ///
  /// let mut arena = unsafe { Options::new().with_create_new(true).with_read(true).with_write(true).with_capacity(100).map_mut::<Arena, _>(&path).unwrap() };
  ///
  /// arena.flush_async().unwrap();
  ///
  /// # std::fs::remove_file(path);
  /// ```
  #[cfg(all(feature = "memmap", not(target_family = "wasm")))]
  #[cfg_attr(docsrs, doc(cfg(all(feature = "memmap", not(target_family = "wasm")))))]
  #[inline]
  fn flush_async(&self) -> std::io::Result<()> {
    self.as_ref().flush_async()
  }

  /// Flushes outstanding memory map modifications in the range to disk.
  ///
  /// ## Example
  ///
  /// ```rust
  /// use rarena_allocator::{sync::Arena, Options, Allocator};
  /// # let path = tempfile::NamedTempFile::new().unwrap().into_temp_path();
  /// # std::fs::remove_file(&path);
  ///
  ///
  ///
  /// let mut arena = unsafe { Options::new().with_create_new(true).with_read(true).with_write(true).with_capacity(100).map_mut::<Arena, _>(&path).unwrap() };
  /// arena.flush_range(0, 100).unwrap();
  ///
  /// # std::fs::remove_file(path);
  /// ```
  #[cfg(all(feature = "memmap", not(target_family = "wasm")))]
  #[cfg_attr(docsrs, doc(cfg(all(feature = "memmap", not(target_family = "wasm")))))]
  #[inline]
  fn flush_range(&self, offset: usize, len: usize) -> std::io::Result<()> {
    self.as_ref().flush_range(offset, len)
  }

  /// Asynchronously flushes outstanding memory map modifications in the range to disk.
  ///
  /// ## Example
  ///
  /// ```rust
  /// use rarena_allocator::{sync::Arena, Options, Allocator};
  ///
  /// # let path = tempfile::NamedTempFile::new().unwrap().into_temp_path();
  /// # std::fs::remove_file(&path);
  ///
  ///
  /// let mut arena = unsafe { Options::new().with_create_new(true).with_read(true).with_write(true).with_capacity(100).map_mut::<Arena, _>(&path).unwrap() };
  ///
  /// arena.flush_async_range(0, 100).unwrap();
  ///
  /// # std::fs::remove_file(path);
  /// ```
  #[cfg(all(feature = "memmap", not(target_family = "wasm")))]
  #[cfg_attr(docsrs, doc(cfg(all(feature = "memmap", not(target_family = "wasm")))))]
  #[inline]
  fn flush_async_range(&self, offset: usize, len: usize) -> std::io::Result<()> {
    self.as_ref().flush_async_range(offset, len)
  }

  /// Flushes outstanding memory map modifications in `Allocator`'s header to disk.
  ///
  /// ## Example
  ///
  /// ```rust
  /// use rarena_allocator::{sync::Arena, Options, Allocator};
  /// # let path = tempfile::NamedTempFile::new().unwrap().into_temp_path();
  /// # std::fs::remove_file(&path);
  ///
  ///
  ///
  /// let mut arena = unsafe { Options::new().with_create_new(true).with_read(true).with_write(true).with_capacity(100).map_mut::<Arena, _>(&path).unwrap() };
  /// arena.flush_header().unwrap();
  ///
  /// # std::fs::remove_file(path);
  /// ```
  #[cfg(all(feature = "memmap", not(target_family = "wasm")))]
  #[cfg_attr(docsrs, doc(cfg(all(feature = "memmap", not(target_family = "wasm")))))]
  #[inline]
  fn flush_header(&self) -> std::io::Result<()> {
    self.flush_header_and_range(0, 0)
  }

  /// Asynchronously flushes outstanding memory map modifications `Allocator`'s header to disk.
  ///
  /// ## Example
  ///
  /// ```rust
  /// use rarena_allocator::{sync::Arena, Options, Allocator};
  ///
  /// # let path = tempfile::NamedTempFile::new().unwrap().into_temp_path();
  /// # std::fs::remove_file(&path);
  ///
  ///
  /// let mut arena = unsafe { Options::new().with_create_new(true).with_read(true).with_write(true).with_capacity(100).map_mut::<Arena, _>(&path).unwrap() };
  ///
  /// arena.flush_async_header().unwrap();
  ///
  /// # std::fs::remove_file(path);
  /// ```
  #[cfg(all(feature = "memmap", not(target_family = "wasm")))]
  #[cfg_attr(docsrs, doc(cfg(all(feature = "memmap", not(target_family = "wasm")))))]
  #[inline]
  fn flush_async_header(&self) -> std::io::Result<()> {
    self.flush_async_header_and_range(0, 0)
  }

  /// Flushes outstanding memory map modifications in the range and `Allocator`'s header to disk.
  ///
  /// ## Example
  ///
  /// ```rust
  /// use rarena_allocator::{sync::Arena, Options, Allocator};
  /// # let path = tempfile::NamedTempFile::new().unwrap().into_temp_path();
  /// # std::fs::remove_file(&path);
  ///
  ///
  ///
  /// let mut arena = unsafe { Options::new().with_create_new(true).with_read(true).with_write(true).with_capacity(100).map_mut::<Arena, _>(&path).unwrap() };
  /// arena.flush_header_and_range(0, 100).unwrap();
  ///
  /// # std::fs::remove_file(path);
  /// ```
  #[cfg(all(feature = "memmap", not(target_family = "wasm")))]
  #[cfg_attr(docsrs, doc(cfg(all(feature = "memmap", not(target_family = "wasm")))))]
  #[inline]
  fn flush_header_and_range(&self, offset: usize, len: usize) -> std::io::Result<()> {
    self.as_ref().flush_header_and_range(offset, len)
  }

  /// Asynchronously flushes outstanding memory map modifications in the range and `Allocator`'s header to disk.
  ///
  /// ## Example
  ///
  /// ```rust
  /// use rarena_allocator::{sync::Arena, Options, Allocator};
  ///
  /// # let path = tempfile::NamedTempFile::new().unwrap().into_temp_path();
  /// # std::fs::remove_file(&path);
  ///
  ///
  /// let mut arena = unsafe { Options::new().with_create_new(true).with_read(true).with_write(true).with_capacity(100).map_mut::<Arena, _>(&path).unwrap() };
  ///
  /// arena.flush_async_header_and_range(0, 100).unwrap();
  ///
  /// # std::fs::remove_file(path);
  /// ```
  #[cfg(all(feature = "memmap", not(target_family = "wasm")))]
  #[cfg_attr(docsrs, doc(cfg(all(feature = "memmap", not(target_family = "wasm")))))]
  #[inline]
  fn flush_async_header_and_range(&self, offset: usize, len: usize) -> std::io::Result<()> {
    self.as_ref().flush_async_header_and_range(offset, len)
  }

  /// Returns a pointer to the memory at the given offset.
  ///
  /// ## Safety
  /// - `offset` must be less than the capacity of the allocator.
  #[inline]
  unsafe fn get_pointer(&self, offset: usize) -> *const u8 {
    if offset == 0 {
      return self.raw_ptr();
    }

    self.raw_ptr().add(offset)
  }

  /// Returns a pointer to the memory at the given offset.
  /// If the allocator is read-only, then this method will return a null pointer.
  ///
  /// ## Safety
  /// - `offset` must be less than the capacity of the allocator.
  ///
  /// # Panic
  /// - If the allocator is read-only, then this method will panic.
  #[inline]
  unsafe fn get_pointer_mut(&self, offset: usize) -> *mut u8 {
    assert!(!self.read_only(), "ARENA is read-only");

    if offset == 0 {
      return self.raw_mut_ptr();
    }

    self.raw_mut_ptr().add(offset)
  }

  /// Returns an aligned pointer to the memory at the given offset.
  ///
  /// ## Safety
  /// - `offset..offset + mem::size_of::<T>() + padding` must be allocated memory.
  /// - `offset` must be less than the capacity of the allocator.
  #[inline]
  unsafe fn get_aligned_pointer<T>(&self, offset: usize) -> *const T {
    if offset == 0 {
      return core::ptr::null();
    }

    let align_offset = align_offset::<T>(offset as u32) as usize;
    self.raw_ptr().add(align_offset).cast()
  }

  /// Returns an aligned pointer to the memory at the given offset.
  /// If the allocator is read-only, then this method will return a null pointer.
  ///
  /// ## Safety
  /// - `offset..offset + mem::size_of::<T>() + padding` must be allocated memory.
  /// - `offset` must be less than the capacity of the allocator.
  ///
  /// # Panic
  /// - If the allocator is read-only, then this method will panic.
  unsafe fn get_aligned_pointer_mut<T>(&self, offset: usize) -> core::ptr::NonNull<T> {
    assert!(!self.read_only(), "ARENA is read-only");

    if offset == 0 {
      return NonNull::dangling();
    }

    let align_offset = align_offset::<T>(offset as u32) as usize;
    let ptr = self.raw_mut_ptr().add(align_offset).cast();
    NonNull::new_unchecked(ptr)
  }

  /// Returns a bytes slice from the allocator.
  ///
  /// ## Safety
  /// - `offset..offset + size` must be allocated memory.
  /// - `offset` must be less than the capacity of the allocator.
  /// - `size` must be less than the capacity of the allocator.
  /// - `offset + size` must be less than the capacity of the allocator.
  unsafe fn get_bytes(&self, offset: usize, size: usize) -> &[u8] {
    if size == 0 {
      return &[];
    }

    let ptr = self.get_pointer(offset);
    core::slice::from_raw_parts(ptr, size)
  }

  /// Returns a `u8` from the allocator.
  fn get_u8(&self, offset: usize) -> Result<u8, Error> {
    let allocated = self.allocated();
    if offset >= allocated {
      return Err(Error::OutOfBounds { offset, allocated });
    }

    let buf = unsafe {
      let ptr = self.raw_ptr().add(offset);
      core::slice::from_raw_parts(ptr, 1)
    };

    Ok(buf[0])
  }

  /// Returns a `i8` from the allocator.
  fn get_i8(&self, offset: usize) -> Result<i8, Error> {
    let allocated = self.allocated();
    if offset >= allocated {
      return Err(Error::OutOfBounds { offset, allocated });
    }

    let buf = unsafe {
      let ptr = self.raw_ptr().add(offset);
      core::slice::from_raw_parts(ptr, 1)
    };

    Ok(buf[0] as i8)
  }

  /// Returns a `u8` from the allocator without bounds checking.
  ///
  /// ## Safety
  /// - `offset + size` must be within the allocated memory of the allocator.
  unsafe fn get_u8_unchecked(&self, offset: usize) -> u8 {
    let buf = unsafe {
      let ptr = self.raw_ptr().add(offset);
      core::slice::from_raw_parts(ptr, 1)
    };

    buf[0]
  }

  /// Returns a `i8` from the allocator without bounds checking.
  ///
  /// ## Safety
  /// - `offset + size` must be within the allocated memory of the allocator.
  unsafe fn get_i8_unchecked(&self, offset: usize) -> i8 {
    let buf = unsafe {
      let ptr = self.raw_ptr().add(offset);
      core::slice::from_raw_parts(ptr, 1)
    };

    buf[0] as i8
  }

  define_bytes_utils!(
    u16:"be",
    u16:"le",
    u32:"be",
    u32:"le",
    u64:"be",
    u64:"le",
    u128:"be",
    u128:"le",
    i16:"be",
    i16:"le",
    i32:"be",
    i32:"le",
    i64:"be",
    i64:"le",
    i128:"be",
    i128:"le",
  );

  define_leb128_utils!(
    i16:3,
    i32:5,
    i64:10,
    i128:19,
    u16:3,
    u32:5,
    u64:10,
    u128:19,
  );

  /// Returns a mutable bytes slice from the allocator.
  /// If the allocator is read-only, then this method will return an empty slice.
  ///
  /// ## Safety
  /// - `offset..offset + size` must be allocated memory.
  /// - `offset` must be less than the capacity of the allocator.
  /// - `size` must be less than the capacity of the allocator.
  /// - `offset + size` must be less than the capacity of the allocator.
  ///
  /// # Panic
  /// - If the allocator is read-only, then this method will panic.
  #[allow(clippy::mut_from_ref)]
  unsafe fn get_bytes_mut(&self, offset: usize, size: usize) -> &mut [u8] {
    if size == 0 {
      return &mut [];
    }

    let ptr = self.get_pointer_mut(offset);
    core::slice::from_raw_parts_mut(ptr, size)
  }

  /// Forcelly increases the discarded bytes.
  ///
  /// ## Example
  ///
  /// ```rust
  /// use rarena_allocator::{sync::Arena, Options, Allocator};
  ///
  /// let arena = Options::new().with_capacity(100).alloc::<Arena>().unwrap();
  /// arena.increase_discarded(100);
  /// ```
  fn increase_discarded(&self, size: u32);

  /// Returns `true` if the allocator is created through memory map.
  ///
  /// ## Example
  ///
  /// ```rust
  /// use rarena_allocator::{sync::Arena, Allocator, Options};
  ///
  /// let arena = Options::new().with_capacity(100).alloc::<Arena>().unwrap();
  /// let is_map = arena.is_map();
  /// assert_eq!(is_map, false);
  /// ```
  #[cfg(all(feature = "memmap", not(target_family = "wasm")))]
  #[cfg_attr(docsrs, doc(cfg(all(feature = "memmap", not(target_family = "wasm")))))]
  #[inline]
  fn is_map(&self) -> bool {
    self.as_ref().flag.contains(MemoryFlags::MMAP)
  }

  /// Returns `true` if the allocator is on disk.
  ///
  /// ## Example
  ///
  /// ```rust
  /// use rarena_allocator::{sync::Arena, Options, Allocator};
  ///
  /// let arena = Options::new().with_capacity(100).alloc::<Arena>().unwrap();
  /// let is_ondisk = arena.is_ondisk();
  /// assert_eq!(is_ondisk, false);
  /// ```
  #[inline]
  fn is_ondisk(&self) -> bool {
    self.as_ref().flag.contains(MemoryFlags::ON_DISK)
  }

  /// Returns `true` if the allocator is in memory.
  ///
  /// ## Example
  ///
  /// ```rust
  /// use rarena_allocator::{sync::Arena, Options, Allocator};
  ///
  /// let arena = Options::new().with_capacity(100).alloc::<Arena>().unwrap();
  /// let is_inmemory = arena.is_inmemory();
  /// assert_eq!(is_inmemory, true);
  /// ```
  #[inline]
  fn is_inmemory(&self) -> bool {
    !self.is_ondisk()
  }

  /// Returns `true` if the allocator is on-disk and created through memory map.
  ///
  /// ## Example
  ///
  /// ```rust
  /// use rarena_allocator::{sync::Arena, Options, Allocator};
  ///
  /// let arena = Options::new().with_capacity(100).map_anon::<Arena>().unwrap();
  /// let is_map_anon = arena.is_map_anon();
  /// assert_eq!(is_map_anon, true);
  /// ```
  #[cfg(all(feature = "memmap", not(target_family = "wasm")))]
  #[cfg_attr(docsrs, doc(cfg(all(feature = "memmap", not(target_family = "wasm")))))]
  fn is_map_anon(&self) -> bool {
    self.is_map() && !self.is_ondisk()
  }

  /// Returns `true` if the allocator is on-disk and created through memory map.
  ///
  /// ## Example
  ///
  /// ```rust
  /// use rarena_allocator::{sync::Arena, Options, Allocator};
  ///
  /// let arena = Options::new().with_capacity(100).alloc::<Arena>().unwrap();
  /// let is_map_file = arena.is_map_file();
  /// assert_eq!(is_map_file, false);
  /// ```
  #[cfg(all(feature = "memmap", not(target_family = "wasm")))]
  #[cfg_attr(docsrs, doc(cfg(all(feature = "memmap", not(target_family = "wasm")))))]
  fn is_map_file(&self) -> bool {
    self.is_map() && self.is_ondisk()
  }

  /// Locks the underlying file for exclusive access, only works on mmap with a file backend.
  ///
  /// ## Example
  ///
  /// ```rust
  /// use rarena_allocator::{sync::Arena, Options, Allocator};
  /// # let path = tempfile::NamedTempFile::new().unwrap().into_temp_path();
  /// # std::fs::remove_file(&path);
  ///
  ///
  ///
  /// let mut arena = unsafe { Options::new().with_create_new(true).with_read(true).with_write(true).with_capacity(100).map_mut::<Arena, _>(&path).unwrap() };
  /// arena.lock_exclusive().unwrap();
  ///
  /// # std::fs::remove_file(path);
  /// ```
  #[cfg(all(feature = "memmap", not(target_family = "wasm")))]
  #[cfg_attr(docsrs, doc(cfg(all(feature = "memmap", not(target_family = "wasm")))))]
  #[inline]
  fn lock_exclusive(&self) -> std::io::Result<()> {
    self.as_ref().lock_exclusive()
  }

  /// Locks the underlying file for shared access, only works on mmap with a file backend.
  ///
  /// ## Example
  ///
  /// ```rust
  /// use rarena_allocator::{sync::Arena, Options, Allocator};
  /// # let path = tempfile::NamedTempFile::new().unwrap().into_temp_path();
  /// # std::fs::remove_file(&path);
  ///
  ///
  ///
  /// let mut arena = unsafe { Options::new().with_create_new(true).with_read(true).with_write(true).with_capacity(100).map_mut::<Arena, _>(&path).unwrap() };
  /// arena.lock_shared().unwrap();
  ///
  /// # std::fs::remove_file(path);
  /// ```
  #[cfg(all(feature = "memmap", not(target_family = "wasm")))]
  #[cfg_attr(docsrs, doc(cfg(all(feature = "memmap", not(target_family = "wasm")))))]
  #[inline]
  fn lock_shared(&self) -> std::io::Result<()> {
    self.as_ref().lock_shared()
  }

  /// Returns the magic version of the allocator. This value can be used to check the compatibility for application using
  /// [`Allocator`].
  ///
  /// ## Example
  ///
  /// ```rust
  /// use rarena_allocator::{sync::Arena, Options, Allocator};
  ///
  /// let arena = Options::new().with_capacity(100).alloc::<Arena>().unwrap();
  /// let magic_version = arena.magic_version();
  /// ```
  fn magic_version(&self) -> u16;

  /// Returns the whole main memory of the allocator as a byte slice.
  ///
  /// ## Example
  ///
  /// ```rust
  /// use rarena_allocator::{sync::Arena, Options, Allocator};
  ///
  /// let arena = Options::new().with_capacity(100).alloc::<Arena>().unwrap();
  /// let memory = arena.memory();
  /// ```
  #[inline]
  fn memory(&self) -> &[u8] {
    unsafe { core::slice::from_raw_parts(self.raw_ptr(), self.capacity()) }
  }

  /// Calculates the checksum of the allocated memory (excluding the reserved memory specified by users through [`Options::with_reserved`]) of the allocator.
  fn checksum<S: BuildChecksumer>(&self, cks: &S) -> u64 {
    let allocated_memory = self.allocated_memory(); // Get the memory to be checksummed
    let reserved = self.reserved_slice().len();
    let data = &allocated_memory[reserved..];

    let page_size = self.page_size(); // Get the size of each page

    let total_len = data.len(); // Total length of the allocated memory
    let full_pages = total_len / page_size; // Calculate how many full pages there are
    let remaining_bytes = total_len % page_size; // Calculate the number of remaining bytes

    let mut hasher = cks.build_checksumer(); // Create the hasher

    // Iterate over each full page
    for page_id in 0..full_pages {
      let start = page_id * page_size;
      let end = start + page_size;

      // Feed each page's slice into the hasher
      hasher.update(&data[start..end]);
    }

    // Handle any remaining bytes that don’t fill a full page
    if remaining_bytes > 0 {
      let start = full_pages * page_size;
      hasher.update(&data[start..total_len]); // Process the remaining bytes
    }

    // Finalize and return the checksum
    hasher.digest()
  }

  /// Returns the minimum segment size of the allocator.
  ///
  /// ## Example
  ///
  /// ```rust
  /// use rarena_allocator::{sync::Arena, Options, Allocator};
  ///
  /// let arena = Options::new().with_capacity(100).alloc::<Arena>().unwrap();
  /// let min_segment_size = arena.minimum_segment_size();
  /// ```
  fn minimum_segment_size(&self) -> u32;

  /// Sets the minimum segment size of the allocator.
  ///
  /// ## Example
  ///
  /// ```rust
  /// use rarena_allocator::{sync::Arena, Options, Allocator};
  ///
  /// let arena = Options::new().with_capacity(100).alloc::<Arena>().unwrap();
  /// arena.set_minimum_segment_size(100);
  /// ```
  fn set_minimum_segment_size(&self, size: u32);

  /// Returns `true` if the allocator is unify memory layout.
  ///
  /// ## Example
  ///
  /// ```rust
  /// use rarena_allocator::{sync::Arena, Options, Allocator};
  ///
  /// let arena = Options::new().with_capacity(100).alloc::<Arena>().unwrap();
  /// assert_eq!(arena.unify(), false);
  ///
  /// let arena = Options::new().with_capacity(100).with_unify(true).alloc::<Arena>().unwrap();
  /// assert_eq!(arena.unify(), true);
  /// ```
  #[inline]
  fn unify(&self) -> bool {
    self.as_ref().unify()
  }

  /// Returns the path of the mmap file, only returns `Some` when the ARENA is backed by a mmap file.
  ///
  /// ## Example
  ///
  /// ```rust
  /// # use rarena_allocator::{unsync::Arena, Allocator, Options};
  ///
  /// # let arena = Options::new().with_capacity(100).alloc::<Arena>().unwrap();
  /// let path = arena.path();
  /// ```
  #[cfg(all(feature = "memmap", not(target_family = "wasm")))]
  #[cfg_attr(docsrs, doc(cfg(all(feature = "memmap", not(target_family = "wasm")))))]
  fn path(&self) -> Option<&Self::Path>;

  /// `mlock(ptr, len)`—Lock memory into RAM.
  ///
  /// ## Safety
  ///
  /// This function operates on raw pointers, but it should only be used on
  /// memory which the caller owns. Technically, locking memory shouldn't violate
  /// any invariants, but since unlocking it can violate invariants, this
  /// function is also unsafe for symmetry.
  ///
  /// Some implementations implicitly round the memory region out to the nearest
  /// page boundaries, so this function may lock more memory than explicitly
  /// requested if the memory isn't page-aligned. Other implementations fail if
  /// the memory isn't page-aligned.
  ///
  /// # References
  ///  - [POSIX]
  ///  - [Linux]
  ///  - [Apple]
  ///  - [FreeBSD]
  ///  - [NetBSD]
  ///  - [OpenBSD]
  ///  - [DragonFly BSD]
  ///  - [illumos]
  ///  - [glibc]
  ///
  /// [POSIX]: https://pubs.opengroup.org/onlinepubs/9699919799/functions/mlock.html
  /// [Linux]: https://man7.org/linux/man-pages/man2/mlock.2.html
  /// [Apple]: https://developer.apple.com/library/archive/documentation/System/Conceptual/ManPages_iPhoneOS/man2/mlock.2.html
  /// [FreeBSD]: https://man.freebsd.org/cgi/man.cgi?query=mlock&sektion=2
  /// [NetBSD]: https://man.netbsd.org/mlock.2
  /// [OpenBSD]: https://man.openbsd.org/mlock.2
  /// [DragonFly BSD]: https://man.dragonflybsd.org/?command=mlock&section=2
  /// [illumos]: https://illumos.org/man/3C/mlock
  /// [glibc]: https://www.gnu.org/software/libc/manual/html_node/Page-Lock-Functions.html#index-mlock
  #[cfg(all(feature = "memmap", not(target_family = "wasm")))]
  #[cfg_attr(docsrs, doc(cfg(all(feature = "memmap", not(target_family = "wasm")))))]
  unsafe fn mlock(&self, offset: usize, len: usize) -> std::io::Result<()> {
    self.as_ref().mlock(offset, len)
  }

  /// `munlock(ptr, len)`—Unlock memory.
  ///
  /// ## Safety
  ///
  /// This function operates on raw pointers, but it should only be used on
  /// memory which the caller owns, to avoid compromising the `mlock` invariants
  /// of other unrelated code in the process.
  ///
  /// Some implementations implicitly round the memory region out to the nearest
  /// page boundaries, so this function may unlock more memory than explicitly
  /// requested if the memory isn't page-aligned.
  ///
  /// # References
  ///  - [POSIX]
  ///  - [Linux]
  ///  - [Apple]
  ///  - [FreeBSD]
  ///  - [NetBSD]
  ///  - [OpenBSD]
  ///  - [DragonFly BSD]
  ///  - [illumos]
  ///  - [glibc]
  ///
  /// [POSIX]: https://pubs.opengroup.org/onlinepubs/9699919799/functions/munlock.html
  /// [Linux]: https://man7.org/linux/man-pages/man2/munlock.2.html
  /// [Apple]: https://developer.apple.com/library/archive/documentation/System/Conceptual/ManPages_iPhoneOS/man2/munlock.2.html
  /// [FreeBSD]: https://man.freebsd.org/cgi/man.cgi?query=munlock&sektion=2
  /// [NetBSD]: https://man.netbsd.org/munlock.2
  /// [OpenBSD]: https://man.openbsd.org/munlock.2
  /// [DragonFly BSD]: https://man.dragonflybsd.org/?command=munlock&section=2
  /// [illumos]: https://illumos.org/man/3C/munlock
  /// [glibc]: https://www.gnu.org/software/libc/manual/html_node/Page-Lock-Functions.html#index-munlock
  #[cfg(all(feature = "memmap", not(target_family = "wasm")))]
  #[cfg_attr(docsrs, doc(cfg(all(feature = "memmap", not(target_family = "wasm")))))]
  unsafe fn munlock(&self, offset: usize, len: usize) -> std::io::Result<()> {
    self.as_ref().munlock(offset, len)
  }

  /// Returns the offset to the start of the allocator.
  ///
  /// ## Safety
  /// - `ptr` must be allocated by this allocator.
  unsafe fn offset(&self, ptr: *const u8) -> usize;

  /// Returns the page size.
  ///
  /// If in no-std environment, then this method will return `4096`.
  /// Otherwise, it will return the system's page size.
  ///
  /// ## Example
  ///
  /// ```rust
  /// use rarena_allocator::{sync::Arena, Options, Allocator};
  ///
  /// let arena = Options::new().with_capacity(100).alloc::<Arena>().unwrap();
  /// let page_size = arena.page_size();
  /// ```
  fn page_size(&self) -> usize;

  /// Returns `true` if the arena is read-only.
  ///
  /// ## Example
  ///
  /// ```rust
  /// use rarena_allocator::{sync::Arena, Options, Allocator};
  ///
  /// let arena = Options::new().with_capacity(100).alloc::<Arena>().unwrap();
  /// let read_only = arena.read_only();
  /// ```
  #[inline]
  fn read_only(&self) -> bool {
    self.as_ref().read_only()
  }

  /// Returns the number of references to the allocator.
  ///
  /// ## Example
  ///
  /// ```rust
  /// use rarena_allocator::{sync::Arena, Options, Allocator};
  ///
  /// let arena = Options::new().with_capacity(100).alloc::<Arena>().unwrap();
  /// let refs = arena.refs();
  /// ```
  fn refs(&self) -> usize;

  /// Returns the number of bytes remaining bytes can be allocated by the allocator.
  ///
  /// ## Example
  ///
  /// ```rust
  /// use rarena_allocator::{sync::Arena, Options, Allocator};
  ///
  /// let arena = Options::new().with_capacity(100).alloc::<Arena>().unwrap();
  /// let remaining = arena.remaining();
  /// ```
  fn remaining(&self) -> usize;

  /// Sets remove on drop, only works on mmap with a file backend.
  ///
  /// Default is `false`.
  ///
  /// > **WARNING:** Once set to `true`, the backed file will be removed when the allocator is dropped, even though the file is opened in
  /// > read-only mode.
  ///
  /// ## Example
  ///
  /// ```rust
  /// # use rarena_allocator::{sync::Arena, Options, Allocator};
  ///
  /// # let arena = Options::new().with_capacity(100).alloc::<Arena>().unwrap();
  /// arena.remove_on_drop(true);
  /// ```
  #[cfg(all(feature = "memmap", not(target_family = "wasm")))]
  #[cfg_attr(docsrs, doc(cfg(all(feature = "memmap", not(target_family = "wasm")))))]
  fn remove_on_drop(&self, remove_on_drop: bool) {
    self.as_ref().set_remove_on_drop(remove_on_drop);
  }

  /// Set back the allocator's main memory cursor to the given position.
  ///
  /// ## Safety
  /// - If the current position is larger than the given position,
  ///   then the memory between the current position and the given position will be reclaimed,
  ///   so must ensure the memory chunk between the current position and the given position will not
  ///   be accessed anymore.
  /// - This method is not thread safe.
  unsafe fn rewind(&self, pos: ArenaPosition);

  /// Try to lock the underlying file for exclusive access, only works on mmap with a file backend.
  ///
  /// ## Example
  ///
  /// ```rust
  /// use rarena_allocator::{sync::Arena, Options, Allocator};
  /// # let path = tempfile::NamedTempFile::new().unwrap().into_temp_path();
  /// # std::fs::remove_file(&path);
  ///
  ///
  ///
  /// let mut arena = unsafe { Options::new().with_create_new(true).with_read(true).with_write(true).with_capacity(100).map_mut::<Arena, _>(&path).unwrap() };
  /// arena.try_lock_exclusive().unwrap();
  ///
  /// # std::fs::remove_file(path);
  /// ```
  #[cfg(all(feature = "memmap", not(target_family = "wasm")))]
  #[cfg_attr(docsrs, doc(cfg(all(feature = "memmap", not(target_family = "wasm")))))]
  #[inline]
  fn try_lock_exclusive(&self) -> std::io::Result<()> {
    self.as_ref().try_lock_exclusive()
  }

  /// Try to lock the underlying file for shared access, only works on mmap with a file backend.
  ///
  /// ## Example
  ///
  /// ```rust
  /// use rarena_allocator::{sync::Arena, Options, Allocator};
  /// # let path = tempfile::NamedTempFile::new().unwrap().into_temp_path();
  /// # std::fs::remove_file(&path);
  ///
  ///
  ///
  /// let mut arena = unsafe { Options::new().with_create_new(true).with_read(true).with_write(true).with_capacity(100).map_mut::<Arena, _>(&path).unwrap() };
  /// arena.try_lock_shared().unwrap();
  ///
  /// # std::fs::remove_file(path);
  /// ```
  #[cfg(all(feature = "memmap", not(target_family = "wasm")))]
  #[cfg_attr(docsrs, doc(cfg(all(feature = "memmap", not(target_family = "wasm")))))]
  #[inline]
  fn try_lock_shared(&self) -> std::io::Result<()> {
    self.as_ref().try_lock_shared()
  }

  /// Unlocks the underlying file, only works on mmap with a file backend.
  ///
  /// ## Example
  ///
  /// ```rust
  /// use rarena_allocator::{sync::Arena, Options, Allocator};
  /// # let path = tempfile::NamedTempFile::new().unwrap().into_temp_path();
  /// # std::fs::remove_file(&path);
  ///
  ///
  ///
  /// let mut arena = unsafe { Options::new().with_create_new(true).with_read(true).with_write(true).with_capacity(100).map_mut::<Arena, _>(&path).unwrap() };
  /// arena.lock_exclusive().unwrap();
  ///
  /// // do some thing
  /// arena.unlock().unwrap();
  ///
  /// # std::fs::remove_file(path);
  /// ```
  #[cfg(all(feature = "memmap", not(target_family = "wasm")))]
  #[cfg_attr(docsrs, doc(cfg(all(feature = "memmap", not(target_family = "wasm")))))]
  #[inline]
  fn unlock(&self) -> std::io::Result<()> {
    self.as_ref().unlock()
  }

  /// Returns the version of the allocator.
  ///
  /// ## Example
  ///
  /// ```rust
  /// use rarena_allocator::{sync::Arena, Options, Allocator};
  ///
  /// let arena = Options::new().with_capacity(100).alloc::<Arena>().unwrap();
  /// let version = arena.version();
  /// ```
  fn version(&self) -> u16;
}