-
Notifications
You must be signed in to change notification settings - Fork 122
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
ResponseDelegate can invoke didReceiveBodyPart
before the previous run's future returned
#274
Comments
Yes, right now, the response delegate may be called multiple times. The backpressure itself does seem to work (it won't give you arbitrary amounts of data until you processed it) but there's no guarantee it'll only be invoked once. The code backs this up func channelRead(context: ChannelHandlerContext, data: NIOAny) {
let response = self.unwrapInboundIn(data)
switch response {
case .head(let head):
[...]
case .body(let body):
switch self.state {
case .redirected:
break
default:
self.state = .body
self.mayRead = false
self.callOutToDelegate(value: body, channelEventLoop: context.eventLoop, self.delegate.didReceiveBodyPart)
.whenComplete { result in
self.handleBackpressureResult(context: context, result: result)
}
}
case .end:
[...]
}
public func read(context: ChannelHandlerContext) {
if self.mayRead {
self.pendingRead = false
context.read()
} else {
self.pendingRead = true
}
} As we can see, AHC will send everything to the delegate straight away that comes through
AHC is meant for end users so I would agree that it should invoke the delegate again only after having seen the previous future succeed. That's by far the most useful model for users who may say want to write the received body to disk or so. [SwiftNIO itself couldn't reasonably make such a guarantee because the user (ie the |
CC @artemredkin . Should we make this a 1.2.0 release blocker or are we "happy" with it given that it was always broken? |
didReceiveBodyPart
before the previous run's future returned
I think we should schedule it for |
The test in #273 also shows that the |
This would be fixed by fixing the above bug, but this could possibly be resolved without fixing the above. I believe it is a more serious issue than the original bug filed. Should this get its own issue? It has been sitting around for 6 months now. |
I've added a PR #273 to verify this
The text was updated successfully, but these errors were encountered: