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

A few minor updates for tmpfiles code #4725

Merged
merged 4 commits into from
Dec 12, 2023

Conversation

cgwalters
Copy link
Member

tmpfiles: Rename reader function


tmpfiles: Change read_tmpfiles to return a direct hashmap

While returning an iterator was more elegant, it makes
error handling much more difficult and we had intermediate
collects() that meant it wasn't really lazy.

Trying to remove the intermediate collect runs into borrowing
issues (on the input &Dir) and this isn't a high performance
path so doing the more obvious simpler thing is better.


tmpfiles: Collect into a BTreeMap for reproducibility

I hit a test failure in one run because HashMap is not ordered
predictably.


tmpfiles: Drop intermediate re-allocation

Since we're now returning a direct map we don't need
to convert to a set, we can just ignore the values when iterating.


While returning an iterator was more elegant, it makes
error handling much more difficult *and* we had intermediate
`collects()` that meant it wasn't really lazy.

Trying to remove the intermediate `collect` runs into borrowing
issues (on the input `&Dir`) and this isn't a high performance
path so doing the more obvious simpler thing is better.
I hit a test failure in one run because HashMap is not ordered
predictably.
Since we're now returning a direct map we don't need
to convert to a set, we can just ignore the values when iterating.
Copy link
Member

@jmarrero jmarrero left a comment

Choose a reason for hiding this comment

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

lgtm

@jmarrero jmarrero merged commit 9329c50 into coreos:main Dec 12, 2023
@HuijingHei
Copy link
Member

Looks sane and more neat, thanks for the updates!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants