2f59a0319b
* Update grpc-core version io.grpc:grpc-core package in version 1.36.0 contains multiple [CVE's](https://mvnrepository.com/artifact/io.grpc/grpc-core/1.36.0). Bump grpc-core version to latest 1.68.0 version to mitigate potential vulnerabilities. * Update grpc version to 1.67.1 grpc was mistakenly released to maven under version 1.68.0 whenever a real release was done for version 1.67.1 [1]. The mistake was fixed later. [1] https://github.com/grpc/grpc-java/releases |
||
---|---|---|
.. | ||
examples | ||
flatbuffers-java-grpc | ||
samples/greeter | ||
src/compiler | ||
tests | ||
BUILD.bazel | ||
README.md | ||
boringssl.patch | ||
build_grpc.sh | ||
build_grpc_with_cxx14.patch | ||
pom.xml |
README.md
GRPC implementation and test
NOTE: files in src/
are shared with the GRPC project, and maintained there
(any changes should be submitted to GRPC instead). These files are copied
from GRPC, and work with both the Protobuf and FlatBuffers code generator.
tests/
contains a GRPC specific test, you need to have built and installed
the GRPC libraries for this to compile. This test will build using the
FLATBUFFERS_BUILD_GRPCTEST
option to the main FlatBuffers CMake project.
Building Flatbuffers with gRPC
Linux
- Download, build and install gRPC. See instructions.
- Lets say your gRPC clone is at
/your/path/to/grpc_repo
. - Install gRPC in a custom directory by running
make install prefix=/your/path/to/grpc_repo/install
.
- Lets say your gRPC clone is at
export GRPC_INSTALL_PATH=/your/path/to/grpc_repo/install
export PROTOBUF_DOWNLOAD_PATH=/your/path/to/grpc_repo/third_party/protobuf
mkdir build ; cd build
cmake -DFLATBUFFERS_BUILD_GRPCTEST=ON -DGRPC_INSTALL_PATH=${GRPC_INSTALL_PATH} -DPROTOBUF_DOWNLOAD_PATH=${PROTOBUF_DOWNLOAD_PATH} ..
make
For Bazel users:
$bazel test src/compiler/...
Running FlatBuffer gRPC tests
Linux
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:${GRPC_INSTALL_PATH}/lib
make test ARGS=-V
For Bazel users:
$bazel test tests/...