mirror of
https://github.com/zeromicro/go-zero.git
synced 2025-02-03 08:48:40 +08:00
24fb29a356
* change column to read from information_schema * reactor generate mode from datasource * reactor generate mode from datasource * add primary key check logic * resolve rebase conflicts * add naming style * add filename test case * resolve rebase conflicts * reactor test * add test case * change shell script to makefile * update rpc new * update gen_test.go * format code * format code * update test * generates alias
32 lines
825 B
Go
32 lines
825 B
Go
package generator
|
|
|
|
import (
|
|
"bytes"
|
|
"path/filepath"
|
|
"strings"
|
|
|
|
"github.com/tal-tech/go-zero/tools/goctl/rpc/execx"
|
|
"github.com/tal-tech/go-zero/tools/goctl/rpc/parser"
|
|
)
|
|
|
|
func (g *defaultGenerator) GenPb(ctx DirContext, protoImportPath []string, proto parser.Proto, namingStyle NamingStyle) error {
|
|
dir := ctx.GetPb()
|
|
cw := new(bytes.Buffer)
|
|
base := filepath.Dir(proto.Src)
|
|
cw.WriteString("protoc ")
|
|
for _, ip := range protoImportPath {
|
|
cw.WriteString(" -I=" + ip)
|
|
}
|
|
cw.WriteString(" -I=" + base)
|
|
cw.WriteString(" " + proto.Name)
|
|
if strings.Contains(proto.GoPackage, "/") {
|
|
cw.WriteString(" --go_out=plugins=grpc:" + ctx.GetMain().Filename)
|
|
} else {
|
|
cw.WriteString(" --go_out=plugins=grpc:" + dir.Filename)
|
|
}
|
|
command := cw.String()
|
|
g.log.Debug(command)
|
|
_, err := execx.Run(command, "")
|
|
return err
|
|
}
|