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

Implement try_transmute! #1018

Merged
merged 1 commit into from
May 14, 2024
Merged

Implement try_transmute! #1018

merged 1 commit into from
May 14, 2024

Conversation

jswrenn
Copy link
Collaborator

@jswrenn jswrenn commented Mar 4, 2024

Closes #1013.

Makes progress towards #5.

@jswrenn jswrenn force-pushed the try_transmute branch 2 times, most recently from 41cf362 to 718acaa Compare March 4, 2024 22:41
@jswrenn jswrenn force-pushed the relax-cast_unsized branch from dac2194 to 5c9afdf Compare March 5, 2024 20:45
src/lib.rs Outdated
///
/// # Safety
///
/// Unsafe code may assume that, if `is_bit_valid(src)` returns true, `*src`
Copy link
Member

Choose a reason for hiding this comment

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

Suggested change
/// Unsafe code may assume that, if `is_bit_valid(src)` returns true, `*src`
/// Unsafe code may assume that, if `is_src_valid(src)` returns true, `*src`

Copy link
Collaborator Author

Choose a reason for hiding this comment

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

Done

src/lib.rs Outdated
/// # Panics
///
/// `is_src_valid` panics under exactly the same circumstances as
/// [`TryFromBytes::is_bit_valid`].
Copy link
Member

Choose a reason for hiding this comment

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

Suggested change
/// [`TryFromBytes::is_bit_valid`].
/// [`is_bit_valid`].
///
/// [`is_bit_valid`]: TryFromBytes::is_bit_valid

Copy link
Collaborator Author

Choose a reason for hiding this comment

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

Done

src/lib.rs Outdated
}

// SAFETY:
// - `size_of::<Src>()` <= `size_of::<Self>()`
Copy link
Member

Choose a reason for hiding this comment

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

Suggested change
// - `size_of::<Src>()` <= `size_of::<Self>()`
// - We just validated that `size_of::<Src>()` <= `size_of::<Self>()`

Copy link
Collaborator Author

Choose a reason for hiding this comment

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

Done

Comment on lines 411 to 412
Src: core::fmt::Debug + crate::IntoBytes,
Dst: core::fmt::Debug + crate::TryFromBytes,
Copy link
Member

Choose a reason for hiding this comment

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

Suggested change
Src: core::fmt::Debug + crate::IntoBytes,
Dst: core::fmt::Debug + crate::TryFromBytes,
Src: crate::IntoBytes,
Dst: crate::TryFromBytes,

Copy link
Collaborator Author

Choose a reason for hiding this comment

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

Done

let src = ManuallyDrop::new(src);

// SAFETY:
// - `src` is a bit-valid instance of `Dst`
Copy link
Member

Choose a reason for hiding this comment

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

Suggested change
// - `src` is a bit-valid instance of `Dst`
// - `is_src_valid` validates that `src` is a bit-valid instance of `Dst`

Copy link
Collaborator Author

Choose a reason for hiding this comment

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

Done

@jswrenn jswrenn force-pushed the try_transmute branch 2 times, most recently from 2050c25 to 24fa819 Compare March 5, 2024 21:31
Copy link
Member

@joshlf joshlf left a comment

Choose a reason for hiding this comment

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

Also: Tests.

src/lib.rs Outdated
/// Conditionally transmutes a value of one type to a value of another type of
/// the same size.
///
/// This macro an expression of type `Src` and produces a `Result<Dst, Src>`.
Copy link
Member

Choose a reason for hiding this comment

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

Suggested change
/// This macro an expression of type `Src` and produces a `Result<Dst, Src>`.
/// This macro consumes an expression of type `Src` and produces a `Result<Dst, Src>`.

Copy link
Collaborator Author

Choose a reason for hiding this comment

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

Done

