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
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
//! Storage implementation which tries to allocate into one storage, and falls back to
//! a second if that fails.
//!
//! Great for small-value optimization, storing inline if an item is small but falling back
//! to the heap for larger values.

#[cfg(feature = "unsize")]
use core::marker::Unsize;
use core::ptr;
use core::ptr::{NonNull, Pointee};

use crate::base::{ClonesafeStorage, ExactSizeStorage, LeaksafeStorage, MultiItemStorage, Storage};
use crate::error;
use crate::handles::Handle;

/// A storage which attempts to store in one storage, then falls back to a second
#[derive(Copy, Clone)]
pub struct FallbackStorage<S1, S2> {
    first: S1,
    second: S2,
}

impl<S1, S2> FallbackStorage<S1, S2> {
    /// Create a new `FallbackStorage` from the two storages to use
    pub fn new(first: S1, second: S2) -> FallbackStorage<S1, S2> {
        FallbackStorage { first, second }
    }

    /// Decompose this storage back into its components
    pub fn decompose(self) -> (S1, S2) {
        (self.first, self.second)
    }
}

impl<S1, S2> Default for FallbackStorage<S1, S2>
where
    S1: Default,
    S2: Default,
{
    fn default() -> Self {
        FallbackStorage {
            first: S1::default(),
            second: S2::default(),
        }
    }
}

// SAFETY: Fallback delegates to other impls of storage which must uphold the guarantees
unsafe impl<S1, S2> Storage for FallbackStorage<S1, S2>
where
    S1: Storage,
    S2: Storage,
{
    type Handle<T: ?Sized> = FallbackHandle<S1, S2, T>;

    unsafe fn get<T: ?Sized>(&self, handle: Self::Handle<T>) -> NonNull<T> {
        match handle {
            // SAFETY: Same safety requirements
            FallbackHandle::First(handle) => unsafe { self.first.get(handle) },
            // SAFETY: Same safety requirements
            FallbackHandle::Second(handle) => unsafe { self.second.get(handle) },
        }
    }

    fn from_raw_parts<T: ?Sized + Pointee>(
        handle: Self::Handle<()>,
        meta: T::Metadata,
    ) -> Self::Handle<T> {
        FallbackHandle::from_raw_parts(handle, meta)
    }

    fn cast<T: ?Sized + Pointee, U>(handle: Self::Handle<T>) -> Self::Handle<U> {
        handle.cast()
    }

    fn cast_unsized<T: ?Sized + Pointee, U: ?Sized + Pointee<Metadata = T::Metadata>>(
        handle: Self::Handle<T>,
    ) -> Self::Handle<U> {
        handle.cast_unsized()
    }

    #[cfg(feature = "unsize")]
    fn coerce<T: ?Sized + Unsize<U>, U: ?Sized>(handle: Self::Handle<T>) -> Self::Handle<U> {
        handle.coerce()
    }

    fn allocate_single<T: ?Sized + Pointee>(
        &mut self,
        meta: T::Metadata,
    ) -> error::Result<Self::Handle<T>> {
        self.first
            .allocate_single(meta)
            .map(FallbackHandle::First)
            .or_else(|_| {
                self.second
                    .allocate_single(meta)
                    .map(FallbackHandle::Second)
            })
    }

    unsafe fn deallocate_single<T: ?Sized>(&mut self, handle: Self::Handle<T>) {
        match handle {
            // SAFETY: Same safety requirements
            FallbackHandle::First(handle) => unsafe { self.first.deallocate_single(handle) },
            // SAFETY: Same safety requirements
            FallbackHandle::Second(handle) => unsafe { self.second.deallocate_single(handle) },
        }
    }

    unsafe fn try_grow<T>(
        &mut self,
        handle: Self::Handle<[T]>,
        capacity: usize,
    ) -> error::Result<Self::Handle<[T]>> {
        match handle {
            FallbackHandle::First(handle) => {
                // SAFETY: Same safety requirements
                let res = unsafe {
                    self.first
                        .try_grow(handle, capacity)
                        .map(FallbackHandle::First)
                };

                if let Ok(handle) = res {
                    return Ok(handle);
                }

                // SAFETY: We require the provided handle is valid
                let old_ptr = unsafe { self.first.get(handle) };
                let old_len = ptr::metadata(old_ptr.as_ptr());

                let new_handle = self.second.allocate_single::<[T]>(capacity)?;
                // SAFETY: We just allocated this handle, it's guaranteed valid
                let new_ptr = unsafe { self.second.get(new_handle).as_ptr().cast::<T>() };

                // SAFETY: Both provided pointers are valid as they're retrieved from valid `get`
                //         calls
                unsafe {
                    ptr::copy::<T>(old_ptr.as_ptr() as *const T, new_ptr, old_len);
                }

                // SAFETY: We require the provided handle is valid, so it's safe to deallocate
                unsafe { self.first.deallocate_single(handle) };

                Ok(FallbackHandle::Second(new_handle))
            }
            // SAFETY: Same safety requirements
            FallbackHandle::Second(handle) => unsafe {
                self.second
                    .try_shrink(handle, capacity)
                    .map(FallbackHandle::Second)
            },
        }
    }

    unsafe fn try_shrink<T>(
        &mut self,
        handle: Self::Handle<[T]>,
        capacity: usize,
    ) -> error::Result<Self::Handle<[T]>> {
        match handle {
            // SAFETY: Same safety requirements
            FallbackHandle::First(handle) => unsafe {
                self.first
                    .try_shrink(handle, capacity)
                    .map(FallbackHandle::First)
            },
            // SAFETY: Same safety requirements
            FallbackHandle::Second(handle) => unsafe {
                self.second
                    .try_shrink(handle, capacity)
                    .map(FallbackHandle::Second)
            },
        }
    }
}

