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
/*!
Contains the `MovePtr<_>` type.
*/

use std::{
    alloc::{self,Layout},
    ops::{Deref,DerefMut},
    fmt::{self,Display},
    marker::PhantomData,
    mem::ManuallyDrop,
    ptr::{self, NonNull},
};

use crate::{
    traits::IntoInner,
    std_types::RBox,
};

/**
A move pointer,which allows moving the value from the reference,
consuming it in the process.

If `MovePtr::into_inner` isn't called, this drops the referenced value when its dropped

# Safety

This is unsafe to construct since the user must ensure that the value 
being referenced is not read again,even when being dropped.

# Motivation

MovePtr was created as a way to pass self by value to ffi-safe trait object methods,
since one can't simply pass self by value(because the type is erased).

# Examples

### Using OwnedPointer::in_move_ptr

This is how one can use MovePtr without `unsafe`.

This simply moves the contents of an `RBox<T>` into a `Box<T>`.

```
use abi_stable::{
    pointer_trait::OwnedPointer,
    sabi_types::MovePtr,
    std_types::RBox,
};


fn move_rbox_to_box<T>(rbox:RBox<T>)->Box<T>{
    rbox.in_move_ptr(|move_ptr|{
        MovePtr::into_box(move_ptr)
    })
}

assert_eq!( move_rbox_to_box(RBox::new(99)), Box::new(99) );

assert_eq!( move_rbox_to_box(RBox::new(())), Box::new(()) );

assert_eq!(
    move_rbox_to_box(RBox::new(String::from("SHIT"))), 
    Box::new(String::from("SHIT")) 
);


```

### Using the (unsafe) `MovePtr::new`

This is (sort of) how `RBox<T>` implements moving the T it owns out of its allocation

This is basically what `OwnedPointer::{with_move_ptr,in_move_ptr}` do.

```
use abi_stable::{
    pointer_trait::OwnedPointer,
    sabi_types::MovePtr,
    std_types::RBox,
};

use std::mem::ManuallyDrop;

let rbox=RBox::new(0x100);

let second_rbox;
unsafe{ 
    let mut rbox=ManuallyDrop::new(rbox);
    let move_ptr=unsafe{ MovePtr::new( &mut **rbox ) };
    second_rbox=RBox::from_move_ptr(move_ptr);
    OwnedPointer::drop_allocation(&mut rbox); 
}

assert_eq!( second_rbox, RBox::new(0x100) );



```

*/
#[repr(transparent)]
#[derive(StableAbi)]
#[sabi(bound="T:'a")]
pub struct MovePtr<'a,T>{
    ptr: NonNull<T>,
    _marker: PhantomData<&'a mut T>,
}


impl<'a,T> MovePtr<'a,T>{
    /// Constructs this move pointer from a mutable reference,
    /// moving the value out of the reference.
    ///
    /// # Safety 
    ///
    /// Callers must ensure that the value the reference points at is never read again.
    ///
    /// # Example
    ///
    /// ```
    /// use abi_stable::sabi_types::MovePtr;
    /// 
    /// use std::mem::ManuallyDrop;
    /// 
    /// let mut manual=ManuallyDrop::new(String::from("hello"));
    /// 
    /// let moveptr=unsafe{ MovePtr::new(&mut *manual) };
    ///
    /// drop(moveptr); // moveptr drops the String here.
    /// ```
    #[inline]
    pub unsafe fn new(ptr: &'a mut T)->Self{
        Self{
            ptr: NonNull::new_unchecked(ptr),
            _marker:PhantomData,
        }
    }

    /// Gets a raw pointer to the value being moved.
    ///
    /// # Example
    ///
    /// ```
    /// use abi_stable::{
    ///     pointer_trait::OwnedPointer,
    ///     sabi_types::MovePtr,
    ///     std_types::RBox,
    /// };
    /// 
    /// let rbox=RBox::new(String::from("NOPE"));
    /// let address_rbox=&*rbox as *const String as usize;
    ///
    /// rbox.in_move_ptr(|move_ptr|{
    ///     assert_eq!( address_rbox, MovePtr::as_ptr(&move_ptr) as usize );
    /// });
    /// 
    /// ```
    #[inline(always)]
    pub const fn as_ptr(this:&Self)->*const T{
        this.ptr.as_ptr()
    }

    /// Gets a raw pointer to the value being moved.
    ///
    /// # Example
    ///
    /// # Example
    ///
    /// ```
    /// use abi_stable::{
    ///     pointer_trait::OwnedPointer,
    ///     sabi_types::MovePtr,
    ///     std_types::RBox,
    /// };
    /// 
    /// let rbox=RBox::new(String::from("NOPE"));
    /// let address_rbox=&*rbox as *const String as usize;
    ///
    /// rbox.in_move_ptr(|mut move_ptr|{
    ///     assert_eq!( address_rbox, MovePtr::as_mut_ptr(&mut move_ptr) as usize );
    /// });
    /// 
    /// ```
    #[inline(always)]
    pub fn as_mut_ptr(this:&mut Self)->*mut T{
        this.ptr.as_ptr()
    }

