The Java gRPC implementation. HTTP/2 based RPC
Go to file
Eric Anderson bf53a0e2e4 Add transport benchmark using JMH
The only benchmark method measures latency of a unary call in an
unloaded environment.
2015-07-22 15:54:41 -07:00
all Add Jacoco code coverage 2015-05-05 14:36:00 -07:00
android-interop-testing Android interop test: Use proto plugin to generate the needed code. 2015-07-07 10:11:00 -07:00
auth Add CallOptions. 2015-07-07 14:28:38 -07:00
benchmarks Add transport benchmark using JMH 2015-07-22 15:54:41 -07:00
buildscripts Simplify the build instructions now that Netty can be fetched from Maven 2015-07-09 15:29:11 -07:00
compiler Get rid of AbstractServiceDescriptor as it is no longer useful 2015-07-17 17:03:36 -07:00
core Add in-process transport 2015-07-22 15:54:37 -07:00
examples Get rid of AbstractServiceDescriptor as it is no longer useful 2015-07-17 17:03:36 -07:00
gradle/wrapper Slight performance improvment for MutableHandlerRegistryImpl 2015-05-12 09:56:45 -07:00
interop-testing Add in-process transport 2015-07-22 15:54:37 -07:00
netty Add simple server timeout support 2015-07-15 09:33:16 -07:00
okhttp Added basic unit test and reorg how onready calls are made 2015-07-22 14:45:23 -07:00
protobuf Optimize protobuf serializer for in-memory transport 2015-07-22 15:54:39 -07:00
protobuf-nano Replace DeferredInputStream with interface Drainable. 2015-07-20 17:04:49 -07:00
stub Get rid of AbstractServiceDescriptor as it is no longer useful 2015-07-17 17:03:36 -07:00
testing Enforce request deadline 2015-07-14 16:47:45 -07:00
.gitignore Add the Android interop test App. 2015-06-26 15:31:14 -07:00
.travis.yml Update Travis to use protobuf3-alpha3 2015-06-17 16:12:11 -07:00
CONTRIBUTING.md Document how to use IntelliJ style 2015-05-07 07:38:52 -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 Fix protobuf plugin usage in README.md 2015-07-22 15:25:12 -07:00
RELEASING.md Reorganizing the deployment docs. 2015-06-10 13:15:04 -07:00
SECURITY.md Renaming AUTH_README.md to SECURITY.md 2015-05-28 14:01:44 -07:00
build.gradle Upgrade to protobuf-gradle-plugin 0.5.0 2015-07-08 16:24:59 -07:00
checkstyle.license Adding MOE configuration for grpc_java. 2015-01-08 14:43:02 -08:00
checkstyle.xml Add transport benchmark using JMH 2015-07-22 15:54:41 -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 Suggest -PskipCodegen in run-test-{client,server} 2015-07-01 13:44:28 -07:00
run-test-server.sh Suggest -PskipCodegen in run-test-{client,server} 2015-07-01 13:44:28 -07:00
settings.gradle Rename integration-testing to interop-testing 2015-05-20 14:57:36 -07:00

README.md

Build Status

gRPC-Java - An RPC library and framework

gRPC-Java works with JDK 6. TLS usage typically requires using Java 8, or Play Services Dynamic Security Provider on Android. Please see the Security Readme.

Download

Download the JAR. Or for Maven, add to your pom.xml:

<dependency>
  <groupId>io.grpc</groupId>
  <artifactId>grpc-all</artifactId>
  <version>0.7.1</version>
</dependency>

Or for Gradle, add to your dependencies:

compile 'io.grpc:grpc-all:0.7.1'

Development snapshots are available in Sonatypes's snapshot repository.

For protobuf-based codegen integrated with the Maven build system, you can use maven-protoc-plugin:

<pluginRepositories>
  <pluginRepository>
    <releases>
      <updatePolicy>never</updatePolicy>
    </releases>
    <snapshots>
      <enabled>false</enabled>
    </snapshots>
    <id>central</id>
    <name>Central Repository</name>
    <url>https://repo.maven.apache.org/maven2</url>
  </pluginRepository>
  <pluginRepository>
    <id>protoc-plugin</id>
    <url>https://dl.bintray.com/sergei-ivanov/maven/</url>
  </pluginRepository>