// SAFETY: Fallback delegates to other impls of storage which must uphold the guarantees
unsafe impl<S1, S2> MultiItemStorage for FallbackStorage<S1, S2>
where
    S1: MultiItemStorage,
    S2: MultiItemStorage,
{
    fn allocate<T: ?Sized + Pointee>(
        &mut self,
        meta: T::Metadata,
    ) -> error::Result<Self::Handle<T>> {
        self.first
            .allocate(meta)
            .map(FallbackHandle::First)
            .or_else(|_| self.second.allocate(meta).map(FallbackHandle::Second))
    }

    unsafe fn deallocate<T: ?Sized + Pointee>(&mut self, handle: Self::Handle<T>) {
        match handle {
            // SAFETY: Same safety requirements
            FallbackHandle::First(handle) => unsafe { self.first.deallocate(handle) },
            // SAFETY: Same safety requirements
            FallbackHandle::Second(handle) => unsafe { self.second.deallocate(handle) },
        }
    }
}

impl<S1, S2> ExactSizeStorage for FallbackStorage<S1, S2>
where
    S1: ExactSizeStorage,
    S2: ExactSizeStorage,
{
    fn will_fit<T: ?Sized + Pointee>(&self, meta: T::Metadata) -> bool {
        self.first.will_fit::<T>(meta) || self.second.will_fit::<T>(meta)
    }

    fn max_range<T>(&self) -> usize {
        usize::max(self.first.max_range::<T>(), self.second.max_range::<T>())
    }
}

// SAFETY: Fallback delegates to other impls of storage which must uphold the guarantees
unsafe impl<S1, S2> ClonesafeStorage for FallbackStorage<S1, S2>
where
    S1: ClonesafeStorage,
    S2: ClonesafeStorage,
{
}

// SAFETY: Fallback delegates to other impls of storage which must uphold the guarantees
unsafe impl<S1, S2> LeaksafeStorage for FallbackStorage<S1, S2>
where
    S1: LeaksafeStorage,
    S2: LeaksafeStorage,
{
}

mod private {
    use super::*;
    use core::cmp::Ordering;
    use core::mem::ManuallyDrop;

    union HandleCast<S: Storage, T: ?Sized, U: ?Sized> {
        left: ManuallyDrop<<S::Handle<T> as Handle>::This<U>>,
        right: ManuallyDrop<S::Handle<U>>,
    }

