Skip to content

Commit e4e233a

Browse files
authored
remove umbrella NIO imports and add soundness check (#446)
1 parent 628b942 commit e4e233a

9 files changed

+20
-8
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ httpClient.execute(request: request, deadline: .now() + .milliseconds(1))
106106
### Streaming
107107
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:
108108
```swift
109-
import NIO
109+
import NIOCore
110110
import NIOHTTP1
111111

112112
class CountingDelegate: HTTPClientResponseDelegate {

Sources/AsyncHTTPClient/ConnectionPool/HTTPConnectionPool+Manager.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
//===----------------------------------------------------------------------===//
1414

1515
import Logging
16-
import NIO
1716
import NIOConcurrencyHelpers
17+
import NIOCore
1818
import NIOHTTP1
1919

2020
extension HTTPConnectionPool {

Sources/AsyncHTTPClient/ConnectionPool/State Machine/HTTPConnectionPool+HTTP1StateMachine.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
//
1313
//===----------------------------------------------------------------------===//
1414

15-
import NIO
15+
import NIOCore
1616

1717
extension HTTPConnectionPool {
1818
struct HTTP1StateMachine {

Sources/AsyncHTTPClient/ConnectionPool/State Machine/HTTPConnectionPool+StateMachine.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
//
1313
//===----------------------------------------------------------------------===//
1414

15-
import NIO
15+
import NIOCore
1616
import NIOHTTP1
1717

1818
extension HTTPConnectionPool {

Tests/AsyncHTTPClientTests/HTTPConnectionPool+HTTP1StateTests.swift

+3-1
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,10 @@
1313
//===----------------------------------------------------------------------===//
1414

1515
@testable import AsyncHTTPClient
16-
import NIO
16+
import NIOCore
17+
import NIOEmbedded
1718
import NIOHTTP1
19+
import NIOPosix
1820
import XCTest
1921

2022
class HTTPConnectionPool_HTTP1StateMachineTests: XCTestCase {

Tests/AsyncHTTPClientTests/HTTPConnectionPool+ManagerTests.swift

+2-1
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,9 @@
1313
//===----------------------------------------------------------------------===//
1414

1515
@testable import AsyncHTTPClient
16-
import NIO
16+
import NIOCore
1717
import NIOHTTP1
18+
import NIOPosix
1819
import XCTest
1920

2021
class HTTPConnectionPool_ManagerTests: XCTestCase {

Tests/AsyncHTTPClientTests/Mocks/MockConnectionPool.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
@testable import AsyncHTTPClient
1616
import Logging
17-
import NIO
17+
import NIOCore
1818
import NIOHTTP1
1919
import NIOSSL
2020

Tests/AsyncHTTPClientTests/Mocks/MockRequestQueuer.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
@testable import AsyncHTTPClient
1616
import Logging
17-
import NIO
17+
import NIOCore
1818
import NIOHTTP1
1919

2020
/// A mock request queue (not creating any timers) that is used to validate

scripts/soundness.sh

+9
Original file line numberDiff line numberDiff line change
@@ -153,3 +153,12 @@ EOF
153153
done
154154

155155
rm "$tmp"
156+
157+
# This checks for the umbrella NIO module.
158+
printf "=> Checking for imports of umbrella NIO module... "
159+
if git grep --color=never -i "^[ \t]*import \+NIO[ \t]*$" > /dev/null; then
160+
printf "\033[0;31mUmbrella imports found.\033[0m\n"
161+
git grep -i "^[ \t]*import \+NIO[ \t]*$"
162+
exit 1
163+
fi
164+
printf "\033[0;32mokay.\033[0m\n"

0 commit comments

Comments
 (0)