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
#[cfg(all(feature = "memmap", not(target_family = "wasm")))]
mod open_options;
#[cfg(all(feature = "memmap", not(target_family = "wasm")))]
#[cfg_attr(docsrs, doc(cfg(all(feature = "memmap", not(target_family = "wasm")))))]
pub use open_options::*;
/// Unknown freelist error.
#[derive(Debug, Clone, Copy, Eq, PartialEq, Hash)]
#[repr(transparent)]
pub struct UnknownFreelist(());
impl core::fmt::Display for UnknownFreelist {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
write!(f, "unknown freelist")
}
}
#[cfg(feature = "std")]
impl std::error::Error for UnknownFreelist {}
/// The freelist configuration for the ARENA.
#[derive(Default, Debug, Clone, Copy, Eq, PartialEq, Hash)]
#[repr(u8)]
#[non_exhaustive]
pub enum Freelist {
/// Disable freelist, once main memory is consumed out, then this ARENA cannot allocate anymore.
None = 0,
/// A lock-free linked list which ordered by segment size (descending), when the main memory is consumed out, the following allocation will just use the head (largest segment) from freelist.
#[default]
Optimistic = 1,
/// A lock-free linked list which ordered by segment size (ascending), when the main memory is consumed out, the following allocation will find the most suitable segment from freelist.
Pessimistic = 2,
}
impl TryFrom<u8> for Freelist {
type Error = UnknownFreelist;
fn try_from(value: u8) -> Result<Self, Self::Error> {
Ok(match value {
0 => Self::None,
1 => Self::Optimistic,
2 => Self::Pessimistic,
_ => return Err(UnknownFreelist(())),
})
}
}
/// Options for creating an ARENA
#[derive(Debug, Clone, Copy)]
pub struct ArenaOptions {
maximum_alignment: usize,
capacity: u32,
minimum_segment_size: u32,
maximum_retries: u8,
magic_version: u16,
unify: bool,
freelist: Freelist,
reserved: u32,
}
impl Default for ArenaOptions {
#[inline]
fn default() -> Self {
Self::new()
}
}
impl ArenaOptions {
/// Create an options for creating an ARENA with default values.
#[inline]
pub const fn new() -> Self {
Self {
maximum_alignment: 8,
capacity: 1024,
minimum_segment_size: 20,
maximum_retries: 5,
unify: false,
magic_version: 0,
freelist: Freelist::Optimistic,
reserved: 0,
}
}
/// Set the reserved of the ARENA.
///
/// The reserved is used to configure the start position of the ARENA. This is useful
/// when you want to add some bytes before the ARENA, e.g. when using the memory map file backed ARENA,
/// you can set the reserved to the size to `8` to store a 8 bytes checksum.
///
/// The default reserved is `0`.
///
/// # Example
///
/// ```rust
/// use rarena_allocator::ArenaOptions;
///
/// let opts = ArenaOptions::new().with_reserved(8);
/// ```
#[inline]
pub const fn with_reserved(mut self, reserved: u32) -> Self {
self.reserved = if self.capacity <= reserved {
self.capacity
} else {
reserved
};
self
}
/// Set the maximum alignment of the ARENA.
///
/// If you are trying to allocate a `T` which requires a larger alignment than this value,
/// then will lead to `read_unaligned`, which is undefined behavior on some platforms.
///
/// The alignment must be a power of 2.
/// The default maximum alignment is `8`.
///
/// # Example
///
/// ```
/// use rarena_allocator::ArenaOptions;
///
/// let opts = ArenaOptions::new().with_maximum_alignment(16);
/// ```
#[inline]
pub const fn with_maximum_alignment(mut self, alignment: usize) -> Self {
assert!(
alignment.is_power_of_two(),
"alignment must be a power of 2"
);
self.maximum_alignment = alignment;
self
}
/// Set the capacity of the ARENA. If the ARENA is backed by a memory map and the original file size is less than the capacity,
/// then the file will be resized to the capacity.
///
/// The capacity must be greater than the minimum capacity of the ARENA.
///
/// The default capacity is `1KB`.
///
/// # Example
///
/// ```
/// use rarena_allocator::ArenaOptions;
///
/// let opts = ArenaOptions::new().with_capacity(2048);
/// ```
#[inline]
pub const fn with_capacity(mut self, capacity: u32) -> Self {
self.capacity = capacity;
self
}
/// Set the minimum segment size of the ARENA.
///
/// This value controls the size of the holes.
///
/// The default minimum segment size is `48 bytes`.
///
/// # Example
///
/// ```
/// use rarena_allocator::ArenaOptions;
///
/// let opts = ArenaOptions::new().with_minimum_segment_size(64);
/// ```
#[inline]
pub const fn with_minimum_segment_size(mut self, minimum_segment_size: u32) -> Self {
self.minimum_segment_size = minimum_segment_size;
self
}
/// Set the maximum retries of the ARENA.
///
/// This value controls how many times the ARENA will retry to allocate from slow path.
///
/// The default maximum retries is `5`.
///
/// # Example
///
/// ```
/// use rarena_allocator::ArenaOptions;
///
/// let opts = ArenaOptions::new().with_maximum_retries(10);
/// ```
#[inline]
pub const fn with_maximum_retries(mut self, maximum_retries: u8) -> Self {
self.maximum_retries = maximum_retries;
self
}
/// Set if use the unify memory layout of the ARENA.
///
/// File backed ARENA has different memory layout with other kind backed ARENA,
/// set this value to `true` will unify the memory layout of the ARENA, which means
/// all kinds of backed ARENA will have the same memory layout.
///
/// This value will be ignored if the ARENA is backed by a file backed memory map.
///
/// The default value is `false`.
///
/// # Example
///
/// ```
/// use rarena_allocator::ArenaOptions;
///
/// let opts = ArenaOptions::new().with_unify(true);
/// ```
#[inline]
pub const fn with_unify(mut self, unify: bool) -> Self {
self.unify = unify;
self
}
/// Set the external version of the ARENA,
/// this is used by the application using [`Arena`](crate::Arena)
/// to ensure that it doesn't open the [`Arena`](crate::Arena)
/// with incompatible data format.
///
/// The default value is `0`.
///
/// # Example
///
/// ```rust
/// use rarena_allocator::ArenaOptions;
///
/// let opts = ArenaOptions::new().with_magic_version(1);
/// ```
#[inline]
pub const fn with_magic_version(mut self, magic_version: u16) -> Self {
self.magic_version = magic_version;
self
}
/// Set the freelist configuration for the ARENA.
/// The default freelist is `Freelist::Optimistic`.
///
/// # Example
///
/// ```rust
/// use rarena_allocator::{ArenaOptions, Freelist};
///
/// let opts = ArenaOptions::new().with_freelist(Freelist::Pessimistic);
/// ```
#[inline]
pub const fn with_freelist(mut self, freelist: Freelist) -> Self {
self.freelist = freelist;
self
}
/// Get the reserved of the ARENA.
///
/// The reserved is used to configure the start position of the ARENA. This is useful
/// when you want to add some bytes before the ARENA, e.g. when using the memory map file backed ARENA,
/// you can set the reserved to the size to `8` to store a 8 bytes checksum.
///
/// The default reserved is `0`.
///
/// # Example
///
/// ```rust
/// use rarena_allocator::ArenaOptions;
///
/// let opts = ArenaOptions::new().with_reserved(8);
///
/// assert_eq!(opts.reserved(), 8);
/// ```
#[inline]
pub const fn reserved(&self) -> u32 {
self.reserved
}
/// Get the maximum alignment of the ARENA.
///
/// # Example
///
/// ```
/// use rarena_allocator::ArenaOptions;
///
/// let opts = ArenaOptions::new().with_maximum_alignment(16);
///
/// assert_eq!(opts.maximum_alignment(), 16);
/// ```
#[inline]
pub const fn maximum_alignment(&self) -> usize {
self.maximum_alignment
}
/// Get the capacity of the ARENA.
///
/// # Example
///
/// ```
/// use rarena_allocator::ArenaOptions;
///
/// let opts = ArenaOptions::new().with_capacity(2048);
///
/// assert_eq!(opts.capacity(), 2048);
/// ```
#[inline]
pub const fn capacity(&self) -> u32 {
self.capacity
}
/// Get the minimum segment size of the ARENA.
///
/// # Example
///
/// ```
/// use rarena_allocator::ArenaOptions;
///
/// let opts = ArenaOptions::new().with_minimum_segment_size(64);
///
/// assert_eq!(opts.minimum_segment_size(), 64);
/// ```
#[inline]
pub const fn minimum_segment_size(&self) -> u32 {
self.minimum_segment_size
}
/// Get the maximum retries of the ARENA.
/// This value controls how many times the ARENA will retry to allocate from slow path.
///
/// The default maximum retries is `5`.
///
/// # Example
///
/// ```
/// use rarena_allocator::ArenaOptions;
///
/// let opts = ArenaOptions::new().with_maximum_retries(10);
///
/// assert_eq!(opts.maximum_retries(), 10);
/// ```
#[inline]
pub const fn maximum_retries(&self) -> u8 {
self.maximum_retries
}
/// Get if use the unify memory layout of the ARENA.
///
/// File backed ARENA has different memory layout with other kind backed ARENA,
/// set this value to `true` will unify the memory layout of the ARENA, which means
/// all kinds of backed ARENA will have the same memory layout.
///
/// This value will be ignored if the ARENA is backed by a file backed memory map.
///
/// The default value is `false`.
///
/// # Example
///
/// ```rust
/// use rarena_allocator::ArenaOptions;
///
/// let opts = ArenaOptions::new().with_unify(true);
///
/// assert_eq!(opts.unify(), true);
/// ```
#[inline]
pub const fn unify(&self) -> bool {
self.unify
}
/// Get the external version of the ARENA,
/// this is used by the application using [`Arena`](crate::Arena)
/// to ensure that it doesn't open the [`Arena`](crate::Arena)
/// with incompatible data format.
///
/// The default value is `0`.
///
/// # Example
///
/// ```rust
/// use rarena_allocator::ArenaOptions;
///
/// let opts = ArenaOptions::new().with_magic_version(1);
///
/// assert_eq!(opts.magic_version(), 1);
/// ```
#[inline]
pub const fn magic_version(&self) -> u16 {
self.magic_version
}
/// Get the freelist configuration for the ARENA.
///
/// # Example
///
/// ```rust
/// use rarena_allocator::{ArenaOptions, Freelist};
///
/// let opts = ArenaOptions::new().with_freelist(Freelist::Pessimistic);
///
/// assert_eq!(opts.freelist(), Freelist::Pessimistic);
/// ```
#[inline]
pub const fn freelist(&self) -> Freelist {
self.freelist
}
}