|
|
@ -2,36 +2,45 @@ package generator
|
|
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"bytes"
|
|
|
|
"fmt"
|
|
|
|
"errors"
|
|
|
|
"io/ioutil"
|
|
|
|
|
|
|
|
"os"
|
|
|
|
|
|
|
|
"path/filepath"
|
|
|
|
"path/filepath"
|
|
|
|
"runtime"
|
|
|
|
|
|
|
|
"strings"
|
|
|
|
"strings"
|
|
|
|
|
|
|
|
|
|
|
|
"github.com/tal-tech/go-zero/core/collection"
|
|
|
|
"github.com/tal-tech/go-zero/core/collection"
|
|
|
|
conf "github.com/tal-tech/go-zero/tools/goctl/config"
|
|
|
|
conf "github.com/tal-tech/go-zero/tools/goctl/config"
|
|
|
|
"github.com/tal-tech/go-zero/tools/goctl/rpc/execx"
|
|
|
|
"github.com/tal-tech/go-zero/tools/goctl/rpc/execx"
|
|
|
|
"github.com/tal-tech/go-zero/tools/goctl/rpc/parser"
|
|
|
|
"github.com/tal-tech/go-zero/tools/goctl/rpc/parser"
|
|
|
|
"github.com/tal-tech/go-zero/tools/goctl/util"
|
|
|
|
|
|
|
|
"github.com/tal-tech/go-zero/tools/goctl/vars"
|
|
|
|
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const googleProtocGenGoErr = `--go_out: protoc-gen-go: plugins are not supported; use 'protoc --go-grpc_out=...' to generate gRPC`
|
|
|
|
|
|
|
|
|
|
|
|
// GenPb generates the pb.go file, which is a layer of packaging for protoc to generate gprc,
|
|
|
|
// GenPb generates the pb.go file, which is a layer of packaging for protoc to generate gprc,
|
|
|
|
// but the commands and flags in protoc are not completely joined in goctl. At present, proto_path(-I) is introduced
|
|
|
|
// but the commands and flags in protoc are not completely joined in goctl. At present, proto_path(-I) is introduced
|
|
|
|
func (g *DefaultGenerator) GenPb(ctx DirContext, protoImportPath []string, proto parser.Proto, _ *conf.Config, goOptions ...string) error {
|
|
|
|
func (g *DefaultGenerator) GenPb(ctx DirContext, protoImportPath []string, proto parser.Proto, _ *conf.Config, goOptions ...string) error {
|
|
|
|
dir := ctx.GetPb()
|
|
|
|
dir := ctx.GetPb()
|
|
|
|
cw := new(bytes.Buffer)
|
|
|
|
cw := new(bytes.Buffer)
|
|
|
|
directory, _ := filepath.Split(proto.Src)
|
|
|
|
directory, base := filepath.Split(proto.Src)
|
|
|
|
directory = filepath.Clean(directory)
|
|
|
|
directory = filepath.Clean(directory)
|
|
|
|
cw.WriteString("protoc ")
|
|
|
|
cw.WriteString("protoc ")
|
|
|
|
protoImportPathSet := collection.NewSet()
|
|
|
|
protoImportPathSet := collection.NewSet()
|
|
|
|
|
|
|
|
isSamePackage := true
|
|
|
|
for _, ip := range protoImportPath {
|
|
|
|
for _, ip := range protoImportPath {
|
|
|
|
pip := " --proto_path=" + ip
|
|
|
|
pip := " --proto_path=" + ip
|
|
|
|
if protoImportPathSet.Contains(pip) {
|
|
|
|
if protoImportPathSet.Contains(pip) {
|
|
|
|
continue
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
abs, err := filepath.Abs(ip)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
|
|
|
|
return err
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if abs == directory {
|
|
|
|
|
|
|
|
isSamePackage = true
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
isSamePackage = false
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
protoImportPathSet.AddStr(pip)
|
|
|
|
protoImportPathSet.AddStr(pip)
|
|
|
|
cw.WriteString(pip)
|
|
|
|
cw.WriteString(pip)
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -47,88 +56,50 @@ func (g *DefaultGenerator) GenPb(ctx DirContext, protoImportPath []string, proto
|
|
|
|
cw.WriteString(" --go_out=plugins=grpc:" + dir.Filename)
|
|
|
|
cw.WriteString(" --go_out=plugins=grpc:" + dir.Filename)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return g.generatePbWithVersion132(cw.String())
|
|
|
|
// Compatible with version 1.4.0,github.com/golang/protobuf/protoc-gen-go@v1.4.0
|
|
|
|
}
|
|
|
|
// --go_opt usage please see https://developers.google.com/protocol-buffers/docs/reference/go-generated#package
|
|
|
|
|
|
|
|
optSet := collection.NewSet()
|
|
|
|
// generatePbWithVersion132 generates pb.go by specifying protoc-gen-go@1.3.2 version
|
|
|
|
for _, op := range goOptions {
|
|
|
|
func (g *DefaultGenerator) generatePbWithVersion132(cmd string) error {
|
|
|
|
opt := " --go_opt=" + op
|
|
|
|
goctlHome, err := util.GetGoctlHome()
|
|
|
|
if optSet.Contains(opt) {
|
|
|
|
if err != nil {
|
|
|
|
continue
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
err = util.MkdirIfNotExist(goctlHome)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
|
|
|
|
return err
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
goctlHomeBin := filepath.Join(goctlHome, "bin")
|
|
|
|
optSet.AddStr(op)
|
|
|
|
err = util.MkdirIfNotExist(goctlHomeBin)
|
|
|
|
cw.WriteString(" --go_opt=" + op)
|
|
|
|
if err != nil {
|
|
|
|
|
|
|
|
return err
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
protocGenGo := filepath.Join(goctlHome, "bin", "protoc-gen-go")
|
|
|
|
var currentFileOpt string
|
|
|
|
g.log.Debug("checking protoc-gen-go state ...")
|
|
|
|
if !isSamePackage || (len(proto.GoPackage) > 0 && proto.GoPackage != proto.Package.Name) {
|
|
|
|
goGetCmd := "\ngo install github.com/golang/protobuf/protoc-gen-go@v1.3.2"
|
|
|
|
if filepath.IsAbs(proto.GoPackage) {
|
|
|
|
|
|
|
|
currentFileOpt = " --go_opt=M" + base + "=" + proto.GoPackage
|
|
|
|
if util.FileExists(protocGenGo) {
|
|
|
|
} else if strings.Contains(proto.GoPackage, string(filepath.Separator)) {
|
|
|
|
g.log.Success("protoc-gen-go exists ...")
|
|
|
|
currentFileOpt = " --go_opt=M" + base + "=./" + proto.GoPackage
|
|
|
|
goGetCmd = ""
|
|
|
|
} else {
|
|
|
|
|
|
|
|
currentFileOpt = " --go_opt=M" + base + "=../" + proto.GoPackage
|
|
|
|
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
g.log.Error("missing protoc-gen-go: downloading ...")
|
|
|
|
currentFileOpt = " --go_opt=M" + base + "=."
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
goos := runtime.GOOS
|
|
|
|
if !optSet.Contains(currentFileOpt) {
|
|
|
|
switch goos {
|
|
|
|
cw.WriteString(currentFileOpt)
|
|
|
|
case vars.OsLinux, vars.OsMac:
|
|
|
|
|
|
|
|
cmd = getUnixLikeCmd(goctlHome, goctlHomeBin, goGetCmd, cmd)
|
|
|
|
|
|
|
|
g.log.Debug("%s", cmd)
|
|
|
|
|
|
|
|
case vars.OsWindows:
|
|
|
|
|
|
|
|
cmd = getWindowsCmd(goctlHome, goctlHomeBin, goGetCmd, cmd)
|
|
|
|
|
|
|
|
// Do not support to execute commands in context, the solution is created
|
|
|
|
|
|
|
|
// a batch file to execute it on Windows.
|
|
|
|
|
|
|
|
batFile, err := createBatchFile(goctlHome, cmd)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
|
|
|
|
return err
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
g.log.Debug("%s", cmd)
|
|
|
|
|
|
|
|
cmd = batFile
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
|
|
|
return fmt.Errorf("unsupported os: %s", goos)
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
_, err = execx.Run(cmd, "")
|
|
|
|
command := cw.String()
|
|
|
|
return err
|
|
|
|
g.log.Debug(command)
|
|
|
|
}
|
|
|
|
_, err := execx.Run(command, "")
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
func getUnixLikeCmd(goctlHome, goctlHomeBin, goGetCmd, cmd string) string {
|
|
|
|
if strings.Contains(err.Error(), googleProtocGenGoErr) {
|
|
|
|
return fmt.Sprintf(`export GOPATH=%s
|
|
|
|
return errors.New(`Unsupported plugin protoc-gen-go which installed from the following source:
|
|
|
|
export GOBIN=%s
|
|
|
|
google.golang.org/protobuf/cmd/protoc-gen-go,
|
|
|
|
export PATH=$PATH:$GOPATH:$GOBIN
|
|
|
|
github.com/protocolbuffers/protobuf-go/cmd/protoc-gen-go;
|
|
|
|
export GO111MODULE=on
|
|
|
|
|
|
|
|
export GOPROXY=https://goproxy.cn %s
|
|
|
|
|
|
|
|
%s`, goctlHome, goctlHomeBin, goGetCmd, cmd)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
func getWindowsCmd(goctlHome, goctlHomeBin, goGetCmd, cmd string) string {
|
|
|
|
|
|
|
|
return fmt.Sprintf(`set GOPATH=%s
|
|
|
|
|
|
|
|
set GOBIN=%s
|
|
|
|
|
|
|
|
set path=%s
|
|
|
|
|
|
|
|
set GO111MODULE=on
|
|
|
|
|
|
|
|
set GOPROXY=https://goproxy.cn %s
|
|
|
|
|
|
|
|
%s`, goctlHome, goctlHomeBin, "%path%;"+goctlHome+";"+goctlHomeBin, goGetCmd, cmd)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
func createBatchFile(goctlHome, cmd string) (string, error) {
|
|
|
|
Please replace it by the following command, we recommend to use version before v1.3.5:
|
|
|
|
batFile := filepath.Join(goctlHome, ".generate.bat")
|
|
|
|
go get -u github.com/golang/protobuf/protoc-gen-go`)
|
|
|
|
if !util.FileExists(batFile) {
|
|
|
|
|
|
|
|
err := ioutil.WriteFile(batFile, []byte(cmd), os.ModePerm)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
|
|
|
|
return "", err
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return batFile, nil
|
|
|
|
return err
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|