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

feat(util): add data() method #127

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

zhangli-pear
Copy link

@zhangli-pear zhangli-pear commented Aug 14, 2024

I'm updating http-body from 0.4 to 1.0. The data() method is not exists in new version. into_data_stream() is a substitute, however it makes too many diffs in my project. So i wish this convenient method, data(), to be saved in 1.0

@zhangli-pear zhangli-pear changed the title add data() feat(util): add data() method Aug 14, 2024
Comment on lines +18 to +22
if let Ok(data) = frame.into_data() {
task::Poll::Ready(Some(Ok(data)))
} else {
task::Poll::Pending
}
Copy link
Contributor

@cratelyn cratelyn Apr 2, 2025

Choose a reason for hiding this comment

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

i'm not sure this is correct. now that bodies yield Frame<T>'s, a body can yield either a data frame or a trailers frame, it seems like there is not a way to expose an equivalent data() method.

previously, Body::data() and Body::trailers() could delegate downwards to Body::poll_data() and Body::poll_trailers(), respectively. now, the trait provides a single Body::poll_frame() trait method, so there is not a clear poll function which this Data<'a, T> future can invoke.

this conditional block would discard a trailers frame, and additionally, it could cause a task to become deadlocked. see Poll::Pending, which states:

When a function returns Pending, the function must also ensure that the current task is scheduled to be awoken when progress can be made.

so, not only would the data yielded by the body not be accurately represented when this function is used, but additionally, it leaves the task in a state that violates the contract outlined by std.

i am sympathetic about the fact that the frame-oriented 1.0 interface causes some significant churn (see our work in linkerd/linkerd2#8733 for an example), but it is unfortunately incompatible with a data() method like this. i can't speak for the project myself, but i feel somewhat strongly as an onlooker that this change should not be pursued.

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.

2 participants