-
-
Notifications
You must be signed in to change notification settings - Fork 165
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
Conversation
ca54ff0
to
36769d0
Compare
read_entry_boxed_in
and get_boxed_info_in
that use the allocator_api
read_entry_boxed_in
and get_boxed_info_in
that use the allocator_api
+ unstable_alloc
-feature
I noticed that we need to discuss the role of |
4f7714f
to
54df3e9
Compare
uefi/Cargo.toml
Outdated
unstable = [] | ||
# Like the `unstable` feature but specific to `alloc`-related functionality. | ||
unstable_alloc = ["unstable", "alloc"] |
There was a problem hiding this comment.
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.
There was a problem hiding this comment.
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. :/
There was a problem hiding this comment.
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
..
There was a problem hiding this comment.
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.
There was a problem hiding this comment.
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.
.github/workflows/rust.yml
Outdated
# 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 |
There was a problem hiding this comment.
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
.)
There was a problem hiding this comment.
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.
8ff3536
to
32f8244
Compare
Please review again @nicholasbishop |
read_entry_boxed_in
and get_boxed_info_in
that use the allocator_api
+ unstable_alloc
-featureread_entry_boxed_in
and get_boxed_info_in
that use the allocator_api
@@ -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. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
TODO @ me: create ticket
32f8244
to
fc6203d
Compare
…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.
fc6203d
to
678c8d0
Compare
This closes #483. It builds on the foundation created in #559.
It adds the methods
read_entry_boxed_in
andget_boxed_info_in
that need the newunstable_alloc
feature.Dir::read_entry_boxed
andFile::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