client.go 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. package main
  2. import (
  3. "context"
  4. "flag"
  5. "fmt"
  6. "io/ioutil"
  7. "os"
  8. "github.com/gogo/protobuf/jsonpb"
  9. "google.golang.org/grpc"
  10. "google.golang.org/grpc/credentials"
  11. "google.golang.org/grpc/encoding"
  12. )
  13. // Reply for test
  14. type Reply struct {
  15. res []byte
  16. }
  17. var data string
  18. var file string
  19. var method string
  20. var addr string
  21. var tlsCert string
  22. var tlsServerName string
  23. //Reference https://jbrandhorst.com/post/grpc-json/
  24. func init() {
  25. encoding.RegisterCodec(JSON{
  26. Marshaler: jsonpb.Marshaler{
  27. EmitDefaults: true,
  28. OrigName: true,
  29. },
  30. })
  31. flag.StringVar(&data, "data", `{"name":"longxia","age":19}`, `{"name":"longxia","age":19}`)
  32. flag.StringVar(&file, "file", ``, `./data.json`)
  33. flag.StringVar(&method, "method", "/testproto.Greeter/SayHello", `/testproto.Greeter/SayHello`)
  34. flag.StringVar(&addr, "addr", "127.0.0.1:8080", `127.0.0.1:8080`)
  35. flag.StringVar(&tlsCert, "cert", "", `./cert.pem`)
  36. flag.StringVar(&tlsServerName, "server_name", "", `hello_server`)
  37. }
  38. // 该example因为使用的是json传输格式所以只能用于调试或测试,用于线上会导致性能下降
  39. // 使用方法:
  40. // ./grpcDebug -data='{"name":"xia","age":19}' -addr=127.0.0.1:8080 -method=/testproto.Greeter/SayHello
  41. // ./grpcDebug -file=data.json -addr=127.0.0.1:8080 -method=/testproto.Greeter/SayHello
  42. func main() {
  43. flag.Parse()
  44. opts := []grpc.DialOption{
  45. grpc.WithInsecure(),
  46. grpc.WithDefaultCallOptions(grpc.CallContentSubtype(JSON{}.Name())),
  47. }
  48. if tlsCert != "" {
  49. creds, err := credentials.NewClientTLSFromFile(tlsCert, tlsServerName)
  50. if err != nil {
  51. panic(err)
  52. }
  53. opts = append(opts, grpc.WithTransportCredentials(creds))
  54. }
  55. if file != "" {
  56. content, err := ioutil.ReadFile(file)
  57. if err != nil {
  58. fmt.Println("ioutil.ReadFile %s failed!err:=%v", file, err)
  59. os.Exit(1)
  60. }
  61. if len(content) > 0 {
  62. data = string(content)
  63. }
  64. }
  65. conn, err := grpc.Dial(addr, opts...)
  66. if err != nil {
  67. panic(err)
  68. }
  69. var reply Reply
  70. err = grpc.Invoke(context.Background(), method, []byte(data), &reply, conn)
  71. if err != nil {
  72. panic(err)
  73. }
  74. fmt.Println(string(reply.res))
  75. }
  76. // JSON is impl of encoding.Codec
  77. type JSON struct {
  78. jsonpb.Marshaler
  79. jsonpb.Unmarshaler
  80. }
  81. // Name is name of JSON
  82. func (j JSON) Name() string {
  83. return "json"
  84. }
  85. // Marshal is json marshal
  86. func (j JSON) Marshal(v interface{}) (out []byte, err error) {
  87. return v.([]byte), nil
  88. }
  89. // Unmarshal is json unmarshal
  90. func (j JSON) Unmarshal(data []byte, v interface{}) (err error) {
  91. v.(*Reply).res = data
  92. return nil
  93. }