Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fiorix/protoc-gen-cobra
Cobra command line tool generator for gRPC clients
https://github.com/fiorix/protoc-gen-cobra
Last synced: 3 months ago
JSON representation
Cobra command line tool generator for gRPC clients
- Host: GitHub
- URL: https://github.com/fiorix/protoc-gen-cobra
- Owner: fiorix
- License: other
- Archived: true
- Created: 2016-10-02T04:47:07.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2023-02-11T08:56:22.000Z (over 1 year ago)
- Last Synced: 2024-06-18T16:01:50.112Z (5 months ago)
- Language: Go
- Homepage:
- Size: 69.3 KB
- Stars: 189
- Watchers: 7
- Forks: 32
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-grpc - protoc-gen-cobra - Command line tool generator for Go gRPC (Language-Specific / Go)
README
# ⛔ DEPRECATED
This repository is no longer actively maintained. All future work has moved [here](https://github.com/NathanBaulch/protoc-gen-cobra).
# protoc-gen-cobra
Cobra command line tool generator for Go gRPC.
[![GoDoc](https://godoc.org/github.com/fiorix/protoc-gen-cobra?status.svg)](https://godoc.org/github.com/fiorix/protoc-gen-cobra)
### What's this?
A plugin for the [protobuf](https://github.com/google/protobuf) compiler protoc, that generates Go code using [cobra](https://github.com/spf13/cobra). It is capable of generating client code for command line tools consistent with your protobuf description.
This:
```
service Bank {
rpc Deposit(DepositRequest) returns (DepositReply)
}message DepositRequest {
string account = 1;
double amount = 2;
}message DepositReply {
string account = 1;
double balance = 2;
}
```produces a client that can do:
```
echo '{"account":"foobar","amount":10}' | command bank deposit
```It generates one [cobra.Command](https://godoc.org/github.com/spf13/cobra#Command) per gRPC service (e.g. bank). The service's rpc methods are sub-commands, and share the same command line semantics. They take a request file for input, or stdin, and prints the response to the terminal, in the specified format. The client currently supports basic connectivity settings such as tls on/off, tls client authentication and so on.
```
$ ./example bank deposit -h
Deposit clientYou can use environment variables with the same name of the command flags.
All caps and s/-/_, e.g. SERVER_ADDR.Usage:
example bank deposit [flags]Examples:
Save a sample request to a file (or refer to your protobuf descriptor to create one):
deposit -p > req.jsonSubmit request using file:
deposit -f req.jsonAuthenticate using the Authorization header (requires transport security):
export AUTH_TOKEN=your_access_token
export SERVER_ADDR=api.example.com:443
echo '{json}' | deposit --tlsFlags:
--auth-token string authorization token
--auth-token-type string authorization token type (default "Bearer")
--jwt-key string jwt key
--jwt-key-file string jwt key file
-p, --print-sample-request print sample request file and exit
-f, --request-file string client request file (must be json, yaml, or xml); use "-" for stdin + json
-o, --response-format string response format (json, prettyjson, yaml, or xml) (default "json")
-s, --server-addr string server address in form of host:port (default "localhost:8080")
--timeout duration client connection timeout (default 10s)
--tls enable tls
--tls-ca-cert-file string ca certificate file
--tls-cert-file string client certificate file
--tls-insecure-skip-verify INSECURE: skip tls checks
--tls-key-file string client key file
--tls-server-name string tls server name override
```This is an experiment. Was bored of writing the same boilerplate code to interact with gRPC servers, wanted something like [kubectl](http://kubernetes.io/docs/user-guide/kubectl-overview/). At some point I might want to generate server code too, similar to what go-swagger does. Perhaps look at using go-openapi too. Tests are lacking.
### Streams
gRPC client and server streams are supported, you can do pipes from the command line. On server streams, each response is printed out using the specified response format. Client streams input must be formatted as json, one document per line, from a file or stdin.
Example client stream:
```
$ cat req.json
{"key":"hello","value":"world"}
{"key":"foo","value":"bar"}$ ./example cache multiset -f req.json
```Example client and server streams:
```
$ echo -ne '{"key":"hello"}\n{"key":"foo"}\n' | ./example cache multiget
{"value":"world"}
{"value":"bar"}
```Idle server streams hang until the server closes the stream, or a timeout occurs.