123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386 |
- // Protocol Buffers for Go with Gadgets
- //
- // Copyright (c) 2013, The GoGo Authors. All rights reserved.
- // http://github.com/gogo/protobuf
- //
- // Redistribution and use in source and binary forms, with or without
- // modification, are permitted provided that the following conditions are
- // met:
- //
- // * Redistributions of source code must retain the above copyright
- // notice, this list of conditions and the following disclaimer.
- // * Redistributions in binary form must reproduce the above
- // copyright notice, this list of conditions and the following disclaimer
- // in the documentation and/or other materials provided with the
- // distribution.
- //
- // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- /*
- The gostring plugin generates a GoString method for each message.
- The GoString method is called whenever you use a fmt.Printf as such:
- fmt.Printf("%#v", mymessage)
- or whenever you actually call GoString()
- The output produced by the GoString method can be copied from the output into code and used to set a variable.
- It is totally valid Go Code and is populated exactly as the struct that was printed out.
- It is enabled by the following extensions:
- - gostring
- - gostring_all
- The gostring plugin also generates a test given it is enabled using one of the following extensions:
- - testgen
- - testgen_all
- Let us look at:
- github.com/gogo/protobuf/test/example/example.proto
- Btw all the output can be seen at:
- github.com/gogo/protobuf/test/example/*
- The following message:
- option (gogoproto.gostring_all) = true;
- message A {
- optional string Description = 1 [(gogoproto.nullable) = false];
- optional int64 Number = 2 [(gogoproto.nullable) = false];
- optional bytes Id = 3 [(gogoproto.customtype) = "github.com/gogo/protobuf/test/custom.Uuid", (gogoproto.nullable) = false];
- }
- given to the gostring plugin, will generate the following code:
- func (this *A) GoString() string {
- if this == nil {
- return "nil"
- }
- s := strings1.Join([]string{`&test.A{` + `Description:` + fmt1.Sprintf("%#v", this.Description), `Number:` + fmt1.Sprintf("%#v", this.Number), `Id:` + fmt1.Sprintf("%#v", this.Id), `XXX_unrecognized:` + fmt1.Sprintf("%#v", this.XXX_unrecognized) + `}`}, ", ")
- return s
- }
- and the following test code:
- func TestAGoString(t *testing6.T) {
- popr := math_rand6.New(math_rand6.NewSource(time6.Now().UnixNano()))
- p := NewPopulatedA(popr, false)
- s1 := p.GoString()
- s2 := fmt2.Sprintf("%#v", p)
- if s1 != s2 {
- t.Fatalf("GoString want %v got %v", s1, s2)
- }
- _, err := go_parser.ParseExpr(s1)
- if err != nil {
- panic(err)
- }
- }
- Typically fmt.Printf("%#v") will stop to print when it reaches a pointer and
- not print their values, while the generated GoString method will always print all values, recursively.
- */
- package gostring
- import (
- "fmt"
- "os"
- "strconv"
- "strings"
- "github.com/gogo/protobuf/gogoproto"
- "github.com/gogo/protobuf/protoc-gen-gogo/generator"
- )
- type gostring struct {
- *generator.Generator
- generator.PluginImports
- atleastOne bool
- localName string
- overwrite bool
- }
- func NewGoString() *gostring {
- return &gostring{}
- }
- func (p *gostring) Name() string {
- return "gostring"
- }
- func (p *gostring) Overwrite() {
- p.overwrite = true
- }
- func (p *gostring) Init(g *generator.Generator) {
- p.Generator = g
- }
- func (p *gostring) Generate(file *generator.FileDescriptor) {
- proto3 := gogoproto.IsProto3(file.FileDescriptorProto)
- p.PluginImports = generator.NewPluginImports(p.Generator)
- p.atleastOne = false
- p.localName = generator.FileName(file)
- fmtPkg := p.NewImport("fmt")
- stringsPkg := p.NewImport("strings")
- protoPkg := p.NewImport("github.com/gogo/protobuf/proto")
- if !gogoproto.ImportsGoGoProto(file.FileDescriptorProto) {
- protoPkg = p.NewImport("github.com/golang/protobuf/proto")
- }
- sortPkg := p.NewImport("sort")
- strconvPkg := p.NewImport("strconv")
- reflectPkg := p.NewImport("reflect")
- sortKeysPkg := p.NewImport("github.com/gogo/protobuf/sortkeys")
- extensionToGoStringUsed := false
- for _, message := range file.Messages() {
- if !p.overwrite && !gogoproto.HasGoString(file.FileDescriptorProto, message.DescriptorProto) {
- continue
- }
- if message.DescriptorProto.GetOptions().GetMapEntry() {
- continue
- }
- p.atleastOne = true
- packageName := file.GoPackageName()
- ccTypeName := generator.CamelCaseSlice(message.TypeName())
- p.P(`func (this *`, ccTypeName, `) GoString() string {`)
- p.In()
- p.P(`if this == nil {`)
- p.In()
- p.P(`return "nil"`)
- p.Out()
- p.P(`}`)
- p.P(`s := make([]string, 0, `, strconv.Itoa(len(message.Field)+4), `)`)
- p.P(`s = append(s, "&`, packageName, ".", ccTypeName, `{")`)
- oneofs := make(map[string]struct{})
- for _, field := range message.Field {
- nullable := gogoproto.IsNullable(field)
- repeated := field.IsRepeated()
- fieldname := p.GetFieldName(message, field)
- oneof := field.OneofIndex != nil
- if oneof {
- if _, ok := oneofs[fieldname]; ok {
- continue
- } else {
- oneofs[fieldname] = struct{}{}
- }
- p.P(`if this.`, fieldname, ` != nil {`)
- p.In()
- p.P(`s = append(s, "`, fieldname, `: " + `, fmtPkg.Use(), `.Sprintf("%#v", this.`, fieldname, `) + ",\n")`)
- p.Out()
- p.P(`}`)
- } else if p.IsMap(field) {
- m := p.GoMapType(nil, field)
- mapgoTyp, keyField, keyAliasField := m.GoType, m.KeyField, m.KeyAliasField
- keysName := `keysFor` + fieldname
- keygoTyp, _ := p.GoType(nil, keyField)
- keygoTyp = strings.Replace(keygoTyp, "*", "", 1)
- keygoAliasTyp, _ := p.GoType(nil, keyAliasField)
- keygoAliasTyp = strings.Replace(keygoAliasTyp, "*", "", 1)
- keyCapTyp := generator.CamelCase(keygoTyp)
- p.P(keysName, ` := make([]`, keygoTyp, `, 0, len(this.`, fieldname, `))`)
- p.P(`for k, _ := range this.`, fieldname, ` {`)
- p.In()
- if keygoAliasTyp == keygoTyp {
- p.P(keysName, ` = append(`, keysName, `, k)`)
- } else {
- p.P(keysName, ` = append(`, keysName, `, `, keygoTyp, `(k))`)
- }
- p.Out()
- p.P(`}`)
- p.P(sortKeysPkg.Use(), `.`, keyCapTyp, `s(`, keysName, `)`)
- mapName := `mapStringFor` + fieldname
- p.P(mapName, ` := "`, mapgoTyp, `{"`)
- p.P(`for _, k := range `, keysName, ` {`)
- p.In()
- if keygoAliasTyp == keygoTyp {
- p.P(mapName, ` += fmt.Sprintf("%#v: %#v,", k, this.`, fieldname, `[k])`)
- } else {
- p.P(mapName, ` += fmt.Sprintf("%#v: %#v,", k, this.`, fieldname, `[`, keygoAliasTyp, `(k)])`)
- }
- p.Out()
- p.P(`}`)
- p.P(mapName, ` += "}"`)
- p.P(`if this.`, fieldname, ` != nil {`)
- p.In()
- p.P(`s = append(s, "`, fieldname, `: " + `, mapName, `+ ",\n")`)
- p.Out()
- p.P(`}`)
- } else if (field.IsMessage() && !gogoproto.IsCustomType(field) && !gogoproto.IsStdTime(field) && !gogoproto.IsStdDuration(field)) || p.IsGroup(field) {
- if nullable || repeated {
- p.P(`if this.`, fieldname, ` != nil {`)
- p.In()
- }
- if nullable {
- p.P(`s = append(s, "`, fieldname, `: " + `, fmtPkg.Use(), `.Sprintf("%#v", this.`, fieldname, `) + ",\n")`)
- } else if repeated {
- if nullable {
- p.P(`s = append(s, "`, fieldname, `: " + `, fmtPkg.Use(), `.Sprintf("%#v", this.`, fieldname, `) + ",\n")`)
- } else {
- goTyp, _ := p.GoType(message, field)
- goTyp = strings.Replace(goTyp, "[]", "", 1)
- p.P("vs := make([]*", goTyp, ", len(this.", fieldname, "))")
- p.P("for i := range vs {")
- p.In()
- p.P("vs[i] = &this.", fieldname, "[i]")
- p.Out()
- p.P("}")
- p.P(`s = append(s, "`, fieldname, `: " + `, fmtPkg.Use(), `.Sprintf("%#v", vs) + ",\n")`)
- }
- } else {
- p.P(`s = append(s, "`, fieldname, `: " + `, stringsPkg.Use(), `.Replace(this.`, fieldname, `.GoString()`, ",`&`,``,1)", ` + ",\n")`)
- }
- if nullable || repeated {
- p.Out()
- p.P(`}`)
- }
- } else {
- if !proto3 && (nullable || repeated) {
- p.P(`if this.`, fieldname, ` != nil {`)
- p.In()
- }
- if field.IsEnum() {
- if nullable && !repeated && !proto3 {
- goTyp, _ := p.GoType(message, field)
- p.P(`s = append(s, "`, fieldname, `: " + valueToGoString`, p.localName, `(this.`, fieldname, `,"`, generator.GoTypeToName(goTyp), `"`, `) + ",\n")`)
- } else {
- p.P(`s = append(s, "`, fieldname, `: " + `, fmtPkg.Use(), `.Sprintf("%#v", this.`, fieldname, `) + ",\n")`)
- }
- } else {
- if nullable && !repeated && !proto3 {
- goTyp, _ := p.GoType(message, field)
- p.P(`s = append(s, "`, fieldname, `: " + valueToGoString`, p.localName, `(this.`, fieldname, `,"`, generator.GoTypeToName(goTyp), `"`, `) + ",\n")`)
- } else {
- p.P(`s = append(s, "`, fieldname, `: " + `, fmtPkg.Use(), `.Sprintf("%#v", this.`, fieldname, `) + ",\n")`)
- }
- }
- if !proto3 && (nullable || repeated) {
- p.Out()
- p.P(`}`)
- }
- }
- }
- if message.DescriptorProto.HasExtension() {
- if gogoproto.HasExtensionsMap(file.FileDescriptorProto, message.DescriptorProto) {
- p.P(`s = append(s, "XXX_InternalExtensions: " + extensionToGoString`, p.localName, `(this) + ",\n")`)
- extensionToGoStringUsed = true
- } else {
- p.P(`if this.XXX_extensions != nil {`)
- p.In()
- p.P(`s = append(s, "XXX_extensions: " + `, fmtPkg.Use(), `.Sprintf("%#v", this.XXX_extensions) + ",\n")`)
- p.Out()
- p.P(`}`)
- }
- }
- if gogoproto.HasUnrecognized(file.FileDescriptorProto, message.DescriptorProto) {
- p.P(`if this.XXX_unrecognized != nil {`)
- p.In()
- p.P(`s = append(s, "XXX_unrecognized:" + `, fmtPkg.Use(), `.Sprintf("%#v", this.XXX_unrecognized) + ",\n")`)
- p.Out()
- p.P(`}`)
- }
- p.P(`s = append(s, "}")`)
- p.P(`return `, stringsPkg.Use(), `.Join(s, "")`)
- p.Out()
- p.P(`}`)
- //Generate GoString methods for oneof fields
- for _, field := range message.Field {
- oneof := field.OneofIndex != nil
- if !oneof {
- continue
- }
- ccTypeName := p.OneOfTypeName(message, field)
- p.P(`func (this *`, ccTypeName, `) GoString() string {`)
- p.In()
- p.P(`if this == nil {`)
- p.In()
- p.P(`return "nil"`)
- p.Out()
- p.P(`}`)
- fieldname := p.GetOneOfFieldName(message, field)
- outStr := strings.Join([]string{
- "s := ",
- stringsPkg.Use(), ".Join([]string{`&", packageName, ".", ccTypeName, "{` + \n",
- "`", fieldname, ":` + ", fmtPkg.Use(), `.Sprintf("%#v", this.`, fieldname, `)`,
- " + `}`",
- `}`,
- `,", "`,
- `)`}, "")
- p.P(outStr)
- p.P(`return s`)
- p.Out()
- p.P(`}`)
- }
- }
- if !p.atleastOne {
- return
- }
- p.P(`func valueToGoString`, p.localName, `(v interface{}, typ string) string {`)
- p.In()
- p.P(`rv := `, reflectPkg.Use(), `.ValueOf(v)`)
- p.P(`if rv.IsNil() {`)
- p.In()
- p.P(`return "nil"`)
- p.Out()
- p.P(`}`)
- p.P(`pv := `, reflectPkg.Use(), `.Indirect(rv).Interface()`)
- p.P(`return `, fmtPkg.Use(), `.Sprintf("func(v %v) *%v { return &v } ( %#v )", typ, typ, pv)`)
- p.Out()
- p.P(`}`)
- if extensionToGoStringUsed {
- if !gogoproto.ImportsGoGoProto(file.FileDescriptorProto) {
- fmt.Fprintf(os.Stderr, "The GoString plugin for messages with extensions requires importing gogoprotobuf. Please see file %s", file.GetName())
- os.Exit(1)
- }
- p.P(`func extensionToGoString`, p.localName, `(m `, protoPkg.Use(), `.Message) string {`)
- p.In()
- p.P(`e := `, protoPkg.Use(), `.GetUnsafeExtensionsMap(m)`)
- p.P(`if e == nil { return "nil" }`)
- p.P(`s := "proto.NewUnsafeXXX_InternalExtensions(map[int32]proto.Extension{"`)
- p.P(`keys := make([]int, 0, len(e))`)
- p.P(`for k := range e {`)
- p.In()
- p.P(`keys = append(keys, int(k))`)
- p.Out()
- p.P(`}`)
- p.P(sortPkg.Use(), `.Ints(keys)`)
- p.P(`ss := []string{}`)
- p.P(`for _, k := range keys {`)
- p.In()
- p.P(`ss = append(ss, `, strconvPkg.Use(), `.Itoa(k) + ": " + e[int32(k)].GoString())`)
- p.Out()
- p.P(`}`)
- p.P(`s+=`, stringsPkg.Use(), `.Join(ss, ",") + "})"`)
- p.P(`return s`)
- p.Out()
- p.P(`}`)
- }
- }
- func init() {
- generator.RegisterPlugin(NewGoString())
- }
|