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
// Copyright 2018 Mike Hommey
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.

#![deny(missing_docs)]

//! # Extensions to the `Box` type
//!
//! This crate provides extra initializer methods for `Box`, working around the
//! current (as of writing) shortcomings from `Box::new`:
//!
//! * Since Rust 1.12, constructs such as `Box::new([0; 4096])` first create a
//! temporary object on the stack before copying it into the newly allocated
//! space (e.g. [issue #50047]).
//!
//! * Constructs such as `Box::new(some_function_call())` first get the result
//! from the function call on the stack before copying it into the newly
//! allocated space.
//!
//! [issue #50047]: https://github.com/rust-lang/rust/issues/50047
//!
//! Both can be worked around with some contortion but with caveats. This crate
//! provides helpers doing those contortions for you, but can't deal with the
//! caveats. Those caveats are essentially the same as why the unstable
//! placement features were removed in nightly 1.27, namely that there are no
//! guarantees that things will actually happen in place (and they don't in
//! debug builds).
//!
//! The crates adds the following helper methods to the `Box` type:
//!
//! * [`new_with`], which takes a function or closure returning the object that
//! will be placed in the Box.
//!
//! * [`new_zeroed`], which creates an object filled with zeroes, possibly
//! using [`calloc`]/[`HeapAlloc(..., HEAP_ZERO_MEMORY, ...)`]/
//! [`mallocx(..., MALLOCX_ZERO)`] under the hood.
//!
//! * [`try_new`], [`try_new_with`], and [`try_new_zeroed`], which are equivalent
//! to `new`, `new_with` and `new_zeroed`, but don't panic on allocation
//! failure.
//!
//! [`new_with`]: trait.BoxExt.html#tymethod.new_with
//! [`new_zeroed`]: trait.BoxExt.html#tymethod.new_zeroed
//! [`try_new`]: trait.BoxExt.html#tymethod.try_new
//! [`try_new_with`]: trait.BoxExt.html#tymethod.try_new_with
//! [`try_new_zeroed`]: trait.BoxExt.html#tymethod.try_new_zeroed
//! [`calloc`]: http://pubs.opengroup.org/onlinepubs/009695399/functions/calloc.html
//! [`HeapAlloc(..., HEAP_ZERO_MEMORY, ...)`]: https://msdn.microsoft.com/en-us/library/windows/desktop/aa366597(v=vs.85).aspx#HEAP_ZERO_MEMORY
//! [`mallocx(..., MALLOCX_ZERO)`]: http://jemalloc.net/jemalloc.3.html#MALLOCX_ZERO
//!
//! ## Features
//!
//! * `std` (enabled by default): Uses libstd. Can be disabled to allow use
//! with `no_std` code, in which case `allocator_api` needs to be enabled.
//!
//! * `allocator_api`: Add similar helpers to the `Box` type from the
//! `allocator_api` crate.

#![cfg_attr(not(feature = "std"), no_std)]
#![cfg_attr(all(feature = "std", not(feature = "global_alloc")), feature(allocator_api))]

#[cfg(all(feature = "std", feature = "global_alloc"))]
use std::alloc::{handle_alloc_error, alloc, alloc_zeroed, Layout};

#[cfg(all(feature = "std", not(feature = "global_alloc")))]
use std::heap::{Alloc, Layout};

#[cfg(all(feature = "std", not(feature = "global_alloc"), not(feature = "global_alloc27")))]
use std::heap::{AllocErr, Heap};

#[cfg(all(feature = "std", feature = "global_alloc27"))]
use std::heap::{oom, Global as Heap};

#[cfg(feature = "allocator_api")]
extern crate allocator_api;

#[cfg(feature = "std")]
extern crate core;

#[cfg(feature = "std")]
use core::ptr;

#[cfg(feature = "allocator_api")]
mod allocator_box;
#[cfg(feature = "allocator_api")]
pub use allocator_box::*;

/// Extensions to the `Box` type
pub trait BoxExt {
    /// Type contained inside the `Box`.
    type Inner;

