The Java gRPC implementation. HTTP/2 based RPC
Go to file
Jakob Buchgraber 44574944b9 Move TLS certificates.
- Move certificates to src/main/resources folder.
- Update the code that loads the certificates to make use of Java's resources API.
2015-02-13 11:37:59 -08:00
all Removing all references to "stubby" 2015-01-27 11:25:25 -08:00
auth Removing all references to "stubby" 2015-01-27 11:25:25 -08:00
benchmarks Add missing dependency to benchmarks project 2015-02-12 17:54:48 -08:00
compiler Fixing compiler build on OS X (Clang) 2015-01-30 15:03:33 -08:00
core Remove Guava Service from ClientTransport 2015-02-12 15:20:22 -08:00
examples/src/main Updating examples based on recent changes. 2015-01-29 09:57:19 -08:00
gradle/wrapper Add Gradle wrapper for building. 2015-01-27 16:30:48 -08:00
integration-testing Move TLS certificates. 2015-02-13 11:37:59 -08:00
lib Remove OkHttp submodule as we now depend on a release version. 2015-01-27 15:43:10 -08:00
netty Remove Guava Service from ClientTransport 2015-02-12 15:20:22 -08:00
okhttp Fix race in OkHttp test 2015-02-13 08:54:50 -08:00
stub Removing all references to "stubby" 2015-01-27 11:25:25 -08:00
testing Removing all references to "stubby" 2015-01-27 11:25:25 -08:00
.gitignore Adding .gitignore for eclipse files. 2015-01-21 16:14:48 -08:00
.gitmodules Remove OkHttp submodule as we now depend on a release version. 2015-01-27 15:43:10 -08:00
LICENSE Initial commit 2015-01-08 14:42:02 -08:00
README.md Improve Gradle build of protoc grpc plugin 2015-01-30 10:19:32 -08:00
build.gradle Add QPS Client to perform throughput and latency tests. 2015-02-11 17:47:45 -08:00
checkstyle.license Adding MOE configuration for grpc_java. 2015-01-08 14:43:02 -08:00
checkstyle.xml Adding MOE configuration for grpc_java. 2015-01-08 14:43:02 -08:00
gradlew Add Gradle wrapper for building. 2015-01-27 16:30:48 -08:00
gradlew.bat Add Gradle wrapper for building. 2015-01-27 16:30:48 -08:00
run-test-client.sh Removing all references to "stubby" 2015-01-27 11:25:25 -08:00
run-test-server.sh Removing all references to "stubby" 2015-01-27 11:25:25 -08:00
settings.gradle Add QPS Client to perform throughput and latency tests. 2015-02-11 17:47:45 -08:00

README.md

grpc-java

How to Build

grpc-java requires Netty 5, which is still in flux. The version we need can be found in the lib/netty submodule:

$ git submodule update --init
$ cd lib/netty
$ mvn install -pl codec-http2 -am -DskipTests=true

The codegen plugin requires a recent protobuf build from master (what will become proto3):

$ git clone https://github.com/google/protobuf.git
$ cd protobuf
$ ./autogen.sh
$ ./configure
$ make
$ make check
$ sudo make install
$ cd java
$ mvn install

If you are comfortable with C++ compilation and autotools, you can specify a --prefix for protobuf and use -I in CXXFLAGS, -L in LDFLAGS, LD_LIBRARY_PATH, and PATH to reference it. The environment variables will be used when building grpc-java.

Now to build grpc-java itself:

$ ./gradlew install

Navigating Around the Source

Heres a quick readers guide to the code to help folks get started. At a high level there are three distinct layers to the library: stub, channel & transport.

Stub

The 'stub' layer is what is exposed to most developers and provides type-safe bindings to whatever datamodel/IDL/interface you are adapting. An example is provided of a binding to code generated by the protocol-buffers compiler but others should be trivial to add and are welcome.

Key Interfaces

Stream Observer

Channel

The 'channel' layer is an abstraction over transport handling that is suitable for interception/decoration and exposes more behavior to the application than the stub layer. It is intended to be easy for application frameworks to use this layer to address cross-cutting concerns such as logging, monitoring, auth etc. Flow-control is also exposed at this layer to allow more sophisticated applications to interact with it directly.

Common

Client

Server

Transport

The 'transport' layer does the heavy lifting of putting & taking bytes off the wire. The interfaces to it are abstract just enough to allow plugging in of different implementations. Transports are modeled as 'Stream' factories. The variation in interface between a server stream and a client stream exists to codify their differing semantics for cancellation and error reporting.

Common

Client

Server

Examples

Tests showing how these layers are composed to execute calls using protobuf messages can be found here https://github.com/google/grpc-java/tree/master/integration-testing/src/main/java/io/grpc/testing/integration