src/lib.rs Outdated
Comment on lines 4776 to 4450
/// Conditionally transmutes a value of one type to a value of another type of
/// the same size.
///
/// This macro an expression of type `Src` and produces a `Result<Dst, Src>`.
///
/// The expression `$e` must have a concrete type, `T`, which implements
/// [`IntoBytes`]. The `try_transmute!` expression must also have a concrete
/// type, `U` (`U` is inferred from the calling context), and `U` must implement
/// [`TryFromBytes`].
///
/// Note that the `T` produced by the expression `$e` will *not* be dropped.
/// Semantically, its bits will be copied into a new value of type `U`, the
/// original `T` will be forgotten, and the value of type `U` will be returned.
///
/// # Examples
///
/// ```
/// # use zerocopy::try_transmute;
/// assert_eq!(try_transmute!(0u8), Ok(false));
/// assert_eq!(try_transmute!(1u8), Ok(true));
/// assert_eq!(try_transmute!(255u8), Result::<bool, _>::Err(255));
/// ```
Copy link
Member

Choose a reason for hiding this comment

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

We should update or add language to discuss what validation is performed, and to discuss what happens on failure.

@jswrenn jswrenn force-pushed the try_transmute branch 2 times, most recently from e6dc8ee to 1eba8aa Compare March 5, 2024 21:37
@joshlf joshlf mentioned this pull request May 3, 2024
87 tasks
@jswrenn jswrenn force-pushed the try_transmute branch 2 times, most recently from 639ee24 to e8b31b6 Compare May 13, 2024 15:33
@jswrenn jswrenn changed the base branch from relax-cast_unsized to main May 13, 2024 15:40
@jswrenn jswrenn force-pushed the try_transmute branch 2 times, most recently from f2fd06c to 80bdd61 Compare May 13, 2024 17:24
@jswrenn jswrenn marked this pull request as ready for review May 13, 2024 17:55
@jswrenn jswrenn requested a review from joshlf May 13, 2024 17:55
src/lib.rs Outdated
Comment on lines 1120 to 1121
/// `is_src_valid` panics under exactly the same circumstances as
/// [`is_bit_valid`].
Copy link
Member

Choose a reason for hiding this comment

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

Maybe also mention that size mismatch can cause a panic or a compilation failure? (just like we do for is_bit_valid)

Copy link
Collaborator Author

Choose a reason for hiding this comment

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

Src: crate::IntoBytes,
Dst: crate::TryFromBytes,
{
if !Dst::is_mut_src_valid(&mut src) {
Copy link
Member

Choose a reason for hiding this comment

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

If we can get Unalign<Dst>: KnownLayout without Dst: KnownLayout, then we could use <Unalign<Dst> as TryFromBytes>::try_mut_from here instead of needing to add is_mut_src_valid, right?

Copy link
Member

Choose a reason for hiding this comment

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

Using #1252, we might be able to use Unalign<SizedKnownLayout<Dst>>.

Copy link
Collaborator Author

Choose a reason for hiding this comment

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

Maybe, though doing so would entail needless runtime checks and ultimately end with throwing away the return value of try_mut_from.

I think is_src_valid (which I've now generalized to take a Ptr<Src>) will also be useful for try_transmute_mut and try_transmute_ref.

@jswrenn jswrenn force-pushed the try_transmute branch 3 times, most recently from 0081904 to 46cfa04 Compare May 14, 2024 16:58
@jswrenn jswrenn requested a review from joshlf May 14, 2024 17:04
Copy link
Member

@joshlf joshlf left a comment

Choose a reason for hiding this comment

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

UI tests? There are a lot of transmute-*.rs UI tests that we could duplicate, and possible some we could add (e.g. for Dst: !TryFromBytes).

@jswrenn jswrenn force-pushed the try_transmute branch 2 times, most recently from d3b7f6e to 004b5b4 Compare May 14, 2024 18:59
@jswrenn
Copy link
Collaborator Author

jswrenn commented May 14, 2024

UI tests? There are a lot of transmute-*.rs UI tests that we could duplicate, and possible some we could add (e.g. for Dst: !TryFromBytes).

Done

@jswrenn jswrenn requested a review from joshlf May 14, 2024 19:01
Closes #1013.

Makes progress towards #5.
@joshlf joshlf enabled auto-merge May 14, 2024 19:18
@joshlf joshlf added this pull request to the merge queue May 14, 2024
Merged via the queue into main with commit 5b095e0 May 14, 2024
210 checks passed
@joshlf joshlf deleted the try_transmute branch May 14, 2024 19:46
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.

Implement try_transmute!
2 participants