blob: 63598aa5439dbb8d5905d22f5f38cb2a1bfc724f [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 Neilce36f8d2018-09-13 15:19:08 -070014 "sort"
Damien Neil7779e052018-09-07 14:14:06 -070015 "strconv"
Damien Neilcab8dfe2018-09-06 14:51:28 -070016 "strings"
Damien Neil7bf3ce22018-12-21 15:54:06 -080017 "unicode"
18 "unicode/utf8"
Damien Neil7779e052018-09-07 14:14:06 -070019
20 "github.com/golang/protobuf/proto"
Joe Tsai05828db2018-11-01 13:52:16 -070021 "github.com/golang/protobuf/v2/internal/encoding/tag"
Joe Tsai01ab2962018-09-21 17:44:00 -070022 "github.com/golang/protobuf/v2/protogen"
23 "github.com/golang/protobuf/v2/reflect/protoreflect"
Joe Tsaie1f8d502018-11-26 18:55:29 -080024
25 descriptorpb "github.com/golang/protobuf/v2/types/descriptor"
Damien Neil220c2022018-08-15 11:24:18 -070026)
27
Damien Neild4127922018-09-12 11:13:49 -070028// generatedCodeVersion indicates a version of the generated code.
29// It is incremented whenever an incompatibility between the generated code and
30// proto package is introduced; the generated code references
31// a constant, proto.ProtoPackageIsVersionN (where N is generatedCodeVersion).
Joe Tsaid7e97bc2018-11-26 12:57:27 -080032const generatedCodeVersion = 3
Damien Neild4127922018-09-12 11:13:49 -070033
Joe Tsaic1c17aa2018-11-16 11:14:14 -080034const (
Joe Tsai24ceb2b2018-12-04 22:53:56 -080035 mathPackage = protogen.GoImportPath("math")
36 protoPackage = protogen.GoImportPath("github.com/golang/protobuf/proto")
37 protoapiPackage = protogen.GoImportPath("github.com/golang/protobuf/protoapi")
Joe Tsaic1c17aa2018-11-16 11:14:14 -080038)
Damien Neil46abb572018-09-07 12:45:37 -070039
Damien Neild39efc82018-09-24 12:38:10 -070040type fileInfo struct {
Damien Neilcab8dfe2018-09-06 14:51:28 -070041 *protogen.File
Damien Neil8012b442019-01-18 09:32:24 -080042
43 // vars containing the raw wire-encoded and compressed FileDescriptorProto.
44 descriptorRawVar string
45 descriptorGzipVar string
Joe Tsaib6405bd2018-11-15 14:44:37 -080046
Joe Tsai9667c482018-12-05 15:42:52 -080047 allEnums []*protogen.Enum
48 allEnumsByPtr map[*protogen.Enum]int // value is index into allEnums
49 allMessages []*protogen.Message
50 allMessagesByPtr map[*protogen.Message]int // value is index into allMessages
51 allExtensions []*protogen.Extension
Damien Neilcab8dfe2018-09-06 14:51:28 -070052}
53
Joe Tsai24ceb2b2018-12-04 22:53:56 -080054// protoPackage returns the package to import, which is either the protoPackage
55// or the protoapiPackage constant.
56//
57// This special casing exists because we are unable to move InternalMessageInfo
58// to protoapi since the implementation behind that logic is heavy and
59// too intricately connected to other parts of the proto package.
60// The descriptor proto is special in that it avoids using InternalMessageInfo
61// so that it is able to depend solely on protoapi and break its dependency
62// on the proto package. It is still semantically correct for descriptor to
63// avoid using InternalMessageInfo, but it does incur some performance penalty.
64// This is acceptable for descriptor, which is a single proto file and is not
65// known to be in the hot path for any code.
66//
67// TODO: Remove this special-casing when the table-driven implementation has
68// been ported over to v2.
69func (f *fileInfo) protoPackage() protogen.GoImportPath {
70 if isDescriptor(f.File) {
71 return protoapiPackage
72 }
73 return protoPackage
74}
75
Damien Neil9c420a62018-09-27 15:26:33 -070076// GenerateFile generates the contents of a .pb.go file.
77func GenerateFile(gen *protogen.Plugin, file *protogen.File, g *protogen.GeneratedFile) {
Damien Neild39efc82018-09-24 12:38:10 -070078 f := &fileInfo{
Damien Neilba1159f2018-10-17 12:53:18 -070079 File: file,
Damien Neilcab8dfe2018-09-06 14:51:28 -070080 }
81
Damien Neil8012b442019-01-18 09:32:24 -080082 // Collect all enums, messages, and extensions in "flattened ordering".
83 // See fileinit.FileBuilder.
Joe Tsai9667c482018-12-05 15:42:52 -080084 f.allEnums = append(f.allEnums, f.Enums...)
85 f.allMessages = append(f.allMessages, f.Messages...)
86 f.allExtensions = append(f.allExtensions, f.Extensions...)
87 walkMessages(f.Messages, func(m *protogen.Message) {
88 f.allEnums = append(f.allEnums, m.Enums...)
89 f.allMessages = append(f.allMessages, m.Messages...)
90 f.allExtensions = append(f.allExtensions, m.Extensions...)
Damien Neil73ac8852018-09-17 15:11:24 -070091 })
Damien Neilce36f8d2018-09-13 15:19:08 -070092
Joe Tsai9667c482018-12-05 15:42:52 -080093 // Derive a reverse mapping of enum and message pointers to their index
94 // in allEnums and allMessages.
95 if len(f.allEnums) > 0 {
96 f.allEnumsByPtr = make(map[*protogen.Enum]int)
97 for i, e := range f.allEnums {
98 f.allEnumsByPtr[e] = i
99 }
100 }
101 if len(f.allMessages) > 0 {
102 f.allMessagesByPtr = make(map[*protogen.Message]int)
103 for i, m := range f.allMessages {
104 f.allMessagesByPtr[m] = i
105 }
106 }
Joe Tsaib6405bd2018-11-15 14:44:37 -0800107
Joe Tsai40692112019-02-27 20:25:51 -0800108 // Determine the name of the var holding the file descriptor.
109 f.descriptorRawVar = "xxx_" + f.GoDescriptorIdent.GoName + "_rawdesc"
Damien Neil8012b442019-01-18 09:32:24 -0800110 f.descriptorGzipVar = f.descriptorRawVar + "_gzipped"
Damien Neil46abb572018-09-07 12:45:37 -0700111
Damien Neil220c2022018-08-15 11:24:18 -0700112 g.P("// Code generated by protoc-gen-go. DO NOT EDIT.")
Damien Neil55fe1c02018-09-17 15:11:24 -0700113 if f.Proto.GetOptions().GetDeprecated() {
114 g.P("// ", f.Desc.Path(), " is a deprecated file.")
115 } else {
116 g.P("// source: ", f.Desc.Path())
117 }
Damien Neil220c2022018-08-15 11:24:18 -0700118 g.P()
Damien Neilcab8dfe2018-09-06 14:51:28 -0700119 const filePackageField = 2 // FileDescriptorProto.package
Damien Neilba1159f2018-10-17 12:53:18 -0700120 g.PrintLeadingComments(protogen.Location{
121 SourceFile: f.Proto.GetName(),
122 Path: []int32{filePackageField},
123 })
Damien Neilcab8dfe2018-09-06 14:51:28 -0700124 g.P()
Damien Neil082ce922018-09-06 10:23:53 -0700125 g.P("package ", f.GoPackageName)
Damien Neilc7d07d92018-08-22 13:46:02 -0700126 g.P()
Damien Neil1ec33152018-09-13 13:12:36 -0700127
Joe Tsai24ceb2b2018-12-04 22:53:56 -0800128 if !isDescriptor(file) {
Joe Tsai24ceb2b2018-12-04 22:53:56 -0800129 g.P("// This is a compile-time assertion to ensure that this generated file")
130 g.P("// is compatible with the proto package it is being compiled against.")
131 g.P("// A compilation error at this line likely means your copy of the")
132 g.P("// proto package needs to be updated.")
133 g.P("const _ = ", protoPackage.Ident(fmt.Sprintf("ProtoPackageIsVersion%d", generatedCodeVersion)),
134 "// please upgrade the proto package")
135 g.P()
136 }
Damien Neilc7d07d92018-08-22 13:46:02 -0700137
Damien Neil73ac8852018-09-17 15:11:24 -0700138 for i, imps := 0, f.Desc.Imports(); i < imps.Len(); i++ {
139 genImport(gen, g, f, imps.Get(i))
140 }
Damien Neilce36f8d2018-09-13 15:19:08 -0700141 for _, enum := range f.allEnums {
Damien Neil46abb572018-09-07 12:45:37 -0700142 genEnum(gen, g, f, enum)
143 }
Damien Neilce36f8d2018-09-13 15:19:08 -0700144 for _, message := range f.allMessages {
Damien Neilcab8dfe2018-09-06 14:51:28 -0700145 genMessage(gen, g, f, message)
Damien Neilc7d07d92018-08-22 13:46:02 -0700146 }
Joe Tsai9667c482018-12-05 15:42:52 -0800147 for _, extension := range f.allExtensions {
Damien Neil993c04d2018-09-14 15:41:11 -0700148 genExtension(gen, g, f, extension)
149 }
Damien Neil220c2022018-08-15 11:24:18 -0700150
Damien Neilce36f8d2018-09-13 15:19:08 -0700151 genInitFunction(gen, g, f)
Damien Neil7779e052018-09-07 14:14:06 -0700152 genFileDescriptor(gen, g, f)
Joe Tsaib6405bd2018-11-15 14:44:37 -0800153 genReflectFileDescriptor(gen, g, f)
Damien Neil7779e052018-09-07 14:14:06 -0700154}
155
Damien Neil73ac8852018-09-17 15:11:24 -0700156// walkMessages calls f on each message and all of its descendants.
157func walkMessages(messages []*protogen.Message, f func(*protogen.Message)) {
158 for _, m := range messages {
159 f(m)
160 walkMessages(m.Messages, f)
161 }
162}
163
Damien Neild39efc82018-09-24 12:38:10 -0700164func genImport(gen *protogen.Plugin, g *protogen.GeneratedFile, f *fileInfo, imp protoreflect.FileImport) {
Damien Neil73ac8852018-09-17 15:11:24 -0700165 impFile, ok := gen.FileByName(imp.Path())
166 if !ok {
167 return
168 }
169 if impFile.GoImportPath == f.GoImportPath {
Damien Neil2e0c3da2018-09-19 12:51:36 -0700170 // Don't generate imports or aliases for types in the same Go package.
171 return
172 }
Damien Neil40a08052018-10-29 09:07:41 -0700173 // Generate imports for all non-weak dependencies, even if they are not
Damien Neil2e0c3da2018-09-19 12:51:36 -0700174 // referenced, because other code and tools depend on having the
175 // full transitive closure of protocol buffer types in the binary.
Damien Neil40a08052018-10-29 09:07:41 -0700176 if !imp.IsWeak {
177 g.Import(impFile.GoImportPath)
178 }
Damien Neil2e0c3da2018-09-19 12:51:36 -0700179 if !imp.IsPublic {
Damien Neil73ac8852018-09-17 15:11:24 -0700180 return
181 }
Damien Neil7bf3ce22018-12-21 15:54:06 -0800182
183 // Generate public imports by generating the imported file, parsing it,
184 // and extracting every symbol that should receive a forwarding declaration.
185 impGen := gen.NewGeneratedFile("temp.go", impFile.GoImportPath)
186 impGen.Skip()
187 GenerateFile(gen, impFile, impGen)
188 b, err := impGen.Content()
189 if err != nil {
190 gen.Error(err)
191 return
192 }
193 fset := token.NewFileSet()
194 astFile, err := parser.ParseFile(fset, "", b, parser.ParseComments)
195 if err != nil {
196 gen.Error(err)
197 return
198 }
Damien Neila7cbd062019-01-06 16:29:14 -0800199 genForward := func(tok token.Token, name string, expr ast.Expr) {
Damien Neil7bf3ce22018-12-21 15:54:06 -0800200 // Don't import unexported symbols.
201 r, _ := utf8.DecodeRuneInString(name)
202 if !unicode.IsUpper(r) {
Damien Neil2193e8d2018-10-09 12:49:13 -0700203 return
204 }
Damien Neil7bf3ce22018-12-21 15:54:06 -0800205 // Don't import the FileDescriptor.
206 if name == impFile.GoDescriptorIdent.GoName {
207 return
208 }
Damien Neila7cbd062019-01-06 16:29:14 -0800209 // Don't import decls referencing a symbol defined in another package.
210 // i.e., don't import decls which are themselves public imports:
211 //
212 // type T = somepackage.T
213 if _, ok := expr.(*ast.SelectorExpr); ok {
214 return
215 }
Damien Neil7bf3ce22018-12-21 15:54:06 -0800216 g.P(tok, " ", name, " = ", impFile.GoImportPath.Ident(name))
217 }
218 g.P("// Symbols defined in public import of ", imp.Path())
219 g.P()
220 for _, decl := range astFile.Decls {
221 switch decl := decl.(type) {
222 case *ast.GenDecl:
223 for _, spec := range decl.Specs {
224 switch spec := spec.(type) {
225 case *ast.TypeSpec:
Damien Neila7cbd062019-01-06 16:29:14 -0800226 genForward(decl.Tok, spec.Name.Name, spec.Type)
Damien Neil7bf3ce22018-12-21 15:54:06 -0800227 case *ast.ValueSpec:
Damien Neila7cbd062019-01-06 16:29:14 -0800228 for i, name := range spec.Names {
229 var expr ast.Expr
230 if i < len(spec.Values) {
231 expr = spec.Values[i]
232 }
233 genForward(decl.Tok, name.Name, expr)
Damien Neil7bf3ce22018-12-21 15:54:06 -0800234 }
235 case *ast.ImportSpec:
236 default:
237 panic(fmt.Sprintf("can't generate forward for spec type %T", spec))
Damien Neil7e5c6472018-11-29 08:57:07 -0800238 }
Damien Neil2193e8d2018-10-09 12:49:13 -0700239 }
Damien Neil2193e8d2018-10-09 12:49:13 -0700240 }
Damien Neil6b541312018-10-29 09:14:14 -0700241 }
Damien Neil2193e8d2018-10-09 12:49:13 -0700242 g.P()
Damien Neilce36f8d2018-09-13 15:19:08 -0700243}
244
Damien Neild39efc82018-09-24 12:38:10 -0700245func genFileDescriptor(gen *protogen.Plugin, g *protogen.GeneratedFile, f *fileInfo) {
Damien Neil7779e052018-09-07 14:14:06 -0700246 // Trim the source_code_info from the descriptor.
247 // Marshal and gzip it.
Joe Tsaie1f8d502018-11-26 18:55:29 -0800248 descProto := proto.Clone(f.Proto).(*descriptorpb.FileDescriptorProto)
Damien Neil7779e052018-09-07 14:14:06 -0700249 descProto.SourceCodeInfo = nil
250 b, err := proto.Marshal(descProto)
251 if err != nil {
252 gen.Error(err)
253 return
254 }
Damien Neil7779e052018-09-07 14:14:06 -0700255
Damien Neil8012b442019-01-18 09:32:24 -0800256 g.P("var ", f.descriptorRawVar, " = []byte{")
257 g.P("// ", len(b), " bytes of the wire-encoded FileDescriptorProto")
Damien Neil7779e052018-09-07 14:14:06 -0700258 for len(b) > 0 {
259 n := 16
260 if n > len(b) {
261 n = len(b)
262 }
263
264 s := ""
265 for _, c := range b[:n] {
266 s += fmt.Sprintf("0x%02x,", c)
267 }
268 g.P(s)
269
270 b = b[n:]
271 }
272 g.P("}")
273 g.P()
Damien Neil8012b442019-01-18 09:32:24 -0800274
Joe Tsaicf81e672019-02-28 14:08:31 -0800275 // TODO: Modify CompressGZIP to lazy encode? Currently, the GZIP'd form
276 // is eagerly registered in v1, preventing any benefit from lazy encoding.
277 g.P("var ", f.descriptorGzipVar, " = ", protoapiPackage.Ident("CompressGZIP"), "(", f.descriptorRawVar, ")")
Damien Neil8012b442019-01-18 09:32:24 -0800278 g.P()
Damien Neil220c2022018-08-15 11:24:18 -0700279}
Damien Neilc7d07d92018-08-22 13:46:02 -0700280
Damien Neild39efc82018-09-24 12:38:10 -0700281func genEnum(gen *protogen.Plugin, g *protogen.GeneratedFile, f *fileInfo, enum *protogen.Enum) {
Damien Neilba1159f2018-10-17 12:53:18 -0700282 g.PrintLeadingComments(enum.Location)
Damien Neil162c1272018-10-04 12:42:37 -0700283 g.Annotate(enum.GoIdent.GoName, enum.Location)
Damien Neil55fe1c02018-09-17 15:11:24 -0700284 g.P("type ", enum.GoIdent, " int32",
Joe Tsaie1f8d502018-11-26 18:55:29 -0800285 deprecationComment(enum.Desc.Options().(*descriptorpb.EnumOptions).GetDeprecated()))
Damien Neil46abb572018-09-07 12:45:37 -0700286 g.P("const (")
287 for _, value := range enum.Values {
Damien Neilba1159f2018-10-17 12:53:18 -0700288 g.PrintLeadingComments(value.Location)
Damien Neil162c1272018-10-04 12:42:37 -0700289 g.Annotate(value.GoIdent.GoName, value.Location)
Damien Neil55fe1c02018-09-17 15:11:24 -0700290 g.P(value.GoIdent, " ", enum.GoIdent, " = ", value.Desc.Number(),
Joe Tsaie1f8d502018-11-26 18:55:29 -0800291 deprecationComment(value.Desc.Options().(*descriptorpb.EnumValueOptions).GetDeprecated()))
Damien Neil46abb572018-09-07 12:45:37 -0700292 }
293 g.P(")")
294 g.P()
Joe Tsaib6405bd2018-11-15 14:44:37 -0800295
296 // Generate support for protobuf reflection.
297 genReflectEnum(gen, g, f, enum)
298
Damien Neil46abb572018-09-07 12:45:37 -0700299 nameMap := enum.GoIdent.GoName + "_name"
300 g.P("var ", nameMap, " = map[int32]string{")
301 generated := make(map[protoreflect.EnumNumber]bool)
302 for _, value := range enum.Values {
303 duplicate := ""
304 if _, present := generated[value.Desc.Number()]; present {
305 duplicate = "// Duplicate value: "
306 }
307 g.P(duplicate, value.Desc.Number(), ": ", strconv.Quote(string(value.Desc.Name())), ",")
308 generated[value.Desc.Number()] = true
309 }
310 g.P("}")
311 g.P()
312 valueMap := enum.GoIdent.GoName + "_value"
313 g.P("var ", valueMap, " = map[string]int32{")
314 for _, value := range enum.Values {
315 g.P(strconv.Quote(string(value.Desc.Name())), ": ", value.Desc.Number(), ",")
316 }
317 g.P("}")
318 g.P()
319 if enum.Desc.Syntax() != protoreflect.Proto3 {
320 g.P("func (x ", enum.GoIdent, ") Enum() *", enum.GoIdent, " {")
321 g.P("p := new(", enum.GoIdent, ")")
322 g.P("*p = x")
323 g.P("return p")
324 g.P("}")
325 g.P()
326 }
327 g.P("func (x ", enum.GoIdent, ") String() string {")
Joe Tsai24ceb2b2018-12-04 22:53:56 -0800328 g.P("return ", f.protoPackage().Ident("EnumName"), "(", enum.GoIdent, "_name, int32(x))")
Damien Neil46abb572018-09-07 12:45:37 -0700329 g.P("}")
330 g.P()
331
Joe Tsai73903462018-12-14 12:22:41 -0800332 if enum.Desc.Syntax() == protoreflect.Proto2 {
Damien Neil46abb572018-09-07 12:45:37 -0700333 g.P("func (x *", enum.GoIdent, ") UnmarshalJSON(data []byte) error {")
Joe Tsai24ceb2b2018-12-04 22:53:56 -0800334 g.P("value, err := ", f.protoPackage().Ident("UnmarshalJSONEnum"), "(", enum.GoIdent, `_value, data, "`, enum.GoIdent, `")`)
Damien Neil46abb572018-09-07 12:45:37 -0700335 g.P("if err != nil {")
336 g.P("return err")
337 g.P("}")
338 g.P("*x = ", enum.GoIdent, "(value)")
339 g.P("return nil")
340 g.P("}")
341 g.P()
342 }
343
344 var indexes []string
Damien Neil162c1272018-10-04 12:42:37 -0700345 for i := 1; i < len(enum.Location.Path); i += 2 {
346 indexes = append(indexes, strconv.Itoa(int(enum.Location.Path[i])))
Damien Neil46abb572018-09-07 12:45:37 -0700347 }
348 g.P("func (", enum.GoIdent, ") EnumDescriptor() ([]byte, []int) {")
Damien Neil8012b442019-01-18 09:32:24 -0800349 g.P("return ", f.descriptorGzipVar, ", []int{", strings.Join(indexes, ","), "}")
Damien Neil46abb572018-09-07 12:45:37 -0700350 g.P("}")
351 g.P()
352
Damien Neilea7baf42018-09-28 14:23:44 -0700353 genWellKnownType(g, "", enum.GoIdent, enum.Desc)
Damien Neil46abb572018-09-07 12:45:37 -0700354}
355
Damien Neil658051b2018-09-10 12:26:21 -0700356// enumRegistryName returns the name used to register an enum with the proto
357// package registry.
358//
359// Confusingly, this is <proto_package>.<go_ident>. This probably should have
360// been the full name of the proto enum type instead, but changing it at this
361// point would require thought.
362func enumRegistryName(enum *protogen.Enum) string {
363 // Find the FileDescriptor for this enum.
364 var desc protoreflect.Descriptor = enum.Desc
365 for {
366 p, ok := desc.Parent()
367 if !ok {
368 break
369 }
370 desc = p
371 }
372 fdesc := desc.(protoreflect.FileDescriptor)
Damien Neildaa4fad2018-10-08 14:08:27 -0700373 if fdesc.Package() == "" {
374 return enum.GoIdent.GoName
375 }
Damien Neil658051b2018-09-10 12:26:21 -0700376 return string(fdesc.Package()) + "." + enum.GoIdent.GoName
377}
378
Damien Neild39efc82018-09-24 12:38:10 -0700379func genMessage(gen *protogen.Plugin, g *protogen.GeneratedFile, f *fileInfo, message *protogen.Message) {
Damien Neil0bd5a382018-09-13 15:07:10 -0700380 if message.Desc.IsMapEntry() {
381 return
382 }
383
Damien Neilba1159f2018-10-17 12:53:18 -0700384 hasComment := g.PrintLeadingComments(message.Location)
Joe Tsaie1f8d502018-11-26 18:55:29 -0800385 if message.Desc.Options().(*descriptorpb.MessageOptions).GetDeprecated() {
Damien Neil55fe1c02018-09-17 15:11:24 -0700386 if hasComment {
387 g.P("//")
388 }
389 g.P(deprecationComment(true))
390 }
Damien Neil162c1272018-10-04 12:42:37 -0700391 g.Annotate(message.GoIdent.GoName, message.Location)
Damien Neilcab8dfe2018-09-06 14:51:28 -0700392 g.P("type ", message.GoIdent, " struct {")
Damien Neil658051b2018-09-10 12:26:21 -0700393 for _, field := range message.Fields {
Damien Neil1fa78d82018-09-13 13:12:36 -0700394 if field.OneofType != nil {
395 // It would be a bit simpler to iterate over the oneofs below,
396 // but generating the field here keeps the contents of the Go
397 // struct in the same order as the contents of the source
398 // .proto file.
399 if field == field.OneofType.Fields[0] {
400 genOneofField(gen, g, f, message, field.OneofType)
401 }
Damien Neil658051b2018-09-10 12:26:21 -0700402 continue
403 }
Damien Neilba1159f2018-10-17 12:53:18 -0700404 g.PrintLeadingComments(field.Location)
Damien Neil77f82fe2018-09-13 10:59:17 -0700405 goType, pointer := fieldGoType(g, field)
406 if pointer {
407 goType = "*" + goType
408 }
Damien Neil0bd5a382018-09-13 15:07:10 -0700409 tags := []string{
410 fmt.Sprintf("protobuf:%q", fieldProtobufTag(field)),
411 fmt.Sprintf("json:%q", fieldJSONTag(field)),
412 }
413 if field.Desc.IsMap() {
414 key := field.MessageType.Fields[0]
415 val := field.MessageType.Fields[1]
416 tags = append(tags,
417 fmt.Sprintf("protobuf_key:%q", fieldProtobufTag(key)),
418 fmt.Sprintf("protobuf_val:%q", fieldProtobufTag(val)),
419 )
420 }
Damien Neil162c1272018-10-04 12:42:37 -0700421 g.Annotate(message.GoIdent.GoName+"."+field.GoName, field.Location)
Damien Neil55fe1c02018-09-17 15:11:24 -0700422 g.P(field.GoName, " ", goType, " `", strings.Join(tags, " "), "`",
Joe Tsaie1f8d502018-11-26 18:55:29 -0800423 deprecationComment(field.Desc.Options().(*descriptorpb.FieldOptions).GetDeprecated()))
Damien Neil658051b2018-09-10 12:26:21 -0700424 }
425 g.P("XXX_NoUnkeyedLiteral struct{} `json:\"-\"`")
Damien Neil993c04d2018-09-14 15:41:11 -0700426
427 if message.Desc.ExtensionRanges().Len() > 0 {
428 var tags []string
Joe Tsaie1f8d502018-11-26 18:55:29 -0800429 if message.Desc.Options().(*descriptorpb.MessageOptions).GetMessageSetWireFormat() {
Damien Neil993c04d2018-09-14 15:41:11 -0700430 tags = append(tags, `protobuf_messageset:"1"`)
431 }
432 tags = append(tags, `json:"-"`)
Joe Tsai24ceb2b2018-12-04 22:53:56 -0800433 g.P(f.protoPackage().Ident("XXX_InternalExtensions"), " `", strings.Join(tags, " "), "`")
Damien Neil993c04d2018-09-14 15:41:11 -0700434 }
Damien Neil658051b2018-09-10 12:26:21 -0700435 g.P("XXX_unrecognized []byte `json:\"-\"`")
436 g.P("XXX_sizecache int32 `json:\"-\"`")
Damien Neilc7d07d92018-08-22 13:46:02 -0700437 g.P("}")
438 g.P()
439
Joe Tsaib6405bd2018-11-15 14:44:37 -0800440 // Generate support for protobuf reflection.
441 genReflectMessage(gen, g, f, message)
442
Damien Neila1c6abc2018-09-12 13:36:34 -0700443 // Reset
444 g.P("func (m *", message.GoIdent, ") Reset() { *m = ", message.GoIdent, "{} }")
445 // String
Joe Tsai24ceb2b2018-12-04 22:53:56 -0800446 g.P("func (m *", message.GoIdent, ") String() string { return ", f.protoPackage().Ident("CompactTextString"), "(m) }")
Damien Neila1c6abc2018-09-12 13:36:34 -0700447 // ProtoMessage
448 g.P("func (*", message.GoIdent, ") ProtoMessage() {}")
449 // Descriptor
450 var indexes []string
Damien Neil162c1272018-10-04 12:42:37 -0700451 for i := 1; i < len(message.Location.Path); i += 2 {
452 indexes = append(indexes, strconv.Itoa(int(message.Location.Path[i])))
Damien Neila1c6abc2018-09-12 13:36:34 -0700453 }
454 g.P("func (*", message.GoIdent, ") Descriptor() ([]byte, []int) {")
Damien Neil8012b442019-01-18 09:32:24 -0800455 g.P("return ", f.descriptorGzipVar, ", []int{", strings.Join(indexes, ","), "}")
Damien Neila1c6abc2018-09-12 13:36:34 -0700456 g.P("}")
Damien Neil993c04d2018-09-14 15:41:11 -0700457 g.P()
458
459 // ExtensionRangeArray
460 if extranges := message.Desc.ExtensionRanges(); extranges.Len() > 0 {
Joe Tsai24ceb2b2018-12-04 22:53:56 -0800461 protoExtRange := f.protoPackage().Ident("ExtensionRange")
Damien Neil993c04d2018-09-14 15:41:11 -0700462 extRangeVar := "extRange_" + message.GoIdent.GoName
463 g.P("var ", extRangeVar, " = []", protoExtRange, " {")
464 for i := 0; i < extranges.Len(); i++ {
465 r := extranges.Get(i)
466 g.P("{Start:", r[0], ", End:", r[1]-1 /* inclusive */, "},")
467 }
468 g.P("}")
469 g.P()
470 g.P("func (*", message.GoIdent, ") ExtensionRangeArray() []", protoExtRange, " {")
471 g.P("return ", extRangeVar)
472 g.P("}")
473 g.P()
474 }
Damien Neila1c6abc2018-09-12 13:36:34 -0700475
Damien Neilea7baf42018-09-28 14:23:44 -0700476 genWellKnownType(g, "*", message.GoIdent, message.Desc)
477
Damien Neila1c6abc2018-09-12 13:36:34 -0700478 // Table-driven proto support.
479 //
480 // TODO: It does not scale to keep adding another method for every
481 // operation on protos that we want to switch over to using the
482 // table-driven approach. Instead, we should only add a single method
483 // that allows getting access to the *InternalMessageInfo struct and then
484 // calling Unmarshal, Marshal, Merge, Size, and Discard directly on that.
Joe Tsai24ceb2b2018-12-04 22:53:56 -0800485 if !isDescriptor(f.File) {
486 // NOTE: We avoid adding table-driven support for descriptor proto
487 // since this depends on the v1 proto package, which would eventually
488 // need to depend on the descriptor itself.
489 messageInfoVar := "xxx_messageInfo_" + message.GoIdent.GoName
490 // XXX_Unmarshal
491 g.P("func (m *", message.GoIdent, ") XXX_Unmarshal(b []byte) error {")
492 g.P("return ", messageInfoVar, ".Unmarshal(m, b)")
493 g.P("}")
494 // XXX_Marshal
495 g.P("func (m *", message.GoIdent, ") XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {")
496 g.P("return ", messageInfoVar, ".Marshal(b, m, deterministic)")
497 g.P("}")
498 // XXX_Merge
499 g.P("func (m *", message.GoIdent, ") XXX_Merge(src proto.Message) {")
500 g.P(messageInfoVar, ".Merge(m, src)")
501 g.P("}")
502 // XXX_Size
503 g.P("func (m *", message.GoIdent, ") XXX_Size() int {")
504 g.P("return ", messageInfoVar, ".Size(m)")
505 g.P("}")
506 // XXX_DiscardUnknown
507 g.P("func (m *", message.GoIdent, ") XXX_DiscardUnknown() {")
508 g.P(messageInfoVar, ".DiscardUnknown(m)")
509 g.P("}")
510 g.P()
511 g.P("var ", messageInfoVar, " ", protoPackage.Ident("InternalMessageInfo"))
512 g.P()
513 }
Damien Neila1c6abc2018-09-12 13:36:34 -0700514
Damien Neilebc699d2018-09-13 08:50:13 -0700515 // Constants and vars holding the default values of fields.
516 for _, field := range message.Fields {
Joe Tsai9667c482018-12-05 15:42:52 -0800517 if !field.Desc.HasDefault() {
Damien Neilebc699d2018-09-13 08:50:13 -0700518 continue
519 }
Damien Neil1fa78d82018-09-13 13:12:36 -0700520 defVarName := "Default_" + message.GoIdent.GoName + "_" + field.GoName
Damien Neilebc699d2018-09-13 08:50:13 -0700521 def := field.Desc.Default()
522 switch field.Desc.Kind() {
523 case protoreflect.StringKind:
524 g.P("const ", defVarName, " string = ", strconv.Quote(def.String()))
525 case protoreflect.BytesKind:
526 g.P("var ", defVarName, " []byte = []byte(", strconv.Quote(string(def.Bytes())), ")")
527 case protoreflect.EnumKind:
Damien Neila485fbd2018-10-26 13:28:37 -0700528 evalueDesc := field.Desc.DefaultEnumValue()
Damien Neilebc699d2018-09-13 08:50:13 -0700529 enum := field.EnumType
Damien Neila485fbd2018-10-26 13:28:37 -0700530 evalue := enum.Values[evalueDesc.Index()]
Damien Neilebc699d2018-09-13 08:50:13 -0700531 g.P("const ", defVarName, " ", field.EnumType.GoIdent, " = ", evalue.GoIdent)
532 case protoreflect.FloatKind, protoreflect.DoubleKind:
533 // Floating point numbers need extra handling for -Inf/Inf/NaN.
534 f := field.Desc.Default().Float()
535 goType := "float64"
536 if field.Desc.Kind() == protoreflect.FloatKind {
537 goType = "float32"
538 }
539 // funcCall returns a call to a function in the math package,
540 // possibly converting the result to float32.
541 funcCall := func(fn, param string) string {
Joe Tsaic1c17aa2018-11-16 11:14:14 -0800542 s := g.QualifiedGoIdent(mathPackage.Ident(fn)) + param
Damien Neilebc699d2018-09-13 08:50:13 -0700543 if goType != "float64" {
544 s = goType + "(" + s + ")"
545 }
546 return s
547 }
548 switch {
549 case math.IsInf(f, -1):
550 g.P("var ", defVarName, " ", goType, " = ", funcCall("Inf", "(-1)"))
551 case math.IsInf(f, 1):
552 g.P("var ", defVarName, " ", goType, " = ", funcCall("Inf", "(1)"))
553 case math.IsNaN(f):
554 g.P("var ", defVarName, " ", goType, " = ", funcCall("NaN", "()"))
555 default:
Damien Neil982684b2018-09-28 14:12:41 -0700556 g.P("const ", defVarName, " ", goType, " = ", field.Desc.Default().Interface())
Damien Neilebc699d2018-09-13 08:50:13 -0700557 }
558 default:
Damien Neil77f82fe2018-09-13 10:59:17 -0700559 goType, _ := fieldGoType(g, field)
Damien Neilebc699d2018-09-13 08:50:13 -0700560 g.P("const ", defVarName, " ", goType, " = ", def.Interface())
561 }
562 }
563 g.P()
564
Damien Neil77f82fe2018-09-13 10:59:17 -0700565 // Getters.
566 for _, field := range message.Fields {
Damien Neil1fa78d82018-09-13 13:12:36 -0700567 if field.OneofType != nil {
568 if field == field.OneofType.Fields[0] {
569 genOneofTypes(gen, g, f, message, field.OneofType)
570 }
571 }
Damien Neil77f82fe2018-09-13 10:59:17 -0700572 goType, pointer := fieldGoType(g, field)
573 defaultValue := fieldDefaultValue(g, message, field)
Joe Tsaie1f8d502018-11-26 18:55:29 -0800574 if field.Desc.Options().(*descriptorpb.FieldOptions).GetDeprecated() {
Damien Neil55fe1c02018-09-17 15:11:24 -0700575 g.P(deprecationComment(true))
576 }
Damien Neil162c1272018-10-04 12:42:37 -0700577 g.Annotate(message.GoIdent.GoName+".Get"+field.GoName, field.Location)
Damien Neil1fa78d82018-09-13 13:12:36 -0700578 g.P("func (m *", message.GoIdent, ") Get", field.GoName, "() ", goType, " {")
579 if field.OneofType != nil {
Damien Neil81d6d832018-09-19 12:12:17 -0700580 g.P("if x, ok := m.Get", field.OneofType.GoName, "().(*", fieldOneofType(field), "); ok {")
Damien Neil1fa78d82018-09-13 13:12:36 -0700581 g.P("return x.", field.GoName)
582 g.P("}")
Damien Neil77f82fe2018-09-13 10:59:17 -0700583 } else {
Damien Neil1fa78d82018-09-13 13:12:36 -0700584 if field.Desc.Syntax() == protoreflect.Proto3 || defaultValue == "nil" {
585 g.P("if m != nil {")
586 } else {
587 g.P("if m != nil && m.", field.GoName, " != nil {")
588 }
589 star := ""
590 if pointer {
591 star = "*"
592 }
593 g.P("return ", star, " m.", field.GoName)
594 g.P("}")
Damien Neil77f82fe2018-09-13 10:59:17 -0700595 }
Damien Neil77f82fe2018-09-13 10:59:17 -0700596 g.P("return ", defaultValue)
597 g.P("}")
598 g.P()
599 }
Damien Neila1c6abc2018-09-12 13:36:34 -0700600
Damien Neil1fa78d82018-09-13 13:12:36 -0700601 if len(message.Oneofs) > 0 {
Joe Tsaid7e97bc2018-11-26 12:57:27 -0800602 genOneofWrappers(gen, g, f, message)
Damien Neil1fa78d82018-09-13 13:12:36 -0700603 }
Damien Neilc7d07d92018-08-22 13:46:02 -0700604}
Damien Neilcab8dfe2018-09-06 14:51:28 -0700605
Damien Neil77f82fe2018-09-13 10:59:17 -0700606// fieldGoType returns the Go type used for a field.
607//
608// If it returns pointer=true, the struct field is a pointer to the type.
609func fieldGoType(g *protogen.GeneratedFile, field *protogen.Field) (goType string, pointer bool) {
Damien Neil77f82fe2018-09-13 10:59:17 -0700610 pointer = true
Damien Neil658051b2018-09-10 12:26:21 -0700611 switch field.Desc.Kind() {
612 case protoreflect.BoolKind:
Damien Neil77f82fe2018-09-13 10:59:17 -0700613 goType = "bool"
Damien Neil658051b2018-09-10 12:26:21 -0700614 case protoreflect.EnumKind:
Damien Neil77f82fe2018-09-13 10:59:17 -0700615 goType = g.QualifiedGoIdent(field.EnumType.GoIdent)
Damien Neil658051b2018-09-10 12:26:21 -0700616 case protoreflect.Int32Kind, protoreflect.Sint32Kind, protoreflect.Sfixed32Kind:
Damien Neil77f82fe2018-09-13 10:59:17 -0700617 goType = "int32"
Damien Neil658051b2018-09-10 12:26:21 -0700618 case protoreflect.Uint32Kind, protoreflect.Fixed32Kind:
Damien Neil77f82fe2018-09-13 10:59:17 -0700619 goType = "uint32"
Damien Neil658051b2018-09-10 12:26:21 -0700620 case protoreflect.Int64Kind, protoreflect.Sint64Kind, protoreflect.Sfixed64Kind:
Damien Neil77f82fe2018-09-13 10:59:17 -0700621 goType = "int64"
Damien Neil658051b2018-09-10 12:26:21 -0700622 case protoreflect.Uint64Kind, protoreflect.Fixed64Kind:
Damien Neil77f82fe2018-09-13 10:59:17 -0700623 goType = "uint64"
Damien Neil658051b2018-09-10 12:26:21 -0700624 case protoreflect.FloatKind:
Damien Neil77f82fe2018-09-13 10:59:17 -0700625 goType = "float32"
Damien Neil658051b2018-09-10 12:26:21 -0700626 case protoreflect.DoubleKind:
Damien Neil77f82fe2018-09-13 10:59:17 -0700627 goType = "float64"
Damien Neil658051b2018-09-10 12:26:21 -0700628 case protoreflect.StringKind:
Damien Neil77f82fe2018-09-13 10:59:17 -0700629 goType = "string"
Damien Neil658051b2018-09-10 12:26:21 -0700630 case protoreflect.BytesKind:
Damien Neil77f82fe2018-09-13 10:59:17 -0700631 goType = "[]byte"
632 pointer = false
Damien Neil658051b2018-09-10 12:26:21 -0700633 case protoreflect.MessageKind, protoreflect.GroupKind:
Damien Neil0bd5a382018-09-13 15:07:10 -0700634 if field.Desc.IsMap() {
635 keyType, _ := fieldGoType(g, field.MessageType.Fields[0])
636 valType, _ := fieldGoType(g, field.MessageType.Fields[1])
637 return fmt.Sprintf("map[%v]%v", keyType, valType), false
638 }
Damien Neil77f82fe2018-09-13 10:59:17 -0700639 goType = "*" + g.QualifiedGoIdent(field.MessageType.GoIdent)
640 pointer = false
Damien Neil658051b2018-09-10 12:26:21 -0700641 }
642 if field.Desc.Cardinality() == protoreflect.Repeated {
Damien Neil77f82fe2018-09-13 10:59:17 -0700643 goType = "[]" + goType
644 pointer = false
Damien Neil658051b2018-09-10 12:26:21 -0700645 }
Damien Neil44000a12018-10-24 12:31:16 -0700646 // Extension fields always have pointer type, even when defined in a proto3 file.
647 if field.Desc.Syntax() == protoreflect.Proto3 && field.Desc.ExtendedType() == nil {
Damien Neil77f82fe2018-09-13 10:59:17 -0700648 pointer = false
Damien Neil658051b2018-09-10 12:26:21 -0700649 }
Damien Neil77f82fe2018-09-13 10:59:17 -0700650 return goType, pointer
Damien Neil658051b2018-09-10 12:26:21 -0700651}
652
653func fieldProtobufTag(field *protogen.Field) string {
Joe Tsai05828db2018-11-01 13:52:16 -0700654 var enumName string
Damien Neil658051b2018-09-10 12:26:21 -0700655 if field.Desc.Kind() == protoreflect.EnumKind {
Joe Tsai05828db2018-11-01 13:52:16 -0700656 enumName = enumRegistryName(field.EnumType)
Damien Neil658051b2018-09-10 12:26:21 -0700657 }
Joe Tsai05828db2018-11-01 13:52:16 -0700658 return tag.Marshal(field.Desc, enumName)
Damien Neil658051b2018-09-10 12:26:21 -0700659}
660
Damien Neil77f82fe2018-09-13 10:59:17 -0700661func fieldDefaultValue(g *protogen.GeneratedFile, message *protogen.Message, field *protogen.Field) string {
662 if field.Desc.Cardinality() == protoreflect.Repeated {
663 return "nil"
664 }
Joe Tsai9667c482018-12-05 15:42:52 -0800665 if field.Desc.HasDefault() {
Damien Neil1fa78d82018-09-13 13:12:36 -0700666 defVarName := "Default_" + message.GoIdent.GoName + "_" + field.GoName
Damien Neil77f82fe2018-09-13 10:59:17 -0700667 if field.Desc.Kind() == protoreflect.BytesKind {
668 return "append([]byte(nil), " + defVarName + "...)"
669 }
670 return defVarName
671 }
672 switch field.Desc.Kind() {
673 case protoreflect.BoolKind:
674 return "false"
675 case protoreflect.StringKind:
676 return `""`
677 case protoreflect.MessageKind, protoreflect.GroupKind, protoreflect.BytesKind:
678 return "nil"
679 case protoreflect.EnumKind:
680 return g.QualifiedGoIdent(field.EnumType.Values[0].GoIdent)
681 default:
682 return "0"
683 }
684}
685
Damien Neil658051b2018-09-10 12:26:21 -0700686func fieldJSONTag(field *protogen.Field) string {
687 return string(field.Desc.Name()) + ",omitempty"
688}
689
Damien Neild39efc82018-09-24 12:38:10 -0700690func genExtension(gen *protogen.Plugin, g *protogen.GeneratedFile, f *fileInfo, extension *protogen.Extension) {
Damien Neil154da982018-09-19 13:21:58 -0700691 // Special case for proto2 message sets: If this extension is extending
692 // proto2.bridge.MessageSet, and its final name component is "message_set_extension",
693 // then drop that last component.
694 //
695 // TODO: This should be implemented in the text formatter rather than the generator.
696 // In addition, the situation for when to apply this special case is implemented
697 // differently in other languages:
698 // https://github.com/google/protobuf/blob/aff10976/src/google/protobuf/text_format.cc#L1560
699 name := extension.Desc.FullName()
Damien Neil62386962018-10-30 10:35:48 -0700700 if n, ok := isExtensionMessageSetElement(extension); ok {
701 name = n
Damien Neil154da982018-09-19 13:21:58 -0700702 }
703
Joe Tsai24ceb2b2018-12-04 22:53:56 -0800704 g.P("var ", extensionVar(f.File, extension), " = &", f.protoPackage().Ident("ExtensionDesc"), "{")
Damien Neil993c04d2018-09-14 15:41:11 -0700705 g.P("ExtendedType: (*", extension.ExtendedType.GoIdent, ")(nil),")
706 goType, pointer := fieldGoType(g, extension)
707 if pointer {
708 goType = "*" + goType
709 }
710 g.P("ExtensionType: (", goType, ")(nil),")
711 g.P("Field: ", extension.Desc.Number(), ",")
Damien Neil154da982018-09-19 13:21:58 -0700712 g.P("Name: ", strconv.Quote(string(name)), ",")
Damien Neil993c04d2018-09-14 15:41:11 -0700713 g.P("Tag: ", strconv.Quote(fieldProtobufTag(extension)), ",")
714 g.P("Filename: ", strconv.Quote(f.Desc.Path()), ",")
715 g.P("}")
716 g.P()
717}
718
Damien Neil62386962018-10-30 10:35:48 -0700719// isExtensionMessageSetELement returns the adjusted name of an extension
720// which extends proto2.bridge.MessageSet.
721func isExtensionMessageSetElement(extension *protogen.Extension) (name protoreflect.FullName, ok bool) {
Joe Tsaie1f8d502018-11-26 18:55:29 -0800722 opts := extension.ExtendedType.Desc.Options().(*descriptorpb.MessageOptions)
Damien Neil62386962018-10-30 10:35:48 -0700723 if !opts.GetMessageSetWireFormat() || extension.Desc.Name() != "message_set_extension" {
724 return "", false
725 }
726 if extension.ParentMessage == nil {
727 // This case shouldn't be given special handling at all--we're
728 // only supposed to drop the ".message_set_extension" for
729 // extensions defined within a message (i.e., the extension
730 // takes the message's name).
731 //
732 // This matches the behavior of the v1 generator, however.
733 //
734 // TODO: See if we can drop this case.
735 name = extension.Desc.FullName()
736 name = name[:len(name)-len("message_set_extension")]
737 return name, true
738 }
739 return extension.Desc.FullName().Parent(), true
Damien Neil154da982018-09-19 13:21:58 -0700740}
741
Damien Neil993c04d2018-09-14 15:41:11 -0700742// extensionVar returns the var holding the ExtensionDesc for an extension.
Damien Neil6b541312018-10-29 09:14:14 -0700743func extensionVar(f *protogen.File, extension *protogen.Extension) protogen.GoIdent {
Damien Neil993c04d2018-09-14 15:41:11 -0700744 name := "E_"
745 if extension.ParentMessage != nil {
746 name += extension.ParentMessage.GoIdent.GoName + "_"
747 }
748 name += extension.GoName
Joe Tsaic1c17aa2018-11-16 11:14:14 -0800749 return f.GoImportPath.Ident(name)
Damien Neil993c04d2018-09-14 15:41:11 -0700750}
751
Damien Neilce36f8d2018-09-13 15:19:08 -0700752// genInitFunction generates an init function that registers the types in the
753// generated file with the proto package.
Damien Neild39efc82018-09-24 12:38:10 -0700754func genInitFunction(gen *protogen.Plugin, g *protogen.GeneratedFile, f *fileInfo) {
Damien Neilce36f8d2018-09-13 15:19:08 -0700755 g.P("func init() {")
Damien Neil8012b442019-01-18 09:32:24 -0800756 g.P(f.protoPackage().Ident("RegisterFile"), "(", strconv.Quote(f.Desc.Path()), ", ", f.descriptorGzipVar, ")")
Damien Neil154da982018-09-19 13:21:58 -0700757 for _, enum := range f.allEnums {
758 name := enum.GoIdent.GoName
Joe Tsai24ceb2b2018-12-04 22:53:56 -0800759 g.P(f.protoPackage().Ident("RegisterEnum"), fmt.Sprintf("(%q, %s_name, %s_value)", enumRegistryName(enum), name, name))
Damien Neil154da982018-09-19 13:21:58 -0700760 }
Damien Neilce36f8d2018-09-13 15:19:08 -0700761 for _, message := range f.allMessages {
762 if message.Desc.IsMapEntry() {
763 continue
764 }
765
766 name := message.GoIdent.GoName
Joe Tsai24ceb2b2018-12-04 22:53:56 -0800767 g.P(f.protoPackage().Ident("RegisterType"), fmt.Sprintf("((*%s)(nil), %q)", name, message.Desc.FullName()))
Damien Neilce36f8d2018-09-13 15:19:08 -0700768
769 // Types of map fields, sorted by the name of the field message type.
770 var mapFields []*protogen.Field
771 for _, field := range message.Fields {
772 if field.Desc.IsMap() {
773 mapFields = append(mapFields, field)
774 }
775 }
776 sort.Slice(mapFields, func(i, j int) bool {
777 ni := mapFields[i].MessageType.Desc.FullName()
778 nj := mapFields[j].MessageType.Desc.FullName()
779 return ni < nj
780 })
781 for _, field := range mapFields {
782 typeName := string(field.MessageType.Desc.FullName())
783 goType, _ := fieldGoType(g, field)
Joe Tsai24ceb2b2018-12-04 22:53:56 -0800784 g.P(f.protoPackage().Ident("RegisterMapType"), fmt.Sprintf("((%v)(nil), %q)", goType, typeName))
Damien Neilce36f8d2018-09-13 15:19:08 -0700785 }
786 }
Joe Tsai9667c482018-12-05 15:42:52 -0800787 for _, extension := range f.allExtensions {
788 g.P(f.protoPackage().Ident("RegisterExtension"), "(", extensionVar(f.File, extension), ")")
Damien Neil993c04d2018-09-14 15:41:11 -0700789 }
Damien Neilce36f8d2018-09-13 15:19:08 -0700790 g.P("}")
791 g.P()
792}
793
Damien Neil55fe1c02018-09-17 15:11:24 -0700794// deprecationComment returns a standard deprecation comment if deprecated is true.
795func deprecationComment(deprecated bool) string {
796 if !deprecated {
797 return ""
798 }
799 return "// Deprecated: Do not use."
800}
801
Damien Neilea7baf42018-09-28 14:23:44 -0700802func genWellKnownType(g *protogen.GeneratedFile, ptr string, ident protogen.GoIdent, desc protoreflect.Descriptor) {
Damien Neil46abb572018-09-07 12:45:37 -0700803 if wellKnownTypes[desc.FullName()] {
Damien Neilea7baf42018-09-28 14:23:44 -0700804 g.P("func (", ptr, ident, `) XXX_WellKnownType() string { return "`, desc.Name(), `" }`)
Damien Neil46abb572018-09-07 12:45:37 -0700805 g.P()
806 }
807}
808
809// Names of messages and enums for which we will generate XXX_WellKnownType methods.
810var wellKnownTypes = map[protoreflect.FullName]bool{
Damien Neilea7baf42018-09-28 14:23:44 -0700811 "google.protobuf.Any": true,
812 "google.protobuf.Duration": true,
813 "google.protobuf.Empty": true,
814 "google.protobuf.Struct": true,
815 "google.protobuf.Timestamp": true,
816
817 "google.protobuf.BoolValue": true,
818 "google.protobuf.BytesValue": true,
819 "google.protobuf.DoubleValue": true,
820 "google.protobuf.FloatValue": true,
821 "google.protobuf.Int32Value": true,
822 "google.protobuf.Int64Value": true,
823 "google.protobuf.ListValue": true,
824 "google.protobuf.NullValue": true,
825 "google.protobuf.StringValue": true,
826 "google.protobuf.UInt32Value": true,
827 "google.protobuf.UInt64Value": true,
828 "google.protobuf.Value": true,
Damien Neil46abb572018-09-07 12:45:37 -0700829}
Joe Tsaid7e97bc2018-11-26 12:57:27 -0800830
831// genOneofField generates the struct field for a oneof.
832func genOneofField(gen *protogen.Plugin, g *protogen.GeneratedFile, f *fileInfo, message *protogen.Message, oneof *protogen.Oneof) {
833 if g.PrintLeadingComments(oneof.Location) {
834 g.P("//")
835 }
836 g.P("// Types that are valid to be assigned to ", oneofFieldName(oneof), ":")
837 for _, field := range oneof.Fields {
838 g.PrintLeadingComments(field.Location)
839 g.P("//\t*", fieldOneofType(field))
840 }
841 g.Annotate(message.GoIdent.GoName+"."+oneofFieldName(oneof), oneof.Location)
842 g.P(oneofFieldName(oneof), " ", oneofInterfaceName(oneof), " `protobuf_oneof:\"", oneof.Desc.Name(), "\"`")
843}
844
845// genOneofTypes generates the interface type used for a oneof field,
846// and the wrapper types that satisfy that interface.
847//
848// It also generates the getter method for the parent oneof field
849// (but not the member fields).
850func genOneofTypes(gen *protogen.Plugin, g *protogen.GeneratedFile, f *fileInfo, message *protogen.Message, oneof *protogen.Oneof) {
851 ifName := oneofInterfaceName(oneof)
852 g.P("type ", ifName, " interface {")
853 g.P(ifName, "()")
854 g.P("}")
855 g.P()
856 for _, field := range oneof.Fields {
857 name := fieldOneofType(field)
858 g.Annotate(name.GoName, field.Location)
859 g.Annotate(name.GoName+"."+field.GoName, field.Location)
860 g.P("type ", name, " struct {")
861 goType, _ := fieldGoType(g, field)
862 tags := []string{
863 fmt.Sprintf("protobuf:%q", fieldProtobufTag(field)),
864 }
865 g.P(field.GoName, " ", goType, " `", strings.Join(tags, " "), "`")
866 g.P("}")
867 g.P()
868 }
869 for _, field := range oneof.Fields {
870 g.P("func (*", fieldOneofType(field), ") ", ifName, "() {}")
871 g.P()
872 }
873 g.Annotate(message.GoIdent.GoName+".Get"+oneof.GoName, oneof.Location)
874 g.P("func (m *", message.GoIdent.GoName, ") Get", oneof.GoName, "() ", ifName, " {")
875 g.P("if m != nil {")
876 g.P("return m.", oneofFieldName(oneof))
877 g.P("}")
878 g.P("return nil")
879 g.P("}")
880 g.P()
881}
882
883// oneofFieldName returns the name of the struct field holding the oneof value.
884//
885// This function is trivial, but pulling out the name like this makes it easier
886// to experiment with alternative oneof implementations.
887func oneofFieldName(oneof *protogen.Oneof) string {
888 return oneof.GoName
889}
890
891// oneofInterfaceName returns the name of the interface type implemented by
892// the oneof field value types.
893func oneofInterfaceName(oneof *protogen.Oneof) string {
894 return fmt.Sprintf("is%s_%s", oneof.ParentMessage.GoIdent.GoName, oneof.GoName)
895}
896
897// genOneofWrappers generates the XXX_OneofWrappers method for a message.
898func genOneofWrappers(gen *protogen.Plugin, g *protogen.GeneratedFile, f *fileInfo, message *protogen.Message) {
899 g.P("// XXX_OneofWrappers is for the internal use of the proto package.")
900 g.P("func (*", message.GoIdent.GoName, ") XXX_OneofWrappers() []interface{} {")
901 g.P("return []interface{}{")
902 for _, oneof := range message.Oneofs {
903 for _, field := range oneof.Fields {
904 g.P("(*", fieldOneofType(field), ")(nil),")
905 }
906 }
907 g.P("}")
908 g.P("}")
909 g.P()
910}
911
912// fieldOneofType returns the wrapper type used to represent a field in a oneof.
913func fieldOneofType(field *protogen.Field) protogen.GoIdent {
914 ident := protogen.GoIdent{
915 GoImportPath: field.ParentMessage.GoIdent.GoImportPath,
916 GoName: field.ParentMessage.GoIdent.GoName + "_" + field.GoName,
917 }
918 // Check for collisions with nested messages or enums.
919 //
920 // This conflict resolution is incomplete: Among other things, it
921 // does not consider collisions with other oneof field types.
922 //
923 // TODO: Consider dropping this entirely. Detecting conflicts and
924 // producing an error is almost certainly better than permuting
925 // field and type names in mostly unpredictable ways.
926Loop:
927 for {
928 for _, message := range field.ParentMessage.Messages {
929 if message.GoIdent == ident {
930 ident.GoName += "_"
931 continue Loop
932 }
933 }
934 for _, enum := range field.ParentMessage.Enums {
935 if enum.GoIdent == ident {
936 ident.GoName += "_"
937 continue Loop
938 }
939 }
940 return ident
941 }
942}