1pub(crate) use self::inner::{do_alloc, Allocator, Global};
23// Nightly-case.
4// Use unstable `allocator_api` feature.
5// This is compatible with `allocator-api2` which can be enabled or not.
6// This is used when building for `std`.
7#[cfg(feature = "nightly")]
8mod inner {
9use crate::alloc::alloc::Layout;
10pub use crate::alloc::alloc::{Allocator, Global};
11use core::ptr::NonNull;
1213#[allow(clippy::map_err_ignore)]
14pub(crate) fn do_alloc<A: Allocator>(alloc: &A, layout: Layout) -> Result<NonNull<u8>, ()> {
15match alloc.allocate(layout) {
16Ok(ptr) => Ok(ptr.as_non_null_ptr()),
17Err(_) => Err(()),
18 }
19 }
20}
2122// Basic non-nightly case.
23// This uses `allocator-api2` enabled by default.
24// If any crate enables "nightly" in `allocator-api2`,
25// this will be equivalent to the nightly case,
26// since `allocator_api2::alloc::Allocator` would be re-export of
27// `core::alloc::Allocator`.
28#[cfg(all(not(feature = "nightly"), feature = "allocator-api2"))]
29mod inner {
30use crate::alloc::alloc::Layout;
31pub use allocator_api2::alloc::{Allocator, Global};
32use core::ptr::NonNull;
3334#[allow(clippy::map_err_ignore)]
35pub(crate) fn do_alloc<A: Allocator>(alloc: &A, layout: Layout) -> Result<NonNull<u8>, ()> {
36match alloc.allocate(layout) {
37Ok(ptr) => Ok(ptr.cast()),
38Err(_) => Err(()),
39 }
40 }
41}
4243// No-defaults case.
44// When building with default-features turned off and
45// neither `nightly` nor `allocator-api2` is enabled,
46// this will be used.
47// Making it impossible to use any custom allocator with collections defined
48// in this crate.
49// Any crate in build-tree can enable `allocator-api2`,
50// or `nightly` without disturbing users that don't want to use it.
51#[cfg(not(any(feature = "nightly", feature = "allocator-api2")))]
52mod inner {
53use crate::alloc::alloc::{alloc, dealloc, Layout};
54use core::ptr::NonNull;
5556#[allow(clippy::missing_safety_doc)] // not exposed outside of this crate
57pub unsafe trait Allocator {
58fn allocate(&self, layout: Layout) -> Result<NonNull<u8>, ()>;
59unsafe fn deallocate(&self, ptr: NonNull<u8>, layout: Layout);
60 }
6162#[derive(Copy, Clone)]
63pub struct Global;
6465unsafe impl Allocator for Global {
66#[inline]
67fn allocate(&self, layout: Layout) -> Result<NonNull<u8>, ()> {
68unsafe { NonNull::new(alloc(layout)).ok_or(()) }
69 }
70#[inline]
71unsafe fn deallocate(&self, ptr: NonNull<u8>, layout: Layout) {
72 dealloc(ptr.as_ptr(), layout);
73 }
74 }
7576impl Default for Global {
77#[inline]
78fn default() -> Self {
79 Global
80 }
81 }
8283pub(crate) fn do_alloc<A: Allocator>(alloc: &A, layout: Layout) -> Result<NonNull<u8>, ()> {
84 alloc.allocate(layout)
85 }
86}