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
use std::mem::{forget, needs_drop};
use std::ops::Deref;
use std::panic::UnwindSafe;
use std::ptr::NonNull;
use super::ref_counted::RefCounted;
use super::{Guard, Ptr, RawPtr, Tag};
/// [`Owned`] uniquely owns an instance.
///
/// The instance is passed to the `EBR` garbage collector when the [`Owned`] is dropped.
#[derive(Debug)]
pub struct Owned<T> {
ptr: NonNull<RefCounted<T>>,
}
impl<T: 'static> Owned<T> {
/// Creates a new instance of [`Owned`].
///
/// The type of the instance must be determined at compile-time, must not contain non-static
/// references, and must not be a non-static reference since the instance can theoretically
/// survive the process. For instance, `struct Disallowed<'l, T>(&'l T)` is not allowed,
/// because an instance of the type cannot outlive `'l` whereas the garbage collector does not
/// guarantee that the instance is dropped within `'l`.
///
/// # Examples
///
/// ```
/// use sdd::Owned;
///
/// let owned: Owned<usize> = Owned::new(31);
/// ```
#[inline]
pub fn new(t: T) -> Self {
Self::new_with(|| t)
}
/// Creates a new [`Owned`] with the provided function.
///
/// This function is identical to [`Owned::new`] except that the value is constructed after
/// memory allocation.
///
/// # Examples
///
/// ```
/// use sdd::Owned;
///
/// let owned: Owned<String> = Owned::new_with(|| String::from("hello"));
/// ```
#[inline]
pub fn new_with<F: FnOnce() -> T>(f: F) -> Owned<T> {
Owned {
ptr: RefCounted::new_unique(f),
}
}
}
impl<T> Owned<T> {
/// Asserts that the type does not implement [`Drop`].
const ASSERT_NO_DROP: () = assert!(!needs_drop::<T>());
/// Creates a new [`Owned`].
///
/// The type does not need a `'static` lifetime because it does not implement [`Drop`], and its
/// instances will not be accessed after their lifetime ends.
///
/// # Examples
///
/// ```
/// use sdd::Owned;
///
/// let owned: Owned<usize> = Owned::new_checked(31);
/// ```
///
/// ```compile_fail
/// use sdd::Owned;
///
/// let owned: Owned<String> = Owned::new_checked(String::from("hello"));
/// ```
#[inline]
pub fn new_checked(t: T) -> Self {
let _: () = Self::ASSERT_NO_DROP;
Self::new_with_checked(|| t)
}
/// Creates a new [`Owned`] with the provided function.
///
/// This function is identical to [`Owned::new_checked`] except that the value is constructed
/// after memory allocation.
///
/// # Examples
///
/// ```
/// use sdd::Owned;
///
/// let str = String::from("hello");
/// let owned: Owned<&str> = Owned::new_with_checked(|| str.as_str());
/// ```
///
/// ```compile_fail
/// use sdd::Owned;
///
/// let owned: Owned<String> = Owned::new_with_checked(|| String::from("hello"));
/// ```
#[inline]
pub fn new_with_checked<F: FnOnce() -> T>(f: F) -> Owned<T> {
let _: () = Self::ASSERT_NO_DROP;
Owned {
ptr: RefCounted::new_unique(f),
}
}
/// Creates a new [`Owned`] without checking the lifetime of `T`.
///
/// # Safety
///
/// `T::drop` can be run after the [`Owned`] is dropped, therefore it is safe only if `T::drop`
/// does not access short-lived data or [`needs_drop`] is `false` for `T`.
///
/// # Examples
///
/// ```
/// use sdd::Owned;
///
/// let hello = String::from("hello");
/// let owned: Owned<&str> = unsafe { Owned::new_unchecked(hello.as_str()) };
/// ```
#[inline]
pub unsafe fn new_unchecked(t: T) -> Self {
unsafe { Self::new_with_unchecked(|| t) }
}
/// Creates a new [`Owned`] with the provided function without checking the lifetime of `T`.
///
/// This function is identical to [`Owned::new_unchecked`] except that the value is constructed
/// after memory allocation.
///
/// # Safety
///
/// See [`Owned::new_unchecked`].
///
/// # Examples
///
/// ```
/// use sdd::Owned;
///
/// let hello = String::from("hello");
/// let owned: Owned<&str> = unsafe { Owned::new_with_unchecked(|| hello.as_str()) };
/// ```
#[inline]
pub unsafe fn new_with_unchecked<F: FnOnce() -> T>(f: F) -> Owned<T> {
Owned {
ptr: RefCounted::new_unique(f),
}
}
/// Returns a [`Ptr`] to the instance that may live as long as the supplied [`Guard`].
///
/// # Examples
///
/// ```
/// use sdd::{Guard, Owned};
///
/// let owned: Owned<usize> = Owned::new(37);
/// let guard = Guard::new();
/// let ptr = owned.get_guarded_ptr(&guard);
/// drop(owned);
///
/// assert_eq!(*ptr.as_ref().unwrap(), 37);
/// ```
#[inline]
#[must_use]
pub const fn get_guarded_ptr<'g>(&self, _guard: &'g Guard) -> Ptr<'g, T> {
Ptr::from(self.ptr.as_ptr())
}
/// Returns a reference to the instance that may live as long as the supplied [`Guard`].
///
/// # Examples
///
/// ```
/// use sdd::{Guard, Owned};
///
/// let owned: Owned<usize> = Owned::new(37);
/// let guard = Guard::new();
/// let ref_b = owned.get_guarded_ref(&guard);
/// drop(owned);
///
/// assert_eq!(*ref_b, 37);
/// ```
#[inline]
#[must_use]
pub const fn get_guarded_ref<'g>(&self, _guard: &'g Guard) -> &'g T {
unsafe { RefCounted::inst_non_null_ptr(self.ptr).as_ref() }
}
/// Returns a mutable reference to the instance.
///
/// # Safety
///
/// The method is `unsafe` since there can be a [`Ptr`] to the instance.
///
/// # Examples
///
/// ```
/// use sdd::Owned;
///
/// let mut owned: Owned<usize> = Owned::new(38);
/// unsafe {
/// *owned.get_mut() += 1;
/// }
/// assert_eq!(*owned, 39);
/// ```
#[inline]
pub const unsafe fn get_mut(&mut self) -> &mut T {
unsafe { (*self.ptr.as_ptr()).get_mut_unique() }
}
/// Provides a raw pointer to the instance.
///
/// # Examples
///
/// ```
/// use sdd::Owned;
///
/// let owned: Owned<usize> = Owned::new(10);
///
/// assert_eq!(unsafe { *owned.as_ptr() }, 10);
/// ```
#[inline]
#[must_use]
pub const fn as_ptr(&self) -> *const T {
RefCounted::inst_non_null_ptr(self.ptr).as_ptr()
}
/// Provides a raw non-null pointer to the instance.
///
/// # Examples
///
/// ```
/// use sdd::Owned;
///
/// let owned: Owned<usize> = Owned::new(10);
///
/// assert_eq!(unsafe { *owned.as_non_null_ptr().as_ref() }, 10);
/// ```
#[inline]
#[must_use]
pub const fn as_non_null_ptr(&self) -> NonNull<T> {
RefCounted::inst_non_null_ptr(self.ptr)
}
/// Converts itself into a [`RawPtr`].
///
/// The returned [`RawPtr`] must be converted back to [`Owned`] through [`Self::from_raw`] to
/// avoid a memory leak.
///
/// # Examples
///
/// ```
/// use sdd::Owned;
///
/// let owned: Owned<usize> = Owned::new(10);
/// let ptr = owned.into_raw();
/// drop(unsafe { Owned::from_raw(ptr) });
/// ```
#[inline]
#[must_use]
pub const fn into_raw<'g>(self) -> RawPtr<'g, T> {
let ptr = RawPtr::from(self.ptr.as_ptr());
forget(self);
ptr
}
/// Constructs an [`Owned`] from a [`RawPtr`].
///
/// Returns `None` if the [`RawPtr`] is null.
///
/// # Safety
///
/// The pointed-to instance must be valid for the lifetime `'g`, and the returned [`Owned`]
/// should be unique or must be forgotten through [`forget`].
///
/// # Examples
///
/// ```
/// use std::mem::forget;
///
/// use sdd::Owned;
///
/// let owned: Owned<usize> = Owned::new(83);
/// let ptr = owned.into_raw();
/// let owned = unsafe { Owned::from_raw(ptr).unwrap() };
/// let owned_copy = unsafe { Owned::from_raw(ptr).unwrap() };
/// assert_eq!(*owned, 83);
/// assert_eq!(*owned_copy, 83);
///
/// drop(owned);
///
/// // Accessing `owned_copy` after dropping `owned` may lead to undefined behavior.
/// forget(owned_copy);
/// ```
#[inline]
#[must_use]
pub unsafe fn from_raw(ptr: RawPtr<'_, T>) -> Option<Self> {
if let Some(ptr) = NonNull::new(Tag::unset_tag(ptr.underlying_ptr()).cast_mut()) {
return Some(Owned::from(ptr));
}
None
}
/// Drops the instance immediately.
///
/// # Safety
///
/// The caller must ensure that there is no [`Ptr`] pointing to the instance.
///
/// # Examples
///
/// ```
/// use sdd::Owned;
/// use std::sync::atomic::AtomicBool;
/// use std::sync::atomic::Ordering::Relaxed;
///
/// static DROPPED: AtomicBool = AtomicBool::new(false);
/// struct T(&'static AtomicBool);
/// impl Drop for T {
/// fn drop(&mut self) {
/// self.0.store(true, Relaxed);
/// }
/// }
///
/// let owned: Owned<T> = Owned::new(T(&DROPPED));
/// assert!(!DROPPED.load(Relaxed));
///
/// unsafe {
/// owned.drop_in_place();
/// }
///
/// assert!(DROPPED.load(Relaxed));
/// ```
#[inline]
pub unsafe fn drop_in_place(self) {
RefCounted::<T>::dealloc(self.ptr.as_ptr());
forget(self);
}
/// Creates a new [`Owned`] from the given pointer.
#[inline]
pub(super) const fn from(ptr: NonNull<RefCounted<T>>) -> Self {
Self { ptr }
}
/// Returns a pointer to the [`RefCounted`].
#[inline]
pub(super) const fn underlying_ptr(&self) -> *const RefCounted<T> {
self.ptr.as_ptr()
}
}
impl<T> AsRef<T> for Owned<T> {
#[inline]
fn as_ref(&self) -> &T {
unsafe { &*self.ptr.as_ptr() }
}
}
impl<T> Deref for Owned<T> {
type Target = T;
#[inline]
fn deref(&self) -> &Self::Target {
self.as_ref()
}
}
impl<T> Drop for Owned<T> {
#[inline]
fn drop(&mut self) {
RefCounted::pass_to_collector(self.ptr.as_ptr());
}
}
unsafe impl<T: Send> Send for Owned<T> {}
// `T` does not need to be `Send` since sending `T` is not possible only with `&Owned<T>`.
unsafe impl<T: Sync> Sync for Owned<T> {}
impl<T: UnwindSafe> UnwindSafe for Owned<T> {}