    /// Allocates memory on the heap and then places the result of `f` into it.
    ///
    /// This doesn't actually allocate if `Self::Inner` is zero-sized.
    ///
    /// When building with optimization enabled, this is expected to avoid
    /// copies, contrary to `Box::new`.
    ///
    /// # Examples
    ///
    /// ```
    /// extern crate boxext;
    /// use boxext::BoxExt;
    ///
    /// #[derive(Debug, PartialEq)]
    /// struct Foo(usize, usize);
    ///
    /// impl Foo {
    ///     fn new(a: usize, b: usize) -> Self {
    ///         Foo(a, b)
    ///    }
    /// }
    ///
    /// impl Default for Foo {
    ///     fn default() -> Self {
    ///         Foo::new(0, 1)
    ///     }
    /// }
    ///
    /// fn main() {
    ///     // equivalent to `Box::new(Foo(1, 2))`
    /// #   #[cfg(feature = "std")]
    ///     let buf = Box::new_with(|| Foo(1, 2));
    /// #   #[cfg(feature = "std")]
    ///     assert_eq!(*buf, Foo(1, 2));
    ///
    ///     // equivalent to `Box::new(Foo::new(2, 3))`
    /// #   #[cfg(feature = "std")]
    ///     let buf = Box::new_with(|| Foo::new(2, 3));
    /// #   #[cfg(feature = "std")]
    ///     assert_eq!(*buf, Foo(2, 3));
    ///
    ///     // equivalent to `Box::new(Foo::default())`
    /// #   #[cfg(feature = "std")]
    ///     let buf = Box::new_with(Foo::default);
    /// #   #[cfg(feature = "std")]
    ///     assert_eq!(*buf, Foo::default());
    /// }
    /// ```
    fn new_with<F: FnOnce() -> Self::Inner>(f: F) -> Self;

    /// Allocates zeroed memory on the heap.
    ///
    /// This doesn't actually allocate if `Self::Inner` is zero-sized.
    ///
    /// This method will obtain zeroed memory directly from the underlying
    /// allocator, through the use of [`calloc`], [`HeapAlloc(...,
    /// HEAP_ZERO_MEMORY, ...)`] or [`mallocx(..., MALLOCX_ZERO)`], whichever
    /// is used as a global allocator by the rust compiler.
    ///
    /// [`calloc`]: http://pubs.opengroup.org/onlinepubs/009695399/functions/calloc.html
    /// [`HeapAlloc(..., HEAP_ZERO_MEMORY, ...)`]: https://msdn.microsoft.com/en-us/library/windows/desktop/aa366597(v=vs.85).aspx#HEAP_ZERO_MEMORY
    /// [`mallocx(..., MALLOCX_ZERO)`]: http://jemalloc.net/jemalloc.3.html#MALLOCX_ZERO
    ///
    /// # Example
    ///
    /// ```
    /// extern crate boxext;
    /// use boxext::BoxExt;
    ///
    /// fn main() {
    ///     // equivalent to `Box::new([0usize; 32])`
    /// #   #[cfg(feature = "std")]
    ///     let buf: Box<[usize; 32]> = Box::new_zeroed();
    /// #   #[cfg(feature = "std")]
    ///     assert_eq!(*buf, [0usize; 32]);
    /// }
    /// ```
    ///
    /// # Safety
    ///
    /// This method is only assumed safe for `Self::Inner` types implementing
    /// the [`Zero`] trait, and not available otherwise. See the definition
    /// of that trait.
    ///
    /// [`Zero`]: trait.Zero.html
    fn new_zeroed() -> Self
    where
        Self: Sized,
        Self::Inner: Zero;

    /// Fallible [`Box::new`]
    ///
    /// [`Box::new`]: https://doc.rust-lang.org/std/boxed/struct.Box.html#method.new
    ///
    /// This returns `None` if memory couldn't be allocated.
    ///
    /// # Examples
    ///
    /// ```
    /// extern crate boxext;
    /// use boxext::BoxExt;
    ///
    /// fn main() {
    /// #   #[cfg(feature = "std")]
    ///     let five = Box::try_new(5).unwrap();
    /// #   #[cfg(feature = "std")]
    ///     assert_eq!(*five, 5);
    /// }
    /// ```
    fn try_new(x: Self::Inner) -> Option<Self>
    where
        Self: Sized;

    /// Fallible [`Box::new_with`]
    ///
    /// [`Box::new_with`]: #method.new_with
    ///
    /// This returns `None` if memory couldn't be allocated.
    ///
    /// # Examples
    ///
    /// ```
    /// extern crate boxext;
    /// use boxext::BoxExt;
    ///
    /// #[derive(Debug, PartialEq)]
    /// struct Foo(usize, usize);
    ///
    /// impl Foo {
    ///     fn new(a: usize, b: usize) -> Self {
    ///         Foo(a, b)
    ///    }
    /// }
    ///
    /// impl Default for Foo {
    ///     fn default() -> Self {
    ///         Foo::new(0, 1)
    ///     }
    /// }
    ///
    /// fn main() {
    ///     // equivalent to `Box::try_new(Foo(1, 2))`
    /// #   #[cfg(feature = "std")]
    ///     let buf = Box::try_new_with(|| Foo(1, 2)).unwrap();
    /// #   #[cfg(feature = "std")]
    ///     assert_eq!(*buf, Foo(1, 2));
    ///
    ///     // equivalent to `Box::try_new(Foo::new(2, 3))`
    /// #   #[cfg(feature = "std")]
    ///     let buf = Box::try_new_with(|| Foo::new(2, 3)).unwrap();
    /// #   #[cfg(feature = "std")]
    ///     assert_eq!(*buf, Foo(2, 3));
    ///
    ///     // equivalent to `Box::try_new(Foo::default())`
    /// #   #[cfg(feature = "std")]
    ///     let buf = Box::try_new_with(Foo::default).unwrap();
    /// #   #[cfg(feature = "std")]
    ///     assert_eq!(*buf, Foo::default());
    /// }
    /// ```
    fn try_new_with<F: FnOnce() -> Self::Inner>(f: F) -> Option<Self>
    where
        Self: Sized;

