forked from grpc/grpc-swift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Package.swift
471 lines (433 loc) · 11.1 KB
/
Package.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
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
// swift-tools-version:5.4
/*
* Copyright 2017, gRPC Authors All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import PackageDescription
// swiftformat puts the next import before the tools version.
// swiftformat:disable:next sortedImports
import class Foundation.ProcessInfo
let grpcPackageName = "grpc-swift"
let grpcProductName = "GRPC"
let cgrpcZlibProductName = "CGRPCZlib"
let grpcTargetName = grpcProductName
let cgrpcZlibTargetName = cgrpcZlibProductName
let includeNIOSSL = ProcessInfo.processInfo.environment["GRPC_NO_NIO_SSL"] == nil
// MARK: - Package Dependencies
let packageDependencies: [Package.Dependency] = [
.package(
url: "https://github.com/apple/swift-nio.git",
from: "2.32.0"
),
.package(
url: "https://github.com/apple/swift-nio-http2.git",
from: "1.19.2"
),
.package(
url: "https://github.com/apple/swift-nio-transport-services.git",
from: "1.11.1"
),
.package(
url: "https://github.com/apple/swift-nio-extras.git",
from: "1.4.0"
),
.package(
name: "SwiftProtobuf",
url: "https://github.com/apple/swift-protobuf.git",
from: "1.9.0"
),
.package(
url: "https://github.com/apple/swift-log.git",
from: "1.4.0"
),
.package(
url: "https://github.com/apple/swift-argument-parser.git",
from: "1.0.0"
),
].appending(
.package(
url: "https://github.com/apple/swift-nio-ssl.git",
from: "2.14.0"
),
if: includeNIOSSL
)
// MARK: - Target Dependencies
extension Target.Dependency {
// Target dependencies; external
static let grpc: Self = .target(name: grpcTargetName)
static let cgrpcZlib: Self = .target(name: cgrpcZlibTargetName)
static let protocGenGRPCSwift: Self = .target(name: "protoc-gen-grpc-swift")
// Target dependencies; internal
static let grpcSampleData: Self = .target(name: "GRPCSampleData")
static let echoModel: Self = .target(name: "EchoModel")
static let echoImplementation: Self = .target(name: "EchoImplementation")
static let helloWorldModel: Self = .target(name: "HelloWorldModel")
static let routeGuideModel: Self = .target(name: "RouteGuideModel")
static let interopTestModels: Self = .target(name: "GRPCInteroperabilityTestModels")
static let interopTestImplementation: Self =
.target(name: "GRPCInteroperabilityTestsImplementation")
// Product dependencies
static let argumentParser: Self = .product(
name: "ArgumentParser",
package: "swift-argument-parser"
)
static let nio: Self = .product(name: "NIO", package: "swift-nio")
static let nioConcurrencyHelpers: Self = .product(
name: "NIOConcurrencyHelpers",
package: "swift-nio"
)
static let nioCore: Self = .product(name: "NIOCore", package: "swift-nio")
static let nioEmbedded: Self = .product(name: "NIOEmbedded", package: "swift-nio")
static let nioExtras: Self = .product(name: "NIOExtras", package: "swift-nio-extras")
static let nioFoundationCompat: Self = .product(name: "NIOFoundationCompat", package: "swift-nio")
static let nioHTTP1: Self = .product(name: "NIOHTTP1", package: "swift-nio")
static let nioHTTP2: Self = .product(name: "NIOHTTP2", package: "swift-nio-http2")
static let nioPosix: Self = .product(name: "NIOPosix", package: "swift-nio")
static let nioSSL: Self = .product(name: "NIOSSL", package: "swift-nio-ssl")
static let nioTLS: Self = .product(name: "NIOTLS", package: "swift-nio")
static let nioTransportServices: Self = .product(
name: "NIOTransportServices",
package: "swift-nio-transport-services"
)
static let logging: Self = .product(name: "Logging", package: "swift-log")
static let protobuf: Self = .product(name: "SwiftProtobuf", package: "SwiftProtobuf")
static let protobufPluginLibrary: Self = .product(
name: "SwiftProtobufPluginLibrary",
package: "SwiftProtobuf"
)
}
// MARK: - Targets
extension Target {
static let grpc: Target = .target(
name: grpcTargetName,
dependencies: [
.cgrpcZlib,
.nio,
.nioCore,
.nioPosix,
.nioEmbedded,
.nioFoundationCompat,
.nioTLS,
.nioTransportServices,
.nioHTTP1,
.nioHTTP2,
.nioExtras,
.logging,
.protobuf,
].appending(
.nioSSL, if: includeNIOSSL
),
path: "Sources/GRPC"
)
static let cgrpcZlib: Target = .target(
name: cgrpcZlibTargetName,
path: "Sources/CGRPCZlib",
linkerSettings: [
.linkedLibrary("z"),
]
)
static let protocGenGRPCSwift: Target = .executableTarget(
name: "protoc-gen-grpc-swift",
dependencies: [
.protobuf,
.protobufPluginLibrary,
],
exclude: [
"README.md",
]
)
static let grpcTests: Target = .testTarget(
name: "GRPCTests",
dependencies: [
.grpc,
.echoModel,
.echoImplementation,
.helloWorldModel,
.interopTestModels,
.interopTestImplementation,
.grpcSampleData,
.nioCore,
.nioConcurrencyHelpers,
.nioPosix,
.nioTLS,
.nioHTTP1,
.nioHTTP2,
.nioEmbedded,
.nioTransportServices,
.logging,
].appending(
.nioSSL, if: includeNIOSSL
),
exclude: [
"Codegen/Normalization/normalization.proto",
]
)
static let interopTestModels: Target = .target(
name: "GRPCInteroperabilityTestModels",
dependencies: [
.grpc,
.nio,
.protobuf,
],
exclude: [
"README.md",
"generate.sh",
"src/proto/grpc/testing/empty.proto",
"src/proto/grpc/testing/empty_service.proto",
"src/proto/grpc/testing/messages.proto",
"src/proto/grpc/testing/test.proto",
"unimplemented_call.patch",
]
)
static let interopTestImplementation: Target = .target(
name: "GRPCInteroperabilityTestsImplementation",
dependencies: [
.grpc,
.interopTestModels,
.nioCore,
.nioPosix,
.nioHTTP1,
.logging,
].appending(
.nioSSL, if: includeNIOSSL
)
)
static let interopTests: Target = .executableTarget(
name: "GRPCInteroperabilityTests",
dependencies: [
.grpc,
.interopTestImplementation,
.nioCore,
.nioPosix,
.logging,
.argumentParser,
]
)
static let backoffInteropTest: Target = .executableTarget(
name: "GRPCConnectionBackoffInteropTest",
dependencies: [
.grpc,
.interopTestModels,
.nioCore,
.nioPosix,
.logging,
.argumentParser,
],
exclude: [
"README.md",
]
)
static let perfTests: Target = .executableTarget(
name: "GRPCPerformanceTests",
dependencies: [
.grpc,
.grpcSampleData,
.nioCore,
.nioEmbedded,
.nioPosix,
.nioHTTP2,
.argumentParser,
]
)
static let grpcSampleData: Target = .target(
name: "GRPCSampleData",
dependencies: includeNIOSSL ? [.nioSSL] : [],
exclude: [
"bundle.p12",
]
)
static let echoModel: Target = .target(
name: "EchoModel",
dependencies: [
.grpc,
.nio,
.protobuf,
],
path: "Sources/Examples/Echo/Model",
exclude: [
"echo.proto",
]
)
static let echoImplementation: Target = .target(
name: "EchoImplementation",
dependencies: [
.echoModel,
.grpc,
.nioCore,
.nioHTTP2,
.protobuf,
],
path: "Sources/Examples/Echo/Implementation"
)
static let echo: Target = .executableTarget(
name: "Echo",
dependencies: [
.grpc,
.echoModel,
.echoImplementation,
.grpcSampleData,
.nioCore,
.nioPosix,
.logging,
.argumentParser,
].appending(
.nioSSL, if: includeNIOSSL
),
path: "Sources/Examples/Echo/Runtime"
)
static let helloWorldModel: Target = .target(
name: "HelloWorldModel",
dependencies: [
.grpc,
.nio,
.protobuf,
],
path: "Sources/Examples/HelloWorld/Model",
exclude: [
"helloworld.proto",
]
)
static let helloWorldClient: Target = .executableTarget(
name: "HelloWorldClient",
dependencies: [
.grpc,
.helloWorldModel,
.nioCore,
.nioPosix,
.argumentParser,
],
path: "Sources/Examples/HelloWorld/Client"
)
static let helloWorldServer: Target = .executableTarget(
name: "HelloWorldServer",
dependencies: [
.grpc,
.helloWorldModel,
.nioCore,
.nioPosix,
.argumentParser,
],
path: "Sources/Examples/HelloWorld/Server"
)
static let routeGuideModel: Target = .target(
name: "RouteGuideModel",
dependencies: [
.grpc,
.nio,
.protobuf,
],
path: "Sources/Examples/RouteGuide/Model",
exclude: [
"route_guide.proto",
]
)
static let routeGuideClient: Target = .executableTarget(
name: "RouteGuideClient",
dependencies: [
.grpc,
.routeGuideModel,
.nioCore,
.nioPosix,
.argumentParser,
],
path: "Sources/Examples/RouteGuide/Client"
)
static let routeGuideServer: Target = .executableTarget(
name: "RouteGuideServer",
dependencies: [
.grpc,
.routeGuideModel,
.nioCore,
.nioConcurrencyHelpers,
.nioPosix,
.argumentParser,
],
path: "Sources/Examples/RouteGuide/Server"
)
static let packetCapture: Target = .executableTarget(
name: "PacketCapture",
dependencies: [
.grpc,
.echoModel,
.nioCore,
.nioPosix,
.nioExtras,
.logging,
.argumentParser,
],
path: "Sources/Examples/PacketCapture",
exclude: [
"README.md",
]
)
}
// MARK: - Products
extension Product {
static let grpc: Product = .library(
name: grpcProductName,
targets: [grpcTargetName]
)
static let cgrpcZlib: Product = .library(
name: cgrpcZlibProductName,
targets: [cgrpcZlibTargetName]
)
static let protocGenGRPCSwift: Product = .executable(
name: "protoc-gen-grpc-swift",
targets: ["protoc-gen-grpc-swift"]
)
}
// MARK: - Package
let package = Package(
name: grpcPackageName,
products: [
.grpc,
.cgrpcZlib,
.protocGenGRPCSwift,
],
dependencies: packageDependencies,
targets: [
// Products
.grpc,
.cgrpcZlib,
.protocGenGRPCSwift,
// Tests etc.
.grpcTests,
.interopTestModels,
.interopTestImplementation,
.interopTests,
.backoffInteropTest,
.perfTests,
.grpcSampleData,
// Examples
.echoModel,
.echoImplementation,
.echo,
.helloWorldModel,
.helloWorldClient,
.helloWorldServer,
.routeGuideModel,
.routeGuideClient,
.routeGuideServer,
.packetCapture,
]
)
extension Array {
func appending(_ element: Element, if condition: Bool) -> [Element] {
if condition {
return self + [element]
} else {
return self
}
}
}