| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531 |
- // swift-tools-version:5.10
- /*
- * 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 sortImports
- 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.65.0"
- ),
- .package(
- url: "https://github.com/apple/swift-nio-http2.git",
- from: "1.36.0"
- ),
- .package(
- url: "https://github.com/apple/swift-nio-transport-services.git",
- from: "1.24.0"
- ),
- .package(
- url: "https://github.com/apple/swift-nio-extras.git",
- from: "1.24.0"
- ),
- .package(
- url: "https://github.com/apple/swift-collections.git",
- from: "1.0.5"
- ),
- .package(
- url: "https://github.com/apple/swift-atomics.git",
- from: "1.2.0"
- ),
- .package(
- url: "https://github.com/apple/swift-protobuf.git",
- from: "1.28.1"
- ),
- .package(
- url: "https://github.com/apple/swift-log.git",
- from: "1.4.4"
- ),
- .package(
- url: "https://github.com/apple/swift-argument-parser.git",
- // Version is higher than in other Package@swift manifests: 1.1.0 raised the minimum Swift
- // version and indluded async support.
- from: "1.1.1"
- ),
- ].appending(
- .package(
- url: "https://github.com/apple/swift-nio-ssl.git",
- from: "2.23.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")
- static let reflectionService: Self = .target(name: "GRPCReflectionService")
- // 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")
- static let interoperabilityTests: Self = .target(name: "InteroperabilityTests")
- // 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 nioTestUtils: Self = .product(name: "NIOTestUtils", package: "swift-nio")
- static let nioFileSystem: Self = .product(name: "_NIOFileSystem", package: "swift-nio")
- static let logging: Self = .product(name: "Logging", package: "swift-log")
- static let protobuf: Self = .product(name: "SwiftProtobuf", package: "swift-protobuf")
- static let protobufPluginLibrary: Self = .product(
- name: "SwiftProtobufPluginLibrary",
- package: "swift-protobuf"
- )
- static let atomics: Self = .product(name: "Atomics", package: "swift-atomics")
- static let dequeModule: Self = .product(name: "DequeModule", package: "swift-collections")
- }
- // 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,
- .dequeModule,
- .atomics
- ].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 grpcSwiftPlugin: Target = .plugin(
- name: "GRPCSwiftPlugin",
- capability: .buildTool(),
- dependencies: [
- .protocGenGRPCSwift,
- ]
- )
- static let grpcTests: Target = .testTarget(
- name: "GRPCTests",
- dependencies: [
- .grpc,
- .echoModel,
- .echoImplementation,
- .helloWorldModel,
- .interopTestModels,
- .interopTestImplementation,
- .grpcSampleData,
- .nioCore,
- .nioConcurrencyHelpers,
- .nioPosix,
- .nioTLS,
- .nioHTTP1,
- .nioHTTP2,
- .nioEmbedded,
- .nioTransportServices,
- .logging,
- .reflectionService,
- .atomics
- ].appending(
- .nioSSL, if: includeNIOSSL
- ),
- exclude: [
- "Codegen/Serialization/echo.grpc.reflection"
- ]
- )
- 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: "Examples/v1/Echo/Model"
- )
- static let echoImplementation: Target = .target(
- name: "EchoImplementation",
- dependencies: [
- .echoModel,
- .grpc,
- .nioCore,
- .nioHTTP2,
- .protobuf,
- ],
- path: "Examples/v1/Echo/Implementation"
- )
- static let echo: Target = .executableTarget(
- name: "Echo",
- dependencies: [
- .grpc,
- .echoModel,
- .echoImplementation,
- .grpcSampleData,
- .nioCore,
- .nioPosix,
- .logging,
- .argumentParser,
- ].appending(
- .nioSSL, if: includeNIOSSL
- ),
- path: "Examples/v1/Echo/Runtime"
- )
- static let helloWorldModel: Target = .target(
- name: "HelloWorldModel",
- dependencies: [
- .grpc,
- .nio,
- .protobuf,
- ],
- path: "Examples/v1/HelloWorld/Model"
- )
- static let helloWorldClient: Target = .executableTarget(
- name: "HelloWorldClient",
- dependencies: [
- .grpc,
- .helloWorldModel,
- .nioCore,
- .nioPosix,
- .argumentParser,
- ],
- path: "Examples/v1/HelloWorld/Client"
- )
- static let helloWorldServer: Target = .executableTarget(
- name: "HelloWorldServer",
- dependencies: [
- .grpc,
- .helloWorldModel,
- .nioCore,
- .nioPosix,
- .argumentParser,
- ],
- path: "Examples/v1/HelloWorld/Server"
- )
- static let routeGuideModel: Target = .target(
- name: "RouteGuideModel",
- dependencies: [
- .grpc,
- .nio,
- .protobuf,
- ],
- path: "Examples/v1/RouteGuide/Model"
- )
- static let routeGuideClient: Target = .executableTarget(
- name: "RouteGuideClient",
- dependencies: [
- .grpc,
- .routeGuideModel,
- .nioCore,
- .nioPosix,
- .argumentParser,
- ],
- path: "Examples/v1/RouteGuide/Client"
- )
- static let routeGuideServer: Target = .executableTarget(
- name: "RouteGuideServer",
- dependencies: [
- .grpc,
- .routeGuideModel,
- .nioCore,
- .nioConcurrencyHelpers,
- .nioPosix,
- .argumentParser,
- ],
- path: "Examples/v1/RouteGuide/Server"
- )
- static let packetCapture: Target = .executableTarget(
- name: "PacketCapture",
- dependencies: [
- .grpc,
- .echoModel,
- .nioCore,
- .nioPosix,
- .nioExtras,
- .argumentParser,
- ],
- path: "Examples/v1/PacketCapture",
- exclude: [
- "README.md",
- ]
- )
- static let reflectionService: Target = .target(
- name: "GRPCReflectionService",
- dependencies: [
- .grpc,
- .nio,
- .protobuf,
- ],
- path: "Sources/GRPCReflectionService"
- )
- static let reflectionServer: Target = .executableTarget(
- name: "ReflectionServer",
- dependencies: [
- .grpc,
- .reflectionService,
- .helloWorldModel,
- .nioCore,
- .nioPosix,
- .argumentParser,
- .echoModel,
- .echoImplementation
- ],
- path: "Examples/v1/ReflectionService",
- resources: [
- .copy("Generated")
- ]
- )
- }
- // MARK: - Products
- extension Product {
- static let grpc: Product = .library(
- name: grpcProductName,
- targets: [grpcTargetName]
- )
- static let cgrpcZlib: Product = .library(
- name: cgrpcZlibProductName,
- targets: [cgrpcZlibTargetName]
- )
- static let grpcReflectionService: Product = .library(
- name: "GRPCReflectionService",
- targets: ["GRPCReflectionService"]
- )
- static let protocGenGRPCSwift: Product = .executable(
- name: "protoc-gen-grpc-swift",
- targets: ["protoc-gen-grpc-swift"]
- )
- static let grpcSwiftPlugin: Product = .plugin(
- name: "GRPCSwiftPlugin",
- targets: ["GRPCSwiftPlugin"]
- )
- }
- // MARK: - Package
- let package = Package(
- name: grpcPackageName,
- products: [
- .grpc,
- .cgrpcZlib,
- .grpcReflectionService,
- .protocGenGRPCSwift,
- .grpcSwiftPlugin,
- ],
- dependencies: packageDependencies,
- targets: [
- // Products
- .grpc,
- .cgrpcZlib,
- .protocGenGRPCSwift,
- .grpcSwiftPlugin,
- .reflectionService,
- // Tests etc.
- .grpcTests,
- .interopTestModels,
- .interopTestImplementation,
- .interopTests,
- .backoffInteropTest,
- .perfTests,
- .grpcSampleData,
- // Examples
- .echoModel,
- .echoImplementation,
- .echo,
- .helloWorldModel,
- .helloWorldClient,
- .helloWorldServer,
- .routeGuideModel,
- .routeGuideClient,
- .routeGuideServer,
- .packetCapture,
- .reflectionServer,
- ]
- )
- extension Array {
- func appending(_ element: Element, if condition: Bool) -> [Element] {
- if condition {
- return self + [element]
- } else {
- return self
- }
- }
- }
|