Skip to content

Commit 7d1ed4c

Browse files
authored
[HTTP2] Forward HTTP2 events to StateMachine (#466)
1 parent b6fb33b commit 7d1ed4c

File tree

3 files changed

+47
-34
lines changed

3 files changed

+47
-34
lines changed

Sources/AsyncHTTPClient/ConnectionPool/HTTP2/HTTP2Connection.swift

+6-6
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ final class HTTP2Connection {
3737

3838
enum State {
3939
case initialized
40-
case starting(EventLoopPromise<Void>)
40+
case starting(EventLoopPromise<Int>)
4141
case active(maxStreams: Int)
4242
case closing
4343
case closed
@@ -117,9 +117,9 @@ final class HTTP2Connection {
117117
delegate: HTTP2ConnectionDelegate,
118118
configuration: HTTPClient.Configuration,
119119
logger: Logger
120-
) -> EventLoopFuture<HTTP2Connection> {
120+
) -> EventLoopFuture<(HTTP2Connection, Int)> {
121121
let connection = HTTP2Connection(channel: channel, connectionID: connectionID, delegate: delegate, logger: logger)
122-
return connection.start().map { _ in connection }
122+
return connection.start().map { maxStreams in (connection, maxStreams) }
123123
}
124124

125125
func executeRequest(_ request: HTTPExecutableRequest) {
@@ -154,10 +154,10 @@ final class HTTP2Connection {
154154
return promise.futureResult
155155
}
156156

157-
private func start() -> EventLoopFuture<Void> {
157+
private func start() -> EventLoopFuture<Int> {
158158
self.channel.eventLoop.assertInEventLoop()
159159

160-
let readyToAcceptConnectionsPromise = self.channel.eventLoop.makePromise(of: Void.self)
160+
let readyToAcceptConnectionsPromise = self.channel.eventLoop.makePromise(of: Int.self)
161161

162162
self.state = .starting(readyToAcceptConnectionsPromise)
163163
self.channel.closeFuture.whenComplete { _ in
@@ -266,7 +266,7 @@ extension HTTP2Connection: HTTP2IdleHandlerDelegate {
266266

267267
case .starting(let promise):
268268
self.state = .active(maxStreams: maxStreams)
269-
promise.succeed(())
269+
promise.succeed(maxStreams)
270270

271271
case .active:
272272
self.state = .active(maxStreams: maxStreams)

Sources/AsyncHTTPClient/ConnectionPool/HTTPConnectionPool+Factory.swift

+2-2
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,8 @@ extension HTTPConnectionPool.ConnectionFactory {
8686
logger: logger
8787
).whenComplete { result in
8888
switch result {
89-
case .success(let connection):
90-
requester.http2ConnectionCreated(connection, maximumStreams: 0)
89+
case .success((let connection, let maximumStreams)):
90+
requester.http2ConnectionCreated(connection, maximumStreams: maximumStreams)
9191
case .failure(let error):
9292
requester.failedToCreateHTTPConnection(connectionID, error: error)
9393
}

Sources/AsyncHTTPClient/ConnectionPool/HTTPConnectionPool.swift

+39-26
Original file line numberDiff line numberDiff line change
@@ -448,18 +448,14 @@ extension HTTPConnectionPool: HTTPConnectionRequester {
448448
}
449449

450450
func http2ConnectionCreated(_ connection: HTTP2Connection, maximumStreams: Int) {
451-
preconditionFailure("Did not expect http/2 connections right now.")
452-
// let action = self.stateLock.withLock { () -> StateMachine.Action in
453-
// if let settings = connection.settings {
454-
// return self._state.newHTTP2ConnectionCreated(.http2(connection), settings: settings)
455-
// } else {
456-
// // immidiate connection closure before we can register with state machine
457-
// // is the only reason we don't have settings
458-
// struct ImmidiateConnectionClose: Error {}
459-
// return self._state.failedToCreateNewConnection(ImmidiateConnectionClose(), connectionID: connection.id)
460-
// }
461-
// }
462-
// self.run(action: action)
451+
self.logger.trace("successfully created connection", metadata: [
452+
"ahc-connection-id": "\(connection.id)",
453+
"ahc-http-version": "http/2",
454+
"ahc-max-streams": "\(maximumStreams)",
455+
])
456+
self.modifyStateAndRunActions {
457+
$0.newHTTP2ConnectionCreated(.http2(connection), maxConcurrentStreams: maximumStreams)
458+
}
463459
}
464460

465461
func failedToCreateHTTPConnection(_ connectionID: HTTPConnectionPool.Connection.ID, error: Error) {
@@ -497,27 +493,44 @@ extension HTTPConnectionPool: HTTP1ConnectionDelegate {
497493

498494
extension HTTPConnectionPool: HTTP2ConnectionDelegate {
499495
func http2Connection(_ connection: HTTP2Connection, newMaxStreamSetting: Int) {
500-
// ignore for now
496+
self.logger.debug("new max stream setting", metadata: [
497+
"ahc-connection-id": "\(connection.id)",
498+
"ahc-http-version": "http/2",
499+
"ahc-max-streams": "\(newMaxStreamSetting)",
500+
])
501+
self.modifyStateAndRunActions {
502+
$0.newHTTP2MaxConcurrentStreamsReceived(connection.id, newMaxStreams: newMaxStreamSetting)
503+
}
501504
}
502505

503-
func http2ConnectionGoAwayReceived(_: HTTP2Connection) {
504-
// ignore for now
506+
func http2ConnectionGoAwayReceived(_ connection: HTTP2Connection) {
507+
self.logger.debug("connection go away received", metadata: [
508+
"ahc-connection-id": "\(connection.id)",
509+
"ahc-http-version": "http/2",
510+
])
511+
self.modifyStateAndRunActions {
512+
$0.http2ConnectionGoAwayReceived(connection.id)
513+
}
505514
}
506515

507-
func http2ConnectionClosed(_: HTTP2Connection) {
508-
// ignore for now
509-
// let action = self.stateLock.withLock {
510-
// self._state.connectionClosed(connection.id)
511-
// }
512-
// self.run(action: action)
516+
func http2ConnectionClosed(_ connection: HTTP2Connection) {
517+
self.logger.debug("connection closed", metadata: [
518+
"ahc-connection-id": "\(connection.id)",
519+
"ahc-http-version": "http/2",
520+
])
521+
self.modifyStateAndRunActions {
522+
$0.http2ConnectionClosed(connection.id)
523+
}
513524
}
514525

515526
func http2ConnectionStreamClosed(_ connection: HTTP2Connection, availableStreams: Int) {
516-
// ignore for now
517-
// let action = self.stateLock.withLock {
518-
// self._state.http2ConnectionStreamClosed(connection.id, availableStreams: availableStreams)
519-
// }
520-
// self.run(action: action)
527+
self.logger.trace("stream closed", metadata: [
528+
"ahc-connection-id": "\(connection.id)",
529+
"ahc-http-version": "http/2",
530+
])
531+
self.modifyStateAndRunActions {
532+
$0.http2ConnectionStreamClosed(connection.id)
533+
}
521534
}
522535
}
523536

0 commit comments

Comments
 (0)