department 0.2.6

Implementation of the proposed Storages API
Documentation
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
//! A storage-based implementation of [`std::boxed`]

use core::alloc::Layout;
use core::borrow::{Borrow, BorrowMut};
use core::cmp::Ordering;
#[cfg(feature = "unsize")]
use core::marker::Unsize;
use core::mem::ManuallyDrop;
#[cfg(feature = "unsize")]
use core::ops::CoerceUnsized;
use core::ops::{Deref, DerefMut};
use core::ptr::{NonNull, Pointee};
use core::{fmt, mem, ptr};

use crate::base::{FromLeakedStorage, LeaksafeStorage, Storage};

/// Storage-based implementation of [`Box`](std::boxed::Box).
///
/// Note that unsizing coercion currently isn't expressive enough to support all storage types,
/// so the implementation provides a `coerce` method which can be used to emulate the same
/// functionality.
pub struct Box<T: ?Sized + Pointee, S: Storage> {
    handle: S::Handle<T>,
    storage: ManuallyDrop<S>,
}

impl<T, S> Box<T, S>
where
    T: Pointee,
    S: Storage + Default,
{
    /// Create a new [`Box`] containing the provided value, creating a default instance of the
    /// desired storage.
    ///
    /// # Panics
    ///
    /// If the storage fails to allocate for any reason
    pub fn new(val: T) -> Box<T, S> {
        let mut storage = S::default();
        Box {
            handle: storage
                .create_single(val)
                .unwrap_or_else(|(e, _)| panic!("{}", e)),
            storage: ManuallyDrop::new(storage),
        }
    }

    /// Attempt to create a new [`Box`] containing the provided value, creating a default instance
    /// of the desired storage.
    pub fn try_new(val: T) -> Result<Box<T, S>, T> {
        let mut storage = S::default();
        Ok(Box {
            handle: storage.create_single(val).map_err(|(_, t)| t)?,
            storage: ManuallyDrop::new(storage),
        })
    }
}

impl<T, S> Box<T, S>
where
    T: Pointee,
    S: Storage,
{
    /// Create a new [`Box`] containing the provided value, in the provided storage.
    ///
    /// # Panics
    ///
    /// If the storage fails to allocate for any reason
    pub fn new_in(val: T, mut storage: S) -> Box<T, S> {
        Box {
            handle: storage
                .create_single(val)
                .unwrap_or_else(|(e, _)| panic!("{}", e)),
            storage: ManuallyDrop::new(storage),
        }
    }

    /// Attempt to create a new [`Box`] containing the provided value, in the provided storage.
    pub fn try_new_in(val: T, mut storage: S) -> Result<Box<T, S>, (T, S)> {
        let handle = match storage.create_single(val) {
            Ok(handle) => handle,
            Err((_, val)) => return Err((val, storage)),
        };

        Ok(Box {
            handle,
            storage: ManuallyDrop::new(storage),
        })
    }
}

