variadic_arguments 0.1.2

Implements variadic arguments into Rust.
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
#[cfg(no_std)]
use ::alloc::{alloc, boxed::Box};

#[cfg(no_std)]
use core::{
    any::Any,
    fmt,
    mem,
    ptr::NonNull,
    ops
};

#[cfg(not(no_std))]
use std::{
    alloc,
    fmt,
    any::Any,
    mem,
    ptr::NonNull,
    ops
};

use super::{
    discriminant::Discriminant,
    boxed_argument::BoxedArgument,
    inlined::Inlined,
    variant_info::VariantHandle
};

/// An owned argument.
///
/// This carries a generic item that implements both Any and Clone.
/// In addition, depending on the storage itself, it is able to implement
/// items whose size is no more than 8 bytes for 64-bit systems (or 4 for 32-bit systems).
pub struct OwnedArgument
{
    /// Pointer storage. This acts as a wrapper for both
    /// inlined and boxed storage. Due to inline behavior, we
    /// cannot use this pointer directly.
    pointer: *mut dyn VariantHandle,
    inlined: bool,
    owned: bool
}

impl fmt::Debug for OwnedArgument
{
    #[inline(always)]
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result
    {
        let mut current = f.debug_struct("OwnedArgument");
                 
        current.field("is_inlined", &self.inlined);
        
        let ref_ : &dyn Any =
        unsafe { self.pointer().as_ref() };
        
        current.field("storage", &ref_);
        
        current.finish()
    }
}

impl Clone for OwnedArgument
{
    #[inline(always)]
    fn clone(&self) -> Self
    {
        unsafe
        {
            self.pointer()
                .as_ref()
                .clone_object()
        }
    }
}

impl Drop for OwnedArgument
{
    #[inline(always)]
    fn drop(&mut self)
    {
        let _ =
        unsafe
        {
            BoxedArgument::from_owned(self.pointer,
                                      self.owned_discriminant())
        };
    }
}


#[cfg(debug_assertions)]
fn pointer_matches<T>(pointer: *mut dyn VariantHandle) -> bool
where
    T: Any + Clone
{
    assert!(!pointer.is_null());
    
    let pointer : *const dyn Any =
    pointer.cast_const() as *const _ as *const dyn Any;
    
    let ref_ = unsafe { &*pointer };
    
    ref_.is::<T>()
}

impl OwnedArgument
{
    /// Creates a new OwnedArgument based around a generic item.
    ///
    /// If the size of said item is less than 8 bytes for 64-bit systems (4 for 32-bit systems),
    /// then the storage is inlined. Otherwise, the storage gets allocated instead.
    #[inline(always)]
    pub fn new<T>(item: T) -> Self
    where
        T: Any + Clone
    {
        if size_of::<T>() <= size_of::<*const ()>()
        {
            let mut store =
            mem::MaybeUninit::<*mut dyn VariantHandle>::new((&raw const item).cast_mut());

            unsafe
            {
                store.as_mut_ptr().cast::<T>().write(item);
            }

            Self
            {
                pointer:
                unsafe
                {
                    store.assume_init()
                },
                inlined: true,
                owned: true
            }
        }
        else
        {
            let boxed : Box<dyn VariantHandle> = Box::new(item);
            
            let pointer = Box::into_raw(boxed);
            
            Self
            {
                pointer,
                inlined: false,
                owned: true
            }
        }
    }

    #[inline(always)]
    unsafe fn pointer_metadata(&self) -> *mut dyn VariantHandle
    {
        self.pointer
    }

    #[inline(always)]
    fn pointer(&self) -> NonNull<dyn VariantHandle>
    {
        match self.owned_discriminant()
        {
            Discriminant::Inlined =>
            unsafe { self.inner_inlined().pointer() },
            Discriminant::Allocated =>
            unsafe { NonNull::new_unchecked(self.pointer) },
            _ => unreachable!()
        }
    }
    
    /// Acquires the discriminant of the OwnedPointer.
    ///
    /// This should not return Discriminant::Borrowed.
    #[inline(always)]
    pub(crate) fn owned_discriminant(&self) -> Discriminant
    {
        Discriminant::from_owned(self.inlined)
    }
    
    /// Acquires the discriminant based around the OwnedPointer's storage information.
    #[inline(always)]
    pub(crate) fn discriminant(&self) -> Discriminant
    {
        Discriminant::from_info((self.inlined, self.owned))
    }
    
    /// Checks if the storage is inlined or not.
    ///
    /// This is only used for testing purposes.
    #[cfg(test)]
    pub(crate) fn is_inlined(&self) -> bool
    {
        self.inlined
    }
    
