You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+86-7
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,7 @@
2
2
This package provides simple HTTP Client library built on top of SwiftNIO.
3
3
4
4
This library provides the following:
5
+
- First class support for Swift Concurrency (since version 1.9.0)
5
6
- Asynchronous and non-blocking request methods
6
7
- Simple follow-redirects (cookie headers are dropped)
7
8
- Streaming body download
@@ -11,7 +12,7 @@ This library provides the following:
11
12
12
13
---
13
14
14
-
**NOTE**: You will need [Xcode 11.4](https://apps.apple.com/gb/app/xcode/id497799835?mt=12) or [Swift 5.2](https://swift.org/download/#swift-52) to try out `AsyncHTTPClient`.
15
+
**NOTE**: You will need [Xcode 13.2](https://apps.apple.com/gb/app/xcode/id497799835?mt=12) or [Swift 5.5.2](https://swift.org/download/#swift-552) to try out `AsyncHTTPClient`s new async/await APIs.
15
16
16
17
---
17
18
@@ -21,7 +22,7 @@ This library provides the following:
21
22
Add the following entry in your <code>Package.swift</code> to start using <code>HTTPClient</code>:
@@ -40,7 +41,21 @@ If your application does not use SwiftNIO yet, it is acceptable to use `eventLoo
40
41
importAsyncHTTPClient
41
42
42
43
let httpClient =HTTPClient(eventLoopGroupProvider: .createNew)
43
-
httpClient.get(url: "https://swift.org").whenComplete { result in
44
+
45
+
/// MARK: - Using Swift Concurrency
46
+
let request =HTTPClientRequest(url: "https://apple.com/")
47
+
let response =tryawait httpClient.execute(request, timeout: .seconds(30))
48
+
print("HTTP head", response)
49
+
if response.status == .ok {
50
+
let body =tryawait response.body.collect(upTo: 1024*1024) // 1 MB
51
+
// handle body
52
+
} else {
53
+
// handle remote error
54
+
}
55
+
56
+
57
+
/// MARK: - Using SwiftNIO EventLoopFuture
58
+
httpClient.get(url: "https://apple.com/").whenComplete { result in
44
59
switch result {
45
60
case .failure(let error):
46
61
// process error
@@ -58,7 +73,35 @@ You should always shut down `HTTPClient` instances you created using `try httpCl
58
73
59
74
## Usage guide
60
75
61
-
Most common HTTP methods are supported out of the box. In case you need to have more control over the method, or you want to add headers or body, use the `HTTPRequest` struct:
76
+
The default HTTP Method is `GET`. In case you need to have more control over the method, or you want to add headers or body, use the `HTTPClientRequest` struct:
77
+
78
+
#### Using Swift Concurrency
79
+
80
+
```swift
81
+
importAsyncHTTPClient
82
+
83
+
let httpClient =HTTPClient(eventLoopGroupProvider: .createNew)
84
+
do {
85
+
var request =HTTPClientRequest(url: "https://apple.com/")
When dealing with larger amount of data, it's critical to stream the response body instead of aggregating in-memory. Handling a response stream is done using a delegate protocol. The following example demonstrates how to count the number of bytes in a streaming response body:
151
+
When dealing with larger amount of data, it's critical to stream the response body instead of aggregating in-memory.
152
+
The following example demonstrates how to count the number of bytes in a streaming response body:
153
+
154
+
#### Using Swift Concurrency
155
+
```swift
156
+
let httpClient =HTTPClient(eventLoopGroupProvider: .createNew)
157
+
do {
158
+
let request =HTTPClientRequest(url: "https://apple.com/")
159
+
let response =tryawait httpClient.execute(request, timeout: .seconds(30))
160
+
print("HTTP head", response)
161
+
162
+
// if defined, the content-length headers announces the size of the body
163
+
let expectedBytes = response.headers.first(name: "content-length").flatMap(Int.init)
164
+
165
+
var receivedBytes =0
166
+
// asynchronously iterates over all body fragments
167
+
// this loop will automatically propagate backpressure correctly
168
+
fortryawait buffer in response.body {
169
+
// for this example, we are just interested in the size of the fragment
170
+
receivedBytes += buffer.readableBytes
171
+
172
+
iflet expectedBytes = expectedBytes {
173
+
// if the body size is known, we calculate a progress indicator
174
+
let progress =Double(receivedBytes) /Double(expectedBytes)
175
+
print("progress: \(Int(progress *100))%")
176
+
}
177
+
}
178
+
print("did receive \(receivedBytes) bytes")
179
+
} catch {
180
+
print("request failed:", error)
181
+
}
182
+
// it is important to shutdown the httpClient after all requests are done, even if one failed
183
+
tryawait httpClient.shutdown()
184
+
```
185
+
186
+
#### Using HTTPClientResponseDelegate and SwiftNIO EventLoopFuture
187
+
109
188
```swift
110
189
importNIOCore
111
190
importNIOHTTP1
@@ -158,7 +237,7 @@ class CountingDelegate: HTTPClientResponseDelegate {
158
237
}
159
238
}
160
239
161
-
let request =try HTTPClient.Request(url: "https://swift.org")
240
+
let request =try HTTPClient.Request(url: "https://apple.com/")
162
241
let delegate =CountingDelegate()
163
242
164
243
httpClient.execute(request: request, delegate: delegate).futureResult.whenSuccess { count in
0 commit comments