    /// Fallible [`Box::new_zeroed`]
    ///
    /// [`Box::new_zeroed`]: #method.new_zeroed
    ///
    /// This returns `None` if memory couldn't be allocated.
    ///
    /// # Example
    ///
    /// ```
    /// extern crate boxext;
    /// use boxext::BoxExt;
    ///
    /// fn main() {
    ///     // equivalent to `Box::try_new([0usize; 32])`
    /// #   #[cfg(feature = "std")]
    ///     let buf: Box<[usize; 32]> = Box::try_new_zeroed().unwrap();
    /// #   #[cfg(feature = "std")]
    ///     assert_eq!(*buf, [0usize; 32]);
    /// }
    /// ```
    ///
    /// # Safety
    ///
    /// This method is only assumed safe for `Self::Inner` types implementing
    /// the [`Zero`] trait, and not available otherwise. See the definition
    /// of that trait.
    ///
    /// [`Zero`]: trait.Zero.html
    fn try_new_zeroed() -> Option<Self>
    where
        Self: Sized,
        Self::Inner: Zero;
}

#[cfg(all(feature = "std", feature = "global_alloc"))]
unsafe fn try_new_box<T>(zeroed: bool) -> Result<Box<T>, Layout> {
    let layout = Layout::new::<T>();
    let raw = if layout.size() == 0 {
        ptr::NonNull::<T>::dangling().as_ptr()
    } else if zeroed {
        alloc_zeroed(layout) as *mut T
    } else {
        alloc(layout) as *mut T
    };
    if !raw.is_null() {
        Ok(Box::from_raw(raw))
    } else {
        Err(layout)
    }
}

#[cfg(all(feature = "std", feature = "global_alloc"))]
unsafe fn new_box<T>(zeroed: bool) -> Box<T> {
    try_new_box::<T>(zeroed).unwrap_or_else(|l| handle_alloc_error(l))
}

#[cfg(all(feature = "std", feature = "global_alloc27"))]
unsafe fn try_new_box<T>(zeroed: bool) -> Result<Box<T>, Layout> {
    let layout = Layout::new::<T>();
    let raw = if layout.size() == 0 {
        Ok(ptr::NonNull::<T>::dangling().cast())
    } else if zeroed {
        Heap.alloc_zeroed(layout).map(|p| p.cast())
    } else {
        Heap.alloc(layout).map(|p| p.cast())
    };
    match raw {
        Ok(raw) => Ok(Box::from_raw(raw.as_ptr())),
        Err(_) => Err(layout),
    }
}

#[cfg(all(feature = "std", feature = "global_alloc27"))]
unsafe fn new_box<T>(zeroed: bool) -> Box<T> {
    try_new_box::<T>(zeroed).unwrap_or_else(|_| oom())
}

#[cfg(all(feature = "std", not(feature = "global_alloc"), not(feature = "global_alloc27")))]
unsafe fn try_new_box<T>(zeroed: bool) -> Result<Box<T>, Layout> {
    let layout = Layout::new::<T>();
    let raw = if layout.size() == 0 {
        Ok(layout.align() as *mut u8)
    } else if zeroed {
        Heap.alloc_zeroed(layout.clone())
    } else {
        Heap.alloc(layout.clone())
    };
    match raw {
        Ok(raw) => Ok(Box::from_raw(raw as *mut T)),
        Err(_) => Err(layout),
    }
}

#[cfg(all(feature = "std", not(feature = "global_alloc"), not(feature = "global_alloc27")))]
unsafe fn new_box<T>(zeroed: bool) -> Box<T> {
    try_new_box::<T>(zeroed).unwrap_or_else(|l| Heap.oom(AllocErr::Exhausted { request: l }))
}

#[cfg(feature = "std")]
impl<T> BoxExt for Box<T> {
    type Inner = T;

    #[inline]
    fn new_with<F: FnOnce() -> T>(f: F) -> Box<T> {
        unsafe {
            let mut b = new_box::<T>(false);
            ptr::write(b.as_mut(), f());
            b
        }
    }

