data_structures: Add deterministic FxHashMap and FxHashSet wrappers by shivan1b · Pull Request #64131 · rust-lang/rust (original) (raw)
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 andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Conversation51 Commits1 Checks0 Files changed
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
[ Show hidden characters]({{ revealButtonHref }})
StableMap
A wrapper for FxHashMap that allows to insert
, remove
, get
, get_mut
and convert a hashmap into a sorted vector using the method into_sorted_vector
but no iteration support.
StableSet
A wrapper for FxHashSet that allows to insert
, remove
, get
and convert a hashset into a sorted vector using the method into_sorted_vector
but no iteration support.
Addresses issue #63713
Thanks for the pull request, and welcome! The Rust team is excited to review your changes, and you should hear from @cramertj (or someone else) soon.
If any changes to this PR are deemed necessary, please add them as extra commits. This ensures that the reviewer can see what has changed since they last reviewed the code. Due to the way GitHub handles out-of-date commits, this should also make it reasonably obvious what issues have or haven't been addressed. Large or tricky changes may require several passes of review and changes.
Please see the contribution instructions for more information.
Hi @bjorn3!
Could you please check if this meets the requirements of the corresponding issue?
Please note that this does not have the "convertion to a sorted vec." support. I learned the basics of HashMap and checked a few functions, not sure which function does this exactly, could you please point me to that?
Thank you.
Please note that the examples above are NOT a part of the commit message.
But they will be if we decide to merge this (bors includes PR message in merge commit).
I'd also like to see this called something like StableMap
perhaps or DeterministicMap
, since otherwise the determinism aspect is a bit lost in the naming (and since we're likely almost universally using this once we migrate the compiler, it would be good to separate it a bit).
We'll probably want a Set variant of the map as well.
For sorted vector support something like the following would work:
fn into_sorted_vector(self) -> Vec<(K, V)> /* or Vec */ where K: PartialOrd, V: PartialOrd, { let mut v = self.base.into_iter().collect::<Vec<_>>(); v.unstable_sort(); // this is interesting in that it's unstable but we're not actually adding instability here since the underlying map already has an unstable iteration order v }
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please rustfmt dfx.rs (but not the rest of the files, so you will need to run rustfmt /path/to/dfx.rs
instead of cargo fmt
.)
Apart from a few nits this looks good. @Mark-Simulacrum should this PR contain a first user of the new api, or can that be done in a follow-up?
Please note that the examples above are NOT a part of the commit message.
But they will be if we decide to merge this (bors includes PR message in merge commit).
Right. Forgot about it. I shall remove them before merging unless you think it makes sense to have them as a part of commit message?
I'd also like to see this called something like
StableMap
perhaps orDeterministicMap
, since otherwise the determinism aspect is a bit lost in the naming (and since we're likely almost universally using this once we migrate the compiler, it would be good to separate it a bit).
Shall I go with DeterministickMap
then? Should the module name also be changed from dfx
to deterministic_map
?
I prefer StableMap
as it is shorter, which means it is more likely to be picked over FxHashMap
.
We'll probably want a Set variant of the map as well.
Sure. Should I be creating a separate issue for this?
For sorted vector support something like the following would work:
fn into_sorted_vector(self) -> Vec<(K, V)> /* or Vec */ where K: PartialOrd, V: PartialOrd, { let mut v = self.base.into_iter().collect::<Vec<_>>(); v.unstable_sort(); // this is interesting in that it's unstable but we're not actually adding instability here since the underlying map already has an unstable iteration order v }
Thank you very much!
I think adding the set in this PR makes sense; it should be minimally difficult to do so, hopefully.
Right. Forgot about it. I shall remove them before merging unless you think it makes sense to have them as a part of commit message?
Yeah, I don't think the examples are too useful.
Apart from a few nits this looks good. @Mark-Simulacrum should this PR contain a first user of the new api, or can that be done in a follow-up?
I think that moving the compiler over can be done in followup PRs. It'll likely be fairly straightforward (mostly just search and replace on FxHash{Map,Set}
).
shivan1b changed the title
data_structures: Add a deterministic FxHashMap wrapper data_structures: Add a deterministic FxHashMap and FxHashSet wrapper
shivan1b changed the title
data_structures: Add a deterministic FxHashMap and FxHashSet wrapper data_structures: Add a deterministic FxHashMap and FxHashSet wrappers
shivan1b changed the title
data_structures: Add a deterministic FxHashMap and FxHashSet wrappers data_structures: Add deterministic FxHashMap and FxHashSet wrappers
Ping from triage:
This is marked as "waiting on author"
@shivan1b can you address the comments from @Mark-Simulacrum ?
Thanks.
StableMap A wrapper for FxHashMap that allows to insert, remove, get and get_mut but no iteration support.
StableSet A wrapper for FxHashSet that allows to insert, remove, get and create a sorted vector from a hashset but no iteration support.
📌 Commit 800bd3a has been approved by Mark-Simulacrum
bors added S-waiting-on-bors
Status: Waiting on bors to run and complete tests. Bors will change the label on completion.
and removed S-waiting-on-author
Status: This is awaiting some action (such as code changes or more information) from the author.
labels
Centril added a commit to Centril/rust that referenced this pull request
…=Mark-Simulacrum
data_structures: Add deterministic FxHashMap and FxHashSet wrappers
StableMap
A wrapper for FxHashMap that allows to insert
, remove
, get
, get_mut
and convert a hashmap into a sorted vector using the method into_sorted_vector
but no iteration support.
StableSet
A wrapper for FxHashSet that allows to insert
, remove
, get
and convert a hashset into a sorted vector using the method into_sorted_vector
but no iteration support.
Addresses issue rust-lang#63713
bors added a commit that referenced this pull request
Rollup of 10 pull requests
Successful merges:
- #64131 (data_structures: Add deterministic FxHashMap and FxHashSet wrappers)
- #64387 (Fix redundant semicolon lint interaction with proc macro attributes)
- #64678 (added more context for duplicate lang item errors (fixes #60561))
- #64763 (Add E0734 and its long explanation)
- #64793 (Fix format macro expansions spans to be macro-generated)
- #64837 (Improve wording in documentation of MaybeUninit)
- #64852 (Print ParamTy span when accessing a field (#52082))
- #64875 (Upgrade async/await to "used" keywords.)
- #64876 (Fix typo in intrinsics op safety)
- #64880 (Slice docs: fix typo)
Failed merges:
r? @ghost
Labels
Status: Waiting on bors to run and complete tests. Bors will change the label on completion.