-
Notifications
You must be signed in to change notification settings - Fork 122
/
Copy pathHTTPClient+execute.swift
267 lines (240 loc) · 9.84 KB
/
HTTPClient+execute.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
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
262
263
264
265
266
267
//===----------------------------------------------------------------------===//
//
// 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 NIOCore
import NIOHTTP1
import ServiceContextModule
import Tracing
import struct Foundation.URL
@available(macOS 10.15, iOS 13.0, watchOS 6.0, tvOS 13.0, *)
extension HTTPClient {
/// Execute arbitrary HTTP requests.
///
/// - Parameters:
/// - request: HTTP request to execute.
/// - deadline: Point in time by which the request must complete.
/// - logger: The logger to use for this request.
/// - Returns: The response to the request. Note that the `body` of the response may not yet have been fully received.
public func execute(
_ request: HTTPClientRequest,
deadline: NIODeadline,
logger: Logger? = nil,
context: ServiceContext? = nil
) async throws -> HTTPClientResponse {
try await self.executeAndFollowRedirectsIfNeeded(
request,
deadline: deadline,
logger: logger ?? Self.loggingDisabled,
context: context ?? .current ?? .topLevel,
redirectState: RedirectState(self.configuration.redirectConfiguration.mode, initialURL: request.url)
)
}
}
// MARK: Convenience methods
@available(macOS 10.15, iOS 13.0, watchOS 6.0, tvOS 13.0, *)
extension HTTPClient {
/// Execute arbitrary HTTP requests.
///
/// - Parameters:
/// - request: HTTP request to execute.
/// - timeout: time the the request has to complete.
/// - logger: The logger to use for this request.
/// - Returns: The response to the request. Note that the `body` of the response may not yet have been fully received.
public func execute(
_ request: HTTPClientRequest,
timeout: TimeAmount,
logger: Logger? = nil,
context: ServiceContext? = nil
) async throws -> HTTPClientResponse {
try await self.execute(
request,
deadline: .now() + timeout,
logger: logger,
context: context
)
}
}
@available(macOS 10.15, iOS 13.0, watchOS 6.0, tvOS 13.0, *)
extension HTTPClient {
private func executeAndFollowRedirectsIfNeeded(
_ request: HTTPClientRequest,
deadline: NIODeadline,
logger: Logger,
context: ServiceContext,
redirectState: RedirectState?
) async throws -> HTTPClientResponse {
var currentRequest = request
var currentRedirectState = redirectState
var resendCount = 0
// this loop is there to follow potential redirects
while true {
let preparedRequest = try HTTPClientRequest.Prepared(currentRequest, dnsOverride: configuration.dnsOverride)
let response = try await self.executeCancellable(
preparedRequest,
deadline: deadline,
logger: logger,
context: context,
resendCount: resendCount > 0 ? resendCount : nil
)
guard var redirectState = currentRedirectState else {
// a `nil` redirectState means we should not follow redirects
return response
}
guard
let redirectURL = response.headers.extractRedirectTarget(
status: response.status,
originalURL: preparedRequest.url,
originalScheme: preparedRequest.poolKey.scheme
)
else {
// response does not want a redirect
return response
}
// validate that we do not exceed any limits or are running circles
try redirectState.redirect(to: redirectURL.absoluteString)
currentRedirectState = redirectState
let newRequest = currentRequest.followingRedirect(
from: preparedRequest.url,
to: redirectURL,
status: response.status
)
guard newRequest.body.canBeConsumedMultipleTimes else {
// we already send the request body and it cannot be send again
return response
}
resendCount += 1
currentRequest = newRequest
}
}
private func executeCancellable(
_ request: HTTPClientRequest.Prepared,
deadline: NIODeadline,
logger: Logger,
context: ServiceContext,
resendCount: Int?
) async throws -> HTTPClientResponse {
let cancelHandler = TransactionCancelHandler()
return try await withSpan(request.head.method.rawValue, context: context, ofKind: .client) { span in
var request = request
request.head.headers.propagate(span.context)
span.updateAttributes { attributes in
attributes["http.request.method"] = request.head.method.rawValue
attributes["server.address"] = request.poolKey.connectionTarget.host
attributes["server.port"] = request.poolKey.connectionTarget.port
attributes["url.full"] = request.url.absoluteString
attributes["http.request.resend_count"] = resendCount
}
do {
let response = try await withTaskCancellationHandler(
operation: { () async throws -> HTTPClientResponse in
let eventLoop = self.eventLoopGroup.any()
let deadlineTask = eventLoop.scheduleTask(deadline: deadline) {
cancelHandler.cancel(reason: .deadlineExceeded)
}
defer {
deadlineTask.cancel()
}
let response = try await withCheckedThrowingContinuation {
(continuation: CheckedContinuation<HTTPClientResponse, Swift.Error>) -> Void in
let transaction = Transaction(
request: request,
requestOptions: .fromClientConfiguration(self.configuration),
logger: logger,
connectionDeadline: .now() + (self.configuration.timeout.connectionCreationTimeout),
preferredEventLoop: eventLoop,
responseContinuation: continuation
)
cancelHandler.registerTransaction(transaction)
self.poolManager.executeRequest(transaction)
}
if response.status.code >= 400 {
span.setStatus(.init(code: .error))
span.attributes["error.type"] = "\(response.status.code)"
}
span.attributes["http.response.status_code"] = "\(response.status.code)"
return response
},
onCancel: {
span.setStatus(.init(code: .error))
span.attributes["error.type"] = "\(CancellationError.self)"
cancelHandler.cancel(reason: .taskCanceled)
}
)
return response
} catch {
span.setStatus(.init(code: .error))
span.attributes["error.type"] = "\(type(of: error))"
throw error
}
}
}
}
/// There is currently no good way to asynchronously cancel an object that is initiated inside the `body` closure of `with*Continuation`.
/// As a workaround we use `TransactionCancelHandler` which will take care of the race between instantiation of `Transaction`
/// in the `body` closure and cancelation from the `onCancel` closure of `withTaskCancellationHandler`.
@available(macOS 10.15, iOS 13.0, watchOS 6.0, tvOS 13.0, *)
private actor TransactionCancelHandler {
enum CancelReason {
/// swift concurrency task was canceled
case taskCanceled
/// deadline timeout
case deadlineExceeded
}
private enum State {
case initialised
case register(Transaction)
case cancelled(CancelReason)
}
private var state: State = .initialised
init() {}
private func cancelTransaction(_ transaction: Transaction, for reason: CancelReason) {
switch reason {
case .taskCanceled:
transaction.cancel()
case .deadlineExceeded:
transaction.deadlineExceeded()
}
}
private func _registerTransaction(_ transaction: Transaction) {
switch self.state {
case .initialised:
self.state = .register(transaction)
case .cancelled(let reason):
self.cancelTransaction(transaction, for: reason)
case .register:
preconditionFailure("transaction already set")
}
}
nonisolated func registerTransaction(_ transaction: Transaction) {
Task {
await self._registerTransaction(transaction)
}
}
private func _cancel(reason: CancelReason) {
switch self.state {
case .register(let transaction):
self.state = .cancelled(reason)
self.cancelTransaction(transaction, for: reason)
case .cancelled:
break
case .initialised:
self.state = .cancelled(reason)
}
}
nonisolated func cancel(reason: CancelReason) {
Task {
await self._cancel(reason: reason)
}
}
}