impl<T, S> Box<T, S>
where
    T: ?Sized + Pointee,
    S: Storage,
{
    /// Attempt to move the value from this `Box` into another one using a different backing
    /// storage. In case of failure, the original `Box` is returned unchanged.
    pub fn try_in<Ns>(mut self, mut new_storage: Ns) -> Result<Box<T, Ns>, (Box<T, S>, Ns)>
    where
        Ns: Storage,
    {
        let layout = Layout::for_value(&*self);

        // SAFETY: Our handle is guaranteed valid by internal invariant
        let (old_ptr, meta) = unsafe { self.storage.get(self.handle).to_raw_parts() };
        let new_handle = match new_storage.allocate_single::<T>(meta) {
            Ok(handle) => handle,
            Err(_) => return Err((self, new_storage)),
        };

        // SAFETY: New handle is valid because allocate just succeeded
        let new_ptr = unsafe { new_storage.get(new_handle).to_raw_parts().0 };

        // SAFETY: Handles are from different allocations
        unsafe {
            ptr::copy_nonoverlapping(
                old_ptr.as_ptr().cast::<u8>(),
                new_ptr.as_ptr().cast::<u8>(),
                layout.size(),
            );
        }

        // SAFETY: Our handle is guaranteed valid by internal invariant
        unsafe { self.storage.deallocate_single(self.handle) };
        // SAFETY: We consume self, so no one will touch us after this
        unsafe { ManuallyDrop::drop(&mut self.storage) };
        // Don't run drop as we manually deallocated
        mem::forget(self);

        // SAFETY: We just created the new storage and handle
        Ok(unsafe { Box::from_parts(new_storage, new_handle) })
    }

    /// Consumes and leaks this box, returning a mutable reference.
    ///
    /// The returned data lives for the rest of the program's life, dropping the reference will
    /// cause a memory leak. If this isn't acceptable, use [`Box::from_raw`] or [`Box::from_raw_in`]
    /// to regain ownership of this memory.
    pub fn leak<'a>(this: Self) -> &'a mut T
    where
        S: 'a + LeaksafeStorage,
    {
        // SAFETY: `into_raw` is guaranteed to return a pointer valid for any `'a` less than the
        //         lifetime of the storage
        unsafe { Box::into_raw(this).as_mut() }
    }

    /// Consumes and leaks this box, returning a raw pointer.
    ///
    /// The returned data lives for the rest of the program's life, dropping the pointer will
    /// cause a memory leak. If this isn't acceptable, use [`Box::from_raw`] or [`Box::from_raw_in`]
    /// to regain ownership of this memory.
    pub fn into_raw(this: Self) -> NonNull<T>
    where
        S: LeaksafeStorage,
    {
        let mut this = ManuallyDrop::new(this);
        // SAFETY: Handle is valid by internal invariant
        let out = unsafe { this.storage.get(this.handle) };
        // SAFETY: We consume self, so no one will touch us after this
        unsafe {
            ManuallyDrop::drop(&mut this.storage);
        }
        out
    }

    /// Construct a box from a raw pointer. After calling this function, the provided pointer
    /// is owned by this [`Box`]. Dropping this box will run the storage destructor on the pointer.
    ///
    /// # Safety
    ///
    /// The provided pointer must be unleak-compatible for the default instance of the storage type.
    /// See [`FromLeakedStorage::unleak_ptr`] for the exact definition of unleak-compatible.
    pub unsafe fn from_raw(ptr: *mut T) -> Box<T, S>
    where
        S: FromLeakedStorage + Default,
    {
        let storage = S::default();
        // SAFETY: Our safety requirements allow this
        let handle = unsafe { storage.unleak_ptr(ptr) };
        // SAFETY: We just created this handle from the same storage as we're passing
        unsafe { Box::from_parts(storage, handle) }
    }

    /// Construct a box from a raw pointer. After calling this function, the provided pointer
    /// is owned by this [`Box`]. Dropping this box will run the storage destructor on the pointer.
    ///
    /// # Safety
    ///
    /// The provided pointer must be unleak-compatible for the provided instance of the storage
    /// type. See [`FromLeakedStorage::unleak_ptr`] for the exact definition of unleak-compatible.
    pub unsafe fn from_raw_in(ptr: *mut T, storage: S) -> Box<T, S>
    where
        S: FromLeakedStorage,
    {
        // SAFETY: Our safety requirements allow this
        let handle = unsafe { storage.unleak_ptr(ptr) };
        // SAFETY: We just created this handle from the same storage as we're passing
        unsafe { Box::from_parts(storage, handle) }
    }

    /// Convert this box into its component storage and handle
    pub fn into_parts(self) -> (S, S::Handle<T>) {
        // Prevent us deallocating the handle at the end of scope
        let mut this = ManuallyDrop::new(self);
        // SAFETY: We consume self, so no one will touch us after this
        let storage = unsafe { ManuallyDrop::take(&mut this.storage) };
        let handle = this.handle;
        (storage, handle)
    }

    /// Create a box from a component storage and handle
    ///
    /// # Safety
    ///
    /// This method takes ownership of the provided handle, the storage must be valid to get or
    /// deallocate the handle.
    pub unsafe fn from_parts(storage: S, handle: S::Handle<T>) -> Box<T, S> {
        Box {
            handle,
            storage: ManuallyDrop::new(storage),
        }
    }

    /// Perform an unsizing operation on `self`. A temporary solution to limitations with
    /// manual unsizing.
    #[cfg(feature = "unsize")]
    pub fn coerce<U: ?Sized>(self) -> Box<U, S>
    where
        T: Unsize<U>,
    {
        let (storage, handle) = Box::into_parts(self);
        Box {
            handle: S::coerce::<_, U>(handle),
            storage: ManuallyDrop::new(storage),
        }
    }
}

impl<T, S> fmt::Debug for Box<T, S>
where
    T: ?Sized + fmt::Debug,
    S: Storage,
{
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(f, "{:?}", self.as_ref())
    }
}

