The Java gRPC implementation. HTTP/2 based RPC
Go to file
nmittler 11d0094e04 Upgrading to the latest Netty 4.1 branch. 2015-03-31 14:14:29 -07:00
all Removing all references to "stubby" 2015-01-27 11:25:25 -08:00
auth Fix synchronization in client auth 2015-03-26 07:35:07 -07:00
benchmarks Add checkstyle checking 2015-03-16 10:53:13 -07:00
buildscripts Working Travis build, with caching of deps 2015-03-20 14:27:32 -07:00
compiler Working Travis build, with caching of deps 2015-03-20 14:27:32 -07:00
core Add precondition to throw more informative exception when calling request() before start() has been called. 2015-03-26 10:54:59 -07:00
examples Allow checkstyle failures fatal, and fix last issues 2015-03-23 09:10:53 -07:00
gradle/wrapper Add Gradle wrapper for building. 2015-01-27 16:30:48 -08:00
integration-testing Test whether inbound flow control functions 2015-03-26 10:09:51 -07:00
lib Upgrading to the latest Netty 4.1 branch. 2015-03-31 14:14:29 -07:00
nano Add checkstyle checking 2015-03-16 10:53:13 -07:00
netty Upgrading to the latest Netty 4.1 branch. 2015-03-31 14:14:29 -07:00
okhttp Fix data corruption issue receiving payloads > 2kB 2015-03-22 13:14:57 +01:00
stub Add checkstyle checking 2015-03-16 10:53:13 -07:00
testing Removing all references to "stubby" 2015-01-27 11:25:25 -08:00
.gitignore Remove target from .gitignore 2015-02-23 11:59:13 -08:00
.gitmodules Remove OkHttp submodule as we now depend on a release version. 2015-01-27 15:43:10 -08:00
.travis.yml Disable Travis parallel building to reduce memory usage 2015-03-24 09:56:19 -07:00
AUTH-README.md Add new readme for Auth related issues 2015-03-12 17:38:48 -07:00
CONTRIBUTING.md Improve CONTRIBUTING.md 2015-03-16 22:09:48 -07:00
LICENSE Initial commit 2015-01-08 14:42:02 -08:00
PATENTS Create PATENTS 2015-02-26 15:10:59 -08:00
README.md Protobuf java/nano are now on Maven Central 2015-03-20 14:50:10 -07:00
build.gradle Allow checkstyle failures fatal, and fix last issues 2015-03-23 09:10:53 -07:00
checkstyle.license Adding MOE configuration for grpc_java. 2015-01-08 14:43:02 -08:00
checkstyle.xml Allow checkstyle failures fatal, and fix last issues 2015-03-23 09:10:53 -07: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 Remove readlink -f in run-test*.sh scripts 2015-03-23 09:23:41 -07:00
run-test-server.sh Remove readlink -f in run-test*.sh scripts 2015-03-23 09:23:41 -07:00
settings.gradle Open source nano proto related code 2015-02-25 15:36:20 -08:00

README.md

grpc-java

How to Build

grpc-java requires Netty 4.1, which is still in flux. The version we need can be found in the lib/netty submodule, which requires Maven 3.2 or higher to build:

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

The codegen plugin requires protobuf 3.0.0-alpha-2:

$ git clone https://github.com/google/protobuf.git
$ cd protobuf
$ git checkout v3.0.0-alpha-2
$ ./autogen.sh
$ ./configure
$ make
$ make check
$ sudo make 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.

Protobuf installs to /usr/local by default. If /usr/local/lib is not in your library search path, you can add it by running:

$ sudo sh -c 'echo /usr/local/lib >> /etc/ld.so.conf'
$ sudo ldconfig

Now to build grpc-java itself:

$ ./gradlew install

When building on Windows and VC++, you need to specify project properties for Gradle to find protobuf:

.\gradlew install -Pprotobuf.include=C:\path\to\protobuf-3.0.0-alpha-2\src ^
    -Pprotobuf.libs=C:\path\to\protobuf-3.0.0-alpha-2\vsprojects\Release

Since specifying those properties every build is bothersome, you can instead create %HOMEDRIVE%%HOMEPATH%.gradle\gradle.properties with contents like:

protobuf.include=C:\\path\\to\\protobuf-3.0.0-alpha-2\\src
protobuf.libs=C:\\path\\to\\protobuf-3.0.0-alpha-2\\vsprojects\\Release

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