-
Notifications
You must be signed in to change notification settings - Fork 122
/
Copy pathHTTPConnectionPool+Manager.swift
178 lines (153 loc) · 6.33 KB
/
HTTPConnectionPool+Manager.swift
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
//===----------------------------------------------------------------------===//
//
// This source file is part of the AsyncHTTPClient open source project
//
// Copyright (c) 2021 Apple Inc. and the AsyncHTTPClient project authors
// Licensed under Apache License v2.0
//
// See LICENSE.txt for license information
// See CONTRIBUTORS.txt for the list of AsyncHTTPClient project authors
//
// SPDX-License-Identifier: Apache-2.0
//
//===----------------------------------------------------------------------===//
import Logging
import NIOConcurrencyHelpers
import NIOCore
import NIOHTTP1
extension HTTPConnectionPool {
final class Manager {
private typealias Key = ConnectionPool.Key
private enum State {
case active
case shuttingDown(promise: EventLoopPromise<Bool>?, unclean: Bool)
case shutDown
}
private let eventLoopGroup: EventLoopGroup
private let configuration: HTTPClient.Configuration
private let connectionIDGenerator = Connection.ID.globalGenerator
private let logger: Logger
private var state: State = .active
private var _pools: [Key: HTTPConnectionPool] = [:]
private let lock = Lock()
private let sslContextCache = SSLContextCache()
init(eventLoopGroup: EventLoopGroup,
configuration: HTTPClient.Configuration,
backgroundActivityLogger logger: Logger) {
self.eventLoopGroup = eventLoopGroup
self.configuration = configuration
self.logger = logger
}
func executeRequest(_ request: HTTPSchedulableRequest) {
let poolKey = request.poolKey
let poolResult = self.lock.withLock { () -> Result<HTTPConnectionPool, HTTPClientError> in
switch self.state {
case .active:
if let pool = self._pools[poolKey] {
return .success(pool)
}
let pool = HTTPConnectionPool(
eventLoopGroup: self.eventLoopGroup,
sslContextCache: self.sslContextCache,
tlsConfiguration: request.tlsConfiguration,
clientConfiguration: self.configuration,
key: poolKey,
delegate: self,
idGenerator: self.connectionIDGenerator,
backgroundActivityLogger: self.logger
)
self._pools[poolKey] = pool
return .success(pool)
case .shuttingDown, .shutDown:
return .failure(HTTPClientError.alreadyShutdown)
}
}
switch poolResult {
case .success(let pool):
pool.executeRequest(request)
case .failure(let error):
request.fail(error)
}
}
/// Shutdown the connection pool manager. You **must** shutdown the pool manager, since it leak otherwise.
///
/// - Parameter promise: An `EventLoopPromise` that is succeeded once all connections pools are shutdown.
/// - Returns: An EventLoopFuture that is succeeded once the pool is shutdown. The bool indicates if the
/// shutdown was unclean.
func shutdown(promise: EventLoopPromise<Bool>?) {
enum ShutdownAction {
case done(EventLoopPromise<Bool>?)
case shutdown([Key: HTTPConnectionPool])
}
let action = self.lock.withLock { () -> ShutdownAction in
switch self.state {
case .active:
// If there aren't any pools, we can mark the pool as shut down right away.
if self._pools.isEmpty {
self.state = .shutDown
return .done(promise)
} else {
// this promise will be succeeded once all connection pools are shutdown
self.state = .shuttingDown(promise: promise, unclean: false)
return .shutdown(self._pools)
}
case .shuttingDown, .shutDown:
preconditionFailure("PoolManager already shutdown")
}
}
// if no pools are returned, the manager is already shutdown completely. Inform the
// delegate. This is a very clean shutdown...
switch action {
case .done(let promise):
promise?.succeed(false)
case .shutdown(let pools):
pools.values.forEach { pool in
pool.shutdown()
}
}
}
}
}
extension HTTPConnectionPool.Manager: HTTPConnectionPoolDelegate {
func connectionPoolDidShutdown(_ pool: HTTPConnectionPool, unclean: Bool) {
enum CloseAction {
case close(EventLoopPromise<Bool>?, unclean: Bool)
case wait
}
let closeAction = self.lock.withLock { () -> CloseAction in
switch self.state {
case .active, .shutDown:
preconditionFailure("Why are pools shutting down, if the manager did not give a signal")
case .shuttingDown(let promise, let soFarUnclean):
guard self._pools.removeValue(forKey: pool.key) === pool else {
preconditionFailure("Expected that the pool was created by this manager and is known for this reason.")
}
if self._pools.isEmpty {
self.state = .shutDown
return .close(promise, unclean: soFarUnclean || unclean)
} else {
self.state = .shuttingDown(promise: promise, unclean: soFarUnclean || unclean)
return .wait
}
}
}
switch closeAction {
case .close(let promise, unclean: let unclean):
promise?.succeed(unclean)
case .wait:
break
}
}
}
extension HTTPConnectionPool.Connection.ID {
static var globalGenerator = Generator()
struct Generator {
private let atomic: NIOAtomic<Int>
init() {
self.atomic = .makeAtomic(value: 0)
}
func next() -> Int {
return self.atomic.add(1)
}
}
}