</pluginRepositories>
<build>
  <extensions>
    <extension>
      <groupId>kr.motd.maven</groupId>
      <artifactId>os-maven-plugin</artifactId>
      <version>1.2.3.Final</version>
    </extension>
  </extensions>
  <plugins>
    <plugin>
      <groupId>com.google.protobuf.tools</groupId>
      <artifactId>maven-protoc-plugin</artifactId>
      <version>0.4.2</version>
      <configuration>
        <!--
          The version of protoc must match protobuf-java. If you don't depend on
          protobuf-java directly, you will be transitively depending on the
          protobuf-java version that grpc depends on.
        -->
        <protocArtifact>com.google.protobuf:protoc:3.0.0-alpha-2:exe:${os.detected.classifier}</protocArtifact>
        <pluginId>grpc-java</pluginId>
        <pluginArtifact>io.grpc:protoc-gen-grpc-java:0.7.1:exe:${os.detected.classifier}</pluginArtifact>
      </configuration>
      <executions>
        <execution>
          <goals>
            <goal>compile</goal>
            <goal>compile-custom</goal>
          </goals>
        </execution>
      </executions>
    </plugin>
  </plugins>
</build>

For protobuf-based codegen integrated with the Gradle build system, you can use protobuf-gradle-plugin:

apply plugin: 'java'
apply plugin: 'com.google.protobuf'

buildscript {
  repositories {
    mavenCentral()
  }
  dependencies {
    classpath 'com.google.protobuf:protobuf-gradle-plugin:0.5.0'
  }
}

protobuf {
  protoc {
    // The version of protoc must match protobuf-java. If you don't depend on
    // protobuf-java directly, you will be transitively depending on the
    // protobuf-java version that grpc depends on.
    artifact = "com.google.protobuf:protoc:3.0.0-alpha-2"
  }
  plugins {
    grpc {
      artifact = 'io.grpc:protoc-gen-grpc-java:0.7.1'
    }
  }
  generateProtoTasks {
    all()*.plugins {
      grpc {}
    }
  }
}

How to Build

This section is only necessary if you are making changes to gRPC-Java.

Building requires JDK 8, as our tests use TLS.

grpc-java has a C++ code generation plugin for protoc. Since many Java developers don't have C compilers installed and don't need to modify the codegen, the build can skip it. To skip, create the file <project-root>/gradle.properties and add skipCodegen=true.

Then, to build, run:

$ ./gradlew build

To install the artifacts to your Maven local repository for use in your own project, run:

$ ./gradlew install

How to Build Code Generation Plugin

This section is only necessary if you are making changes to the code generation. Most users only need to use skipCodegen=true as discussed above.

Build Protobuf

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

For Linux, Mac and MinGW:

$ git clone https://github.com/google/protobuf.git
$ cd protobuf
$ git checkout v3.0.0-alpha-3.1
$ ./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"

Notes for Visual C++

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

.\gradlew install ^
    -PvcProtobufInclude=C:\path\to\protobuf-3.0.0-alpha-3.1\src ^
    -PvcProtobufLibs=C:\path\to\protobuf-3.0.0-alpha-3.1\vsprojects\Release

Since specifying those properties every build is bothersome, you can instead create <project-root>\gradle.properties with contents like:

vcProtobufInclude=C:\\path\\to\\protobuf-3.0.0-alpha-3.1\\src
vcProtobufLibs=C:\\path\\to\\protobuf-3.0.0-alpha-3.1\\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 -PvcDisable=true to your Gradle command line or add vcDisable=true to your <project-root>\gradle.properties.

Notes for unsupported operating systems

The build script pulls pre-compiled protoc from Maven Central by default. We have built protoc binaries for popular systems, but they may not work for your system. If protoc cannot be downloaded or would not run, you can use the one that has been built by your own, by adding this property to <project-root>/gradle.properties:

protoc=/path/to/protoc

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/interop-testing/src/main/java/io/grpc/testing/integration