Няма описание

George Barnett 2ce52e04a4 Move server (de)serialization to the base call handler (#1046) преди 5 години
.github 3755430518 Update QUESTION.md (#910) преди 5 години
Examples 5606a13515 Update CocoaPods to alpha.20 (#982) преди 5 години
Performance dcfaaae3cc Add single connection performance scenarios преди 5 години
Sources 2ce52e04a4 Move server (de)serialization to the base call handler (#1046) преди 5 години
Tests 2ce52e04a4 Move server (de)serialization to the base call handler (#1046) преди 5 години
dev d9e1a6e532 Codegen for server interceptors (#1030) преди 5 години
docs 5606a13515 Update CocoaPods to alpha.20 (#982) преди 5 години
scripts 7818989fed Add support for watchOS to the podspecs (#998) преди 5 години
.gitignore 3c3b0fb93b Stop checking in Package.resolved (#1008) преди 5 години
.gitmodules 63c6acfa40 Move CgRPC, gRPC, and QuickProto to "Sources" directory and add new top-level Package.swift. преди 9 години
.swiftformat d0eb34dfe2 Disable new swiftformat rule (#936) преди 5 години
.travis-install.sh cdb46f4d24 Pin formatter (#995) преди 5 години
.travis-script.sh 1f64ba4989 Add a 'preflight check' stage to CI (#923) преди 5 години
.travis.yml 1f64ba4989 Add a 'preflight check' stage to CI (#923) преди 5 години
AUTHORS 0aa90a79ee Relicense to Apache 2, change owners to "the gRPC Authors". преди 8 години
CGRPCZlib.podspec 7818989fed Add support for watchOS to the podspecs (#998) преди 5 години
CODE-OF-CONDUCT.md 5ef0870727 Add/update GOVERNANCE.md, CODE-OF-CONDUCT.md and CONTRIBUTING.md (#595) преди 6 години
CONTRIBUTING.md 5ef0870727 Add/update GOVERNANCE.md, CODE-OF-CONDUCT.md and CONTRIBUTING.md (#595) преди 6 години
GOVERNANCE.md 5ef0870727 Add/update GOVERNANCE.md, CODE-OF-CONDUCT.md and CONTRIBUTING.md (#595) преди 6 години
LICENSE 6dde0518ca Revert to Apache 2.0 license verbatim [skip ci] (#504) преди 6 години
MAINTAINERS.md e0c70ce6f8 Add MAINTAINERS.md. (#564) (#576) преди 6 години
Makefile 3c3b0fb93b Stop checking in Package.resolved (#1008) преди 5 години
PATENTS 36f2bde28e Add PATENTS declaration преди 9 години
Package.swift 74c652e0c1 Codegen for client interceptors (#1022) преди 5 години
README.md e16185d9e6 Fix typo protoc plugin name in README (#1021) преди 5 години
gRPC-Swift-Plugins.podspec 7818989fed Add support for watchOS to the podspecs (#998) преди 5 години
gRPC-Swift.podspec 7818989fed Add support for watchOS to the podspecs (#998) преди 5 години

README.md

Build Status Latest Version

gRPC Swift

This repository contains a gRPC Swift API and code generator.

It is intended for use with Apple's SwiftProtobuf support for Protocol Buffers. Both projects contain code generation plugins for protoc, Google's Protocol Buffer compiler, and both contain libraries of supporting code that is needed to build and run the generated code.

APIs and generated code is provided for both gRPC clients and servers, and can be built either with Xcode or the Swift Package Manager. Support is provided for all four gRPC API styles (Unary, Server Streaming, Client Streaming, and Bidirectional Streaming) and connections can be made either over secure (TLS) or insecure channels.

Versions

gRPC Swift has recently been rewritten on top of SwiftNIO as opposed to the core library provided by the gRPC project.

Version Implementation Branch protoc Plugin CocoaPod Support
1.x SwiftNIO main protoc-gen-grpc-swift gRPC-Swift Actively developed and supported
0.x gRPC C library cgrpc protoc-gen-swiftgrpc SwiftGRPC No longer developed; security fixes only

The remainder of this README refers to the 1.x version of gRPC Swift.

Supported Platforms

gRPC Swift's platform support is identical to the platform support of Swift NIO.

Note that gRPC Swift uses NIO 2 and therefore requires Swift to be version 5.0 or higher.

Getting gRPC Swift

There are two parts to gRPC Swift: the gRPC library and an API code generator.

Getting the gRPC library

Swift Package Manager

The Swift Package Manager is the preferred way to get gRPC Swift. Simply add the package dependency to your Package.swift and depend on "GRPC" in the necessary targets:

dependencies: [
  .package(url: "https://github.com/grpc/grpc-swift.git", from: "1.0.0-alpha.20")
]

The syntax for target dependencies changed in Swift 5.2 and requires the package of each dependency to be specified.

For Swift 5.2 (swift-tools-version:5.2):

.target(
  name: ...,
  dependencies: [.product(name: "GRPC", package: "grpc-swift")]
)

For Swift 5.0 (swift-tools-version:5.0) and 5.1 (swift-tools-version:5.1):

.target(
  name: ...,
  dependencies: ["GRPC"]
)
Xcode

From Xcode 11 it is possible to add Swift Package dependencies to Xcode projects and link targets to products of those packages; this is the easiest way to integrate gRPC Swift with an existing xcodeproj.

Manual Integration

Alternatively, gRPC Swift can be manually integrated into a project:

  1. Build an Xcode project: swift package generate-xcodeproj,
  2. Add the generated project to your own project, and
  3. Add a build dependency on GRPC.

CocoaPods

gRPC Swift is currently available from CocoaPods. To integrate, add the following line to your Podfile:

    pod 'gRPC-Swift', '~> 1.0.0-alpha.20'

Then, run pod install from command line and use your project's generated .xcworkspace file. You might also need to add use_frameworks! to your Podfile.

⚠️ If you have conficting modules as a result of having a transitive dependency on 'gRPC-Core' see grpc/grpc-swift#945.

Getting the protoc Plugins

Binary releases of protoc, the Protocol Buffer Compiler, are available on GitHub.

To build the plugins, run make plugins in the main directory. This uses the Swift Package Manager to build both of the necessary plugins: protoc-gen-swift, which generates Protocol Buffer support code and protoc-gen-grpc-swift, which generates gRPC interface code.

To install these plugins, just copy the two executables (protoc-gen-swift and protoc-gen-grpc-swift) that show up in the main directory into a directory that is part of your PATH environment variable. Alternatively the full path to the plugins can be specified when using protoc.

Alternatively, you can get the latest precompiled version of the plugins by adding the following line to your Podfile:

    pod 'gRPC-Swift-Plugins'

The plugins are available in the Pods/gRPC-Swift-Plugins/ folder afterwards.

Examples

gRPC Swift has a number of tutorials and examples available. They are split across two directories:

  • /Sources/Examples contains examples which do not require additional dependencies and may be built using the Swift Package Manager.
  • /Examples contains examples which rely on external dependencies or may not be built by the Swift Package Manager (such as an iOS app).

Some of the examples are accompanied by tutorials, including:

  • A quick start guide for creating and running your first gRPC service.
  • A basic tutorial covering the creation and implementation of a gRPC service using all four call types as well as the code required to setup and run a server and make calls to it using a generated client.

Documentation

The docs directory contains documentation, including:

License

gRPC Swift is released under the same license as gRPC, repeated in LICENSE.

Contributing

Please get involved! See our guidelines for contributing.