1use core::error::Error;
6use core::fmt::{self, Debug, Display, Formatter};
7#[cfg(not(no_global_oom_handling))]
8use core::intrinsics::{const_allocate, const_make_global};
9use core::marker::PhantomData;
10#[cfg(not(no_global_oom_handling))]
11use core::marker::Unsize;
12#[cfg(not(no_global_oom_handling))]
13use core::mem;
14use core::mem::SizedTypeProperties;
15use core::ops::{Deref, DerefMut};
16use core::ptr::{self, NonNull, Pointee};
17
18use crate::alloc::{self, Layout, LayoutError};
19
20#[unstable(feature = "thin_box", issue = "92791")]
38pub struct ThinBox<T: ?Sized> {
39 ptr: WithOpaqueHeader,
42 _marker: PhantomData<T>,
43}
44
45#[unstable(feature = "thin_box", issue = "92791")]
47unsafe impl<T: ?Sized + Send> Send for ThinBox<T> {}
48
49#[unstable(feature = "thin_box", issue = "92791")]
51unsafe impl<T: ?Sized + Sync> Sync for ThinBox<T> {}
52
53#[unstable(feature = "thin_box", issue = "92791")]
54impl<T> ThinBox<T> {
55 #[cfg(not(no_global_oom_handling))]
69 pub fn new(value: T) -> Self {
70 let meta = ptr::metadata(&value);
71 let ptr = WithOpaqueHeader::new(meta, value);
72 ThinBox { ptr, _marker: PhantomData }
73 }
74
75 pub fn try_new(value: T) -> Result<Self, core::alloc::AllocError> {
91 let meta = ptr::metadata(&value);
92 WithOpaqueHeader::try_new(meta, value).map(|ptr| ThinBox { ptr, _marker: PhantomData })
93 }
94}
95
96#[unstable(feature = "thin_box", issue = "92791")]
97impl<Dyn: ?Sized> ThinBox<Dyn> {
98 #[cfg(not(no_global_oom_handling))]
112 pub fn new_unsize<T>(value: T) -> Self
113 where
114 T: Unsize<Dyn>,
115 {
116 if T::IS_ZST {
117 let ptr = WithOpaqueHeader::new_unsize_zst::<Dyn, T>(value);
118 ThinBox { ptr, _marker: PhantomData }
119 } else {
120 let meta = ptr::metadata(&value as &Dyn);
121 let ptr = WithOpaqueHeader::new(meta, value);
122 ThinBox { ptr, _marker: PhantomData }
123 }
124 }
125}
126
127#[unstable(feature = "thin_box", issue = "92791")]
128impl<T: ?Sized + Debug> Debug for ThinBox<T> {
129 fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
130 Debug::fmt(self.deref(), f)
131 }
132}
133
134#[unstable(feature = "thin_box", issue = "92791")]
135impl<T: ?Sized + Display> Display for ThinBox<T> {
136 fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
137 Display::fmt(self.deref(), f)
138 }
139}
140
141#[unstable(feature = "thin_box", issue = "92791")]
142impl<T: ?Sized> Deref for ThinBox<T> {
143 type Target = T;
144
145 fn deref(&self) -> &T {
146 let value = self.data();
147 let metadata = self.meta();
148 let pointer = ptr::from_raw_parts(value as *const (), metadata);
149 unsafe { &*pointer }
151 }
152}
153
154#[unstable(feature = "thin_box", issue = "92791")]
155impl<T: ?Sized> DerefMut for ThinBox<T> {
156 fn deref_mut(&mut self) -> &mut T {
157 let value = self.data();
158 let metadata = self.meta();
159 let pointer = ptr::from_raw_parts_mut::<T>(value as *mut (), metadata);
160 unsafe { &mut *pointer }
162 }
163}
164
165#[unstable(feature = "thin_box", issue = "92791")]
166impl<T: ?Sized> Drop for ThinBox<T> {
167 fn drop(&mut self) {
168 let value = self.deref_mut();
169 let value = value as *mut T;
170 unsafe {
172 self.with_header().drop::<T>(value);
173 }
174 }
175}
176
177#[unstable(feature = "thin_box", issue = "92791")]
178impl<T: ?Sized> ThinBox<T> {
179 fn meta(&self) -> <T as Pointee>::Metadata {
180 unsafe { *self.with_header().header() }
182 }
183
184 fn data(&self) -> *mut u8 {
185 self.with_header().value()
186 }
187
188 fn with_header(&self) -> &WithHeader<<T as Pointee>::Metadata> {
189 unsafe { &*((&raw const self.ptr) as *const WithHeader<_>) }
191 }
192}
193
194#[repr(transparent)]
200struct WithHeader<H>(NonNull<u8>, PhantomData<H>);
201
202#[repr(transparent)]
205struct WithOpaqueHeader(NonNull<u8>);
206
207impl WithOpaqueHeader {
208 #[cfg(not(no_global_oom_handling))]
209 fn new<H, T>(header: H, value: T) -> Self {
210 let ptr = WithHeader::new(header, value);
211 Self(ptr.0)
212 }
213
214 #[cfg(not(no_global_oom_handling))]
215 fn new_unsize_zst<Dyn, T>(value: T) -> Self
216 where
217 Dyn: ?Sized,
218 T: Unsize<Dyn>,
219 {
220 let ptr = WithHeader::<<Dyn as Pointee>::Metadata>::new_unsize_zst::<Dyn, T>(value);
221 Self(ptr.0)
222 }
223
224 fn try_new<H, T>(header: H, value: T) -> Result<Self, core::alloc::AllocError> {
225 WithHeader::try_new(header, value).map(|ptr| Self(ptr.0))
226 }
227}
228
229impl<H> WithHeader<H> {
230 #[cfg(not(no_global_oom_handling))]
231 fn new<T>(header: H, value: T) -> WithHeader<H> {
232 let value_layout = Layout::new::<T>();
233 let Ok((layout, value_offset)) = Self::alloc_layout(value_layout) else {
234 alloc::handle_alloc_error(Layout::new::<()>());
241 };
242
243 let ptr = if layout.size() == 0 {
247 debug_assert!(value_offset == 0 && T::IS_ZST && H::IS_ZST);
250 layout.dangling_ptr()
251 } else {
252 let ptr = unsafe { alloc::alloc(layout) };
254 if ptr.is_null() {
255 alloc::handle_alloc_error(layout);
256 }
257 unsafe {
260 let ptr = ptr.add(value_offset) as *mut _;
261
262 NonNull::new_unchecked(ptr)
263 }
264 };
265
266 let result = WithHeader(ptr, PhantomData);
267
268 unsafe {
270 ptr::write(result.header(), header);
271 ptr::write(result.value().cast(), value);
272 }
273
274 result
275 }
276
277 fn try_new<T>(header: H, value: T) -> Result<WithHeader<H>, core::alloc::AllocError> {
280 let value_layout = Layout::new::<T>();
281 let Ok((layout, value_offset)) = Self::alloc_layout(value_layout) else {
282 return Err(core::alloc::AllocError);
283 };
284
285 let ptr = if layout.size() == 0 {
289 debug_assert!(value_offset == 0 && T::IS_ZST && H::IS_ZST);
292 layout.dangling_ptr()
293 } else {
294 let ptr = unsafe { alloc::alloc(layout) };
296 if ptr.is_null() {
297 return Err(core::alloc::AllocError);
298 }
299
300 unsafe {
303 let ptr = ptr.add(value_offset) as *mut _;
304
305 NonNull::new_unchecked(ptr)
306 }
307 };
308
309 let result = WithHeader(ptr, PhantomData);
310
311 unsafe {
313 ptr::write(result.header(), header);
314 ptr::write(result.value().cast(), value);
315 }
316
317 Ok(result)
318 }
319
320 #[cfg(not(no_global_oom_handling))]
322 fn new_unsize_zst<Dyn, T>(value: T) -> WithHeader<H>
323 where
324 Dyn: Pointee<Metadata = H> + ?Sized,
325 T: Unsize<Dyn>,
326 {
327 assert!(T::IS_ZST);
328
329 const fn max(a: usize, b: usize) -> usize {
330 if a > b { a } else { b }
331 }
332
333 let alloc: &<Dyn as Pointee>::Metadata = const {
338 let alloc_align = max(align_of::<T>(), align_of::<<Dyn as Pointee>::Metadata>());
342
343 let alloc_size = max(align_of::<T>(), size_of::<<Dyn as Pointee>::Metadata>());
344
345 let alloc: *mut u8 = unsafe { const_allocate(alloc_size, alloc_align) };
347
348 let metadata_offset =
349 alloc_size.checked_sub(size_of::<<Dyn as Pointee>::Metadata>()).unwrap();
350 let metadata_ptr: *mut <Dyn as Pointee>::Metadata =
351 unsafe { alloc.add(metadata_offset).cast() };
353 unsafe {
355 metadata_ptr.write(ptr::metadata::<Dyn>(ptr::dangling::<T>() as *const Dyn));
356 }
357 unsafe { const_make_global(alloc) };
359 unsafe { &*metadata_ptr }
361 };
362
363 let value_ptr =
364 unsafe { (alloc as *const <Dyn as Pointee>::Metadata).add(1) }.cast::<T>().cast_mut();
366 debug_assert!(value_ptr.is_aligned());
367 mem::forget(value);
368 WithHeader(NonNull::new(value_ptr.cast()).unwrap(), PhantomData)
369 }
370
371 unsafe fn drop<T: ?Sized>(&self, value: *mut T) {
375 struct DropGuard<H> {
376 ptr: NonNull<u8>,
377 value_layout: Layout,
378 _marker: PhantomData<H>,
379 }
380
381 impl<H> Drop for DropGuard<H> {
382 fn drop(&mut self) {
383 if self.value_layout.size() == 0 {
385 return;
386 }
387
388 let (layout, value_offset) =
389 unsafe { WithHeader::<H>::alloc_layout(self.value_layout).unwrap_unchecked() };
391
392 debug_assert!(layout.size() != 0);
394 unsafe { alloc::dealloc(self.ptr.as_ptr().sub(value_offset), layout) };
396 }
397 }
398
399 let _guard = DropGuard {
401 ptr: self.0,
402 value_layout: unsafe { Layout::for_value_raw(value) },
404 _marker: PhantomData::<H>,
405 };
406
407 unsafe { ptr::drop_in_place::<T>(value) };
411 }
412
413 fn header(&self) -> *mut H {
414 let hp = unsafe { self.0.as_ptr().sub(Self::header_size()) as *mut H };
422 debug_assert!(hp.is_aligned());
423 hp
424 }
425
426 fn value(&self) -> *mut u8 {
427 self.0.as_ptr()
428 }
429
430 const fn header_size() -> usize {
431 size_of::<H>()
432 }
433
434 fn alloc_layout(value_layout: Layout) -> Result<(Layout, usize), LayoutError> {
435 Layout::new::<H>().extend(value_layout)
436 }
437}
438
439#[unstable(feature = "thin_box", issue = "92791")]
440impl<T: ?Sized + Error> Error for ThinBox<T> {
441 fn source(&self) -> Option<&(dyn Error + 'static)> {
442 self.deref().source()
443 }
444}
445
446#[cfg(not(no_global_oom_handling))]
447#[unstable(feature = "thin_box", issue = "92791")]
448impl<T> From<T> for ThinBox<T> {
449 #[inline(always)]
450 fn from(value: T) -> Self {
451 Self::new(value)
452 }
453}