#[cfg(test)]
pub(crate) use self::inner::AllocError;
pub(crate) use self::inner::{Allocator, Global, do_alloc};
#[cfg(feature = "nightly")]
mod inner {
use core::ptr::NonNull;
#[cfg(test)]
pub(crate) use stdalloc::alloc::AllocError;
use stdalloc::alloc::Layout;
pub(crate) use stdalloc::alloc::{Allocator, Global};
pub(crate) fn do_alloc<A: Allocator>(alloc: &A, layout: Layout) -> Result<NonNull<[u8]>, ()> {
match alloc.allocate(layout) {
Ok(ptr) => Ok(ptr),
Err(_) => Err(()),
}
}
}
#[cfg(all(not(feature = "nightly"), feature = "allocator-api2"))]
mod inner {
#[cfg(test)]
pub(crate) use allocator_api2::alloc::AllocError;
pub(crate) use allocator_api2::alloc::{Allocator, Global};
use core::ptr::NonNull;
use stdalloc::alloc::Layout;
pub(crate) fn do_alloc<A: Allocator>(alloc: &A, layout: Layout) -> Result<NonNull<[u8]>, ()> {
match alloc.allocate(layout) {
Ok(ptr) => Ok(ptr),
Err(_) => Err(()),
}
}
}
#[cfg(not(any(feature = "nightly", feature = "allocator-api2")))]
mod inner {
use core::ptr::NonNull;
use stdalloc::alloc::{Layout, alloc, dealloc};
#[expect(clippy::missing_safety_doc)] pub unsafe trait Allocator {
fn allocate(&self, layout: Layout) -> Result<NonNull<[u8]>, ()>;
unsafe fn deallocate(&self, ptr: NonNull<u8>, layout: Layout);
}
#[derive(Copy, Clone)]
pub struct Global;
unsafe impl Allocator for Global {
#[inline]
fn allocate(&self, layout: Layout) -> Result<NonNull<[u8]>, ()> {
match unsafe { NonNull::new(alloc(layout)) } {
Some(data) => {
Ok(unsafe {
NonNull::new_unchecked(core::ptr::slice_from_raw_parts_mut(
data.as_ptr(),
layout.size(),
))
})
}
None => Err(()),
}
}
#[inline]
unsafe fn deallocate(&self, ptr: NonNull<u8>, layout: Layout) {
unsafe {
dealloc(ptr.as_ptr(), layout);
}
}
}
impl Default for Global {
#[inline]
fn default() -> Self {
Global
}
}
pub(crate) fn do_alloc<A: Allocator>(alloc: &A, layout: Layout) -> Result<NonNull<[u8]>, ()> {
alloc.allocate(layout)
}
}