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

NIOAsyncWriter: Fix suspending yield when writer is finished #3044

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 33 additions & 2 deletions Sources/NIOCore/AsyncSequences/NIOAsyncWriter.swift
Original file line number Diff line number Diff line change
Expand Up @@ -1173,7 +1173,38 @@ extension NIOAsyncWriter {
delegate: delegate
)

case .initial, .finished, .writerFinished:
case .writerFinished(
let isWritable,
let inDelegateOutcall,
var suspendedYields,
let cancelledYields,
let bufferedYieldIDs,
let delegate,
let error
):
// We have a suspended yield at this point that hasn't been cancelled yet.
// It was buffered before we became finished, so we still have to deliver it.
// We need to store the yield now.

self._state = .modifying

let suspendedYield = SuspendedYield(
yieldID: yieldID,
continuation: continuation
)
suspendedYields.append(suspendedYield)

self._state = .writerFinished(
isWritable: isWritable,
inDelegateOutcall: inDelegateOutcall,
suspendedYields: suspendedYields,
cancelledYields: cancelledYields,
bufferedYieldIDs: bufferedYieldIDs,
delegate: delegate,
error: error
)

case .initial, .finished:
preconditionFailure("This should have already been handled by `yield()`")

case .modifying:
Expand Down Expand Up @@ -1501,7 +1532,7 @@ extension NIOAsyncWriter {

self._state = .writerFinished(
isWritable: isWritable,
inDelegateOutcall: inDelegateOutcall,
inDelegateOutcall: false,
suspendedYields: .init(),
cancelledYields: cancelledYields,
bufferedYieldIDs: bufferedYieldIDs,
Expand Down
45 changes: 45 additions & 0 deletions Tests/NIOCoreTests/AsyncSequences/NIOAsyncWriterTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -606,6 +606,51 @@ final class NIOAsyncWriterTests: XCTestCase {
self.assert(suspendCallCount: 1, yieldCallCount: 1, terminateCallCount: 1)
}

func testSuspendingBufferedYield_whenWriterFinished() async throws {
self.sink.setWritability(to: false)

let bothSuspended = expectation(description: "suspended on both yields")
let suspendedAgain = ConditionLock(value: false)
self.delegate.didSuspendHandler = {
if self.delegate.didSuspendCallCount == 2 {
bothSuspended.fulfill()
} else if self.delegate.didSuspendCallCount > 2 {
suspendedAgain.lock()
suspendedAgain.unlock(withValue: true)
}
}

self.delegate.didYieldHandler = { _ in
if self.delegate.didYieldCallCount == 1 {
// Delay this yield until the other yield is suspended again.
// FIXME: This will never finish if no other thread is handling the other yield.
suspendedAgain.lock(whenValue: true)
suspendedAgain.unlock()
}
}

let task1 = Task { [writer] in
try await writer!.yield("message1")
}
let task2 = Task { [writer] in
try await writer!.yield("message2")
}

await fulfillment(of: [bothSuspended], timeout: 1)
self.writer.finish()

self.assert(suspendCallCount: 2, yieldCallCount: 0, terminateCallCount: 0)

// We have to become writable again to unbuffer the yields
// The first call to didYield will pause, so that the other yield will be suspended again.
self.sink.setWritability(to: true)

await XCTAssertNoThrow(try await task1.value)
await XCTAssertNoThrow(try await task2.value)

self.assert(suspendCallCount: 3, yieldCallCount: 2, terminateCallCount: 1)
}

func testWriterFinish_whenFinished() {
// This tests just checks that finishing again is a no-op
self.writer.finish()
Expand Down
Loading