-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathHTTP2StreamManager.swift
90 lines (79 loc) · 4.1 KB
/
HTTP2StreamManager.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
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0.
import AwsCHttp
// Swift cannot verify the sendability due to a pointer, and thread safety is handled in the C layer.
// So mark it as unchecked Sendable.
/// Manages a Pool of HTTP/2 Streams. Creates and manages HTTP/2 connections under the hood.
public class HTTP2StreamManager: @unchecked Sendable {
let rawValue: UnsafeMutablePointer<aws_http2_stream_manager>
public init(options: HTTP2StreamManagerOptions) throws {
let shutdownCallbackCore = ShutdownCallbackCore(options.shutdownCallback)
let shutdownOptions = shutdownCallbackCore.getRetainedShutdownOptions()
guard let rawValue: UnsafeMutablePointer<aws_http2_stream_manager> = (
options.withCPointer(shutdownOptions: shutdownOptions) { managerOptions in
aws_http2_stream_manager_new(allocator.rawValue, managerOptions)
}) else {
shutdownCallbackCore.release()
throw CommonRunTimeError.crtError(.makeFromLastError())
}
self.rawValue = rawValue
}
/// Acquires an `HTTP2Stream` asynchronously.
/// There is no need to call activate.
/// - Parameter requestOptions: The Request to make to the Server.
/// - Returns: HTTP2Stream when the stream is acquired
/// - Throws: CommonRunTimeError.crtError
public func acquireStream(requestOptions: HTTPRequestOptions) async throws -> HTTP2Stream {
try await withCheckedThrowingContinuation({ (continuation: CheckedContinuation<HTTP2Stream, Error>) in
let httpStreamCallbackCore = HTTPStreamCallbackCore(requestOptions: requestOptions)
let acquireStreamCore = HTTP2AcquireStreamCore(
continuation: continuation,
callbackCore: httpStreamCallbackCore)
let requestOptions = httpStreamCallbackCore.getRetainedHttpMakeRequestOptions()
var options = aws_http2_stream_manager_acquire_stream_options()
options.callback = onStreamAcquired
options.user_data = acquireStreamCore.passRetained()
withUnsafePointer(to: requestOptions, { requestOptionsPointer in
options.options = requestOptionsPointer
aws_http2_stream_manager_acquire_stream(rawValue, &options)
})
})
}
/// Fetch the current manager metrics from connection manager.
public func fetchMetrics() -> HTTPClientConnectionManagerMetrics {
var cManagerMetrics = aws_http_manager_metrics()
aws_http2_stream_manager_fetch_metrics(rawValue, &cManagerMetrics)
return HTTPClientConnectionManagerMetrics(
availableConcurrency: cManagerMetrics.available_concurrency,
pendingConcurrencyAcquires: cManagerMetrics.pending_concurrency_acquires,
leasedConcurrency: cManagerMetrics.leased_concurrency
)
}
deinit {
aws_http2_stream_manager_release(rawValue)
}
}
private class HTTP2AcquireStreamCore {
let continuation: CheckedContinuation<HTTP2Stream, Error>
let callbackCore: HTTPStreamCallbackCore
init(continuation: CheckedContinuation<HTTP2Stream, Error>, callbackCore: HTTPStreamCallbackCore) {
self.callbackCore = callbackCore
self.continuation = continuation
}
func passRetained() -> UnsafeMutableRawPointer {
Unmanaged.passRetained(self).toOpaque()
}
}
private func onStreamAcquired(stream: UnsafeMutablePointer<aws_http_stream>?,
errorCode: Int32,
userData: UnsafeMutableRawPointer!) {
let acquireStreamCore = Unmanaged<HTTP2AcquireStreamCore>.fromOpaque(userData).takeRetainedValue()
guard errorCode == AWS_OP_SUCCESS else {
acquireStreamCore.callbackCore.release()
acquireStreamCore.continuation.resume(throwing: CommonRunTimeError.crtError(CRTError(code: errorCode)))
return
}
// SUCCESS
let http2Stream = HTTP2Stream(rawValue: stream!, callbackData: acquireStreamCore.callbackCore)
acquireStreamCore.continuation.resume(returning: http2Stream)
}