1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261
|
//===----------------------------------------------------------------------===//
//
// This source file is part of the SwiftNIO open source project
//
// Copyright (c) 2019 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
//
//===----------------------------------------------------------------------===//
/// `NIOClientTCPBootstrapProtocol` is implemented by various underlying transport mechanisms. Typically,
/// this will be the BSD Sockets API implemented by `ClientBootstrap`.
public protocol NIOClientTCPBootstrapProtocol {
/// Initialize the connected `SocketChannel` with `initializer`. The most common task in initializer is to add
/// `ChannelHandler`s to the `ChannelPipeline`.
///
/// The connected `Channel` will operate on `ByteBuffer` as inbound and `IOData` as outbound messages.
///
/// - warning: The `handler` closure may be invoked _multiple times_ so it's usually the right choice to instantiate
/// `ChannelHandler`s within `handler`. The reason `handler` may be invoked multiple times is that to
/// successfully set up a connection multiple connections might be setup in the process. Assuming a
/// hostname that resolves to both IPv4 and IPv6 addresses, NIO will follow
/// [_Happy Eyeballs_](https://en.wikipedia.org/wiki/Happy_Eyeballs) and race both an IPv4 and an IPv6
/// connection. It is possible that both connections get fully established before the IPv4 connection
/// will be closed again because the IPv6 connection 'won the race'. Therefore the `channelInitializer`
/// might be called multiple times and it's important not to share stateful `ChannelHandler`s in more
/// than one `Channel`.
///
/// - parameters:
/// - handler: A closure that initializes the provided `Channel`.
func channelInitializer(_ handler: @escaping (Channel) -> EventLoopFuture<Void>) -> Self
/// Sets the protocol handlers that will be added to the front of the `ChannelPipeline` right after the
/// `channelInitializer` has been called.
///
/// Per bootstrap, you can only set the `protocolHandlers` once. Typically, `protocolHandlers` are used for the TLS
/// implementation. Most notably, `NIOClientTCPBootstrap`, NIO's "universal bootstrap" abstraction, uses
/// `protocolHandlers` to add the required `ChannelHandler`s for many TLS implementations.
func protocolHandlers(_ handlers: @escaping () -> [ChannelHandler]) -> Self
/// Specifies a `ChannelOption` to be applied to the `SocketChannel`.
///
/// - parameters:
/// - option: The option to be applied.
/// - value: The value for the option.
func channelOption<Option: ChannelOption>(_ option: Option, value: Option.Value) -> Self
/// Apply any understood convenience options to the bootstrap, removing them from the set of options if they are consumed.
/// Method is optional to implement and should never be directly called by users.
/// - parameters:
/// - options: The options to try applying - the options applied should be consumed from here.
/// - returns: The updated bootstrap with and options applied.
func _applyChannelConvenienceOptions(_ options: inout ChannelOptions.TCPConvenienceOptions) -> Self
/// - parameters:
/// - timeout: The timeout that will apply to the connection attempt.
func connectTimeout(_ timeout: TimeAmount) -> Self
/// Specify the `host` and `port` to connect to for the TCP `Channel` that will be established.
///
/// - parameters:
/// - host: The host to connect to.
/// - port: The port to connect to.
/// - returns: An `EventLoopFuture<Channel>` to deliver the `Channel` when connected.
func connect(host: String, port: Int) -> EventLoopFuture<Channel>
/// Specify the `address` to connect to for the TCP `Channel` that will be established.
///
/// - parameters:
/// - address: The address to connect to.
/// - returns: An `EventLoopFuture<Channel>` to deliver the `Channel` when connected.
func connect(to address: SocketAddress) -> EventLoopFuture<Channel>
/// Specify the `unixDomainSocket` path to connect to for the UDS `Channel` that will be established.
///
/// - parameters:
/// - unixDomainSocketPath: The _Unix domain socket_ path to connect to.
/// - returns: An `EventLoopFuture<Channel>` to deliver the `Channel` when connected.
func connect(unixDomainSocketPath: String) -> EventLoopFuture<Channel>
}
/// `NIOClientTCPBootstrap` is a bootstrap that allows you to bootstrap client TCP connections using NIO on BSD Sockets,
/// NIO Transport Services, or other ways.
///
/// Usually, to bootstrap a connection with SwiftNIO, you have to match the right `EventLoopGroup`, the right bootstrap,
/// and the right TLS implementation. Typical choices involve:
/// - `MultiThreadedEventLoopGroup`, `ClientBootstrap`, and `NIOSSLClientHandler` (from
/// [`swift-nio-ssl`](https://github.com/apple/swift-nio-ssl)) for NIO on BSD sockets.
/// - `NIOTSEventLoopGroup`, `NIOTSConnectionBootstrap`, and the Network.framework TLS implementation (all from
/// [`swift-nio-transport-services`](https://github.com/apple/swift-nio-transport-services).
///
/// Bootstrapping connections that way works but is quite tedious for packages that support multiple ways of
/// bootstrapping. The idea behind `NIOClientTCPBootstrap` is to do all configuration in one place (when you initialize
/// a `NIOClientTCPBootstrap`) and then have a common API that works for all use-cases.
///
/// Example:
///
/// // This function combines the right pieces and returns you a "universal client bootstrap"
/// // (`NIOClientTCPBootstrap`). This allows you to bootstrap connections (with or without TLS) using either the
/// // NIO on sockets (`NIO`) or NIO on Network.framework (`NIOTransportServices`) stacks.
/// // The remainder of the code should be platform-independent.
/// func makeUniversalBootstrap(serverHostname: String) throws -> (NIOClientTCPBootstrap, EventLoopGroup) {
/// func useNIOOnSockets() throws -> (NIOClientTCPBootstrap, EventLoopGroup) {
/// let group = MultiThreadedEventLoopGroup(numberOfThreads: 1)
/// let sslContext = try NIOSSLContext(configuration: TLSConfiguration.forClient())
/// let bootstrap = try NIOClientTCPBootstrap(ClientBootstrap(group: group),
/// tls: NIOSSLClientTLSProvider(context: sslContext,
/// serverHostname: serverHostname))
/// return (bootstrap, group)
/// }
///
/// #if canImport(Network)
/// if #available(macOS 10.14, iOS 12, tvOS 12, watchOS 3, *) {
/// // We run on a new-enough Darwin so we can use Network.framework
///
/// let group = NIOTSEventLoopGroup()
/// let bootstrap = NIOClientTCPBootstrap(NIOTSConnectionBootstrap(group: group),
/// tls: NIOTSClientTLSProvider())
/// return (bootstrap, group)
/// } else {
/// // We're on Darwin but not new enough for Network.framework, so we fall back on NIO on BSD sockets.
/// return try useNIOOnSockets()
/// }
/// #else
/// // We are on a non-Darwin platform, so we'll use BSD sockets.
/// return try useNIOOnSockets()
/// #endif
/// }
///
/// let (bootstrap, group) = try makeUniversalBootstrap(serverHostname: "example.com")
/// let connection = try bootstrap
/// .channelInitializer { channel in
/// channel.pipeline.addHandler(PrintEverythingHandler { _ in })
/// }
/// .enableTLS()
/// .connect(host: "example.com", port: 443)
/// .wait()
public struct NIOClientTCPBootstrap {
public let underlyingBootstrap: NIOClientTCPBootstrapProtocol
private let tlsEnablerTypeErased: (NIOClientTCPBootstrapProtocol) -> NIOClientTCPBootstrapProtocol
/// Initialize a `NIOClientTCPBootstrap` using the underlying `Bootstrap` alongside a compatible `TLS`
/// implementation.
///
/// - note: If you do not require `TLS`, you can use `NIOInsecureNoTLS` which supports only plain-text
/// connections. We highly recommend to always use TLS.
///
/// - parameters:
/// - bootstrap: The underlying bootstrap to use.
/// - tls: The TLS implementation to use, needs to be compatible with `Bootstrap`.
public init<Bootstrap: NIOClientTCPBootstrapProtocol,
TLS: NIOClientTLSProvider>(_ bootstrap: Bootstrap, tls: TLS) where TLS.Bootstrap == Bootstrap {
self.underlyingBootstrap = bootstrap
self.tlsEnablerTypeErased = { bootstrap in
return tls.enableTLS(bootstrap as! TLS.Bootstrap)
}
}
private init(_ bootstrap: NIOClientTCPBootstrapProtocol,
tlsEnabler: @escaping (NIOClientTCPBootstrapProtocol) -> NIOClientTCPBootstrapProtocol) {
self.underlyingBootstrap = bootstrap
self.tlsEnablerTypeErased = tlsEnabler
}
internal init(_ original : NIOClientTCPBootstrap, updating underlying : NIOClientTCPBootstrapProtocol) {
self.underlyingBootstrap = underlying
self.tlsEnablerTypeErased = original.tlsEnablerTypeErased
}
/// Initialize the connected `SocketChannel` with `initializer`. The most common task in initializer is to add
/// `ChannelHandler`s to the `ChannelPipeline`.
///
/// The connected `Channel` will operate on `ByteBuffer` as inbound and `IOData` as outbound messages.
///
/// - warning: The `handler` closure may be invoked _multiple times_ so it's usually the right choice to instantiate
/// `ChannelHandler`s within `handler`. The reason `handler` may be invoked multiple times is that to
/// successfully set up a connection multiple connections might be setup in the process. Assuming a
/// hostname that resolves to both IPv4 and IPv6 addresses, NIO will follow
/// [_Happy Eyeballs_](https://en.wikipedia.org/wiki/Happy_Eyeballs) and race both an IPv4 and an IPv6
/// connection. It is possible that both connections get fully established before the IPv4 connection
/// will be closed again because the IPv6 connection 'won the race'. Therefore the `channelInitializer`
/// might be called multiple times and it's important not to share stateful `ChannelHandler`s in more
/// than one `Channel`.
///
/// - parameters:
/// - handler: A closure that initializes the provided `Channel`.
public func channelInitializer(_ handler: @escaping (Channel) -> EventLoopFuture<Void>) -> NIOClientTCPBootstrap {
return NIOClientTCPBootstrap(self.underlyingBootstrap.channelInitializer(handler),
tlsEnabler: self.tlsEnablerTypeErased)
}
/// Specifies a `ChannelOption` to be applied to the `SocketChannel`.
///
/// - parameters:
/// - option: The option to be applied.
/// - value: The value for the option.
public func channelOption<Option: ChannelOption>(_ option: Option, value: Option.Value) -> NIOClientTCPBootstrap {
return NIOClientTCPBootstrap(self.underlyingBootstrap.channelOption(option, value: value),
tlsEnabler: self.tlsEnablerTypeErased)
}
/// - parameters:
/// - timeout: The timeout that will apply to the connection attempt.
public func connectTimeout(_ timeout: TimeAmount) -> NIOClientTCPBootstrap {
return NIOClientTCPBootstrap(self.underlyingBootstrap.connectTimeout(timeout),
tlsEnabler: self.tlsEnablerTypeErased)
}
/// Specify the `host` and `port` to connect to for the TCP `Channel` that will be established.
///
/// - parameters:
/// - host: The host to connect to.
/// - port: The port to connect to.
/// - returns: An `EventLoopFuture<Channel>` to deliver the `Channel` when connected.
public func connect(host: String, port: Int) -> EventLoopFuture<Channel> {
return self.underlyingBootstrap.connect(host: host, port: port)
}
/// Specify the `address` to connect to for the TCP `Channel` that will be established.
///
/// - parameters:
/// - address: The address to connect to.
/// - returns: An `EventLoopFuture<Channel>` to deliver the `Channel` when connected.
public func connect(to address: SocketAddress) -> EventLoopFuture<Channel> {
return self.underlyingBootstrap.connect(to: address)
}
/// Specify the `unixDomainSocket` path to connect to for the UDS `Channel` that will be established.
///
/// - parameters:
/// - unixDomainSocketPath: The _Unix domain socket_ path to connect to.
/// - returns: An `EventLoopFuture<Channel>` to deliver the `Channel` when connected.
public func connect(unixDomainSocketPath: String) -> EventLoopFuture<Channel> {
return self.underlyingBootstrap.connect(unixDomainSocketPath: unixDomainSocketPath)
}
@discardableResult
public func enableTLS() -> NIOClientTCPBootstrap {
return NIOClientTCPBootstrap(self.tlsEnablerTypeErased(self.underlyingBootstrap),
tlsEnabler: self.tlsEnablerTypeErased)
}
}
public protocol NIOClientTLSProvider {
associatedtype Bootstrap
func enableTLS(_ bootstrap: Bootstrap) -> Bootstrap
}
public struct NIOInsecureNoTLS<Bootstrap: NIOClientTCPBootstrapProtocol>: NIOClientTLSProvider {
public init() {}
public func enableTLS(_ bootstrap: Bootstrap) -> Bootstrap {
fatalError("NIOInsecureNoTLS cannot enable TLS.")
}
}
|