    #[inline]
    fn new_zeroed() -> Box<T>
    where
        T: Zero,
    {
        unsafe { new_box(true) }
    }

    #[inline]
    fn try_new(x: T) -> Option<Self> {
        unsafe {
            let mut b = try_new_box::<T>(false).ok()?;
            ptr::write(b.as_mut(), x);
            Some(b)
        }
    }

    #[inline]
    fn try_new_with<F: FnOnce() -> Self::Inner>(f: F) -> Option<Self> {
        unsafe {
            let mut b = try_new_box::<T>(false).ok()?;
            ptr::write(b.as_mut(), f());
            Some(b)
        }
    }

    #[inline]
    fn try_new_zeroed() -> Option<Self>
    where
        Self::Inner: Zero,
    {
        unsafe { try_new_box::<T>(true).ok() }
    }
}

/// Trait indicating whether a value full of zeroes is valid.
///
/// This trait is used to enable the [`Box::new_zeroed`] method for types where
/// it's safe to use.
///
/// [`Box::new_zeroed`]: trait.BoxExt.html#tymethod::new_zeroed
///
/// # Safety
///
/// Do **not** implement this trait for types where a raw byte array of 0
/// doesn't represent a valid value for the type. Please double check it is
/// valid and corresponds to what you want.
///
/// # Examples
///
/// ```
/// extern crate boxext;
/// use boxext::{BoxExt, Zero};
///
/// #[derive(Debug, PartialEq)]
/// struct Foo(usize);
///
/// unsafe impl Zero for Foo {}
///
/// fn main() {
///     // equivalent to `Box::new(Foo(0))`
/// #   #[cfg(feature = "std")]
///     let buf: Box<Foo> = Box::new_zeroed();
/// #   #[cfg(feature = "std")]
///     assert_eq!(*buf, Foo(0));
/// }
/// ```
///
/// For convenience, a `boxext_derive` crate is provided that provides a
/// custom derive for `Zero`.
///
/// ```
/// extern crate boxext;
/// #[macro_use]
/// extern crate boxext_derive;
/// use boxext::BoxExt;
///
/// #[derive(Zero, Debug, PartialEq)]
/// struct Foo(usize);
///
/// fn main() {
///     // equivalent to `Box::new(Foo(0))`
/// #   #[cfg(feature = "std")]
///     let buf: Box<Foo> = Box::new_zeroed();
/// #   #[cfg(feature = "std")]
///     assert_eq!(*buf, Foo(0));
/// }
/// ```
///
/// ```compile_fail
/// extern crate boxext;
/// #[macro_use]
/// extern crate boxext_derive;
/// use boxext::BoxExt;
///
/// #[derive(Zero)]
/// //          ^ the trait `boxext::Zero` is not implemented for `Bar`
/// struct Foo(Bar);
///
/// struct Bar;
///
/// fn main() {
///     // equivalent to `Box::new(Foo(0))`
///     let buf: Box<Foo> = Box::new_zeroed();
/// }
/// ```
///
pub unsafe trait Zero: Sized {}

macro_rules! zero_num_impl {
    ($($t:ty)+) => { $(unsafe impl Zero for $t {})+ }
}

zero_num_impl! {
    u8 u16 u32 u64 usize
    i8 i16 i32 i64 isize
    f32 f64
}

unsafe impl<T> Zero for *mut T {}

unsafe impl<T> Zero for *const T {}

macro_rules! zero_array_impl {
    ($($n:expr)+) => {$(
        unsafe impl<T: Zero> Zero for [T; $n] {}
    )+};
}

zero_array_impl! {
    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
    160 192 200 224 256 384 512 768 1024 2048 4096 8192 16384 32768
}

#[cfg(any(target_pointer_width = "32", target_pointer_width = "64"))]
zero_array_impl! {
    65536 131072 262144 524288 1048576 2097152 4194304 8388608
    16777216 33554432 67108864 134217728 268435456 536870912
    1073741824 2147483648
}

#[cfg(target_pointer_width = "64")]
zero_array_impl! {
    4294967296
}

macro_rules! zero_tuple_impl {
    ($t:ident $($u:ident)+) => {
        zero_tuple_impl!(($t) $($u)+);
    };
    (($($t:ident)+) $u:ident $($v:ident)*) => {
        zero_tuple_impl!(($($t)+));
        zero_tuple_impl!(($($t)+ $u) $($v)*);
    };
    (($($t:ident)+)) => {
        unsafe impl<$($t: Zero),+> Zero for ($($t,)+) {}
    };
}

zero_tuple_impl! {
    A B C D E F G H I J K L
}