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

Added read_entry_boxed_in and get_boxed_info_in that use the allocator_api #584

Merged
merged 3 commits into from
Nov 29, 2022

Conversation

phip1611
Copy link
Member

@phip1611 phip1611 commented Nov 24, 2022

This closes #483. It builds on the foundation created in #559.

It adds the methods read_entry_boxed_in and get_boxed_info_in that need the new unstable_alloc feature. Dir::read_entry_boxed and File::get_boxed_info will work with both, stable and nightly Rust (i.e., default allocation and allocator api).

However, there is one problem: We need to discuss how we integrate unstable features into cargo xtask build/test.

I tested it manually, but we need to test in CI if everything builds with unstable_alloc and without.

Checklist

  • Sensible git history (for example, squash "typo" or "fix" commits). See the Rewriting History guide for help.
  • Update the changelog (if necessary)

@phip1611 phip1611 force-pushed the alloc-in-methods branch 2 times, most recently from ca54ff0 to 36769d0 Compare November 27, 2022 10:12
@phip1611 phip1611 changed the title Added read_entry_boxed_in and get_boxed_info_in that use the allocator_api Added read_entry_boxed_in and get_boxed_info_in that use the allocator_api + unstable_alloc-feature Nov 27, 2022
@phip1611
Copy link
Member Author

phip1611 commented Nov 27, 2022

I noticed that we need to discuss the role of cargo xtask regarding the stable/unstable functionality. Please have a look at the code - I'd suggest reviewing it commit by commit.. what do you think?

@phip1611 phip1611 force-pushed the alloc-in-methods branch 3 times, most recently from 4f7714f to 54df3e9 Compare November 27, 2022 11:17
uefi/Cargo.toml Outdated
unstable = []
# Like the `unstable` feature but specific to `alloc`-related functionality.
unstable_alloc = ["unstable", "alloc"]
Copy link
Member

Choose a reason for hiding this comment

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

Is a separate feature needed? In #584 (comment) you suggested having a generic unstable feature for all the non-stable stuff, which I think makes sense.

Copy link
Member Author

@phip1611 phip1611 Nov 27, 2022

Choose a reason for hiding this comment

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

Eventually, we might end up with

#![cfg_attr(any(all(feature = "unstable", feature = "alloc"), all(feature = "unstable", feature = "foo")), feature(foo))]

and I'd like to prevent that.

Without the separate feature, right now, we'd need #[cfg(all(feature = "alloc", feature = "unsafe"))] at multiple places..

What do you think? @nicholasbishop

Especially, the long form of #[cfg(not(feature = "unstable_alloc"))], hence, #[cfg(not(all(feature = "unstable", feature = "alloc"))] is ugly. :/

Copy link
Member Author

@phip1611 phip1611 Nov 27, 2022

Choose a reason for hiding this comment

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

We could also structure it a little different so that users will only need to activate unstable but we still can use "combined features" internally.

For example, unstable = ["unstable_alloc", "unstable_foo"] and unstable_alloc = ["alloc"]? But in that case, unstable would force users to enable alloc..

Copy link
Member

Choose a reason for hiding this comment

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

I agree the cfg syntax gets quite ugly as it gets longer, but all the same it's an internal detail that doesn't affect end users, and I wouldn't expect long ones to be needed all that often. The first example you gave is indeed quite hard to read, but I don't think #[cfg(all(feature = "alloc", feature = "unsafe"))] is all that bad.

If in the future we find it's getting too unwieldy, we could also use macros to take out some of the boiler plate. But for now I'd rather start simple with just the unstable feature and only worry about complex cases if and when we encounter them.

Copy link
Member Author

Choose a reason for hiding this comment

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

I agree the cfg syntax gets quite ugly as it gets longer, but all the same it's an internal detail that doesn't affect end users, and I wouldn't expect long ones to be needed all that often.

Okay, then let's take this way.

# It is sufficient if we include the "--include-unstable" flag only for one build as we
# only plan to have platform-independent functionality behind basic feature gates.
- name: Build (with unstable)
run: cargo xtask build --target x86_64 --include-unstable
Copy link
Member

@nicholasbishop nicholasbishop Nov 27, 2022

Choose a reason for hiding this comment

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

This job can be dropped, the build variations are covered by #590. (The new test-without-unstable job is still needed though, or maybe we could just have one test job that always enables the unstable flag? That's what we currently do with flags like alloc.)

Copy link
Member Author

Choose a reason for hiding this comment

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

The problem is, that the unit test for the make_boxed utility has different behavior with and without the unstable feature. I add a comment to the CI step to make it more clear.

@phip1611 phip1611 force-pushed the alloc-in-methods branch 2 times, most recently from 8ff3536 to 32f8244 Compare November 28, 2022 07:51
@phip1611
Copy link
Member Author

Please review again @nicholasbishop

@phip1611 phip1611 changed the title Added read_entry_boxed_in and get_boxed_info_in that use the allocator_api + unstable_alloc-feature Added read_entry_boxed_in and get_boxed_info_in that use the allocator_api Nov 28, 2022
@@ -6,7 +6,8 @@ publish = false
edition = "2021"

[dependencies]
uefi = { path = "../uefi", features = ['alloc'] }
# TODO we should let the uefi-test-runner run with and without unstable.
Copy link
Member Author

Choose a reason for hiding this comment

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

TODO @ me: create ticket

…ator_api`.

This commit adds new functionality behind the `unsafe` feature that enhances some
existing functions with `allocator_api`-flavored allocators. Existing code will work
with and without the unstable feature.
The unit test for make_boxed has different behaviour with and without the unstable
feature. Thus, we need to test both variants.
@nicholasbishop nicholasbishop merged commit 836abc0 into rust-osdev:main Nov 29, 2022
@phip1611 phip1611 deleted the alloc-in-methods branch July 14, 2024 06:57
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.

Add a File::get_boxed_info_in using allocator_api
3 participants