    impl<S: Storage, T: ?Sized, U: ?Sized> HandleCast<S, T, U> {
        fn cast(handle: <S::Handle<T> as Handle>::This<U>) -> S::Handle<U> {
            // SAFETY: <S::Handle<T>>::This<U> is guaranteed equal to <S::Handle<U>>
            let new = unsafe {
                Self {
                    left: ManuallyDrop::new(handle),
                }
                .right
            };
            ManuallyDrop::into_inner(new)
        }

        fn rev_cast(handle: S::Handle<U>) -> <S::Handle<T> as Handle>::This<U> {
            // SAFETY: <S::Handle<T>>::This<U> is guaranteed equal to <S::Handle<U>>
            let new = unsafe {
                Self {
                    right: ManuallyDrop::new(handle),
                }
                .left
            };
            ManuallyDrop::into_inner(new)
        }
    }

    pub enum FallbackAddr<S1: Storage, S2: Storage, T: ?Sized> {
        First(<S1::Handle<T> as Handle>::Addr),
        Second(<S2::Handle<T> as Handle>::Addr),
    }

    impl<S1: Storage, S2: Storage, T: ?Sized> Copy for FallbackAddr<S1, S2, T> {}
    impl<S1: Storage, S2: Storage, T: ?Sized> Clone for FallbackAddr<S1, S2, T> {
        fn clone(&self) -> Self {
            *self
        }
    }

    impl<S1: Storage, S2: Storage, T: ?Sized> PartialEq for FallbackAddr<S1, S2, T> {
        fn eq(&self, other: &Self) -> bool {
            use FallbackAddr::{First, Second};
            match (self, other) {
                (First(this), First(other)) => this == other,
                (Second(this), Second(other)) => this == other,
                _ => false,
            }
        }
    }

    impl<S1: Storage, S2: Storage, T: ?Sized> Eq for FallbackAddr<S1, S2, T> {}

    impl<S1: Storage, S2: Storage, T: ?Sized> PartialOrd for FallbackAddr<S1, S2, T> {
        fn partial_cmp(&self, other: &Self) -> Option<Ordering> {
            use FallbackAddr::{First, Second};
            match (self, other) {
                (First(this), First(other)) => this.partial_cmp(other),
                (Second(this), Second(other)) => this.partial_cmp(other),
                _ => None,
            }
        }
    }

    /// Handle for a fallback storage. Contains either a handle for the first or second storage used
    #[non_exhaustive]
    pub enum FallbackHandle<S1: Storage, S2: Storage, T: ?Sized> {
        /// Allocation uses the first storage
        First(S1::Handle<T>),
        /// Allocation uses the second storage
        Second(S2::Handle<T>),
    }

    impl<S1: Storage, S2: Storage, T: ?Sized> FallbackHandle<S1, S2, T> {
        fn map<U: ?Sized>(
            self,
            left: impl FnOnce(S1::Handle<T>) -> <S1::Handle<T> as Handle>::This<U>,
            right: impl FnOnce(S2::Handle<T>) -> <S2::Handle<T> as Handle>::This<U>,
        ) -> FallbackHandle<S1, S2, U> {
            match self {
                FallbackHandle::First(h) => {
                    let h = HandleCast::<S1, _, _>::cast(left(h));
                    FallbackHandle::First(h)
                }
                FallbackHandle::Second(h) => {
                    let h = HandleCast::<S2, _, _>::cast(right(h));
                    FallbackHandle::Second(h)
                }
            }
        }

        fn rev_map<U: ?Sized>(
            handle: <Self as Handle>::This<U>,
            left: impl FnOnce(<S1::Handle<T> as Handle>::This<U>) -> S1::Handle<T>,
            right: impl FnOnce(<S2::Handle<T> as Handle>::This<U>) -> S2::Handle<T>,
        ) -> FallbackHandle<S1, S2, T> {
            match handle {
                FallbackHandle::First(h) => {
                    let h = HandleCast::<S1, _, _>::rev_cast(h);
                    FallbackHandle::First(left(h))
                }
                FallbackHandle::Second(h) => {
                    let h = HandleCast::<S2, _, _>::rev_cast(h);
                    FallbackHandle::Second(right(h))
                }
            }
        }
    }