impl<T, S> fmt::Display for Box<T, S>
where
    T: ?Sized + fmt::Display,
    S: Storage,
{
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(f, "{}", self.as_ref())
    }
}

#[cfg(feature = "unsize")]
impl<T, U, S> CoerceUnsized<Box<U, S>> for Box<T, S>
where
    T: ?Sized + Pointee,
    U: ?Sized + Pointee,
    S: Storage,
    S::Handle<T>: CoerceUnsized<S::Handle<U>>,
{
}

impl<T, S> AsRef<T> for Box<T, S>
where
    T: ?Sized + Pointee,
    S: Storage,
{
    fn as_ref(&self) -> &T {
        self
    }
}

impl<T, S> AsMut<T> for Box<T, S>
where
    T: ?Sized + Pointee,
    S: Storage,
{
    fn as_mut(&mut self) -> &mut T {
        self
    }
}

impl<T, S> Borrow<T> for Box<T, S>
where
    T: ?Sized + Pointee,
    S: Storage,
{
    fn borrow(&self) -> &T {
        self
    }
}

impl<T, S> BorrowMut<T> for Box<T, S>
where
    T: ?Sized + Pointee,
    S: Storage,
{
    fn borrow_mut(&mut self) -> &mut T {
        self
    }
}

impl<T, S> Deref for Box<T, S>
where
    T: ?Sized + Pointee,
    S: Storage,
{
    type Target = T;

    fn deref(&self) -> &Self::Target {
        // SAFETY: Handle is guaranteed valid by internal invariant
        unsafe { self.storage.get(self.handle).as_ref() }
    }
}

impl<T, S> DerefMut for Box<T, S>
where
    T: ?Sized + Pointee,
    S: Storage,
{
    fn deref_mut(&mut self) -> &mut Self::Target {
        // SAFETY: Handle is guaranteed valid by internal invariant
        unsafe { self.storage.get(self.handle).as_mut() }
    }
}

impl<T, S> Drop for Box<T, S>
where
    T: ?Sized + Pointee,
    S: Storage,
{
    fn drop(&mut self) {
        // SAFETY: Handle is guaranteed valid by internal invariant
        unsafe { self.storage.drop_single(self.handle) };
        // SAFETY: This is `drop`, so we know we're the last observer
        unsafe { ManuallyDrop::drop(&mut self.storage) };
    }
}

impl<T, S> Clone for Box<T, S>
where
    T: Pointee + Clone,
    S: Storage + Default,
{
    fn clone(&self) -> Box<T, S> {
        let new_item = T::clone(&**self);
        Box::new(new_item)
    }
}

impl<T, S> Default for Box<T, S>
where
    T: Pointee + Default,
    S: Storage + Default,
{
    fn default() -> Box<T, S> {
        Box::new(T::default())
    }
}

impl<T, S> PartialEq for Box<T, S>
where
    T: ?Sized + Pointee + PartialEq,
    S: Storage,
{
    fn eq(&self, other: &Self) -> bool {
        T::eq(&**self, &**other)
    }
}

impl<T, S> Eq for Box<T, S>
where
    T: ?Sized + Pointee + Eq,
    S: Storage,
{
}

impl<T, S> PartialOrd for Box<T, S>
where
    T: ?Sized + Pointee + PartialOrd,
    S: Storage,
{
    fn partial_cmp(&self, other: &Self) -> Option<Ordering> {
        T::partial_cmp(&**self, &**other)
    }
}

impl<T, S> Ord for Box<T, S>
where
    T: ?Sized + Pointee + Ord,
    S: Storage,
{
    fn cmp(&self, other: &Self) -> Ordering {
        T::cmp(&**self, &**other)
    }
}

#[cfg(test)]
mod tests {
    use crate::inline::SingleInline;

    type Box<T> = super::Box<T, SingleInline<[usize; 4]>>;

    #[test]
    fn new() {
        let b = Box::new(1);
        assert_eq!(*b, 1);
    }

    #[test]
    fn new_in() {
        let b = Box::new_in(1, SingleInline::new());
        assert_eq!(*b, 1);
    }

    #[test]
    fn try_in() {
        let b = Box::new([1, 2]);
        let b2 = b
            .try_in::<SingleInline<[usize; 2]>>(SingleInline::new())
            .unwrap();

        assert_eq!(*b2, [1, 2]);

        let b3 = b2
            .try_in::<SingleInline<[u32; 1]>>(SingleInline::new())
            .unwrap_err();

        assert_eq!(*b3.0, [1, 2]);
    }
}