Skip to content
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

BTree: refactor clone, mostly for readability #89513

Closed
wants to merge 1 commit into from

Conversation

ssomers
Copy link
Contributor

@ssomers ssomers commented Oct 4, 2021

Simplifies the clone member, in particular its clone_subtree function, at the expense of having more code elsewhere, which might be reusable but wasn't reused up to now. The new destructor exploits the fact that the underlying navigation code spots the end of the tree itself, if we destroy the tree in a single direction. In theory, this performs whimsically better than before because it no longer keeps track of the number of elements already cloned, just in case the clone needs to be rolled back after a panic.

@rust-highfive
Copy link
Contributor

r? @joshtriplett

(rust-highfive has picked a reviewer for you, use r? to override)

@rust-highfive rust-highfive added the S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. label Oct 4, 2021
@bors
Copy link
Collaborator

bors commented Oct 4, 2021

☔ The latest upstream changes (presumably #89512) made this pull request unmergeable. Please resolve the merge conflicts.

@ssomers ssomers force-pushed the btree_cleanup_clone branch from d74b578 to 2758023 Compare October 4, 2021 11:03
@joshtriplett
Copy link
Member

r? rust-lang/libs

@rust-highfive rust-highfive assigned yaahc and unassigned joshtriplett Oct 4, 2021
@apiraino apiraino added the T-libs Relevant to the library team, which will review and decide on the PR/issue. label Oct 14, 2021
@joshtriplett
Copy link
Member

joshtriplett commented Oct 30, 2021

r? @rust-lang/libs

EDIT: sorry, managed to miss that I'd already done this.

Copy link
Member

@Mark-Simulacrum Mark-Simulacrum left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hm. I am not convinced that this is an improvement -- it looks like we're creating a new abstraction but only using it inside the clone code. Is there an expectation that future work will be able to reuse that abstraction? The PR description seems to imply maybe, but I'm not sure I'm reading it right.

I'm worried that the abstraction doesn't seem like it's really abstracting any significant code (rather just providing one-line wrappers), so I'm not sure it pulls its weight yet at least. Maybe you can talk a little bit about the intent/future plans?

unsafe { kv.drop_key_val() };
cur_edge = next_edge;
}
}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It looks like this doesn't replicate the continue-dropping-if-we-see-a-panic code, presumably because the currently only user only drops BareTrees if we're already panicking. But that seems like a footgun should we start using it somewhere that does need to keep dropping.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

presumably because

Actually because I didn't realize it belongs there.

@Mark-Simulacrum Mark-Simulacrum added S-waiting-on-author Status: This is awaiting some action (such as code changes or more information) from the author. and removed S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. labels Nov 1, 2021
@ssomers
Copy link
Contributor Author

ssomers commented Nov 1, 2021

Is there an expectation that future work will be able to reuse that abstraction?

Not any work that I have lying around or plan to do.

@ssomers ssomers closed this Nov 1, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
S-waiting-on-author Status: This is awaiting some action (such as code changes or more information) from the author. T-libs Relevant to the library team, which will review and decide on the PR/issue.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

7 participants