-
Notifications
You must be signed in to change notification settings - Fork 125
Support NIO Transport Services #135
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
Closed
Yasumoto
wants to merge
2
commits into
swift-server:master
from
Yasumoto:yasumoto-transport-services
Closed
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
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 hidden or 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 hidden or 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 |
---|---|---|
|
@@ -19,6 +19,11 @@ import NIOHTTP1 | |
import NIOHTTPCompression | ||
import NIOSSL | ||
|
||
#if canImport(Network) | ||
import Network | ||
import NIOTransportServices | ||
#endif | ||
|
||
/// HTTPClient class provides API for request execution. | ||
/// | ||
/// Example: | ||
|
@@ -61,7 +66,15 @@ public class HTTPClient { | |
case .shared(let group): | ||
self.eventLoopGroup = group | ||
case .createNew: | ||
self.eventLoopGroup = MultiThreadedEventLoopGroup(numberOfThreads: 1) | ||
#if canImport(Network) | ||
if #available(OSX 10.14, iOS 12.0, tvOS 12.0, watchOS 6.0, *) { | ||
self.eventLoopGroup = NIOTSEventLoopGroup() | ||
} else { | ||
self.eventLoopGroup = MultiThreadedEventLoopGroup(numberOfThreads: System.coreCount) | ||
} | ||
#else | ||
self.eventLoopGroup = MultiThreadedEventLoopGroup(numberOfThreads: System.coreCount) | ||
#endif | ||
} | ||
self.configuration = configuration | ||
} | ||
|
@@ -246,8 +259,20 @@ public class HTTPClient { | |
|
||
let task = Task<Delegate.Response>(eventLoop: delegateEL) | ||
|
||
var bootstrap = ClientBootstrap(group: channelEL ?? delegateEL) | ||
.channelOption(ChannelOptions.socket(SocketOptionLevel(IPPROTO_TCP), TCP_NODELAY), value: 1) | ||
|
||
#if canImport(Network) | ||
var bootstrap: ClientTransportBootstrap | ||
|
||
if #available(OSX 10.14, iOS 12.0, tvOS 12.0, watchOS 6.0, *) { | ||
bootstrap = NIOTSConnectionBootstrap(group: self.eventLoopGroup) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. why not |
||
} else { | ||
bootstrap = ClientBootstrap(group: channelEL ?? delegateEL) | ||
} | ||
#else | ||
bootstrap = ClientBootstrap(group: channelEL ?? delegateEL) | ||
#endif | ||
|
||
bootstrap = bootstrap.channelOption(ChannelOptions.socket(SocketOptionLevel(IPPROTO_TCP), TCP_NODELAY), value: 1) | ||
.channelInitializer { channel in | ||
let encoder = HTTPRequestEncoder() | ||
let decoder = ByteToMessageHandler(HTTPResponseDecoder(leftOverBytesStrategy: .forwardBytes)) | ||
|
This file contains hidden or 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 hidden or 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 |
---|---|---|
|
@@ -21,6 +21,11 @@ import NIOSSL | |
import NIOTestUtils | ||
import XCTest | ||
|
||
#if canImport(Network) | ||
import Network | ||
import NIOTransportServices | ||
#endif | ||
|
||
class HTTPClientTests: XCTestCase { | ||
typealias Request = HTTPClient.Request | ||
|
||
|
@@ -79,8 +84,22 @@ class HTTPClientTests: XCTestCase { | |
|
||
func testGetWithDifferentEventLoopBackpressure() throws { | ||
let httpBin = HTTPBin() | ||
let loopGroup = MultiThreadedEventLoopGroup(numberOfThreads: 1) | ||
let external = MultiThreadedEventLoopGroup(numberOfThreads: 1) | ||
let loopGroup: EventLoopGroup | ||
let external: EventLoopGroup | ||
|
||
#if canImport(Network) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. maybe we should extract this to a test helper function (that returns one ELG)? |
||
if #available(OSX 10.14, iOS 12.0, tvOS 12.0, watchOS 6.0, *) { | ||
loopGroup = NIOTSEventLoopGroup() | ||
external = NIOTSEventLoopGroup() | ||
} else { | ||
loopGroup = MultiThreadedEventLoopGroup(numberOfThreads: 1) | ||
external = MultiThreadedEventLoopGroup(numberOfThreads: 1) | ||
} | ||
#else | ||
loopGroup = MultiThreadedEventLoopGroup(numberOfThreads: 1) | ||
external = MultiThreadedEventLoopGroup(numberOfThreads: 1) | ||
#endif | ||
|
||
let httpClient = HTTPClient(eventLoopGroupProvider: .shared(loopGroup)) | ||
defer { | ||
XCTAssertNoThrow(try httpClient.syncShutdown()) | ||
|
@@ -538,7 +557,16 @@ class HTTPClientTests: XCTestCase { | |
|
||
func testEventLoopArgument() throws { | ||
let httpBin = HTTPBin() | ||
let eventLoopGroup = MultiThreadedEventLoopGroup(numberOfThreads: 5) | ||
let eventLoopGroup: EventLoopGroup | ||
#if canImport(Network) | ||
if #available(OSX 10.14, iOS 12.0, tvOS 12.0, watchOS 6.0, *) { | ||
eventLoopGroup = NIOTSEventLoopGroup() | ||
} else { | ||
eventLoopGroup = MultiThreadedEventLoopGroup(numberOfThreads: 5) | ||
} | ||
#else | ||
eventLoopGroup = MultiThreadedEventLoopGroup(numberOfThreads: 5) | ||
#endif | ||
let httpClient = HTTPClient(eventLoopGroupProvider: .shared(eventLoopGroup), | ||
configuration: HTTPClient.Configuration(redirectConfiguration: .follow(max: 10, allowCycles: true))) | ||
defer { | ||
|
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.
@weissi do you think it's a good idea to default to TS on darwin?
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.
Yes