-
Notifications
You must be signed in to change notification settings - Fork 661
Add TaskExecutor conformance to EventLoops #2732
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
Open
fabianfett
wants to merge
9
commits into
apple:main
Choose a base branch
from
fabianfett:ff-nio-task-executor
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
4042c06
Add TaskExecutor conformance to EventLoops
fabianfett c151504
Code review
fabianfett 94c87d6
Make Benchmarks better
fabianfett 3a3e84d
Fix name
fabianfett 96e79f6
Update availability checks
fabianfett 3cad1af
Update Benchmarks
fabianfett cb67cb2
Moved code around
fabianfett 5423d30
swift-format
fabianfett e5e22db
Fix format
fabianfett File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
// swift-tools-version: 5.7 | ||
// swift-tools-version: 5.9 | ||
|
||
import PackageDescription | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
//===----------------------------------------------------------------------===// | ||
// | ||
// This source file is part of the SwiftNIO open source project | ||
// | ||
// Copyright (c) 2024 Apple Inc. and the SwiftNIO project authors | ||
// Licensed under Apache License v2.0 | ||
// | ||
// See LICENSE.txt for license information | ||
// See CONTRIBUTORS.txt for the list of SwiftNIO project authors | ||
// | ||
// SPDX-License-Identifier: Apache-2.0 | ||
// | ||
//===----------------------------------------------------------------------===// | ||
import NIOCore | ||
import NIOEmbedded | ||
import NIOPosix | ||
import XCTest | ||
|
||
final class TaskExecutorTests: XCTestCase { | ||
#if compiler(>=6.0) | ||
@available(macOS 15.0, iOS 18.0, watchOS 11.0, tvOS 18.0, visionOS 2.0, *) | ||
func _runTests(loop1: some EventLoop, loop2: some EventLoop) async { | ||
let executor1 = loop1.taskExecutor | ||
let executor2 = loop2.taskExecutor | ||
await withTaskGroup(of: Void.self) { taskGroup in | ||
taskGroup.addTask(executorPreference: executor1) { | ||
loop1.assertInEventLoop() | ||
loop2.assertNotInEventLoop() | ||
|
||
withUnsafeCurrentTask { task in | ||
// this currently fails on macOS | ||
XCTAssertEqual(task?.unownedTaskExecutor, executor1.asUnownedTaskExecutor()) | ||
} | ||
} | ||
|
||
taskGroup.addTask(executorPreference: executor2) { | ||
loop1.assertNotInEventLoop() | ||
loop2.assertInEventLoop() | ||
|
||
withUnsafeCurrentTask { task in | ||
// this currently fails on macOS | ||
XCTAssertEqual(task?.unownedTaskExecutor, executor2.asUnownedTaskExecutor()) | ||
} | ||
} | ||
} | ||
|
||
let task = Task(executorPreference: executor1) { | ||
loop1.assertInEventLoop() | ||
loop2.assertNotInEventLoop() | ||
|
||
withUnsafeCurrentTask { task in | ||
// this currently fails on macOS | ||
XCTAssertEqual(task?.unownedTaskExecutor, executor1.asUnownedTaskExecutor()) | ||
} | ||
} | ||
|
||
await task.value | ||
} | ||
|
||
@available(macOS 15.0, iOS 18.0, watchOS 11.0, tvOS 18.0, visionOS 2.0, *) | ||
func testSelectableEventLoopAsTaskExecutor() async throws { | ||
let group = MultiThreadedEventLoopGroup(numberOfThreads: 2) | ||
var iterator = group.makeIterator() | ||
let loop1 = iterator.next()! | ||
let loop2 = iterator.next()! | ||
|
||
await self._runTests(loop1: loop1, loop2: loop2) | ||
try! await group.shutdownGracefully() | ||
} | ||
|
||
@available(macOS 15.0, iOS 18.0, watchOS 11.0, tvOS 18.0, visionOS 2.0, *) | ||
func testAsyncTestingEventLoopAsTaskExecutor() async throws { | ||
let loop1 = NIOAsyncTestingEventLoop() | ||
let loop2 = NIOAsyncTestingEventLoop() | ||
|
||
await self._runTests(loop1: loop1, loop2: loop2) | ||
|
||
await loop1.shutdownGracefully() | ||
await loop2.shutdownGracefully() | ||
} | ||
#endif | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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 test currently crashes:
Why do we call
swift_task_switchImpl
with aSerialExecutorRef
?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.
switch is what checks if it can "switch" without releasing actor locks; it won't be able to switch when there's a task executor. I'll look into reproducing this though with a debug runtime to check.