122 lines
3.2 KiB
Go
122 lines
3.2 KiB
Go
|
// Command protoc-gen-grpc-gateway is a plugin for Google protocol buffer
|
||
|
// compiler to generate a reverse-proxy, which converts incoming RESTful
|
||
|
// HTTP/1 requests gRPC invocation.
|
||
|
// You rarely need to run this program directly. Instead, put this program
|
||
|
// into your $PATH with a name "protoc-gen-grpc-gateway" and run
|
||
|
// protoc --grpc-gateway_out=output_directory path/to/input.proto
|
||
|
//
|
||
|
// See README.md for more details.
|
||
|
package main
|
||
|
|
||
|
import (
|
||
|
"flag"
|
||
|
"io"
|
||
|
"io/ioutil"
|
||
|
"os"
|
||
|
"strings"
|
||
|
|
||
|
"github.com/golang/glog"
|
||
|
"github.com/golang/protobuf/proto"
|
||
|
plugin "github.com/golang/protobuf/protoc-gen-go/plugin"
|
||
|
"github.com/grpc-ecosystem/grpc-gateway/protoc-gen-grpc-gateway/descriptor"
|
||
|
"github.com/grpc-ecosystem/grpc-gateway/protoc-gen-grpc-gateway/gengateway"
|
||
|
)
|
||
|
|
||
|
var (
|
||
|
importPrefix = flag.String("import_prefix", "", "prefix to be added to go package paths for imported proto files")
|
||
|
useRequestContext = flag.Bool("request_context", false, "determine whether to use http.Request's context or not")
|
||
|
allowDeleteBody = flag.Bool("allow_delete_body", false, "unless set, HTTP DELETE methods may not have a body")
|
||
|
)
|
||
|
|
||
|
func parseReq(r io.Reader) (*plugin.CodeGeneratorRequest, error) {
|
||
|
glog.V(1).Info("Parsing code generator request")
|
||
|
input, err := ioutil.ReadAll(r)
|
||
|
if err != nil {
|
||
|
glog.Errorf("Failed to read code generator request: %v", err)
|
||
|
return nil, err
|
||
|
}
|
||
|
req := new(plugin.CodeGeneratorRequest)
|
||
|
if err = proto.Unmarshal(input, req); err != nil {
|
||
|
glog.Errorf("Failed to unmarshal code generator request: %v", err)
|
||
|
return nil, err
|
||
|
}
|
||
|
glog.V(1).Info("Parsed code generator request")
|
||
|
return req, nil
|
||
|
}
|
||
|
|
||
|
func main() {
|
||
|
flag.Parse()
|
||
|
defer glog.Flush()
|
||
|
|
||
|
reg := descriptor.NewRegistry()
|
||
|
|
||
|
glog.V(1).Info("Processing code generator request")
|
||
|
req, err := parseReq(os.Stdin)
|
||
|
if err != nil {
|
||
|
glog.Fatal(err)
|
||
|
}
|
||
|
if req.Parameter != nil {
|
||
|
for _, p := range strings.Split(req.GetParameter(), ",") {
|
||
|
spec := strings.SplitN(p, "=", 2)
|
||
|
if len(spec) == 1 {
|
||
|
if err := flag.CommandLine.Set(spec[0], ""); err != nil {
|
||
|
glog.Fatalf("Cannot set flag %s", p)
|
||
|
}
|
||
|
continue
|
||
|
}
|
||
|
name, value := spec[0], spec[1]
|
||
|
if strings.HasPrefix(name, "M") {
|
||
|
reg.AddPkgMap(name[1:], value)
|
||
|
continue
|
||
|
}
|
||
|
if err := flag.CommandLine.Set(name, value); err != nil {
|
||
|
glog.Fatalf("Cannot set flag %s", p)
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
g := gengateway.New(reg, *useRequestContext)
|
||
|
|
||
|
reg.SetPrefix(*importPrefix)
|
||
|
reg.SetAllowDeleteBody(*allowDeleteBody)
|
||
|
if err := reg.Load(req); err != nil {
|
||
|
emitError(err)
|
||
|
return
|
||
|
}
|
||
|
|
||
|
var targets []*descriptor.File
|
||
|
for _, target := range req.FileToGenerate {
|
||
|
f, err := reg.LookupFile(target)
|
||
|
if err != nil {
|
||
|
glog.Fatal(err)
|
||
|
}
|
||
|
targets = append(targets, f)
|
||
|
}
|
||
|
|
||
|
out, err := g.Generate(targets)
|
||
|
glog.V(1).Info("Processed code generator request")
|
||
|
if err != nil {
|
||
|
emitError(err)
|
||
|
return
|
||
|
}
|
||
|
emitFiles(out)
|
||
|
}
|
||
|
|
||
|
func emitFiles(out []*plugin.CodeGeneratorResponse_File) {
|
||
|
emitResp(&plugin.CodeGeneratorResponse{File: out})
|
||
|
}
|
||
|
|
||
|
func emitError(err error) {
|
||
|
emitResp(&plugin.CodeGeneratorResponse{Error: proto.String(err.Error())})
|
||
|
}
|
||
|
|
||
|
func emitResp(resp *plugin.CodeGeneratorResponse) {
|
||
|
buf, err := proto.Marshal(resp)
|
||
|
if err != nil {
|
||
|
glog.Fatal(err)
|
||
|
}
|
||
|
if _, err := os.Stdout.Write(buf); err != nil {
|
||
|
glog.Fatal(err)
|
||
|
}
|
||
|
}
|