-
Notifications
You must be signed in to change notification settings - Fork 13.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
libextra: Add a copy-on-write arc container. #11230
Conversation
Interesting! We've had a number of copy-on-write proposals in the past, but this is certainly clean and well written. Code-wise, the only comment I have is that a Content-wise, I'm a little in favor of this, but others should weigh in as well. We're still planning on dissolving libextra at some point, but this might make a nice addition for the |
You definitely need a Freeze bound. Otherwise not only could anyone mutate the data, an evil |
I have updated CowArc to use the Freeze trait and rebased the changes. |
I don't think it makes sense to have both Arc and CowArc. Arc and Rc can and should have copy-on-write functionality themselves directly (of course the cow-related functions will have tighter kind bounds including Clone). Pull request #9786 does exactly that (it probably needs to be rebased though). |
I agree with @bill-myers here. I'd prefer having this within @bill-myers will you've time to update your PR? It was closed due to inactivity. |
The core of copy-on-write is so trivial it could could easily be turned into a trait and implemented by Arc and Rc. Something like this (which I have not tried to compile): trait CopyOnWrite<T> {
/// check to see if there is one reference to the container
fn is_owned(&self) -> bool;
/// clone the data self points to, then modify self to point
/// to point to the newly cloned data.
fn to_owned(&mut self);
/// get a mutable reference to the data self points to.
/// if the data structure is shared with multiple pointers
/// clone the data first, and return a reference to the cloned data
fn cow_get_mut(&mut self) -> &'a mut T {
if !self.is_owned {
self.to_owned();
}
unsafe { &mut *self.get() }
}
} The factor that stops this from being feasible right now is that there is no standard way in rust to |
Iterating that further, how about:
It's worth separating I put zero thought into names, please do come up with better ones. |
The semantic that eveyone keeps coming to is I like the Traits @glaebhoerl drew up here. They are simple enough that they could be implement without the |
An interesting question here: if |
It can use |
I have added this to the meeting agenda (a bit overdue perhaps!) |
@thestinger Not what I meant. Its contents are loaned out as |
The |
Oh, right, of course. My bad. |
This allows patch adds a new arc type that allows for creation of copy-on-write data structures. The idea is that it is safe to mutate any data structure as long as it has only one reference to it. If there are multiple, it requires cloning of the data structure before mutation is possible.
Closes rust-lang#11230 changelog: nonew.
Closes rust-lang#11230 changelog: none
This allows patch adds a new arc type that allows for creation of copy-on-write data structures. The idea is that it is safe to mutate any data structure as long as it has only one reference to it. If there are multiple, it requires cloning of the data structure before mutation is possible.