    impl<S1: Storage, S2: Storage, T: ?Sized> PartialEq for FallbackHandle<S1, S2, T>
    where
        S1::Handle<T>: PartialEq,
        S2::Handle<T>: PartialEq,
    {
        fn eq(&self, other: &Self) -> bool {
            match (self, other) {
                (FallbackHandle::First(left), FallbackHandle::First(right)) => left == right,
                (FallbackHandle::Second(left), FallbackHandle::Second(right)) => left == right,
                _ => false,
            }
        }
    }

    impl<S1, S2, T> Clone for FallbackHandle<S1, S2, T>
    where
        S1: Storage,
        S2: Storage,
        T: ?Sized,
    {
        fn clone(&self) -> Self {
            *self
        }
    }

    impl<S1, S2, T> Copy for FallbackHandle<S1, S2, T>
    where
        S1: Storage,
        S2: Storage,
        T: ?Sized,
    {
    }

    impl<S1, S2, T> Handle for FallbackHandle<S1, S2, T>
    where
        S1: Storage,
        S2: Storage,
        T: ?Sized,
    {
        type Addr = FallbackAddr<S1, S2, T>;
        type Target = T;
        type This<U: ?Sized> = FallbackHandle<S1, S2, U>;

        fn from_raw_parts(
            handle: Self::This<()>,
            meta: <Self::Target as Pointee>::Metadata,
        ) -> Self {
            Self::rev_map(
                handle,
                |h| <S1::Handle<T>>::from_raw_parts(h, meta),
                |h| <S2::Handle<T>>::from_raw_parts(h, meta),
            )
        }

        fn addr(self) -> Self::Addr {
            match self {
                FallbackHandle::First(h) => FallbackAddr::First(h.addr()),
                FallbackHandle::Second(h) => FallbackAddr::Second(h.addr()),
            }
        }

        fn metadata(self) -> <Self::Target as Pointee>::Metadata {
            match self {
                FallbackHandle::First(h) => h.metadata(),
                FallbackHandle::Second(h) => h.metadata(),
            }
        }

        fn cast<U>(self) -> Self::This<U> {
            self.map(<S1::Handle<T>>::cast::<U>, <S2::Handle<T>>::cast::<U>)
        }

        fn cast_unsized<U>(self) -> Self::This<U>
        where
            U: ?Sized + Pointee<Metadata = <Self::Target as Pointee>::Metadata>,
        {
            self.map(
                <S1::Handle<T>>::cast_unsized::<U>,
                <S2::Handle<T>>::cast_unsized::<U>,
            )
        }

        #[cfg(feature = "unsize")]
        fn coerce<U: ?Sized>(self) -> Self::This<U>
        where
            Self::Target: Unsize<U>,
        {
            self.map(<S1::Handle<T>>::coerce::<U>, <S2::Handle<T>>::coerce::<U>)
        }
    }
}

use private::FallbackHandle;

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

    type Store = FallbackStorage<SingleInline<[u16; 4]>, GlobalAlloc>;

    #[test]
    fn test_fallback() {
        let mut f = Store::default();

        let h1 = f.create_single::<[u16; 4]>([1, 2, 3, 4]).unwrap();
        assert!(matches!(h1, FallbackHandle::First(_)));
        assert_eq!(unsafe { f.get(h1).as_ref() }, &[1, 2, 3, 4]);

        unsafe { f.drop_single(h1) };

        let h2 = f.create_single::<[u32; 4]>([1, 2, 3, 4]).unwrap();
        assert!(matches!(h2, FallbackHandle::Second(_)));
        assert_eq!(unsafe { f.get(h2).as_ref() }, &[1, 2, 3, 4]);

        unsafe { f.drop_single(h2) };
    }

    #[test]
    fn test_try_grow_fallback() {
        let mut f = Store::default();

        let h1 = f.allocate_single::<[u16]>(2).unwrap();
        assert!(matches!(h1, FallbackHandle::First(_)));
        let h2 = unsafe { f.try_grow(h1, 4) }.unwrap();
        assert!(matches!(h2, FallbackHandle::First(_)));
        let h3 = unsafe { f.try_grow(h2, 8) }.unwrap();
        assert!(matches!(h3, FallbackHandle::Second(_)));

        unsafe { f.deallocate_single(h3) };
    }
}