Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions src/sync/arc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,33 @@ impl<T> Arc<T> {
Err(_) => unreachable!(),
}
}

/// Returns the inner value, if the `Arc` has exactly one strong reference.
#[track_caller]
pub fn into_inner(this: Arc<T>) -> Option<T> {
// work around our inability to destruct the object normally,
// because of the `Drop` presense.
let (obj, value) = unsafe {
let obj = ptr::read(&this.obj);
let value = ptr::read(&this.value);

mem::forget(this);

(obj, value)
};

if obj.ref_dec(location!()) {
// unregister
rt::execution(|e| {
e.arc_objs
.remove(&std::sync::Arc::as_ptr(&value).cast())
.expect("Arc object was removed before dropping last Arc");
});
Some(std::sync::Arc::into_inner(value).unwrap())
} else {
None
}
}
}

impl<T: ?Sized> Arc<T> {
Expand Down