mirror of
https://github.com/chai2010/advanced-go-programming-book.git
synced 2025-05-24 20:52:22 +00:00
68 lines
1.7 KiB
Go
Executable File
68 lines
1.7 KiB
Go
Executable File
// Copyright 2016 Michal Witkowski. All Rights Reserved.
|
|
// See LICENSE for licensing terms.
|
|
|
|
package main
|
|
|
|
import (
|
|
"io/ioutil"
|
|
"os"
|
|
"strconv"
|
|
"strings"
|
|
|
|
"github.com/gogo/protobuf/proto"
|
|
"github.com/gogo/protobuf/protoc-gen-gogo/generator"
|
|
validator_plugin "github.com/mwitkow/go-proto-validators/plugin"
|
|
)
|
|
|
|
func main() {
|
|
gen := generator.New()
|
|
|
|
data, err := ioutil.ReadAll(os.Stdin)
|
|
if err != nil {
|
|
gen.Error(err, "reading input")
|
|
}
|
|
|
|
if err := proto.Unmarshal(data, gen.Request); err != nil {
|
|
gen.Error(err, "parsing input proto")
|
|
}
|
|
|
|
if len(gen.Request.FileToGenerate) == 0 {
|
|
gen.Fail("no files to generate")
|
|
}
|
|
|
|
useGogoImport := false
|
|
// Match parsing algorithm from Generator.CommandLineParameters
|
|
for _, parameter := range strings.Split(gen.Request.GetParameter(), ",") {
|
|
kvp := strings.SplitN(parameter, "=", 2)
|
|
// We only care about key-value pairs where the key is "gogoimport"
|
|
if len(kvp) != 2 || kvp[0] != "gogoimport" {
|
|
continue
|
|
}
|
|
useGogoImport, err = strconv.ParseBool(kvp[1])
|
|
if err != nil {
|
|
gen.Error(err, "parsing gogoimport option")
|
|
}
|
|
}
|
|
|
|
gen.CommandLineParameters(gen.Request.GetParameter())
|
|
|
|
gen.WrapTypes()
|
|
gen.SetPackageNames()
|
|
gen.BuildTypeNameMap()
|
|
gen.GeneratePlugin(validator_plugin.NewPlugin(useGogoImport))
|
|
|
|
for i := 0; i < len(gen.Response.File); i++ {
|
|
gen.Response.File[i].Name = proto.String(strings.Replace(*gen.Response.File[i].Name, ".pb.go", ".validator.pb.go", -1))
|
|
}
|
|
|
|
// Send back the results.
|
|
data, err = proto.Marshal(gen.Response)
|
|
if err != nil {
|
|
gen.Error(err, "failed to marshal output proto")
|
|
}
|
|
_, err = os.Stdout.Write(data)
|
|
if err != nil {
|
|
gen.Error(err, "failed to write output proto")
|
|
}
|
|
}
|