| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153 |
- package main
- import (
- "fmt"
- "go/build"
- "io/ioutil"
- "os"
- "os/exec"
- "path/filepath"
- "runtime"
- "strings"
- )
- // envFile returns the name of the Go environment configuration file.
- // Copy from https://github.com/golang/go/blob/c4f2a9788a7be04daf931ac54382fbe2cb754938/src/cmd/go/internal/cfg/cfg.go#L150-L166
- func envFile() (string, error) {
- if file := os.Getenv("GOENV"); file != "" {
- if file == "off" {
- return "", fmt.Errorf("GOENV=off")
- }
- return file, nil
- }
- dir, err := os.UserConfigDir()
- if err != nil {
- return "", err
- }
- if dir == "" {
- return "", fmt.Errorf("missing user-config dir")
- }
- return filepath.Join(dir, "go", "env"), nil
- }
- // GetRuntimeEnv returns the value of runtime environment variable,
- // that is set by running following command: `go env -w key=value`.
- func GetRuntimeEnv(key string) (string, error) {
- file, err := envFile()
- if err != nil {
- return "", err
- }
- if file == "" {
- return "", fmt.Errorf("missing runtime env file")
- }
- var data []byte
- var runtimeEnv string
- data, readErr := ioutil.ReadFile(file)
- if readErr != nil {
- return "", readErr
- }
- envStrings := strings.Split(string(data), "\n")
- for _, envItem := range envStrings {
- envItem = strings.TrimSuffix(envItem, "\r")
- envKeyValue := strings.Split(envItem, "=")
- if strings.EqualFold(strings.TrimSpace(envKeyValue[0]), key) {
- runtimeEnv = strings.TrimSpace(envKeyValue[1])
- }
- }
- return runtimeEnv, nil
- }
- // GetGOBIN returns GOBIN environment variable as a string. It will NOT be empty.
- func GetGOBIN() string {
- // The one set by user explicitly by `export GOBIN=/path` or `env GOBIN=/path command`
- GOBIN := os.Getenv("GOBIN")
- if GOBIN == "" {
- var err error
- // The one set by user by running `go env -w GOBIN=/path`
- GOBIN, err = GetRuntimeEnv("GOBIN")
- if err != nil {
- // The default one that Golang uses
- return filepath.Join(build.Default.GOPATH, "bin")
- }
- if GOBIN == "" {
- return filepath.Join(build.Default.GOPATH, "bin")
- }
- return GOBIN
- }
- return GOBIN
- }
- func main() {
- pwd, wdErr := os.Getwd()
- if wdErr != nil {
- fmt.Println("Can not get current working directory.")
- os.Exit(1)
- }
- GOBIN := GetGOBIN()
- binPath := os.Getenv("PATH")
- pathSlice := []string{pwd, GOBIN, binPath}
- binPath = strings.Join(pathSlice, string(os.PathListSeparator))
- os.Setenv("PATH", binPath)
- suffix := ""
- if runtime.GOOS == "windows" {
- suffix = ".exe"
- }
- protoc := "protoc" + suffix
- if path, err := exec.LookPath(protoc); err != nil {
- fmt.Println("Make sure that you have `" + protoc + "` in your system path or current path. To download it, please visit https://github.com/protocolbuffers/protobuf/releases")
- os.Exit(1)
- } else {
- protoc = path
- }
- protoFilesMap := make(map[string][]string)
- walkErr := filepath.Walk("./", func(path string, info os.FileInfo, err error) error {
- if err != nil {
- fmt.Println(err)
- return err
- }
- if info.IsDir() {
- return nil
- }
- dir := filepath.Dir(path)
- filename := filepath.Base(path)
- if strings.HasSuffix(filename, ".proto") {
- protoFilesMap[dir] = append(protoFilesMap[dir], path)
- }
- return nil
- })
- if walkErr != nil {
- fmt.Println(walkErr)
- os.Exit(1)
- }
- for _, files := range protoFilesMap {
- for _, relProtoFile := range files {
- args := []string{
- "--go_out", pwd,
- "--go_opt", "paths=source_relative",
- "--go-grpc_out", pwd,
- "--go-grpc_opt", "paths=source_relative",
- "--plugin", "protoc-gen-go=" + filepath.Join(GOBIN, "protoc-gen-go"+suffix),
- "--plugin", "protoc-gen-go-grpc=" + filepath.Join(GOBIN, "protoc-gen-go-grpc"+suffix),
- }
- args = append(args, relProtoFile)
- cmd := exec.Command(protoc, args...)
- cmd.Env = append(cmd.Env, os.Environ()...)
- output, cmdErr := cmd.CombinedOutput()
- if len(output) > 0 {
- fmt.Println(string(output))
- }
- if cmdErr != nil {
- fmt.Println(cmdErr)
- os.Exit(1)
- }
- }
- }
- }
|