blob: 6bcfebd34d5cfdd2e30f92da17d09d2fc3deb2ec [file] [log] [blame]
Damien Neil220c2022018-08-15 11:24:18 -07001// Copyright 2018 The Go Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style
3// license that can be found in the LICENSE file.
4
Damien Neil1adaec92018-09-24 13:43:03 -07005// Package internal_gengo is internal to the protobuf module.
6package internal_gengo
Damien Neil220c2022018-08-15 11:24:18 -07007
8import (
Damien Neil7779e052018-09-07 14:14:06 -07009 "fmt"
Damien Neil7bf3ce22018-12-21 15:54:06 -080010 "go/ast"
11 "go/parser"
12 "go/token"
Damien Neilebc699d2018-09-13 08:50:13 -070013 "math"
Damien Neil7779e052018-09-07 14:14:06 -070014 "strconv"
Damien Neilcab8dfe2018-09-06 14:51:28 -070015 "strings"
Damien Neil7bf3ce22018-12-21 15:54:06 -080016 "unicode"
17 "unicode/utf8"
Damien Neil7779e052018-09-07 14:14:06 -070018
Joe Tsai05828db2018-11-01 13:52:16 -070019 "github.com/golang/protobuf/v2/internal/encoding/tag"
Joe Tsaica46d8c2019-03-20 16:51:09 -070020 "github.com/golang/protobuf/v2/internal/fieldnum"
Joe Tsai01ab2962018-09-21 17:44:00 -070021 "github.com/golang/protobuf/v2/protogen"
22 "github.com/golang/protobuf/v2/reflect/protoreflect"
Joe Tsaie1f8d502018-11-26 18:55:29 -080023
24 descriptorpb "github.com/golang/protobuf/v2/types/descriptor"
Damien Neil220c2022018-08-15 11:24:18 -070025)
26
Joe Tsai5d72cc22019-03-28 01:13:26 -070027// minimumVersion is minimum version of the v2 proto package that is required.
28// This is incremented every time the generated code relies on some property
29// in the proto package that was introduced in a later version.
30const minimumVersion = 0
31
Joe Tsaic1c17aa2018-11-16 11:14:14 -080032const (
Joe Tsai5d72cc22019-03-28 01:13:26 -070033 syncPackage = protogen.GoImportPath("sync")
Joe Tsai4fddeba2019-03-20 18:29:32 -070034 mathPackage = protogen.GoImportPath("math")
Joe Tsai4fddeba2019-03-20 18:29:32 -070035 protoifacePackage = protogen.GoImportPath("github.com/golang/protobuf/v2/runtime/protoiface")
36 protoimplPackage = protogen.GoImportPath("github.com/golang/protobuf/v2/runtime/protoimpl")
37 protoreflectPackage = protogen.GoImportPath("github.com/golang/protobuf/v2/reflect/protoreflect")
38 protoregistryPackage = protogen.GoImportPath("github.com/golang/protobuf/v2/reflect/protoregistry")
Joe Tsaic1c17aa2018-11-16 11:14:14 -080039)
Damien Neil46abb572018-09-07 12:45:37 -070040
Damien Neild39efc82018-09-24 12:38:10 -070041type fileInfo struct {
Damien Neilcab8dfe2018-09-06 14:51:28 -070042 *protogen.File
Damien Neil8012b442019-01-18 09:32:24 -080043
Joe Tsai9667c482018-12-05 15:42:52 -080044 allEnums []*protogen.Enum
45 allEnumsByPtr map[*protogen.Enum]int // value is index into allEnums
46 allMessages []*protogen.Message
47 allMessagesByPtr map[*protogen.Message]int // value is index into allMessages
48 allExtensions []*protogen.Extension
Damien Neilcab8dfe2018-09-06 14:51:28 -070049}
50
Damien Neil9c420a62018-09-27 15:26:33 -070051// GenerateFile generates the contents of a .pb.go file.
Joe Tsai19058432019-02-27 21:46:29 -080052func GenerateFile(gen *protogen.Plugin, file *protogen.File) *protogen.GeneratedFile {
53 filename := file.GeneratedFilenamePrefix + ".pb.go"
54 g := gen.NewGeneratedFile(filename, file.GoImportPath)
Damien Neild39efc82018-09-24 12:38:10 -070055 f := &fileInfo{
Damien Neilba1159f2018-10-17 12:53:18 -070056 File: file,
Damien Neilcab8dfe2018-09-06 14:51:28 -070057 }
58
Damien Neil8012b442019-01-18 09:32:24 -080059 // Collect all enums, messages, and extensions in "flattened ordering".
60 // See fileinit.FileBuilder.
Joe Tsai9667c482018-12-05 15:42:52 -080061 f.allEnums = append(f.allEnums, f.Enums...)
62 f.allMessages = append(f.allMessages, f.Messages...)
63 f.allExtensions = append(f.allExtensions, f.Extensions...)
64 walkMessages(f.Messages, func(m *protogen.Message) {
65 f.allEnums = append(f.allEnums, m.Enums...)
66 f.allMessages = append(f.allMessages, m.Messages...)
67 f.allExtensions = append(f.allExtensions, m.Extensions...)
Damien Neil73ac8852018-09-17 15:11:24 -070068 })
Damien Neilce36f8d2018-09-13 15:19:08 -070069
Joe Tsai9667c482018-12-05 15:42:52 -080070 // Derive a reverse mapping of enum and message pointers to their index
71 // in allEnums and allMessages.
72 if len(f.allEnums) > 0 {
73 f.allEnumsByPtr = make(map[*protogen.Enum]int)
74 for i, e := range f.allEnums {
75 f.allEnumsByPtr[e] = i
76 }
77 }
78 if len(f.allMessages) > 0 {
79 f.allMessagesByPtr = make(map[*protogen.Message]int)
80 for i, m := range f.allMessages {
81 f.allMessagesByPtr[m] = i
82 }
83 }
Joe Tsaib6405bd2018-11-15 14:44:37 -080084
Damien Neil220c2022018-08-15 11:24:18 -070085 g.P("// Code generated by protoc-gen-go. DO NOT EDIT.")
Damien Neil55fe1c02018-09-17 15:11:24 -070086 if f.Proto.GetOptions().GetDeprecated() {
87 g.P("// ", f.Desc.Path(), " is a deprecated file.")
88 } else {
89 g.P("// source: ", f.Desc.Path())
90 }
Damien Neil220c2022018-08-15 11:24:18 -070091 g.P()
Damien Neilba1159f2018-10-17 12:53:18 -070092 g.PrintLeadingComments(protogen.Location{
93 SourceFile: f.Proto.GetName(),
Joe Tsaica46d8c2019-03-20 16:51:09 -070094 Path: []int32{fieldnum.FileDescriptorProto_Package},
Damien Neilba1159f2018-10-17 12:53:18 -070095 })
Damien Neilcab8dfe2018-09-06 14:51:28 -070096 g.P()
Damien Neil082ce922018-09-06 10:23:53 -070097 g.P("package ", f.GoPackageName)
Damien Neilc7d07d92018-08-22 13:46:02 -070098 g.P()
Damien Neil1ec33152018-09-13 13:12:36 -070099
Joe Tsai5d72cc22019-03-28 01:13:26 -0700100 // Emit a static check that enforces a minimum version of the proto package.
101 g.P("const _ = ", protoimplPackage.Ident("EnforceVersion"), "(", protoimplPackage.Ident("Version"), " - ", minimumVersion, ")")
102 g.P()
103
Damien Neil73ac8852018-09-17 15:11:24 -0700104 for i, imps := 0, f.Desc.Imports(); i < imps.Len(); i++ {
105 genImport(gen, g, f, imps.Get(i))
106 }
Damien Neilce36f8d2018-09-13 15:19:08 -0700107 for _, enum := range f.allEnums {
Damien Neil46abb572018-09-07 12:45:37 -0700108 genEnum(gen, g, f, enum)
109 }
Damien Neilce36f8d2018-09-13 15:19:08 -0700110 for _, message := range f.allMessages {
Damien Neilcab8dfe2018-09-06 14:51:28 -0700111 genMessage(gen, g, f, message)
Damien Neilc7d07d92018-08-22 13:46:02 -0700112 }
Joe Tsaiafb455e2019-03-14 16:08:22 -0700113 genExtensions(gen, g, f)
Damien Neil220c2022018-08-15 11:24:18 -0700114
Joe Tsaib6405bd2018-11-15 14:44:37 -0800115 genReflectFileDescriptor(gen, g, f)
Joe Tsai19058432019-02-27 21:46:29 -0800116
117 return g
Damien Neil7779e052018-09-07 14:14:06 -0700118}
119
Damien Neil73ac8852018-09-17 15:11:24 -0700120// walkMessages calls f on each message and all of its descendants.
121func walkMessages(messages []*protogen.Message, f func(*protogen.Message)) {
122 for _, m := range messages {
123 f(m)
124 walkMessages(m.Messages, f)
125 }
126}
127
Damien Neild39efc82018-09-24 12:38:10 -0700128func genImport(gen *protogen.Plugin, g *protogen.GeneratedFile, f *fileInfo, imp protoreflect.FileImport) {
Damien Neil73ac8852018-09-17 15:11:24 -0700129 impFile, ok := gen.FileByName(imp.Path())
130 if !ok {
131 return
132 }
133 if impFile.GoImportPath == f.GoImportPath {
Damien Neil2e0c3da2018-09-19 12:51:36 -0700134 // Don't generate imports or aliases for types in the same Go package.
135 return
136 }
Damien Neil40a08052018-10-29 09:07:41 -0700137 // Generate imports for all non-weak dependencies, even if they are not
Damien Neil2e0c3da2018-09-19 12:51:36 -0700138 // referenced, because other code and tools depend on having the
139 // full transitive closure of protocol buffer types in the binary.
Damien Neil40a08052018-10-29 09:07:41 -0700140 if !imp.IsWeak {
141 g.Import(impFile.GoImportPath)
142 }
Damien Neil2e0c3da2018-09-19 12:51:36 -0700143 if !imp.IsPublic {
Damien Neil73ac8852018-09-17 15:11:24 -0700144 return
145 }
Damien Neil7bf3ce22018-12-21 15:54:06 -0800146
147 // Generate public imports by generating the imported file, parsing it,
148 // and extracting every symbol that should receive a forwarding declaration.
Joe Tsai19058432019-02-27 21:46:29 -0800149 impGen := GenerateFile(gen, impFile)
Damien Neil7bf3ce22018-12-21 15:54:06 -0800150 impGen.Skip()
Damien Neil7bf3ce22018-12-21 15:54:06 -0800151 b, err := impGen.Content()
152 if err != nil {
153 gen.Error(err)
154 return
155 }
156 fset := token.NewFileSet()
157 astFile, err := parser.ParseFile(fset, "", b, parser.ParseComments)
158 if err != nil {
159 gen.Error(err)
160 return
161 }
Damien Neila7cbd062019-01-06 16:29:14 -0800162 genForward := func(tok token.Token, name string, expr ast.Expr) {
Damien Neil7bf3ce22018-12-21 15:54:06 -0800163 // Don't import unexported symbols.
164 r, _ := utf8.DecodeRuneInString(name)
165 if !unicode.IsUpper(r) {
Damien Neil2193e8d2018-10-09 12:49:13 -0700166 return
167 }
Damien Neil7bf3ce22018-12-21 15:54:06 -0800168 // Don't import the FileDescriptor.
169 if name == impFile.GoDescriptorIdent.GoName {
170 return
171 }
Damien Neila7cbd062019-01-06 16:29:14 -0800172 // Don't import decls referencing a symbol defined in another package.
173 // i.e., don't import decls which are themselves public imports:
174 //
175 // type T = somepackage.T
176 if _, ok := expr.(*ast.SelectorExpr); ok {
177 return
178 }
Damien Neil7bf3ce22018-12-21 15:54:06 -0800179 g.P(tok, " ", name, " = ", impFile.GoImportPath.Ident(name))
180 }
181 g.P("// Symbols defined in public import of ", imp.Path())
182 g.P()
183 for _, decl := range astFile.Decls {
184 switch decl := decl.(type) {
185 case *ast.GenDecl:
186 for _, spec := range decl.Specs {
187 switch spec := spec.(type) {
188 case *ast.TypeSpec:
Damien Neila7cbd062019-01-06 16:29:14 -0800189 genForward(decl.Tok, spec.Name.Name, spec.Type)
Damien Neil7bf3ce22018-12-21 15:54:06 -0800190 case *ast.ValueSpec:
Damien Neila7cbd062019-01-06 16:29:14 -0800191 for i, name := range spec.Names {
192 var expr ast.Expr
193 if i < len(spec.Values) {
194 expr = spec.Values[i]
195 }
196 genForward(decl.Tok, name.Name, expr)
Damien Neil7bf3ce22018-12-21 15:54:06 -0800197 }
198 case *ast.ImportSpec:
199 default:
200 panic(fmt.Sprintf("can't generate forward for spec type %T", spec))
Damien Neil7e5c6472018-11-29 08:57:07 -0800201 }
Damien Neil2193e8d2018-10-09 12:49:13 -0700202 }
Damien Neil2193e8d2018-10-09 12:49:13 -0700203 }
Damien Neil6b541312018-10-29 09:14:14 -0700204 }
Damien Neil2193e8d2018-10-09 12:49:13 -0700205 g.P()
Damien Neilce36f8d2018-09-13 15:19:08 -0700206}
207
Damien Neild39efc82018-09-24 12:38:10 -0700208func genEnum(gen *protogen.Plugin, g *protogen.GeneratedFile, f *fileInfo, enum *protogen.Enum) {
Joe Tsai61968ce2019-04-01 12:59:24 -0700209 // Enum type declaration.
Damien Neilba1159f2018-10-17 12:53:18 -0700210 g.PrintLeadingComments(enum.Location)
Damien Neil162c1272018-10-04 12:42:37 -0700211 g.Annotate(enum.GoIdent.GoName, enum.Location)
Damien Neil55fe1c02018-09-17 15:11:24 -0700212 g.P("type ", enum.GoIdent, " int32",
Joe Tsaie1f8d502018-11-26 18:55:29 -0800213 deprecationComment(enum.Desc.Options().(*descriptorpb.EnumOptions).GetDeprecated()))
Joe Tsai61968ce2019-04-01 12:59:24 -0700214
215 // Enum value constants.
Damien Neil46abb572018-09-07 12:45:37 -0700216 g.P("const (")
217 for _, value := range enum.Values {
Damien Neilba1159f2018-10-17 12:53:18 -0700218 g.PrintLeadingComments(value.Location)
Damien Neil162c1272018-10-04 12:42:37 -0700219 g.Annotate(value.GoIdent.GoName, value.Location)
Damien Neil55fe1c02018-09-17 15:11:24 -0700220 g.P(value.GoIdent, " ", enum.GoIdent, " = ", value.Desc.Number(),
Joe Tsaie1f8d502018-11-26 18:55:29 -0800221 deprecationComment(value.Desc.Options().(*descriptorpb.EnumValueOptions).GetDeprecated()))
Damien Neil46abb572018-09-07 12:45:37 -0700222 }
223 g.P(")")
224 g.P()
Joe Tsaib6405bd2018-11-15 14:44:37 -0800225
Joe Tsai61968ce2019-04-01 12:59:24 -0700226 // Enum value mapping (number -> name).
Damien Neil46abb572018-09-07 12:45:37 -0700227 nameMap := enum.GoIdent.GoName + "_name"
Joe Tsai8e506a82019-03-16 00:05:34 -0700228 g.P("// Deprecated: Use ", enum.GoIdent.GoName, ".Type.Values instead.")
Damien Neil46abb572018-09-07 12:45:37 -0700229 g.P("var ", nameMap, " = map[int32]string{")
230 generated := make(map[protoreflect.EnumNumber]bool)
231 for _, value := range enum.Values {
232 duplicate := ""
233 if _, present := generated[value.Desc.Number()]; present {
234 duplicate = "// Duplicate value: "
235 }
236 g.P(duplicate, value.Desc.Number(), ": ", strconv.Quote(string(value.Desc.Name())), ",")
237 generated[value.Desc.Number()] = true
238 }
239 g.P("}")
240 g.P()
Joe Tsai8e506a82019-03-16 00:05:34 -0700241
Joe Tsai61968ce2019-04-01 12:59:24 -0700242 // Enum value mapping (name -> number).
Damien Neil46abb572018-09-07 12:45:37 -0700243 valueMap := enum.GoIdent.GoName + "_value"
Joe Tsai8e506a82019-03-16 00:05:34 -0700244 g.P("// Deprecated: Use ", enum.GoIdent.GoName, ".Type.Values instead.")
Damien Neil46abb572018-09-07 12:45:37 -0700245 g.P("var ", valueMap, " = map[string]int32{")
246 for _, value := range enum.Values {
247 g.P(strconv.Quote(string(value.Desc.Name())), ": ", value.Desc.Number(), ",")
248 }
249 g.P("}")
250 g.P()
Joe Tsai8e506a82019-03-16 00:05:34 -0700251
Joe Tsai61968ce2019-04-01 12:59:24 -0700252 // Enum method.
Damien Neil46abb572018-09-07 12:45:37 -0700253 if enum.Desc.Syntax() != protoreflect.Proto3 {
254 g.P("func (x ", enum.GoIdent, ") Enum() *", enum.GoIdent, " {")
Joe Tsai09b5b462019-04-10 15:29:01 -0700255 g.P("p := new(", enum.GoIdent, ")")
256 g.P("*p = x")
257 g.P("return p")
Damien Neil46abb572018-09-07 12:45:37 -0700258 g.P("}")
259 g.P()
260 }
Joe Tsai61968ce2019-04-01 12:59:24 -0700261 // String method.
Damien Neil46abb572018-09-07 12:45:37 -0700262 g.P("func (x ", enum.GoIdent, ") String() string {")
Joe Tsai8e506a82019-03-16 00:05:34 -0700263 g.P("return ", protoimplPackage.Ident("X"), ".EnumStringOf(x.Type(), ", protoreflectPackage.Ident("EnumNumber"), "(x))")
Damien Neil46abb572018-09-07 12:45:37 -0700264 g.P("}")
265 g.P()
266
Joe Tsai61968ce2019-04-01 12:59:24 -0700267 genReflectEnum(gen, g, f, enum)
268
269 // UnmarshalJSON method.
Joe Tsai73903462018-12-14 12:22:41 -0800270 if enum.Desc.Syntax() == protoreflect.Proto2 {
Joe Tsai8e506a82019-03-16 00:05:34 -0700271 g.P("// Deprecated: Do not use.")
272 g.P("func (x *", enum.GoIdent, ") UnmarshalJSON(b []byte) error {")
273 g.P("num, err := ", protoimplPackage.Ident("X"), ".UnmarshalJSONEnum(x.Type(), b)")
Damien Neil46abb572018-09-07 12:45:37 -0700274 g.P("if err != nil {")
275 g.P("return err")
276 g.P("}")
Joe Tsai8e506a82019-03-16 00:05:34 -0700277 g.P("*x = ", enum.GoIdent, "(num)")
Damien Neil46abb572018-09-07 12:45:37 -0700278 g.P("return nil")
279 g.P("}")
280 g.P()
281 }
282
Joe Tsai61968ce2019-04-01 12:59:24 -0700283 // EnumDescriptor method.
Damien Neil46abb572018-09-07 12:45:37 -0700284 var indexes []string
Damien Neil162c1272018-10-04 12:42:37 -0700285 for i := 1; i < len(enum.Location.Path); i += 2 {
286 indexes = append(indexes, strconv.Itoa(int(enum.Location.Path[i])))
Damien Neil46abb572018-09-07 12:45:37 -0700287 }
Joe Tsai8e506a82019-03-16 00:05:34 -0700288 g.P("// Deprecated: Use ", enum.GoIdent, ".Type instead.")
Damien Neil46abb572018-09-07 12:45:37 -0700289 g.P("func (", enum.GoIdent, ") EnumDescriptor() ([]byte, []int) {")
Joe Tsai5d72cc22019-03-28 01:13:26 -0700290 g.P("return ", rawDescVarName(f), "GZIP(), []int{", strings.Join(indexes, ","), "}")
Damien Neil46abb572018-09-07 12:45:37 -0700291 g.P("}")
292 g.P()
293
Damien Neilea7baf42018-09-28 14:23:44 -0700294 genWellKnownType(g, "", enum.GoIdent, enum.Desc)
Damien Neil46abb572018-09-07 12:45:37 -0700295}
296
Joe Tsai61968ce2019-04-01 12:59:24 -0700297// enumLegacyName returns the name used by the v1 proto package.
Damien Neil658051b2018-09-10 12:26:21 -0700298//
299// Confusingly, this is <proto_package>.<go_ident>. This probably should have
300// been the full name of the proto enum type instead, but changing it at this
301// point would require thought.
Joe Tsai61968ce2019-04-01 12:59:24 -0700302func enumLegacyName(enum *protogen.Enum) string {
Damien Neil658051b2018-09-10 12:26:21 -0700303 // Find the FileDescriptor for this enum.
304 var desc protoreflect.Descriptor = enum.Desc
305 for {
306 p, ok := desc.Parent()
307 if !ok {
308 break
309 }
310 desc = p
311 }
312 fdesc := desc.(protoreflect.FileDescriptor)
Damien Neildaa4fad2018-10-08 14:08:27 -0700313 if fdesc.Package() == "" {
314 return enum.GoIdent.GoName
315 }
Damien Neil658051b2018-09-10 12:26:21 -0700316 return string(fdesc.Package()) + "." + enum.GoIdent.GoName
317}
318
Damien Neild39efc82018-09-24 12:38:10 -0700319func genMessage(gen *protogen.Plugin, g *protogen.GeneratedFile, f *fileInfo, message *protogen.Message) {
Damien Neil0bd5a382018-09-13 15:07:10 -0700320 if message.Desc.IsMapEntry() {
321 return
322 }
323
Joe Tsai61968ce2019-04-01 12:59:24 -0700324 // Message type declaration.
Damien Neilba1159f2018-10-17 12:53:18 -0700325 hasComment := g.PrintLeadingComments(message.Location)
Joe Tsaie1f8d502018-11-26 18:55:29 -0800326 if message.Desc.Options().(*descriptorpb.MessageOptions).GetDeprecated() {
Damien Neil55fe1c02018-09-17 15:11:24 -0700327 if hasComment {
328 g.P("//")
329 }
330 g.P(deprecationComment(true))
331 }
Damien Neil162c1272018-10-04 12:42:37 -0700332 g.Annotate(message.GoIdent.GoName, message.Location)
Damien Neilcab8dfe2018-09-06 14:51:28 -0700333 g.P("type ", message.GoIdent, " struct {")
Damien Neil658051b2018-09-10 12:26:21 -0700334 for _, field := range message.Fields {
Damien Neil1fa78d82018-09-13 13:12:36 -0700335 if field.OneofType != nil {
336 // It would be a bit simpler to iterate over the oneofs below,
337 // but generating the field here keeps the contents of the Go
338 // struct in the same order as the contents of the source
339 // .proto file.
340 if field == field.OneofType.Fields[0] {
341 genOneofField(gen, g, f, message, field.OneofType)
342 }
Damien Neil658051b2018-09-10 12:26:21 -0700343 continue
344 }
Damien Neilba1159f2018-10-17 12:53:18 -0700345 g.PrintLeadingComments(field.Location)
Damien Neil77f82fe2018-09-13 10:59:17 -0700346 goType, pointer := fieldGoType(g, field)
347 if pointer {
348 goType = "*" + goType
349 }
Damien Neil0bd5a382018-09-13 15:07:10 -0700350 tags := []string{
351 fmt.Sprintf("protobuf:%q", fieldProtobufTag(field)),
352 fmt.Sprintf("json:%q", fieldJSONTag(field)),
353 }
354 if field.Desc.IsMap() {
355 key := field.MessageType.Fields[0]
356 val := field.MessageType.Fields[1]
357 tags = append(tags,
358 fmt.Sprintf("protobuf_key:%q", fieldProtobufTag(key)),
359 fmt.Sprintf("protobuf_val:%q", fieldProtobufTag(val)),
360 )
361 }
Damien Neil162c1272018-10-04 12:42:37 -0700362 g.Annotate(message.GoIdent.GoName+"."+field.GoName, field.Location)
Damien Neil55fe1c02018-09-17 15:11:24 -0700363 g.P(field.GoName, " ", goType, " `", strings.Join(tags, " "), "`",
Joe Tsaie1f8d502018-11-26 18:55:29 -0800364 deprecationComment(field.Desc.Options().(*descriptorpb.FieldOptions).GetDeprecated()))
Damien Neil658051b2018-09-10 12:26:21 -0700365 }
366 g.P("XXX_NoUnkeyedLiteral struct{} `json:\"-\"`")
Damien Neil993c04d2018-09-14 15:41:11 -0700367
368 if message.Desc.ExtensionRanges().Len() > 0 {
369 var tags []string
Joe Tsaie1f8d502018-11-26 18:55:29 -0800370 if message.Desc.Options().(*descriptorpb.MessageOptions).GetMessageSetWireFormat() {
Damien Neil993c04d2018-09-14 15:41:11 -0700371 tags = append(tags, `protobuf_messageset:"1"`)
372 }
373 tags = append(tags, `json:"-"`)
Joe Tsai5e71dc92019-04-16 13:22:20 -0700374 g.P("XXX_InternalExtensions ", protoimplPackage.Ident("ExtensionFields"), " `", strings.Join(tags, " "), "`")
Damien Neil993c04d2018-09-14 15:41:11 -0700375 }
Joe Tsai5e71dc92019-04-16 13:22:20 -0700376 g.P("XXX_unrecognized ", protoimplPackage.Ident("UnknownFields"), " `json:\"-\"`")
377 g.P("XXX_sizecache ", protoimplPackage.Ident("SizeCache"), " `json:\"-\"`")
Damien Neilc7d07d92018-08-22 13:46:02 -0700378 g.P("}")
379 g.P()
380
Joe Tsai61968ce2019-04-01 12:59:24 -0700381 // Reset method.
382 g.P("func (x *", message.GoIdent, ") Reset() {")
383 g.P("*x = ", message.GoIdent, "{}")
384 g.P("}")
385 g.P()
386 // String method.
387 g.P("func (x *", message.GoIdent, ") String() string {")
388 g.P("return ", protoimplPackage.Ident("X"), ".MessageStringOf(x)")
389 g.P("}")
390 g.P()
391 // ProtoMessage method.
392 g.P("func (*", message.GoIdent, ") ProtoMessage() {}")
393 g.P()
394
Joe Tsaib6405bd2018-11-15 14:44:37 -0800395 genReflectMessage(gen, g, f, message)
396
Joe Tsai61968ce2019-04-01 12:59:24 -0700397 // Descriptor method.
Damien Neila1c6abc2018-09-12 13:36:34 -0700398 var indexes []string
Damien Neil162c1272018-10-04 12:42:37 -0700399 for i := 1; i < len(message.Location.Path); i += 2 {
400 indexes = append(indexes, strconv.Itoa(int(message.Location.Path[i])))
Damien Neila1c6abc2018-09-12 13:36:34 -0700401 }
Joe Tsai8e506a82019-03-16 00:05:34 -0700402 g.P("// Deprecated: Use ", message.GoIdent, ".ProtoReflect.Type instead.")
Damien Neila1c6abc2018-09-12 13:36:34 -0700403 g.P("func (*", message.GoIdent, ") Descriptor() ([]byte, []int) {")
Joe Tsai5d72cc22019-03-28 01:13:26 -0700404 g.P("return ", rawDescVarName(f), "GZIP(), []int{", strings.Join(indexes, ","), "}")
Damien Neila1c6abc2018-09-12 13:36:34 -0700405 g.P("}")
Damien Neil993c04d2018-09-14 15:41:11 -0700406 g.P()
407
Joe Tsai61968ce2019-04-01 12:59:24 -0700408 // ExtensionRangeArray method.
Damien Neil993c04d2018-09-14 15:41:11 -0700409 if extranges := message.Desc.ExtensionRanges(); extranges.Len() > 0 {
Joe Tsai4fddeba2019-03-20 18:29:32 -0700410 protoExtRange := protoifacePackage.Ident("ExtensionRangeV1")
Damien Neil993c04d2018-09-14 15:41:11 -0700411 extRangeVar := "extRange_" + message.GoIdent.GoName
412 g.P("var ", extRangeVar, " = []", protoExtRange, " {")
413 for i := 0; i < extranges.Len(); i++ {
414 r := extranges.Get(i)
415 g.P("{Start:", r[0], ", End:", r[1]-1 /* inclusive */, "},")
416 }
417 g.P("}")
418 g.P()
Joe Tsai8e506a82019-03-16 00:05:34 -0700419 g.P("// Deprecated: Use ", message.GoIdent, ".ProtoReflect.Type.ExtensionRanges instead.")
Damien Neil993c04d2018-09-14 15:41:11 -0700420 g.P("func (*", message.GoIdent, ") ExtensionRangeArray() []", protoExtRange, " {")
421 g.P("return ", extRangeVar)
422 g.P("}")
423 g.P()
424 }
Damien Neila1c6abc2018-09-12 13:36:34 -0700425
Damien Neilea7baf42018-09-28 14:23:44 -0700426 genWellKnownType(g, "*", message.GoIdent, message.Desc)
427
Damien Neilebc699d2018-09-13 08:50:13 -0700428 // Constants and vars holding the default values of fields.
429 for _, field := range message.Fields {
Joe Tsai9667c482018-12-05 15:42:52 -0800430 if !field.Desc.HasDefault() {
Damien Neilebc699d2018-09-13 08:50:13 -0700431 continue
432 }
Damien Neil1fa78d82018-09-13 13:12:36 -0700433 defVarName := "Default_" + message.GoIdent.GoName + "_" + field.GoName
Damien Neilebc699d2018-09-13 08:50:13 -0700434 def := field.Desc.Default()
435 switch field.Desc.Kind() {
436 case protoreflect.StringKind:
437 g.P("const ", defVarName, " string = ", strconv.Quote(def.String()))
438 case protoreflect.BytesKind:
439 g.P("var ", defVarName, " []byte = []byte(", strconv.Quote(string(def.Bytes())), ")")
440 case protoreflect.EnumKind:
Damien Neila485fbd2018-10-26 13:28:37 -0700441 evalueDesc := field.Desc.DefaultEnumValue()
Damien Neilebc699d2018-09-13 08:50:13 -0700442 enum := field.EnumType
Damien Neila485fbd2018-10-26 13:28:37 -0700443 evalue := enum.Values[evalueDesc.Index()]
Damien Neilebc699d2018-09-13 08:50:13 -0700444 g.P("const ", defVarName, " ", field.EnumType.GoIdent, " = ", evalue.GoIdent)
445 case protoreflect.FloatKind, protoreflect.DoubleKind:
446 // Floating point numbers need extra handling for -Inf/Inf/NaN.
447 f := field.Desc.Default().Float()
448 goType := "float64"
449 if field.Desc.Kind() == protoreflect.FloatKind {
450 goType = "float32"
451 }
452 // funcCall returns a call to a function in the math package,
453 // possibly converting the result to float32.
454 funcCall := func(fn, param string) string {
Joe Tsaic1c17aa2018-11-16 11:14:14 -0800455 s := g.QualifiedGoIdent(mathPackage.Ident(fn)) + param
Damien Neilebc699d2018-09-13 08:50:13 -0700456 if goType != "float64" {
457 s = goType + "(" + s + ")"
458 }
459 return s
460 }
461 switch {
462 case math.IsInf(f, -1):
463 g.P("var ", defVarName, " ", goType, " = ", funcCall("Inf", "(-1)"))
464 case math.IsInf(f, 1):
465 g.P("var ", defVarName, " ", goType, " = ", funcCall("Inf", "(1)"))
466 case math.IsNaN(f):
467 g.P("var ", defVarName, " ", goType, " = ", funcCall("NaN", "()"))
468 default:
Damien Neil982684b2018-09-28 14:12:41 -0700469 g.P("const ", defVarName, " ", goType, " = ", field.Desc.Default().Interface())
Damien Neilebc699d2018-09-13 08:50:13 -0700470 }
471 default:
Damien Neil77f82fe2018-09-13 10:59:17 -0700472 goType, _ := fieldGoType(g, field)
Damien Neilebc699d2018-09-13 08:50:13 -0700473 g.P("const ", defVarName, " ", goType, " = ", def.Interface())
474 }
475 }
476 g.P()
477
Joe Tsai61968ce2019-04-01 12:59:24 -0700478 // Getter methods.
Damien Neil77f82fe2018-09-13 10:59:17 -0700479 for _, field := range message.Fields {
Joe Tsai872b5002019-04-08 14:03:15 -0700480 if isFirstOneofField(field) {
481 genOneofGetter(gen, g, f, message, field.OneofType)
Damien Neil1fa78d82018-09-13 13:12:36 -0700482 }
Damien Neil77f82fe2018-09-13 10:59:17 -0700483 goType, pointer := fieldGoType(g, field)
484 defaultValue := fieldDefaultValue(g, message, field)
Joe Tsaie1f8d502018-11-26 18:55:29 -0800485 if field.Desc.Options().(*descriptorpb.FieldOptions).GetDeprecated() {
Damien Neil55fe1c02018-09-17 15:11:24 -0700486 g.P(deprecationComment(true))
487 }
Damien Neil162c1272018-10-04 12:42:37 -0700488 g.Annotate(message.GoIdent.GoName+".Get"+field.GoName, field.Location)
Joe Tsai61968ce2019-04-01 12:59:24 -0700489 g.P("func (x *", message.GoIdent, ") Get", field.GoName, "() ", goType, " {")
Damien Neil1fa78d82018-09-13 13:12:36 -0700490 if field.OneofType != nil {
Joe Tsai61968ce2019-04-01 12:59:24 -0700491 g.P("if x, ok := x.Get", field.OneofType.GoName, "().(*", fieldOneofType(field), "); ok {")
Damien Neil1fa78d82018-09-13 13:12:36 -0700492 g.P("return x.", field.GoName)
493 g.P("}")
Damien Neil77f82fe2018-09-13 10:59:17 -0700494 } else {
Damien Neil1fa78d82018-09-13 13:12:36 -0700495 if field.Desc.Syntax() == protoreflect.Proto3 || defaultValue == "nil" {
Joe Tsai61968ce2019-04-01 12:59:24 -0700496 g.P("if x != nil {")
Damien Neil1fa78d82018-09-13 13:12:36 -0700497 } else {
Joe Tsai61968ce2019-04-01 12:59:24 -0700498 g.P("if x != nil && x.", field.GoName, " != nil {")
Damien Neil1fa78d82018-09-13 13:12:36 -0700499 }
500 star := ""
501 if pointer {
502 star = "*"
503 }
Joe Tsai61968ce2019-04-01 12:59:24 -0700504 g.P("return ", star, " x.", field.GoName)
Damien Neil1fa78d82018-09-13 13:12:36 -0700505 g.P("}")
Damien Neil77f82fe2018-09-13 10:59:17 -0700506 }
Damien Neil77f82fe2018-09-13 10:59:17 -0700507 g.P("return ", defaultValue)
508 g.P("}")
509 g.P()
510 }
Damien Neila1c6abc2018-09-12 13:36:34 -0700511
Joe Tsai872b5002019-04-08 14:03:15 -0700512 // XXX_OneofWrappers method.
Damien Neil1fa78d82018-09-13 13:12:36 -0700513 if len(message.Oneofs) > 0 {
Joe Tsaid7e97bc2018-11-26 12:57:27 -0800514 genOneofWrappers(gen, g, f, message)
Damien Neil1fa78d82018-09-13 13:12:36 -0700515 }
Joe Tsai872b5002019-04-08 14:03:15 -0700516
517 // Oneof wrapper types.
518 for _, oneof := range message.Oneofs {
519 genOneofTypes(gen, g, f, message, oneof)
520 }
Damien Neilc7d07d92018-08-22 13:46:02 -0700521}
Damien Neilcab8dfe2018-09-06 14:51:28 -0700522
Damien Neil77f82fe2018-09-13 10:59:17 -0700523// fieldGoType returns the Go type used for a field.
524//
525// If it returns pointer=true, the struct field is a pointer to the type.
526func fieldGoType(g *protogen.GeneratedFile, field *protogen.Field) (goType string, pointer bool) {
Damien Neil77f82fe2018-09-13 10:59:17 -0700527 pointer = true
Damien Neil658051b2018-09-10 12:26:21 -0700528 switch field.Desc.Kind() {
529 case protoreflect.BoolKind:
Damien Neil77f82fe2018-09-13 10:59:17 -0700530 goType = "bool"
Damien Neil658051b2018-09-10 12:26:21 -0700531 case protoreflect.EnumKind:
Damien Neil77f82fe2018-09-13 10:59:17 -0700532 goType = g.QualifiedGoIdent(field.EnumType.GoIdent)
Damien Neil658051b2018-09-10 12:26:21 -0700533 case protoreflect.Int32Kind, protoreflect.Sint32Kind, protoreflect.Sfixed32Kind:
Damien Neil77f82fe2018-09-13 10:59:17 -0700534 goType = "int32"
Damien Neil658051b2018-09-10 12:26:21 -0700535 case protoreflect.Uint32Kind, protoreflect.Fixed32Kind:
Damien Neil77f82fe2018-09-13 10:59:17 -0700536 goType = "uint32"
Damien Neil658051b2018-09-10 12:26:21 -0700537 case protoreflect.Int64Kind, protoreflect.Sint64Kind, protoreflect.Sfixed64Kind:
Damien Neil77f82fe2018-09-13 10:59:17 -0700538 goType = "int64"
Damien Neil658051b2018-09-10 12:26:21 -0700539 case protoreflect.Uint64Kind, protoreflect.Fixed64Kind:
Damien Neil77f82fe2018-09-13 10:59:17 -0700540 goType = "uint64"
Damien Neil658051b2018-09-10 12:26:21 -0700541 case protoreflect.FloatKind:
Damien Neil77f82fe2018-09-13 10:59:17 -0700542 goType = "float32"
Damien Neil658051b2018-09-10 12:26:21 -0700543 case protoreflect.DoubleKind:
Damien Neil77f82fe2018-09-13 10:59:17 -0700544 goType = "float64"
Damien Neil658051b2018-09-10 12:26:21 -0700545 case protoreflect.StringKind:
Damien Neil77f82fe2018-09-13 10:59:17 -0700546 goType = "string"
Damien Neil658051b2018-09-10 12:26:21 -0700547 case protoreflect.BytesKind:
Damien Neil77f82fe2018-09-13 10:59:17 -0700548 goType = "[]byte"
549 pointer = false
Damien Neil658051b2018-09-10 12:26:21 -0700550 case protoreflect.MessageKind, protoreflect.GroupKind:
Damien Neil0bd5a382018-09-13 15:07:10 -0700551 if field.Desc.IsMap() {
552 keyType, _ := fieldGoType(g, field.MessageType.Fields[0])
553 valType, _ := fieldGoType(g, field.MessageType.Fields[1])
554 return fmt.Sprintf("map[%v]%v", keyType, valType), false
555 }
Damien Neil77f82fe2018-09-13 10:59:17 -0700556 goType = "*" + g.QualifiedGoIdent(field.MessageType.GoIdent)
557 pointer = false
Damien Neil658051b2018-09-10 12:26:21 -0700558 }
559 if field.Desc.Cardinality() == protoreflect.Repeated {
Damien Neil77f82fe2018-09-13 10:59:17 -0700560 goType = "[]" + goType
561 pointer = false
Damien Neil658051b2018-09-10 12:26:21 -0700562 }
Damien Neil44000a12018-10-24 12:31:16 -0700563 // Extension fields always have pointer type, even when defined in a proto3 file.
564 if field.Desc.Syntax() == protoreflect.Proto3 && field.Desc.ExtendedType() == nil {
Damien Neil77f82fe2018-09-13 10:59:17 -0700565 pointer = false
Damien Neil658051b2018-09-10 12:26:21 -0700566 }
Damien Neil77f82fe2018-09-13 10:59:17 -0700567 return goType, pointer
Damien Neil658051b2018-09-10 12:26:21 -0700568}
569
570func fieldProtobufTag(field *protogen.Field) string {
Joe Tsai05828db2018-11-01 13:52:16 -0700571 var enumName string
Damien Neil658051b2018-09-10 12:26:21 -0700572 if field.Desc.Kind() == protoreflect.EnumKind {
Joe Tsai61968ce2019-04-01 12:59:24 -0700573 enumName = enumLegacyName(field.EnumType)
Damien Neil658051b2018-09-10 12:26:21 -0700574 }
Joe Tsai05828db2018-11-01 13:52:16 -0700575 return tag.Marshal(field.Desc, enumName)
Damien Neil658051b2018-09-10 12:26:21 -0700576}
577
Damien Neil77f82fe2018-09-13 10:59:17 -0700578func fieldDefaultValue(g *protogen.GeneratedFile, message *protogen.Message, field *protogen.Field) string {
579 if field.Desc.Cardinality() == protoreflect.Repeated {
580 return "nil"
581 }
Joe Tsai9667c482018-12-05 15:42:52 -0800582 if field.Desc.HasDefault() {
Damien Neil1fa78d82018-09-13 13:12:36 -0700583 defVarName := "Default_" + message.GoIdent.GoName + "_" + field.GoName
Damien Neil77f82fe2018-09-13 10:59:17 -0700584 if field.Desc.Kind() == protoreflect.BytesKind {
585 return "append([]byte(nil), " + defVarName + "...)"
586 }
587 return defVarName
588 }
589 switch field.Desc.Kind() {
590 case protoreflect.BoolKind:
591 return "false"
592 case protoreflect.StringKind:
593 return `""`
594 case protoreflect.MessageKind, protoreflect.GroupKind, protoreflect.BytesKind:
595 return "nil"
596 case protoreflect.EnumKind:
597 return g.QualifiedGoIdent(field.EnumType.Values[0].GoIdent)
598 default:
599 return "0"
600 }
601}
602
Damien Neil658051b2018-09-10 12:26:21 -0700603func fieldJSONTag(field *protogen.Field) string {
604 return string(field.Desc.Name()) + ",omitempty"
605}
606
Joe Tsaiafb455e2019-03-14 16:08:22 -0700607func genExtensions(gen *protogen.Plugin, g *protogen.GeneratedFile, f *fileInfo) {
608 if len(f.allExtensions) == 0 {
609 return
Damien Neil154da982018-09-19 13:21:58 -0700610 }
611
Joe Tsai4fddeba2019-03-20 18:29:32 -0700612 g.P("var ", extDecsVarName(f), " = []", protoifacePackage.Ident("ExtensionDescV1"), "{")
Joe Tsaiafb455e2019-03-14 16:08:22 -0700613 for _, extension := range f.allExtensions {
614 // Special case for proto2 message sets: If this extension is extending
615 // proto2.bridge.MessageSet, and its final name component is "message_set_extension",
616 // then drop that last component.
617 //
618 // TODO: This should be implemented in the text formatter rather than the generator.
619 // In addition, the situation for when to apply this special case is implemented
620 // differently in other languages:
621 // https://github.com/google/protobuf/blob/aff10976/src/google/protobuf/text_format.cc#L1560
622 name := extension.Desc.FullName()
623 if n, ok := isExtensionMessageSetElement(extension); ok {
624 name = n
625 }
626
627 g.P("{")
628 g.P("ExtendedType: (*", extension.ExtendedType.GoIdent, ")(nil),")
629 goType, pointer := fieldGoType(g, extension)
630 if pointer {
631 goType = "*" + goType
632 }
633 g.P("ExtensionType: (", goType, ")(nil),")
634 g.P("Field: ", extension.Desc.Number(), ",")
635 g.P("Name: ", strconv.Quote(string(name)), ",")
636 g.P("Tag: ", strconv.Quote(fieldProtobufTag(extension)), ",")
637 g.P("Filename: ", strconv.Quote(f.Desc.Path()), ",")
638 g.P("},")
Damien Neil993c04d2018-09-14 15:41:11 -0700639 }
Damien Neil993c04d2018-09-14 15:41:11 -0700640 g.P("}")
Joe Tsaiafb455e2019-03-14 16:08:22 -0700641
642 g.P("var (")
643 for i, extension := range f.allExtensions {
644 ed := extension.Desc
645 targetName := string(ed.ExtendedType().FullName())
646 typeName := ed.Kind().String()
647 switch ed.Kind() {
648 case protoreflect.EnumKind:
649 typeName = string(ed.EnumType().FullName())
650 case protoreflect.MessageKind, protoreflect.GroupKind:
651 typeName = string(ed.MessageType().FullName())
652 }
653 fieldName := string(ed.Name())
654 g.P("// extend ", targetName, " { ", ed.Cardinality().String(), " ", typeName, " ", fieldName, " = ", ed.Number(), "; }")
655 g.P(extensionVar(f.File, extension), " = &", extDecsVarName(f), "[", i, "]")
656 g.P()
657 }
658 g.P(")")
Damien Neil993c04d2018-09-14 15:41:11 -0700659}
660
Damien Neil62386962018-10-30 10:35:48 -0700661// isExtensionMessageSetELement returns the adjusted name of an extension
662// which extends proto2.bridge.MessageSet.
663func isExtensionMessageSetElement(extension *protogen.Extension) (name protoreflect.FullName, ok bool) {
Joe Tsaie1f8d502018-11-26 18:55:29 -0800664 opts := extension.ExtendedType.Desc.Options().(*descriptorpb.MessageOptions)
Damien Neil62386962018-10-30 10:35:48 -0700665 if !opts.GetMessageSetWireFormat() || extension.Desc.Name() != "message_set_extension" {
666 return "", false
667 }
668 if extension.ParentMessage == nil {
669 // This case shouldn't be given special handling at all--we're
670 // only supposed to drop the ".message_set_extension" for
671 // extensions defined within a message (i.e., the extension
672 // takes the message's name).
673 //
674 // This matches the behavior of the v1 generator, however.
675 //
676 // TODO: See if we can drop this case.
677 name = extension.Desc.FullName()
678 name = name[:len(name)-len("message_set_extension")]
679 return name, true
680 }
681 return extension.Desc.FullName().Parent(), true
Damien Neil154da982018-09-19 13:21:58 -0700682}
683
Damien Neil993c04d2018-09-14 15:41:11 -0700684// extensionVar returns the var holding the ExtensionDesc for an extension.
Damien Neil6b541312018-10-29 09:14:14 -0700685func extensionVar(f *protogen.File, extension *protogen.Extension) protogen.GoIdent {
Damien Neil993c04d2018-09-14 15:41:11 -0700686 name := "E_"
687 if extension.ParentMessage != nil {
688 name += extension.ParentMessage.GoIdent.GoName + "_"
689 }
690 name += extension.GoName
Joe Tsaic1c17aa2018-11-16 11:14:14 -0800691 return f.GoImportPath.Ident(name)
Damien Neil993c04d2018-09-14 15:41:11 -0700692}
693
Damien Neil55fe1c02018-09-17 15:11:24 -0700694// deprecationComment returns a standard deprecation comment if deprecated is true.
695func deprecationComment(deprecated bool) string {
696 if !deprecated {
697 return ""
698 }
699 return "// Deprecated: Do not use."
700}
701
Joe Tsai61968ce2019-04-01 12:59:24 -0700702// TODO: Remove this. This was added to aid jsonpb, but jsonpb does this work
703// through the use of protobuf reflection now.
Damien Neilea7baf42018-09-28 14:23:44 -0700704func genWellKnownType(g *protogen.GeneratedFile, ptr string, ident protogen.GoIdent, desc protoreflect.Descriptor) {
Damien Neil46abb572018-09-07 12:45:37 -0700705 if wellKnownTypes[desc.FullName()] {
Damien Neilea7baf42018-09-28 14:23:44 -0700706 g.P("func (", ptr, ident, `) XXX_WellKnownType() string { return "`, desc.Name(), `" }`)
Damien Neil46abb572018-09-07 12:45:37 -0700707 g.P()
708 }
709}
710
711// Names of messages and enums for which we will generate XXX_WellKnownType methods.
712var wellKnownTypes = map[protoreflect.FullName]bool{
Damien Neilea7baf42018-09-28 14:23:44 -0700713 "google.protobuf.Any": true,
714 "google.protobuf.Duration": true,
715 "google.protobuf.Empty": true,
716 "google.protobuf.Struct": true,
717 "google.protobuf.Timestamp": true,
718
719 "google.protobuf.BoolValue": true,
720 "google.protobuf.BytesValue": true,
721 "google.protobuf.DoubleValue": true,
722 "google.protobuf.FloatValue": true,
723 "google.protobuf.Int32Value": true,
724 "google.protobuf.Int64Value": true,
725 "google.protobuf.ListValue": true,
726 "google.protobuf.NullValue": true,
727 "google.protobuf.StringValue": true,
728 "google.protobuf.UInt32Value": true,
729 "google.protobuf.UInt64Value": true,
730 "google.protobuf.Value": true,
Damien Neil46abb572018-09-07 12:45:37 -0700731}
Joe Tsaid7e97bc2018-11-26 12:57:27 -0800732
733// genOneofField generates the struct field for a oneof.
734func genOneofField(gen *protogen.Plugin, g *protogen.GeneratedFile, f *fileInfo, message *protogen.Message, oneof *protogen.Oneof) {
735 if g.PrintLeadingComments(oneof.Location) {
736 g.P("//")
737 }
738 g.P("// Types that are valid to be assigned to ", oneofFieldName(oneof), ":")
739 for _, field := range oneof.Fields {
740 g.PrintLeadingComments(field.Location)
741 g.P("//\t*", fieldOneofType(field))
742 }
743 g.Annotate(message.GoIdent.GoName+"."+oneofFieldName(oneof), oneof.Location)
744 g.P(oneofFieldName(oneof), " ", oneofInterfaceName(oneof), " `protobuf_oneof:\"", oneof.Desc.Name(), "\"`")
745}
746
Joe Tsai872b5002019-04-08 14:03:15 -0700747// genOneofGetter generate a Get method for a oneof.
748func genOneofGetter(gen *protogen.Plugin, g *protogen.GeneratedFile, f *fileInfo, message *protogen.Message, oneof *protogen.Oneof) {
749 g.Annotate(message.GoIdent.GoName+".Get"+oneof.GoName, oneof.Location)
750 g.P("func (m *", message.GoIdent.GoName, ") Get", oneof.GoName, "() ", oneofInterfaceName(oneof), " {")
751 g.P("if m != nil {")
752 g.P("return m.", oneofFieldName(oneof))
753 g.P("}")
754 g.P("return nil")
755 g.P("}")
756 g.P()
757}
758
759// genOneofWrappers generates the XXX_OneofWrappers method for a message.
760func genOneofWrappers(gen *protogen.Plugin, g *protogen.GeneratedFile, f *fileInfo, message *protogen.Message) {
761 g.P("// XXX_OneofWrappers is for the internal use of the proto package.")
762 g.P("func (*", message.GoIdent.GoName, ") XXX_OneofWrappers() []interface{} {")
763 g.P("return []interface{}{")
764 for _, oneof := range message.Oneofs {
765 for _, field := range oneof.Fields {
766 g.P("(*", fieldOneofType(field), ")(nil),")
767 }
768 }
769 g.P("}")
770 g.P("}")
771 g.P()
772}
773
Joe Tsaid7e97bc2018-11-26 12:57:27 -0800774// genOneofTypes generates the interface type used for a oneof field,
775// and the wrapper types that satisfy that interface.
Joe Tsaid7e97bc2018-11-26 12:57:27 -0800776func genOneofTypes(gen *protogen.Plugin, g *protogen.GeneratedFile, f *fileInfo, message *protogen.Message, oneof *protogen.Oneof) {
777 ifName := oneofInterfaceName(oneof)
778 g.P("type ", ifName, " interface {")
779 g.P(ifName, "()")
780 g.P("}")
781 g.P()
782 for _, field := range oneof.Fields {
783 name := fieldOneofType(field)
784 g.Annotate(name.GoName, field.Location)
785 g.Annotate(name.GoName+"."+field.GoName, field.Location)
786 g.P("type ", name, " struct {")
787 goType, _ := fieldGoType(g, field)
788 tags := []string{
789 fmt.Sprintf("protobuf:%q", fieldProtobufTag(field)),
790 }
791 g.P(field.GoName, " ", goType, " `", strings.Join(tags, " "), "`")
792 g.P("}")
793 g.P()
794 }
795 for _, field := range oneof.Fields {
796 g.P("func (*", fieldOneofType(field), ") ", ifName, "() {}")
797 g.P()
798 }
Joe Tsai872b5002019-04-08 14:03:15 -0700799}
800
801// isFirstOneofField reports whether this is the first field in a oneof.
802func isFirstOneofField(field *protogen.Field) bool {
803 return field.OneofType != nil && field.OneofType.Fields[0] == field
Joe Tsaid7e97bc2018-11-26 12:57:27 -0800804}
805
806// oneofFieldName returns the name of the struct field holding the oneof value.
807//
808// This function is trivial, but pulling out the name like this makes it easier
809// to experiment with alternative oneof implementations.
810func oneofFieldName(oneof *protogen.Oneof) string {
811 return oneof.GoName
812}
813
814// oneofInterfaceName returns the name of the interface type implemented by
815// the oneof field value types.
816func oneofInterfaceName(oneof *protogen.Oneof) string {
817 return fmt.Sprintf("is%s_%s", oneof.ParentMessage.GoIdent.GoName, oneof.GoName)
818}
819
Joe Tsaid7e97bc2018-11-26 12:57:27 -0800820// fieldOneofType returns the wrapper type used to represent a field in a oneof.
821func fieldOneofType(field *protogen.Field) protogen.GoIdent {
822 ident := protogen.GoIdent{
823 GoImportPath: field.ParentMessage.GoIdent.GoImportPath,
824 GoName: field.ParentMessage.GoIdent.GoName + "_" + field.GoName,
825 }
826 // Check for collisions with nested messages or enums.
827 //
828 // This conflict resolution is incomplete: Among other things, it
829 // does not consider collisions with other oneof field types.
830 //
831 // TODO: Consider dropping this entirely. Detecting conflicts and
832 // producing an error is almost certainly better than permuting
833 // field and type names in mostly unpredictable ways.
834Loop:
835 for {
836 for _, message := range field.ParentMessage.Messages {
837 if message.GoIdent == ident {
838 ident.GoName += "_"
839 continue Loop
840 }
841 }
842 for _, enum := range field.ParentMessage.Enums {
843 if enum.GoIdent == ident {
844 ident.GoName += "_"
845 continue Loop
846 }
847 }
848 return ident
849 }
850}