Go to file
Kun Zhang d32bb477b9 Add build status icon and rephrase title 2015-05-06 16:15:53 -07:00
all Add Jacoco code coverage 2015-05-05 14:36:00 -07:00
auth Cleaning up some warnings. 2015-04-30 13:57:38 -07:00
benchmarks Allow people to skip codegen compilation. 2015-05-06 09:56:40 -07:00
buildscripts Cache Gradle and not really Maven 2015-04-01 09:03:06 -07:00
compiler Fix build on Windows/VC++ 2015-05-04 09:25:49 -07:00
core Adding outbound flow control for Netty. 2015-05-04 12:19:57 -07:00
examples Allow people to skip codegen compilation. 2015-05-06 09:56:40 -07:00
gradle/wrapper Solution for GRPC codegen deployment. 2015-04-16 15:07:36 -07:00
integration-testing Allow people to skip codegen compilation. 2015-05-06 09:56:40 -07:00
lib Updating to the latest Netty version. 2015-05-05 15:39:21 -07:00
netty Adding logging to NettyClientHandler. 2015-05-06 14:38:22 -07:00
okhttp Produce combined JavaDoc, add links, exclude internals 2015-05-05 11:32:15 -07:00
protobuf Use more precise names for protobuf and nano 2015-04-10 16:35:23 -07:00
protobuf-nano Use more precise names for protobuf and nano 2015-04-10 16:35:23 -07:00
stub Produce combined JavaDoc, add links, exclude internals 2015-05-05 11:32:15 -07:00
testing Fix the issue where the intecepting call fails in start(), does not 2015-04-09 15:56:03 -07:00
.gitignore Adding bin to .gitignore for OSX 2015-05-05 10:15:27 -07:00
.gitmodules Remove OkHttp submodule as we now depend on a release version. 2015-01-27 15:43:10 -08:00
.travis.yml Remove stray character that hinded Travis cache 2015-04-29 07:56:04 -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
DEPLOYING.md Fix build on Windows/VC++ 2015-05-04 09:25:49 -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 Add build status icon and rephrase title 2015-05-06 16:15:53 -07:00
build.gradle Fix the filesets to be checked by checkstyle. 2015-05-06 11:35:08 -07:00
checkstyle.license Adding MOE configuration for grpc_java. 2015-01-08 14:43:02 -08:00
checkstyle.xml checkstyle change: 2015-04-07 08:27:48 +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 Use CreateStartScripts for integration-testing 2015-05-05 11:11:49 -07:00
run-test-server.sh Use CreateStartScripts for integration-testing 2015-05-05 11:11:49 -07:00
settings.gradle Allow people to skip codegen compilation. 2015-05-06 09:56:40 -07:00

README.md

gRPC-Java - An RPC library and framework

Build Status

How to Build

Build Netty

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

Build Protobuf

The codegen plugin is C++ code and requires protobuf 3.0.0-alpha-2.

If you are not changing the codegen plugin, nor any of the .proto files in the source tree, you can skip this chapter and add grpc.skip.codegen=true to $HOME/.gradle/gradle.properties. It will make the build script skip the build and invocation of the codegen, and use generated code that has been checked in.

For Linux, Mac and MinGW:

$ 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.

For Visual C++, please refer to the Protobuf README for how to compile Protobuf.

Linux and MinGW

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

Mac

Some versions of Mac OS X (e.g., 10.10) doesn't have /usr/local in the default search paths for header files and libraries. It will fail the build of the codegen. To work around this, you will need to set environment variables:

$ export CXXFLAGS="-I/usr/local/include" LDFLAGS="-L/usr/local/lib"

Build GRPC

On Linux, Mac or MinGW:

$ ./gradlew install

Notes for Visual C++

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

.\gradlew install ^
    -Pvc.protobuf.include=C:\path\to\protobuf-3.0.0-alpha-2\src ^
    -Pvc.protobuf.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:

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

The build script will build the codegen for the same architecture as the Java runtime installed on your system. If you are using 64-bit JVM, the codegen will be compiled for 64-bit, that means you must have compiled Protobuf in 64-bit.

Notes for MinGW on Windows

If you have both MinGW and VC++ installed on Windows, VC++ will be used by default. To override this default and use MinGW, add -Dvc.disable to your Gradle command line.

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