2021-04-09 grpcurl使用

2022-04-22 18:54:41 浏览数 (1)

参考文章使用grpcurl访问gRPC服务使用grpcurl,但是我的代码是c代码,因此又参考Quick start,找到了一个c代码的例子,操作如下:

代码语言:javascript复制
export MY_INSTALL_DIR=$HOME/.local
mkdir -p $MY_INSTALL_DIR
export PATH="$PATH:$MY_INSTALL_DIR/bin"

git clone --recurse-submodules -b v1.35.0 https://github.com/grpc/grpc
$ cd grpc
$ mkdir -p cmake/build
$ pushd cmake/build
$ cmake -DgRPC_INSTALL=ON 
      -DgRPC_BUILD_TESTS=OFF 
      -DCMAKE_INSTALL_PREFIX=$MY_INSTALL_DIR 
      ../..
$ make -j
$ make install
$ popd

cd examples/cpp/helloworld
$ mkdir -p cmake/build
$ pushd cmake/build
$ cmake -DCMAKE_PREFIX_PATH=$MY_INSTALL_DIR ../..
$ make -j

这个时候c代码编译成功了,然后

代码语言:javascript复制
$ ./greeter_server
Server listening on 0.0.0.0:50051
$ ./greeter_client
Greeter received: Hello world

2、下载grpcurl 下载最新版本的,在下载找到最新版本下载

3、使用

代码语言:javascript复制
$ grpcurl -plaintext 127.0.0.1:50051 list
grpc.health.v1.Health
grpc.reflection.v1alpha.ServerReflection
helloworld.Greeter

这里找到服务helloworld.Greeter

代码语言:javascript复制
$ grpcurl -plaintext 127.0.0.1:50051 describe helloworld.Greeter
helloworld.Greeter is a service:
service Greeter {
  rpc SayHello ( .helloworld.HelloRequest ) returns ( .helloworld.HelloReply );
}

这里找到函数helloworld.Greeter.SayHello和输入参数helloworld.HelloRequest

代码语言:javascript复制
$ grpcurl -plaintext 127.0.0.1:50051 describe helloworld.HelloRequest
helloworld.HelloRequest is a message:
message HelloRequest {
  string name = 1;
}

这里查看输入参数helloworld.HelloRequest的格式,然后构造json数据:

代码语言:javascript复制
$ grpcurl -d '{"name": "abc"}' -plaintext 127.0.0.1:50051 helloworld.Greeter.SayHello
{
  "message": "Hello abc"
}

通过调用函数 helloworld.Greeter.SayHello 返回结果

rpc

0 人点赞