Skip to content

Commit 91eb614

Browse files
committed
Ensure imports have explicit access levels
Motivation: The imports should all have access level set explicitly. Some were missing. Modifications: - Add a script and CI to check for this - Add a few missing access levels Result: Better consistency
1 parent e31dd43 commit 91eb614

File tree

4 files changed

+51
-4
lines changed

4 files changed

+51
-4
lines changed

.github/workflows/soundness.yml

+14
Original file line numberDiff line numberDiff line change
@@ -35,3 +35,17 @@ jobs:
3535
- name: Run soundness checks
3636
run: |
3737
./dev/check-generated-code.sh
38+
39+
check-imports:
40+
name: Check imports have access level
41+
runs-on: ubuntu-latest
42+
steps:
43+
- name: Checkout repository
44+
uses: actions/checkout@v4
45+
with:
46+
persist-credentials: false
47+
- name: Mark the workspace as safe
48+
run: git config --global --add safe.directory ${GITHUB_WORKSPACE}
49+
- name: Check import access level
50+
run: |
51+
./dev/check-imports.sh

Sources/GRPCCore/Call/Server/ServerContext+RPCCancellationHandle.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
import Synchronization
17+
private import Synchronization
1818

1919
extension ServerContext {
2020
@TaskLocal

Sources/GRPCInProcessTransport/Syscalls.swift

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@
1515
*/
1616

1717
#if canImport(Darwin)
18-
import Darwin
18+
private import Darwin
1919
#elseif canImport(Glibc)
20-
import Glibc
20+
private import Glibc
2121
#elseif canImport(Musl)
22-
import Musl
22+
private import Musl
2323
#endif
2424

2525
enum System {

dev/check-imports.sh

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
#!/bin/bash
2+
## Copyright 2025, gRPC Authors All rights reserved.
3+
##
4+
## Licensed under the Apache License, Version 2.0 (the "License");
5+
## you may not use this file except in compliance with the License.
6+
## You may obtain a copy of the License at
7+
##
8+
## http://www.apache.org/licenses/LICENSE-2.0
9+
##
10+
## Unless required by applicable law or agreed to in writing, software
11+
## distributed under the License is distributed on an "AS IS" BASIS,
12+
## WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
## See the License for the specific language governing permissions and
14+
## limitations under the License.
15+
16+
set -euo pipefail
17+
18+
log() { printf -- "** %s\n" "$*" >&2; }
19+
error() { printf -- "** ERROR: %s\n" "$*" >&2; }
20+
fatal() { error "$@"; exit 1; }
21+
22+
here="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
23+
root=$(realpath "${here}/..")
24+
25+
exclude="${root}/Sources/GRPCCore/Documentation.docc"
26+
27+
log "Checking all imports have an access level"
28+
if grep -r "^import " --exclude-dir="${exclude}" "${root}/Sources"; then
29+
# Matches are bad!
30+
exit 1
31+
else
32+
exit 0
33+
fi

0 commit comments

Comments
 (0)