    /// Acquires the inner pointer to the inlined storage.
    ///
    /// # Safety
    /// For accessing information, such as owned and inlined status,
    /// this is guaranteed to be safe. Otherwise, this function assumes
    /// that the storage is inlined.
    #[inline(always)]
    unsafe fn inner_inlined(&self) -> &Inlined
    {
        unsafe
        {
            &*(&raw const self.pointer)
                .cast::<Inlined>()
        }
    }

    /// A "wrapper" for `Any::is::<T>()`.
    ///
    /// In case Any interferes with dereferencing the OwnedArgument, use the following function instead.
    #[inline(always)]
    pub fn is_type<T>(&self) -> bool
    where
        T: Any + Clone
    {
        unsafe
        {
            let metadata : *const dyn Any =
            self.pointer_metadata().cast_const() as *const _ as *const dyn Any;

            (*metadata).is::<T>()
        }
    }
    
    /// Acquires a raw reference handle to the object itself.
    ///
    /// This is useful for internally creating references to VariantHandle.
    #[inline(always)]
    pub(crate) fn raw_ref(&self) -> &dyn VariantHandle
    {
        unsafe
        {
            self.pointer()
                .as_ref()
        }
    }
    
    /// Downcasts the object into an owned instance.
    ///
    /// # Return values:
    /// Ok(val): The value matches is T, and the previous storage frees itself.
    /// Err(self): The value does not match T, the inner value should remain identical.
    #[inline(always)]
    pub fn downcast_owned<T>(self) -> Result<T, Self>
    where
        T: Any + Clone
    {
        if self.is_type::<T>()
        {
            unsafe
            {
               Ok(self.downcast_owned_unchecked())
            }
        } else { Err(self) }
    }
    
    /// Downcasts the inner value into T without checking it first.
    ///
    /// # Safety
    /// This assumes that the type supplied is, in fact, T.
    #[inline(always)]
    pub unsafe fn downcast_owned_unchecked<T>(self) -> T
    where
        T: Any + Clone
    {
        let owned = mem::ManuallyDrop::new(self);
        
        let boxed =
        unsafe
        {
            BoxedArgument::from_owned(owned.pointer,
                                      owned.owned_discriminant())
        };
        
        match boxed
        {
            BoxedArgument::Allocated(a) =>
            {
                let raw_pointer = Box::into_raw(a);
                
                #[cfg(debug_assertions)]
                {
                    assert!(pointer_matches::<T>(raw_pointer));
                }
                
                let output =
                {
                    let pointer : *mut T =
                    raw_pointer.cast();
                    
                    unsafe
                    {
                        pointer.read_unaligned()
                    }
                };
                
                let layout = alloc::Layout::new::<T>();
                
                unsafe
                {
                    alloc::dealloc(raw_pointer.cast::<u8>(),
                                   layout);
                }
                
                output
            }
            BoxedArgument::Inlined(i) =>
            {
                #[cfg(debug_assertions)]
                {
                    let raw_pointer = i.pointer().as_ptr();
                    assert!(pointer_matches::<T>(raw_pointer));
                }
                
                let store = mem::ManuallyDrop::new(i);
                
                let pointer = &raw const store;
                
                unsafe
                {
                    pointer.cast::<T>().read()
                }
            }
        }
    }
    
    /// Downcasts a reference of the OwnedArgument before returning the cloned contents of the inner value:
    ///
    /// # Return values
    /// Some(v): The cloned object is of type T,
    /// None: OwnedArgument is not type T
    #[inline(always)]
    pub fn downcast_cloned<T>(&self) -> Option<T>
    where
        T: Any + Clone
    {
        if self.is_type::<T>()
        {
            unsafe
            {
                Some(self.downcast_cloned_unchecked())
            }
        }
        else { None }
    }
    
    /// Returns the cloned contents of the inner type of an OwnedArgument without performing any checks.
    ///
    /// # Safety
    /// This assumes that the OwnedArgument is type T.
    #[inline(always)]
    pub unsafe fn downcast_cloned_unchecked<T>(&self) -> T
    where
        T: Any + Clone
    {
        let pointer = self.pointer();
        
        #[cfg(debug_assertions)]
        {
            assert!(pointer_matches::<T>(pointer.as_ptr()));
        }
        
        unsafe
        {
            pointer.cast::<T>().as_ref().clone()
        }
    }
}


impl ops::Deref for OwnedArgument
{
    type Target = dyn Any;
    
    #[inline(always)]
    fn deref(&self) -> &dyn Any
    {
        unsafe
        {
            self.pointer()
                .as_ref()
        }
    }
}


impl ops::DerefMut for OwnedArgument
{
    #[inline(always)]
    fn deref_mut(&mut self) -> &mut dyn Any
    {
        unsafe
        {
            self.pointer()
                .as_mut()
        }
    }
}