|
| 1 | +//===----------------------------------------------------------------------===// |
| 2 | +// |
| 3 | +// This source file is part of the AsyncHTTPClient open source project |
| 4 | +// |
| 5 | +// Copyright (c) 2021 Apple Inc. and the AsyncHTTPClient project authors |
| 6 | +// Licensed under Apache License v2.0 |
| 7 | +// |
| 8 | +// See LICENSE.txt for license information |
| 9 | +// See CONTRIBUTORS.txt for the list of AsyncHTTPClient project authors |
| 10 | +// |
| 11 | +// SPDX-License-Identifier: Apache-2.0 |
| 12 | +// |
| 13 | +//===----------------------------------------------------------------------===// |
| 14 | + |
| 15 | +#if compiler(>=5.5) && canImport(_Concurrency) |
| 16 | +import NIOHTTP1 |
| 17 | + |
| 18 | +@available(macOS 12.0, iOS 15.0, watchOS 8.0, tvOS 15.0, *) |
| 19 | +extension HTTPClientRequest { |
| 20 | + struct Prepared { |
| 21 | + var poolKey: ConnectionPool.Key |
| 22 | + var requestFramingMetadata: RequestFramingMetadata |
| 23 | + var head: HTTPRequestHead |
| 24 | + var body: Body? |
| 25 | + } |
| 26 | +} |
| 27 | + |
| 28 | +@available(macOS 12.0, iOS 15.0, watchOS 8.0, tvOS 15.0, *) |
| 29 | +extension HTTPClientRequest.Prepared { |
| 30 | + init(_ request: HTTPClientRequest) throws { |
| 31 | + let url = try DeconstructedURL(url: request.url) |
| 32 | + |
| 33 | + var headers = request.headers |
| 34 | + headers.addHostIfNeeded(for: url) |
| 35 | + let metadata = try headers.validateAndSetTransportFraming( |
| 36 | + method: request.method, |
| 37 | + bodyLength: .init(request.body) |
| 38 | + ) |
| 39 | + |
| 40 | + self.init( |
| 41 | + poolKey: .init(url: url, tlsConfiguration: nil), |
| 42 | + requestFramingMetadata: metadata, |
| 43 | + head: .init( |
| 44 | + version: .http1_1, |
| 45 | + method: request.method, |
| 46 | + uri: url.uri, |
| 47 | + headers: headers |
| 48 | + ), |
| 49 | + body: request.body |
| 50 | + ) |
| 51 | + } |
| 52 | +} |
| 53 | + |
| 54 | +@available(macOS 12.0, iOS 15.0, watchOS 8.0, tvOS 15.0, *) |
| 55 | +extension RequestBodyLength { |
| 56 | + init(_ body: HTTPClientRequest.Body?) { |
| 57 | + switch body?.mode { |
| 58 | + case .none: |
| 59 | + self = .fixed(length: 0) |
| 60 | + case .byteBuffer(let buffer): |
| 61 | + self = .fixed(length: buffer.readableBytes) |
| 62 | + case .sequence(nil, _), .asyncSequence(nil, _): |
| 63 | + self = .dynamic |
| 64 | + case .sequence(.some(let length), _), .asyncSequence(.some(let length), _): |
| 65 | + self = .fixed(length: length) |
| 66 | + } |
| 67 | + } |
| 68 | +} |
| 69 | + |
| 70 | +#endif |
0 commit comments