• Home
Name Date Size #Lines LOC

..--

flatbuffers-java-grpc/03-May-2024-161127

samples/greeter/03-May-2024-201144

src/compiler/03-May-2024-5,0213,997

tests/03-May-2024-1,199910

README.mdD03-May-20241.4 KiB3223

build_grpc.shD03-May-2024599 2216

pom.xmlD03-May-20247.5 KiB214191

README.md

1GRPC implementation and test
2============================
3
4NOTE: files in `src/` are shared with the GRPC project, and maintained there
5(any changes should be submitted to GRPC instead). These files are copied
6from GRPC, and work with both the Protobuf and FlatBuffers code generator.
7
8`tests/` contains a GRPC specific test, you need to have built and installed
9the GRPC libraries for this to compile. This test will build using the
10`FLATBUFFERS_BUILD_GRPCTEST` option to the main FlatBuffers CMake project.
11
12## Building Flatbuffers with gRPC
13
14### Linux
15
161. Download, build and install gRPC. See [instructions](https://github.com/grpc/grpc/tree/master/src/cpp).
17    * Lets say your gRPC clone is at `/your/path/to/grpc_repo`.
18    * Install gRPC in a custom directory by running `make install prefix=/your/path/to/grpc_repo/install`.
192. `export GRPC_INSTALL_PATH=/your/path/to/grpc_repo/install`
203. `export PROTOBUF_DOWNLOAD_PATH=/your/path/to/grpc_repo/third_party/protobuf`
214. `mkdir build ; cd build`
225. `cmake -DFLATBUFFERS_BUILD_GRPCTEST=ON -DGRPC_INSTALL_PATH=${GRPC_INSTALL_PATH} -DPROTOBUF_DOWNLOAD_PATH=${PROTOBUF_DOWNLOAD_PATH} ..`
236. `make`
24
25## Running FlatBuffer gRPC tests
26
27### Linux
28
291. `ln -s ${GRPC_INSTALL_PATH}/lib/libgrpc++_unsecure.so.6 ${GRPC_INSTALL_PATH}/lib/libgrpc++_unsecure.so.1`
302. `export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:${GRPC_INSTALL_PATH}/lib`
313. `make test ARGS=-V`
32