    /// Converts this MovePtr into a raw pointer,
    /// which must be moved from before the pointed to value is deallocated,
    /// otherwise the value will be leaked.
    ///
    /// # Example
    ///
    /// ```
    /// use abi_stable::{
    ///     pointer_trait::OwnedPointer,
    ///     sabi_types::MovePtr,
    ///     std_types::RBox,
    /// };
    /// 
    /// let rbox=RBox::new(String::from("NOPE"));
    ///
    /// let string=rbox.in_move_ptr(|move_ptr|unsafe{
    ///     MovePtr::into_raw(move_ptr).read()
    /// });
    /// 
    /// assert_eq!(string,String::from("NOPE"));
    /// 
    /// ```
    #[inline]
    pub const fn into_raw(this:Self)->*mut T{
        let ptr=this.ptr.as_ptr();
        let _ = ManuallyDrop::new(this);
        ptr
    }

    /// Moves the value into a new `Box<T>`
    ///
    /// # Example
    ///
    /// ```
    /// use abi_stable::{
    ///     pointer_trait::OwnedPointer,
    ///     sabi_types::MovePtr,
    ///     std_types::RBox,
    /// };
    /// 
    /// let rbox=RBox::new(String::from("WHAT!!!"));
    ///
    /// let boxed=rbox.in_move_ptr(|move_ptr|unsafe{
    ///     MovePtr::into_box(move_ptr)
    /// });
    /// 
    /// assert_eq!(boxed,Box::new(String::from("WHAT!!!")));
    /// 
    /// ```
    #[inline]
    pub fn into_box(this:Self)->Box<T>{
        unsafe{
            let allocated=alloc::alloc(Layout::new::<T>()) as *mut T;

            Self::into_raw(this).copy_to_nonoverlapping(allocated,1);

            Box::from_raw(allocated)
        }
    }

    /// Moves the value into a new `RBox<T>`
    ///
    /// # Example
    ///
    /// ```
    /// use abi_stable::{
    ///     pointer_trait::OwnedPointer,
    ///     sabi_types::MovePtr,
    ///     std_types::RBox,
    /// };
    /// 
    /// let rbox=RBox::new(String::from("WHAT!!!"));
    ///
    /// let boxed=rbox.in_move_ptr(|move_ptr|unsafe{
    ///     MovePtr::into_rbox(move_ptr)
    /// });
    /// 
    /// assert_eq!( boxed, RBox::new(String::from("WHAT!!!")) );
    /// 
    /// ```
    #[inline]
    pub fn into_rbox(this:Self)->RBox<T>{
        Self::into_box(this).into()
    }

    /// Moves the value out of the reference
    ///
    /// # Example
    ///
    /// ```
    /// use abi_stable::{
    ///     pointer_trait::OwnedPointer,
    ///     sabi_types::MovePtr,
    ///     std_types::RBox,
    /// };
    /// 
    /// let rbox=RBox::new(String::from("(The Wi)zard(of)oz"));
    ///
    /// let string=rbox.in_move_ptr(|ptr| MovePtr::into_inner(ptr) );
    /// 
    /// assert_eq!( string, String::from("(The Wi)zard(of)oz") );
    /// 
    /// ```
    #[inline]
    pub fn into_inner(this:Self)->T{
        let this=ManuallyDrop::new(this);
        unsafe{ 
            this.ptr.as_ptr().read()
        }
    }
}


shared_impls! {
    mod=move_ptr_impls
    new_type=MovePtr['a][T],
    original_type=AAAA,
}


impl<'a,T> Display for MovePtr<'a,T>
where
    T:Display,
{
    fn fmt(&self,f:&mut fmt::Formatter<'_>)->fmt::Result{
        Display::fmt(&**self,f)
    }
}

impl<'a,T> Deref for MovePtr<'a,T>{
    type Target=T;

    fn deref(&self)->&T{
        unsafe{ &*(self.ptr.as_ptr() as *const _) }
    }
}

impl<'a,T> DerefMut for MovePtr<'a,T>{
    fn deref_mut(&mut self)->&mut T{
        unsafe{ &mut *self.ptr.as_ptr() }
    }
}

impl<'a,T> IntoInner for MovePtr<'a,T>{
    type Element=T;
    
    fn into_inner_(self)->T{
        Self::into_inner(self)
    }
}

impl<'a,T> Drop for MovePtr<'a,T>{
    fn drop(&mut self){
        unsafe{
            ptr::drop_in_place(self.ptr.as_ptr());
        }
    }
}

unsafe impl<'a, T: Send> Send for MovePtr<'a,T> {}

unsafe impl<'a, T: Sync> Sync for MovePtr<'a,T> {}

//#[cfg(test)]
#[cfg(all(test,not(feature="only_new_tests")))]
mod test{
    use super::*;

    use std::sync::Arc;

    #[test]
    fn with_manuallydrop(){
        let arc=Arc::new(10);
        unsafe{
            let mut cloned_arc=ManuallyDrop::new(arc.clone());
            
            let move_ptr=MovePtr::new(&mut *cloned_arc);
            assert_eq!(Arc::strong_count(&*move_ptr),2);
            
            let moved_arc=MovePtr::into_inner(move_ptr);
            assert_eq!(Arc::strong_count(&moved_arc),2);
        }
        assert_eq!(Arc::strong_count(&arc),1);
        unsafe{
            let mut cloned_arc=ManuallyDrop::new(arc.clone());
            
            let move_ptr=MovePtr::new(&mut *cloned_arc);
            assert_eq!(Arc::strong_count(&*move_ptr),2);
        }
        assert_eq!(Arc::strong_count(&arc),1);
    }
}