blob: 5357224c88ab8c4d3ea0562a425883ed50264132 [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 "crypto/sha256"
10 "encoding/hex"
11 "fmt"
Damien Neil7bf3ce22018-12-21 15:54:06 -080012 "go/ast"
13 "go/parser"
14 "go/token"
Damien Neilebc699d2018-09-13 08:50:13 -070015 "math"
Damien Neilce36f8d2018-09-13 15:19:08 -070016 "sort"
Damien Neil7779e052018-09-07 14:14:06 -070017 "strconv"
Damien Neilcab8dfe2018-09-06 14:51:28 -070018 "strings"
Damien Neil7bf3ce22018-12-21 15:54:06 -080019 "unicode"
20 "unicode/utf8"
Damien Neil7779e052018-09-07 14:14:06 -070021
22 "github.com/golang/protobuf/proto"
Joe Tsai05828db2018-11-01 13:52:16 -070023 "github.com/golang/protobuf/v2/internal/encoding/tag"
Joe Tsai01ab2962018-09-21 17:44:00 -070024 "github.com/golang/protobuf/v2/protogen"
25 "github.com/golang/protobuf/v2/reflect/protoreflect"
Joe Tsaie1f8d502018-11-26 18:55:29 -080026
27 descriptorpb "github.com/golang/protobuf/v2/types/descriptor"
Damien Neil220c2022018-08-15 11:24:18 -070028)
29
Damien Neild4127922018-09-12 11:13:49 -070030// generatedCodeVersion indicates a version of the generated code.
31// It is incremented whenever an incompatibility between the generated code and
32// proto package is introduced; the generated code references
33// a constant, proto.ProtoPackageIsVersionN (where N is generatedCodeVersion).
Joe Tsaid7e97bc2018-11-26 12:57:27 -080034const generatedCodeVersion = 3
Damien Neild4127922018-09-12 11:13:49 -070035
Joe Tsaic1c17aa2018-11-16 11:14:14 -080036const (
Joe Tsai24ceb2b2018-12-04 22:53:56 -080037 mathPackage = protogen.GoImportPath("math")
38 protoPackage = protogen.GoImportPath("github.com/golang/protobuf/proto")
39 protoapiPackage = protogen.GoImportPath("github.com/golang/protobuf/protoapi")
Joe Tsaic1c17aa2018-11-16 11:14:14 -080040)
Damien Neil46abb572018-09-07 12:45:37 -070041
Damien Neild39efc82018-09-24 12:38:10 -070042type fileInfo struct {
Damien Neilcab8dfe2018-09-06 14:51:28 -070043 *protogen.File
Damien Neil8012b442019-01-18 09:32:24 -080044
45 // vars containing the raw wire-encoded and compressed FileDescriptorProto.
46 descriptorRawVar string
47 descriptorGzipVar string
Joe Tsaib6405bd2018-11-15 14:44:37 -080048
Joe Tsai9667c482018-12-05 15:42:52 -080049 allEnums []*protogen.Enum
50 allEnumsByPtr map[*protogen.Enum]int // value is index into allEnums
51 allMessages []*protogen.Message
52 allMessagesByPtr map[*protogen.Message]int // value is index into allMessages
53 allExtensions []*protogen.Extension
Damien Neilcab8dfe2018-09-06 14:51:28 -070054}
55
Joe Tsai24ceb2b2018-12-04 22:53:56 -080056// protoPackage returns the package to import, which is either the protoPackage
57// or the protoapiPackage constant.
58//
59// This special casing exists because we are unable to move InternalMessageInfo
60// to protoapi since the implementation behind that logic is heavy and
61// too intricately connected to other parts of the proto package.
62// The descriptor proto is special in that it avoids using InternalMessageInfo
63// so that it is able to depend solely on protoapi and break its dependency
64// on the proto package. It is still semantically correct for descriptor to
65// avoid using InternalMessageInfo, but it does incur some performance penalty.
66// This is acceptable for descriptor, which is a single proto file and is not
67// known to be in the hot path for any code.
68//
69// TODO: Remove this special-casing when the table-driven implementation has
70// been ported over to v2.
71func (f *fileInfo) protoPackage() protogen.GoImportPath {
72 if isDescriptor(f.File) {
73 return protoapiPackage
74 }
75 return protoPackage
76}
77
Damien Neil9c420a62018-09-27 15:26:33 -070078// GenerateFile generates the contents of a .pb.go file.
79func GenerateFile(gen *protogen.Plugin, file *protogen.File, g *protogen.GeneratedFile) {
Damien Neild39efc82018-09-24 12:38:10 -070080 f := &fileInfo{
Damien Neilba1159f2018-10-17 12:53:18 -070081 File: file,
Damien Neilcab8dfe2018-09-06 14:51:28 -070082 }
83
Damien Neil8012b442019-01-18 09:32:24 -080084 // Collect all enums, messages, and extensions in "flattened ordering".
85 // See fileinit.FileBuilder.
Joe Tsai9667c482018-12-05 15:42:52 -080086 f.allEnums = append(f.allEnums, f.Enums...)
87 f.allMessages = append(f.allMessages, f.Messages...)
88 f.allExtensions = append(f.allExtensions, f.Extensions...)
89 walkMessages(f.Messages, func(m *protogen.Message) {
90 f.allEnums = append(f.allEnums, m.Enums...)
91 f.allMessages = append(f.allMessages, m.Messages...)
92 f.allExtensions = append(f.allExtensions, m.Extensions...)
Damien Neil73ac8852018-09-17 15:11:24 -070093 })
Damien Neilce36f8d2018-09-13 15:19:08 -070094
Joe Tsai9667c482018-12-05 15:42:52 -080095 // Derive a reverse mapping of enum and message pointers to their index
96 // in allEnums and allMessages.
97 if len(f.allEnums) > 0 {
98 f.allEnumsByPtr = make(map[*protogen.Enum]int)
99 for i, e := range f.allEnums {
100 f.allEnumsByPtr[e] = i
101 }
102 }
103 if len(f.allMessages) > 0 {
104 f.allMessagesByPtr = make(map[*protogen.Message]int)
105 for i, m := range f.allMessages {
106 f.allMessagesByPtr[m] = i
107 }
108 }
Joe Tsaib6405bd2018-11-15 14:44:37 -0800109
Damien Neil46abb572018-09-07 12:45:37 -0700110 // Determine the name of the var holding the file descriptor:
111 //
112 // fileDescriptor_<hash of filename>
113 filenameHash := sha256.Sum256([]byte(f.Desc.Path()))
Damien Neil8012b442019-01-18 09:32:24 -0800114 f.descriptorRawVar = fmt.Sprintf("fileDescriptor_%s", hex.EncodeToString(filenameHash[:8]))
115 f.descriptorGzipVar = f.descriptorRawVar + "_gzipped"
Damien Neil46abb572018-09-07 12:45:37 -0700116
Damien Neil220c2022018-08-15 11:24:18 -0700117 g.P("// Code generated by protoc-gen-go. DO NOT EDIT.")
Damien Neil55fe1c02018-09-17 15:11:24 -0700118 if f.Proto.GetOptions().GetDeprecated() {
119 g.P("// ", f.Desc.Path(), " is a deprecated file.")
120 } else {
121 g.P("// source: ", f.Desc.Path())
122 }
Damien Neil220c2022018-08-15 11:24:18 -0700123 g.P()
Damien Neilcab8dfe2018-09-06 14:51:28 -0700124 const filePackageField = 2 // FileDescriptorProto.package
Damien Neilba1159f2018-10-17 12:53:18 -0700125 g.PrintLeadingComments(protogen.Location{
126 SourceFile: f.Proto.GetName(),
127 Path: []int32{filePackageField},
128 })
Damien Neilcab8dfe2018-09-06 14:51:28 -0700129 g.P()
Damien Neil082ce922018-09-06 10:23:53 -0700130 g.P("package ", f.GoPackageName)
Damien Neilc7d07d92018-08-22 13:46:02 -0700131 g.P()
Damien Neil1ec33152018-09-13 13:12:36 -0700132
Joe Tsai24ceb2b2018-12-04 22:53:56 -0800133 if !isDescriptor(file) {
Joe Tsai24ceb2b2018-12-04 22:53:56 -0800134 g.P("// This is a compile-time assertion to ensure that this generated file")
135 g.P("// is compatible with the proto package it is being compiled against.")
136 g.P("// A compilation error at this line likely means your copy of the")
137 g.P("// proto package needs to be updated.")
138 g.P("const _ = ", protoPackage.Ident(fmt.Sprintf("ProtoPackageIsVersion%d", generatedCodeVersion)),
139 "// please upgrade the proto package")
140 g.P()
141 }
Damien Neilc7d07d92018-08-22 13:46:02 -0700142
Damien Neil73ac8852018-09-17 15:11:24 -0700143 for i, imps := 0, f.Desc.Imports(); i < imps.Len(); i++ {
144 genImport(gen, g, f, imps.Get(i))
145 }
Damien Neilce36f8d2018-09-13 15:19:08 -0700146 for _, enum := range f.allEnums {
Damien Neil46abb572018-09-07 12:45:37 -0700147 genEnum(gen, g, f, enum)
148 }
Damien Neilce36f8d2018-09-13 15:19:08 -0700149 for _, message := range f.allMessages {
Damien Neilcab8dfe2018-09-06 14:51:28 -0700150 genMessage(gen, g, f, message)
Damien Neilc7d07d92018-08-22 13:46:02 -0700151 }
Joe Tsai9667c482018-12-05 15:42:52 -0800152 for _, extension := range f.allExtensions {
Damien Neil993c04d2018-09-14 15:41:11 -0700153 genExtension(gen, g, f, extension)
154 }
Damien Neil220c2022018-08-15 11:24:18 -0700155
Damien Neilce36f8d2018-09-13 15:19:08 -0700156 genInitFunction(gen, g, f)
Damien Neil7779e052018-09-07 14:14:06 -0700157 genFileDescriptor(gen, g, f)
Joe Tsaib6405bd2018-11-15 14:44:37 -0800158 genReflectFileDescriptor(gen, g, f)
Damien Neil7779e052018-09-07 14:14:06 -0700159}
160
Damien Neil73ac8852018-09-17 15:11:24 -0700161// walkMessages calls f on each message and all of its descendants.
162func walkMessages(messages []*protogen.Message, f func(*protogen.Message)) {
163 for _, m := range messages {
164 f(m)
165 walkMessages(m.Messages, f)
166 }
167}
168
Damien Neild39efc82018-09-24 12:38:10 -0700169func genImport(gen *protogen.Plugin, g *protogen.GeneratedFile, f *fileInfo, imp protoreflect.FileImport) {
Damien Neil73ac8852018-09-17 15:11:24 -0700170 impFile, ok := gen.FileByName(imp.Path())
171 if !ok {
172 return
173 }
174 if impFile.GoImportPath == f.GoImportPath {
Damien Neil2e0c3da2018-09-19 12:51:36 -0700175 // Don't generate imports or aliases for types in the same Go package.
176 return
177 }
Damien Neil40a08052018-10-29 09:07:41 -0700178 // Generate imports for all non-weak dependencies, even if they are not
Damien Neil2e0c3da2018-09-19 12:51:36 -0700179 // referenced, because other code and tools depend on having the
180 // full transitive closure of protocol buffer types in the binary.
Damien Neil40a08052018-10-29 09:07:41 -0700181 if !imp.IsWeak {
182 g.Import(impFile.GoImportPath)
183 }
Damien Neil2e0c3da2018-09-19 12:51:36 -0700184 if !imp.IsPublic {
Damien Neil73ac8852018-09-17 15:11:24 -0700185 return
186 }
Damien Neil7bf3ce22018-12-21 15:54:06 -0800187
188 // Generate public imports by generating the imported file, parsing it,
189 // and extracting every symbol that should receive a forwarding declaration.
190 impGen := gen.NewGeneratedFile("temp.go", impFile.GoImportPath)
191 impGen.Skip()
192 GenerateFile(gen, impFile, impGen)
193 b, err := impGen.Content()
194 if err != nil {
195 gen.Error(err)
196 return
197 }
198 fset := token.NewFileSet()
199 astFile, err := parser.ParseFile(fset, "", b, parser.ParseComments)
200 if err != nil {
201 gen.Error(err)
202 return
203 }
Damien Neila7cbd062019-01-06 16:29:14 -0800204 genForward := func(tok token.Token, name string, expr ast.Expr) {
Damien Neil7bf3ce22018-12-21 15:54:06 -0800205 // Don't import unexported symbols.
206 r, _ := utf8.DecodeRuneInString(name)
207 if !unicode.IsUpper(r) {
Damien Neil2193e8d2018-10-09 12:49:13 -0700208 return
209 }
Damien Neil7bf3ce22018-12-21 15:54:06 -0800210 // Don't import the FileDescriptor.
211 if name == impFile.GoDescriptorIdent.GoName {
212 return
213 }
Damien Neila7cbd062019-01-06 16:29:14 -0800214 // Don't import decls referencing a symbol defined in another package.
215 // i.e., don't import decls which are themselves public imports:
216 //
217 // type T = somepackage.T
218 if _, ok := expr.(*ast.SelectorExpr); ok {
219 return
220 }
Damien Neil7bf3ce22018-12-21 15:54:06 -0800221 g.P(tok, " ", name, " = ", impFile.GoImportPath.Ident(name))
222 }
223 g.P("// Symbols defined in public import of ", imp.Path())
224 g.P()
225 for _, decl := range astFile.Decls {
226 switch decl := decl.(type) {
227 case *ast.GenDecl:
228 for _, spec := range decl.Specs {
229 switch spec := spec.(type) {
230 case *ast.TypeSpec:
Damien Neila7cbd062019-01-06 16:29:14 -0800231 genForward(decl.Tok, spec.Name.Name, spec.Type)
Damien Neil7bf3ce22018-12-21 15:54:06 -0800232 case *ast.ValueSpec:
Damien Neila7cbd062019-01-06 16:29:14 -0800233 for i, name := range spec.Names {
234 var expr ast.Expr
235 if i < len(spec.Values) {
236 expr = spec.Values[i]
237 }
238 genForward(decl.Tok, name.Name, expr)
Damien Neil7bf3ce22018-12-21 15:54:06 -0800239 }
240 case *ast.ImportSpec:
241 default:
242 panic(fmt.Sprintf("can't generate forward for spec type %T", spec))
Damien Neil7e5c6472018-11-29 08:57:07 -0800243 }
Damien Neil2193e8d2018-10-09 12:49:13 -0700244 }
Damien Neil2193e8d2018-10-09 12:49:13 -0700245 }
Damien Neil6b541312018-10-29 09:14:14 -0700246 }
Damien Neil2193e8d2018-10-09 12:49:13 -0700247 g.P()
Damien Neilce36f8d2018-09-13 15:19:08 -0700248}
249
Damien Neild39efc82018-09-24 12:38:10 -0700250func genFileDescriptor(gen *protogen.Plugin, g *protogen.GeneratedFile, f *fileInfo) {
Damien Neil7779e052018-09-07 14:14:06 -0700251 // Trim the source_code_info from the descriptor.
252 // Marshal and gzip it.
Joe Tsaie1f8d502018-11-26 18:55:29 -0800253 descProto := proto.Clone(f.Proto).(*descriptorpb.FileDescriptorProto)
Damien Neil7779e052018-09-07 14:14:06 -0700254 descProto.SourceCodeInfo = nil
255 b, err := proto.Marshal(descProto)
256 if err != nil {
257 gen.Error(err)
258 return
259 }
Damien Neil7779e052018-09-07 14:14:06 -0700260
Damien Neil8012b442019-01-18 09:32:24 -0800261 g.P("var ", f.descriptorRawVar, " = []byte{")
262 g.P("// ", len(b), " bytes of the wire-encoded FileDescriptorProto")
Damien Neil7779e052018-09-07 14:14:06 -0700263 for len(b) > 0 {
264 n := 16
265 if n > len(b) {
266 n = len(b)
267 }
268
269 s := ""
270 for _, c := range b[:n] {
271 s += fmt.Sprintf("0x%02x,", c)
272 }
273 g.P(s)
274
275 b = b[n:]
276 }
277 g.P("}")
278 g.P()
Damien Neil8012b442019-01-18 09:32:24 -0800279
Joe Tsaicf81e672019-02-28 14:08:31 -0800280 // TODO: Modify CompressGZIP to lazy encode? Currently, the GZIP'd form
281 // is eagerly registered in v1, preventing any benefit from lazy encoding.
282 g.P("var ", f.descriptorGzipVar, " = ", protoapiPackage.Ident("CompressGZIP"), "(", f.descriptorRawVar, ")")
Damien Neil8012b442019-01-18 09:32:24 -0800283 g.P()
Damien Neil220c2022018-08-15 11:24:18 -0700284}
Damien Neilc7d07d92018-08-22 13:46:02 -0700285
Damien Neild39efc82018-09-24 12:38:10 -0700286func genEnum(gen *protogen.Plugin, g *protogen.GeneratedFile, f *fileInfo, enum *protogen.Enum) {
Damien Neilba1159f2018-10-17 12:53:18 -0700287 g.PrintLeadingComments(enum.Location)
Damien Neil162c1272018-10-04 12:42:37 -0700288 g.Annotate(enum.GoIdent.GoName, enum.Location)
Damien Neil55fe1c02018-09-17 15:11:24 -0700289 g.P("type ", enum.GoIdent, " int32",
Joe Tsaie1f8d502018-11-26 18:55:29 -0800290 deprecationComment(enum.Desc.Options().(*descriptorpb.EnumOptions).GetDeprecated()))
Damien Neil46abb572018-09-07 12:45:37 -0700291 g.P("const (")
292 for _, value := range enum.Values {
Damien Neilba1159f2018-10-17 12:53:18 -0700293 g.PrintLeadingComments(value.Location)
Damien Neil162c1272018-10-04 12:42:37 -0700294 g.Annotate(value.GoIdent.GoName, value.Location)
Damien Neil55fe1c02018-09-17 15:11:24 -0700295 g.P(value.GoIdent, " ", enum.GoIdent, " = ", value.Desc.Number(),
Joe Tsaie1f8d502018-11-26 18:55:29 -0800296 deprecationComment(value.Desc.Options().(*descriptorpb.EnumValueOptions).GetDeprecated()))
Damien Neil46abb572018-09-07 12:45:37 -0700297 }
298 g.P(")")
299 g.P()
Joe Tsaib6405bd2018-11-15 14:44:37 -0800300
301 // Generate support for protobuf reflection.
302 genReflectEnum(gen, g, f, enum)
303
Damien Neil46abb572018-09-07 12:45:37 -0700304 nameMap := enum.GoIdent.GoName + "_name"
305 g.P("var ", nameMap, " = map[int32]string{")
306 generated := make(map[protoreflect.EnumNumber]bool)
307 for _, value := range enum.Values {
308 duplicate := ""
309 if _, present := generated[value.Desc.Number()]; present {
310 duplicate = "// Duplicate value: "
311 }
312 g.P(duplicate, value.Desc.Number(), ": ", strconv.Quote(string(value.Desc.Name())), ",")
313 generated[value.Desc.Number()] = true
314 }
315 g.P("}")
316 g.P()
317 valueMap := enum.GoIdent.GoName + "_value"
318 g.P("var ", valueMap, " = map[string]int32{")
319 for _, value := range enum.Values {
320 g.P(strconv.Quote(string(value.Desc.Name())), ": ", value.Desc.Number(), ",")
321 }
322 g.P("}")
323 g.P()
324 if enum.Desc.Syntax() != protoreflect.Proto3 {
325 g.P("func (x ", enum.GoIdent, ") Enum() *", enum.GoIdent, " {")
326 g.P("p := new(", enum.GoIdent, ")")
327 g.P("*p = x")
328 g.P("return p")
329 g.P("}")
330 g.P()
331 }
332 g.P("func (x ", enum.GoIdent, ") String() string {")
Joe Tsai24ceb2b2018-12-04 22:53:56 -0800333 g.P("return ", f.protoPackage().Ident("EnumName"), "(", enum.GoIdent, "_name, int32(x))")
Damien Neil46abb572018-09-07 12:45:37 -0700334 g.P("}")
335 g.P()
336
Joe Tsai73903462018-12-14 12:22:41 -0800337 if enum.Desc.Syntax() == protoreflect.Proto2 {
Damien Neil46abb572018-09-07 12:45:37 -0700338 g.P("func (x *", enum.GoIdent, ") UnmarshalJSON(data []byte) error {")
Joe Tsai24ceb2b2018-12-04 22:53:56 -0800339 g.P("value, err := ", f.protoPackage().Ident("UnmarshalJSONEnum"), "(", enum.GoIdent, `_value, data, "`, enum.GoIdent, `")`)
Damien Neil46abb572018-09-07 12:45:37 -0700340 g.P("if err != nil {")
341 g.P("return err")
342 g.P("}")
343 g.P("*x = ", enum.GoIdent, "(value)")
344 g.P("return nil")
345 g.P("}")
346 g.P()
347 }
348
349 var indexes []string
Damien Neil162c1272018-10-04 12:42:37 -0700350 for i := 1; i < len(enum.Location.Path); i += 2 {
351 indexes = append(indexes, strconv.Itoa(int(enum.Location.Path[i])))
Damien Neil46abb572018-09-07 12:45:37 -0700352 }
353 g.P("func (", enum.GoIdent, ") EnumDescriptor() ([]byte, []int) {")
Damien Neil8012b442019-01-18 09:32:24 -0800354 g.P("return ", f.descriptorGzipVar, ", []int{", strings.Join(indexes, ","), "}")
Damien Neil46abb572018-09-07 12:45:37 -0700355 g.P("}")
356 g.P()
357
Damien Neilea7baf42018-09-28 14:23:44 -0700358 genWellKnownType(g, "", enum.GoIdent, enum.Desc)
Damien Neil46abb572018-09-07 12:45:37 -0700359}
360
Damien Neil658051b2018-09-10 12:26:21 -0700361// enumRegistryName returns the name used to register an enum with the proto
362// package registry.
363//
364// Confusingly, this is <proto_package>.<go_ident>. This probably should have
365// been the full name of the proto enum type instead, but changing it at this
366// point would require thought.
367func enumRegistryName(enum *protogen.Enum) string {
368 // Find the FileDescriptor for this enum.
369 var desc protoreflect.Descriptor = enum.Desc
370 for {
371 p, ok := desc.Parent()
372 if !ok {
373 break
374 }
375 desc = p
376 }
377 fdesc := desc.(protoreflect.FileDescriptor)
Damien Neildaa4fad2018-10-08 14:08:27 -0700378 if fdesc.Package() == "" {
379 return enum.GoIdent.GoName
380 }
Damien Neil658051b2018-09-10 12:26:21 -0700381 return string(fdesc.Package()) + "." + enum.GoIdent.GoName
382}
383
Damien Neild39efc82018-09-24 12:38:10 -0700384func genMessage(gen *protogen.Plugin, g *protogen.GeneratedFile, f *fileInfo, message *protogen.Message) {
Damien Neil0bd5a382018-09-13 15:07:10 -0700385 if message.Desc.IsMapEntry() {
386 return
387 }
388
Damien Neilba1159f2018-10-17 12:53:18 -0700389 hasComment := g.PrintLeadingComments(message.Location)
Joe Tsaie1f8d502018-11-26 18:55:29 -0800390 if message.Desc.Options().(*descriptorpb.MessageOptions).GetDeprecated() {
Damien Neil55fe1c02018-09-17 15:11:24 -0700391 if hasComment {
392 g.P("//")
393 }
394 g.P(deprecationComment(true))
395 }
Damien Neil162c1272018-10-04 12:42:37 -0700396 g.Annotate(message.GoIdent.GoName, message.Location)
Damien Neilcab8dfe2018-09-06 14:51:28 -0700397 g.P("type ", message.GoIdent, " struct {")
Damien Neil658051b2018-09-10 12:26:21 -0700398 for _, field := range message.Fields {
Damien Neil1fa78d82018-09-13 13:12:36 -0700399 if field.OneofType != nil {
400 // It would be a bit simpler to iterate over the oneofs below,
401 // but generating the field here keeps the contents of the Go
402 // struct in the same order as the contents of the source
403 // .proto file.
404 if field == field.OneofType.Fields[0] {
405 genOneofField(gen, g, f, message, field.OneofType)
406 }
Damien Neil658051b2018-09-10 12:26:21 -0700407 continue
408 }
Damien Neilba1159f2018-10-17 12:53:18 -0700409 g.PrintLeadingComments(field.Location)
Damien Neil77f82fe2018-09-13 10:59:17 -0700410 goType, pointer := fieldGoType(g, field)
411 if pointer {
412 goType = "*" + goType
413 }
Damien Neil0bd5a382018-09-13 15:07:10 -0700414 tags := []string{
415 fmt.Sprintf("protobuf:%q", fieldProtobufTag(field)),
416 fmt.Sprintf("json:%q", fieldJSONTag(field)),
417 }
418 if field.Desc.IsMap() {
419 key := field.MessageType.Fields[0]
420 val := field.MessageType.Fields[1]
421 tags = append(tags,
422 fmt.Sprintf("protobuf_key:%q", fieldProtobufTag(key)),
423 fmt.Sprintf("protobuf_val:%q", fieldProtobufTag(val)),
424 )
425 }
Damien Neil162c1272018-10-04 12:42:37 -0700426 g.Annotate(message.GoIdent.GoName+"."+field.GoName, field.Location)
Damien Neil55fe1c02018-09-17 15:11:24 -0700427 g.P(field.GoName, " ", goType, " `", strings.Join(tags, " "), "`",
Joe Tsaie1f8d502018-11-26 18:55:29 -0800428 deprecationComment(field.Desc.Options().(*descriptorpb.FieldOptions).GetDeprecated()))
Damien Neil658051b2018-09-10 12:26:21 -0700429 }
430 g.P("XXX_NoUnkeyedLiteral struct{} `json:\"-\"`")
Damien Neil993c04d2018-09-14 15:41:11 -0700431
432 if message.Desc.ExtensionRanges().Len() > 0 {
433 var tags []string
Joe Tsaie1f8d502018-11-26 18:55:29 -0800434 if message.Desc.Options().(*descriptorpb.MessageOptions).GetMessageSetWireFormat() {
Damien Neil993c04d2018-09-14 15:41:11 -0700435 tags = append(tags, `protobuf_messageset:"1"`)
436 }
437 tags = append(tags, `json:"-"`)
Joe Tsai24ceb2b2018-12-04 22:53:56 -0800438 g.P(f.protoPackage().Ident("XXX_InternalExtensions"), " `", strings.Join(tags, " "), "`")
Damien Neil993c04d2018-09-14 15:41:11 -0700439 }
Damien Neil658051b2018-09-10 12:26:21 -0700440 g.P("XXX_unrecognized []byte `json:\"-\"`")
441 g.P("XXX_sizecache int32 `json:\"-\"`")
Damien Neilc7d07d92018-08-22 13:46:02 -0700442 g.P("}")
443 g.P()
444
Joe Tsaib6405bd2018-11-15 14:44:37 -0800445 // Generate support for protobuf reflection.
446 genReflectMessage(gen, g, f, message)
447
Damien Neila1c6abc2018-09-12 13:36:34 -0700448 // Reset
449 g.P("func (m *", message.GoIdent, ") Reset() { *m = ", message.GoIdent, "{} }")
450 // String
Joe Tsai24ceb2b2018-12-04 22:53:56 -0800451 g.P("func (m *", message.GoIdent, ") String() string { return ", f.protoPackage().Ident("CompactTextString"), "(m) }")
Damien Neila1c6abc2018-09-12 13:36:34 -0700452 // ProtoMessage
453 g.P("func (*", message.GoIdent, ") ProtoMessage() {}")
454 // Descriptor
455 var indexes []string
Damien Neil162c1272018-10-04 12:42:37 -0700456 for i := 1; i < len(message.Location.Path); i += 2 {
457 indexes = append(indexes, strconv.Itoa(int(message.Location.Path[i])))
Damien Neila1c6abc2018-09-12 13:36:34 -0700458 }
459 g.P("func (*", message.GoIdent, ") Descriptor() ([]byte, []int) {")
Damien Neil8012b442019-01-18 09:32:24 -0800460 g.P("return ", f.descriptorGzipVar, ", []int{", strings.Join(indexes, ","), "}")
Damien Neila1c6abc2018-09-12 13:36:34 -0700461 g.P("}")
Damien Neil993c04d2018-09-14 15:41:11 -0700462 g.P()
463
464 // ExtensionRangeArray
465 if extranges := message.Desc.ExtensionRanges(); extranges.Len() > 0 {
Joe Tsai24ceb2b2018-12-04 22:53:56 -0800466 protoExtRange := f.protoPackage().Ident("ExtensionRange")
Damien Neil993c04d2018-09-14 15:41:11 -0700467 extRangeVar := "extRange_" + message.GoIdent.GoName
468 g.P("var ", extRangeVar, " = []", protoExtRange, " {")
469 for i := 0; i < extranges.Len(); i++ {
470 r := extranges.Get(i)
471 g.P("{Start:", r[0], ", End:", r[1]-1 /* inclusive */, "},")
472 }
473 g.P("}")
474 g.P()
475 g.P("func (*", message.GoIdent, ") ExtensionRangeArray() []", protoExtRange, " {")
476 g.P("return ", extRangeVar)
477 g.P("}")
478 g.P()
479 }
Damien Neila1c6abc2018-09-12 13:36:34 -0700480
Damien Neilea7baf42018-09-28 14:23:44 -0700481 genWellKnownType(g, "*", message.GoIdent, message.Desc)
482
Damien Neila1c6abc2018-09-12 13:36:34 -0700483 // Table-driven proto support.
484 //
485 // TODO: It does not scale to keep adding another method for every
486 // operation on protos that we want to switch over to using the
487 // table-driven approach. Instead, we should only add a single method
488 // that allows getting access to the *InternalMessageInfo struct and then
489 // calling Unmarshal, Marshal, Merge, Size, and Discard directly on that.
Joe Tsai24ceb2b2018-12-04 22:53:56 -0800490 if !isDescriptor(f.File) {
491 // NOTE: We avoid adding table-driven support for descriptor proto
492 // since this depends on the v1 proto package, which would eventually
493 // need to depend on the descriptor itself.
494 messageInfoVar := "xxx_messageInfo_" + message.GoIdent.GoName
495 // XXX_Unmarshal
496 g.P("func (m *", message.GoIdent, ") XXX_Unmarshal(b []byte) error {")
497 g.P("return ", messageInfoVar, ".Unmarshal(m, b)")
498 g.P("}")
499 // XXX_Marshal
500 g.P("func (m *", message.GoIdent, ") XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {")
501 g.P("return ", messageInfoVar, ".Marshal(b, m, deterministic)")
502 g.P("}")
503 // XXX_Merge
504 g.P("func (m *", message.GoIdent, ") XXX_Merge(src proto.Message) {")
505 g.P(messageInfoVar, ".Merge(m, src)")
506 g.P("}")
507 // XXX_Size
508 g.P("func (m *", message.GoIdent, ") XXX_Size() int {")
509 g.P("return ", messageInfoVar, ".Size(m)")
510 g.P("}")
511 // XXX_DiscardUnknown
512 g.P("func (m *", message.GoIdent, ") XXX_DiscardUnknown() {")
513 g.P(messageInfoVar, ".DiscardUnknown(m)")
514 g.P("}")
515 g.P()
516 g.P("var ", messageInfoVar, " ", protoPackage.Ident("InternalMessageInfo"))
517 g.P()
518 }
Damien Neila1c6abc2018-09-12 13:36:34 -0700519
Damien Neilebc699d2018-09-13 08:50:13 -0700520 // Constants and vars holding the default values of fields.
521 for _, field := range message.Fields {
Joe Tsai9667c482018-12-05 15:42:52 -0800522 if !field.Desc.HasDefault() {
Damien Neilebc699d2018-09-13 08:50:13 -0700523 continue
524 }
Damien Neil1fa78d82018-09-13 13:12:36 -0700525 defVarName := "Default_" + message.GoIdent.GoName + "_" + field.GoName
Damien Neilebc699d2018-09-13 08:50:13 -0700526 def := field.Desc.Default()
527 switch field.Desc.Kind() {
528 case protoreflect.StringKind:
529 g.P("const ", defVarName, " string = ", strconv.Quote(def.String()))
530 case protoreflect.BytesKind:
531 g.P("var ", defVarName, " []byte = []byte(", strconv.Quote(string(def.Bytes())), ")")
532 case protoreflect.EnumKind:
Damien Neila485fbd2018-10-26 13:28:37 -0700533 evalueDesc := field.Desc.DefaultEnumValue()
Damien Neilebc699d2018-09-13 08:50:13 -0700534 enum := field.EnumType
Damien Neila485fbd2018-10-26 13:28:37 -0700535 evalue := enum.Values[evalueDesc.Index()]
Damien Neilebc699d2018-09-13 08:50:13 -0700536 g.P("const ", defVarName, " ", field.EnumType.GoIdent, " = ", evalue.GoIdent)
537 case protoreflect.FloatKind, protoreflect.DoubleKind:
538 // Floating point numbers need extra handling for -Inf/Inf/NaN.
539 f := field.Desc.Default().Float()
540 goType := "float64"
541 if field.Desc.Kind() == protoreflect.FloatKind {
542 goType = "float32"
543 }
544 // funcCall returns a call to a function in the math package,
545 // possibly converting the result to float32.
546 funcCall := func(fn, param string) string {
Joe Tsaic1c17aa2018-11-16 11:14:14 -0800547 s := g.QualifiedGoIdent(mathPackage.Ident(fn)) + param
Damien Neilebc699d2018-09-13 08:50:13 -0700548 if goType != "float64" {
549 s = goType + "(" + s + ")"
550 }
551 return s
552 }
553 switch {
554 case math.IsInf(f, -1):
555 g.P("var ", defVarName, " ", goType, " = ", funcCall("Inf", "(-1)"))
556 case math.IsInf(f, 1):
557 g.P("var ", defVarName, " ", goType, " = ", funcCall("Inf", "(1)"))
558 case math.IsNaN(f):
559 g.P("var ", defVarName, " ", goType, " = ", funcCall("NaN", "()"))
560 default:
Damien Neil982684b2018-09-28 14:12:41 -0700561 g.P("const ", defVarName, " ", goType, " = ", field.Desc.Default().Interface())
Damien Neilebc699d2018-09-13 08:50:13 -0700562 }
563 default:
Damien Neil77f82fe2018-09-13 10:59:17 -0700564 goType, _ := fieldGoType(g, field)
Damien Neilebc699d2018-09-13 08:50:13 -0700565 g.P("const ", defVarName, " ", goType, " = ", def.Interface())
566 }
567 }
568 g.P()
569
Damien Neil77f82fe2018-09-13 10:59:17 -0700570 // Getters.
571 for _, field := range message.Fields {
Damien Neil1fa78d82018-09-13 13:12:36 -0700572 if field.OneofType != nil {
573 if field == field.OneofType.Fields[0] {
574 genOneofTypes(gen, g, f, message, field.OneofType)
575 }
576 }
Damien Neil77f82fe2018-09-13 10:59:17 -0700577 goType, pointer := fieldGoType(g, field)
578 defaultValue := fieldDefaultValue(g, message, field)
Joe Tsaie1f8d502018-11-26 18:55:29 -0800579 if field.Desc.Options().(*descriptorpb.FieldOptions).GetDeprecated() {
Damien Neil55fe1c02018-09-17 15:11:24 -0700580 g.P(deprecationComment(true))
581 }
Damien Neil162c1272018-10-04 12:42:37 -0700582 g.Annotate(message.GoIdent.GoName+".Get"+field.GoName, field.Location)
Damien Neil1fa78d82018-09-13 13:12:36 -0700583 g.P("func (m *", message.GoIdent, ") Get", field.GoName, "() ", goType, " {")
584 if field.OneofType != nil {
Damien Neil81d6d832018-09-19 12:12:17 -0700585 g.P("if x, ok := m.Get", field.OneofType.GoName, "().(*", fieldOneofType(field), "); ok {")
Damien Neil1fa78d82018-09-13 13:12:36 -0700586 g.P("return x.", field.GoName)
587 g.P("}")
Damien Neil77f82fe2018-09-13 10:59:17 -0700588 } else {
Damien Neil1fa78d82018-09-13 13:12:36 -0700589 if field.Desc.Syntax() == protoreflect.Proto3 || defaultValue == "nil" {
590 g.P("if m != nil {")
591 } else {
592 g.P("if m != nil && m.", field.GoName, " != nil {")
593 }
594 star := ""
595 if pointer {
596 star = "*"
597 }
598 g.P("return ", star, " m.", field.GoName)
599 g.P("}")
Damien Neil77f82fe2018-09-13 10:59:17 -0700600 }
Damien Neil77f82fe2018-09-13 10:59:17 -0700601 g.P("return ", defaultValue)
602 g.P("}")
603 g.P()
604 }
Damien Neila1c6abc2018-09-12 13:36:34 -0700605
Damien Neil1fa78d82018-09-13 13:12:36 -0700606 if len(message.Oneofs) > 0 {
Joe Tsaid7e97bc2018-11-26 12:57:27 -0800607 genOneofWrappers(gen, g, f, message)
Damien Neil1fa78d82018-09-13 13:12:36 -0700608 }
Damien Neilc7d07d92018-08-22 13:46:02 -0700609}
Damien Neilcab8dfe2018-09-06 14:51:28 -0700610
Damien Neil77f82fe2018-09-13 10:59:17 -0700611// fieldGoType returns the Go type used for a field.
612//
613// If it returns pointer=true, the struct field is a pointer to the type.
614func fieldGoType(g *protogen.GeneratedFile, field *protogen.Field) (goType string, pointer bool) {
Damien Neil77f82fe2018-09-13 10:59:17 -0700615 pointer = true
Damien Neil658051b2018-09-10 12:26:21 -0700616 switch field.Desc.Kind() {
617 case protoreflect.BoolKind:
Damien Neil77f82fe2018-09-13 10:59:17 -0700618 goType = "bool"
Damien Neil658051b2018-09-10 12:26:21 -0700619 case protoreflect.EnumKind:
Damien Neil77f82fe2018-09-13 10:59:17 -0700620 goType = g.QualifiedGoIdent(field.EnumType.GoIdent)
Damien Neil658051b2018-09-10 12:26:21 -0700621 case protoreflect.Int32Kind, protoreflect.Sint32Kind, protoreflect.Sfixed32Kind:
Damien Neil77f82fe2018-09-13 10:59:17 -0700622 goType = "int32"
Damien Neil658051b2018-09-10 12:26:21 -0700623 case protoreflect.Uint32Kind, protoreflect.Fixed32Kind:
Damien Neil77f82fe2018-09-13 10:59:17 -0700624 goType = "uint32"
Damien Neil658051b2018-09-10 12:26:21 -0700625 case protoreflect.Int64Kind, protoreflect.Sint64Kind, protoreflect.Sfixed64Kind:
Damien Neil77f82fe2018-09-13 10:59:17 -0700626 goType = "int64"
Damien Neil658051b2018-09-10 12:26:21 -0700627 case protoreflect.Uint64Kind, protoreflect.Fixed64Kind:
Damien Neil77f82fe2018-09-13 10:59:17 -0700628 goType = "uint64"
Damien Neil658051b2018-09-10 12:26:21 -0700629 case protoreflect.FloatKind:
Damien Neil77f82fe2018-09-13 10:59:17 -0700630 goType = "float32"
Damien Neil658051b2018-09-10 12:26:21 -0700631 case protoreflect.DoubleKind:
Damien Neil77f82fe2018-09-13 10:59:17 -0700632 goType = "float64"
Damien Neil658051b2018-09-10 12:26:21 -0700633 case protoreflect.StringKind:
Damien Neil77f82fe2018-09-13 10:59:17 -0700634 goType = "string"
Damien Neil658051b2018-09-10 12:26:21 -0700635 case protoreflect.BytesKind:
Damien Neil77f82fe2018-09-13 10:59:17 -0700636 goType = "[]byte"
637 pointer = false
Damien Neil658051b2018-09-10 12:26:21 -0700638 case protoreflect.MessageKind, protoreflect.GroupKind:
Damien Neil0bd5a382018-09-13 15:07:10 -0700639 if field.Desc.IsMap() {
640 keyType, _ := fieldGoType(g, field.MessageType.Fields[0])
641 valType, _ := fieldGoType(g, field.MessageType.Fields[1])
642 return fmt.Sprintf("map[%v]%v", keyType, valType), false
643 }
Damien Neil77f82fe2018-09-13 10:59:17 -0700644 goType = "*" + g.QualifiedGoIdent(field.MessageType.GoIdent)
645 pointer = false
Damien Neil658051b2018-09-10 12:26:21 -0700646 }
647 if field.Desc.Cardinality() == protoreflect.Repeated {
Damien Neil77f82fe2018-09-13 10:59:17 -0700648 goType = "[]" + goType
649 pointer = false
Damien Neil658051b2018-09-10 12:26:21 -0700650 }
Damien Neil44000a12018-10-24 12:31:16 -0700651 // Extension fields always have pointer type, even when defined in a proto3 file.
652 if field.Desc.Syntax() == protoreflect.Proto3 && field.Desc.ExtendedType() == nil {
Damien Neil77f82fe2018-09-13 10:59:17 -0700653 pointer = false
Damien Neil658051b2018-09-10 12:26:21 -0700654 }
Damien Neil77f82fe2018-09-13 10:59:17 -0700655 return goType, pointer
Damien Neil658051b2018-09-10 12:26:21 -0700656}
657
658func fieldProtobufTag(field *protogen.Field) string {
Joe Tsai05828db2018-11-01 13:52:16 -0700659 var enumName string
Damien Neil658051b2018-09-10 12:26:21 -0700660 if field.Desc.Kind() == protoreflect.EnumKind {
Joe Tsai05828db2018-11-01 13:52:16 -0700661 enumName = enumRegistryName(field.EnumType)
Damien Neil658051b2018-09-10 12:26:21 -0700662 }
Joe Tsai05828db2018-11-01 13:52:16 -0700663 return tag.Marshal(field.Desc, enumName)
Damien Neil658051b2018-09-10 12:26:21 -0700664}
665
Damien Neil77f82fe2018-09-13 10:59:17 -0700666func fieldDefaultValue(g *protogen.GeneratedFile, message *protogen.Message, field *protogen.Field) string {
667 if field.Desc.Cardinality() == protoreflect.Repeated {
668 return "nil"
669 }
Joe Tsai9667c482018-12-05 15:42:52 -0800670 if field.Desc.HasDefault() {
Damien Neil1fa78d82018-09-13 13:12:36 -0700671 defVarName := "Default_" + message.GoIdent.GoName + "_" + field.GoName
Damien Neil77f82fe2018-09-13 10:59:17 -0700672 if field.Desc.Kind() == protoreflect.BytesKind {
673 return "append([]byte(nil), " + defVarName + "...)"
674 }
675 return defVarName
676 }
677 switch field.Desc.Kind() {
678 case protoreflect.BoolKind:
679 return "false"
680 case protoreflect.StringKind:
681 return `""`
682 case protoreflect.MessageKind, protoreflect.GroupKind, protoreflect.BytesKind:
683 return "nil"
684 case protoreflect.EnumKind:
685 return g.QualifiedGoIdent(field.EnumType.Values[0].GoIdent)
686 default:
687 return "0"
688 }
689}
690
Damien Neil658051b2018-09-10 12:26:21 -0700691func fieldJSONTag(field *protogen.Field) string {
692 return string(field.Desc.Name()) + ",omitempty"
693}
694
Damien Neild39efc82018-09-24 12:38:10 -0700695func genExtension(gen *protogen.Plugin, g *protogen.GeneratedFile, f *fileInfo, extension *protogen.Extension) {
Damien Neil154da982018-09-19 13:21:58 -0700696 // Special case for proto2 message sets: If this extension is extending
697 // proto2.bridge.MessageSet, and its final name component is "message_set_extension",
698 // then drop that last component.
699 //
700 // TODO: This should be implemented in the text formatter rather than the generator.
701 // In addition, the situation for when to apply this special case is implemented
702 // differently in other languages:
703 // https://github.com/google/protobuf/blob/aff10976/src/google/protobuf/text_format.cc#L1560
704 name := extension.Desc.FullName()
Damien Neil62386962018-10-30 10:35:48 -0700705 if n, ok := isExtensionMessageSetElement(extension); ok {
706 name = n
Damien Neil154da982018-09-19 13:21:58 -0700707 }
708
Joe Tsai24ceb2b2018-12-04 22:53:56 -0800709 g.P("var ", extensionVar(f.File, extension), " = &", f.protoPackage().Ident("ExtensionDesc"), "{")
Damien Neil993c04d2018-09-14 15:41:11 -0700710 g.P("ExtendedType: (*", extension.ExtendedType.GoIdent, ")(nil),")
711 goType, pointer := fieldGoType(g, extension)
712 if pointer {
713 goType = "*" + goType
714 }
715 g.P("ExtensionType: (", goType, ")(nil),")
716 g.P("Field: ", extension.Desc.Number(), ",")
Damien Neil154da982018-09-19 13:21:58 -0700717 g.P("Name: ", strconv.Quote(string(name)), ",")
Damien Neil993c04d2018-09-14 15:41:11 -0700718 g.P("Tag: ", strconv.Quote(fieldProtobufTag(extension)), ",")
719 g.P("Filename: ", strconv.Quote(f.Desc.Path()), ",")
720 g.P("}")
721 g.P()
722}
723
Damien Neil62386962018-10-30 10:35:48 -0700724// isExtensionMessageSetELement returns the adjusted name of an extension
725// which extends proto2.bridge.MessageSet.
726func isExtensionMessageSetElement(extension *protogen.Extension) (name protoreflect.FullName, ok bool) {
Joe Tsaie1f8d502018-11-26 18:55:29 -0800727 opts := extension.ExtendedType.Desc.Options().(*descriptorpb.MessageOptions)
Damien Neil62386962018-10-30 10:35:48 -0700728 if !opts.GetMessageSetWireFormat() || extension.Desc.Name() != "message_set_extension" {
729 return "", false
730 }
731 if extension.ParentMessage == nil {
732 // This case shouldn't be given special handling at all--we're
733 // only supposed to drop the ".message_set_extension" for
734 // extensions defined within a message (i.e., the extension
735 // takes the message's name).
736 //
737 // This matches the behavior of the v1 generator, however.
738 //
739 // TODO: See if we can drop this case.
740 name = extension.Desc.FullName()
741 name = name[:len(name)-len("message_set_extension")]
742 return name, true
743 }
744 return extension.Desc.FullName().Parent(), true
Damien Neil154da982018-09-19 13:21:58 -0700745}
746
Damien Neil993c04d2018-09-14 15:41:11 -0700747// extensionVar returns the var holding the ExtensionDesc for an extension.
Damien Neil6b541312018-10-29 09:14:14 -0700748func extensionVar(f *protogen.File, extension *protogen.Extension) protogen.GoIdent {
Damien Neil993c04d2018-09-14 15:41:11 -0700749 name := "E_"
750 if extension.ParentMessage != nil {
751 name += extension.ParentMessage.GoIdent.GoName + "_"
752 }
753 name += extension.GoName
Joe Tsaic1c17aa2018-11-16 11:14:14 -0800754 return f.GoImportPath.Ident(name)
Damien Neil993c04d2018-09-14 15:41:11 -0700755}
756
Damien Neilce36f8d2018-09-13 15:19:08 -0700757// genInitFunction generates an init function that registers the types in the
758// generated file with the proto package.
Damien Neild39efc82018-09-24 12:38:10 -0700759func genInitFunction(gen *protogen.Plugin, g *protogen.GeneratedFile, f *fileInfo) {
Damien Neilce36f8d2018-09-13 15:19:08 -0700760 g.P("func init() {")
Damien Neil8012b442019-01-18 09:32:24 -0800761 g.P(f.protoPackage().Ident("RegisterFile"), "(", strconv.Quote(f.Desc.Path()), ", ", f.descriptorGzipVar, ")")
Damien Neil154da982018-09-19 13:21:58 -0700762 for _, enum := range f.allEnums {
763 name := enum.GoIdent.GoName
Joe Tsai24ceb2b2018-12-04 22:53:56 -0800764 g.P(f.protoPackage().Ident("RegisterEnum"), fmt.Sprintf("(%q, %s_name, %s_value)", enumRegistryName(enum), name, name))
Damien Neil154da982018-09-19 13:21:58 -0700765 }
Damien Neilce36f8d2018-09-13 15:19:08 -0700766 for _, message := range f.allMessages {
767 if message.Desc.IsMapEntry() {
768 continue
769 }
770
771 name := message.GoIdent.GoName
Joe Tsai24ceb2b2018-12-04 22:53:56 -0800772 g.P(f.protoPackage().Ident("RegisterType"), fmt.Sprintf("((*%s)(nil), %q)", name, message.Desc.FullName()))
Damien Neilce36f8d2018-09-13 15:19:08 -0700773
774 // Types of map fields, sorted by the name of the field message type.
775 var mapFields []*protogen.Field
776 for _, field := range message.Fields {
777 if field.Desc.IsMap() {
778 mapFields = append(mapFields, field)
779 }
780 }
781 sort.Slice(mapFields, func(i, j int) bool {
782 ni := mapFields[i].MessageType.Desc.FullName()
783 nj := mapFields[j].MessageType.Desc.FullName()
784 return ni < nj
785 })
786 for _, field := range mapFields {
787 typeName := string(field.MessageType.Desc.FullName())
788 goType, _ := fieldGoType(g, field)
Joe Tsai24ceb2b2018-12-04 22:53:56 -0800789 g.P(f.protoPackage().Ident("RegisterMapType"), fmt.Sprintf("((%v)(nil), %q)", goType, typeName))
Damien Neilce36f8d2018-09-13 15:19:08 -0700790 }
791 }
Joe Tsai9667c482018-12-05 15:42:52 -0800792 for _, extension := range f.allExtensions {
793 g.P(f.protoPackage().Ident("RegisterExtension"), "(", extensionVar(f.File, extension), ")")
Damien Neil993c04d2018-09-14 15:41:11 -0700794 }
Damien Neilce36f8d2018-09-13 15:19:08 -0700795 g.P("}")
796 g.P()
797}
798
Damien Neil55fe1c02018-09-17 15:11:24 -0700799// deprecationComment returns a standard deprecation comment if deprecated is true.
800func deprecationComment(deprecated bool) string {
801 if !deprecated {
802 return ""
803 }
804 return "// Deprecated: Do not use."
805}
806
Damien Neilea7baf42018-09-28 14:23:44 -0700807func genWellKnownType(g *protogen.GeneratedFile, ptr string, ident protogen.GoIdent, desc protoreflect.Descriptor) {
Damien Neil46abb572018-09-07 12:45:37 -0700808 if wellKnownTypes[desc.FullName()] {
Damien Neilea7baf42018-09-28 14:23:44 -0700809 g.P("func (", ptr, ident, `) XXX_WellKnownType() string { return "`, desc.Name(), `" }`)
Damien Neil46abb572018-09-07 12:45:37 -0700810 g.P()
811 }
812}
813
814// Names of messages and enums for which we will generate XXX_WellKnownType methods.
815var wellKnownTypes = map[protoreflect.FullName]bool{
Damien Neilea7baf42018-09-28 14:23:44 -0700816 "google.protobuf.Any": true,
817 "google.protobuf.Duration": true,
818 "google.protobuf.Empty": true,
819 "google.protobuf.Struct": true,
820 "google.protobuf.Timestamp": true,
821
822 "google.protobuf.BoolValue": true,
823 "google.protobuf.BytesValue": true,
824 "google.protobuf.DoubleValue": true,
825 "google.protobuf.FloatValue": true,
826 "google.protobuf.Int32Value": true,
827 "google.protobuf.Int64Value": true,
828 "google.protobuf.ListValue": true,
829 "google.protobuf.NullValue": true,
830 "google.protobuf.StringValue": true,
831 "google.protobuf.UInt32Value": true,
832 "google.protobuf.UInt64Value": true,
833 "google.protobuf.Value": true,
Damien Neil46abb572018-09-07 12:45:37 -0700834}
Joe Tsaid7e97bc2018-11-26 12:57:27 -0800835
836// genOneofField generates the struct field for a oneof.
837func genOneofField(gen *protogen.Plugin, g *protogen.GeneratedFile, f *fileInfo, message *protogen.Message, oneof *protogen.Oneof) {
838 if g.PrintLeadingComments(oneof.Location) {
839 g.P("//")
840 }
841 g.P("// Types that are valid to be assigned to ", oneofFieldName(oneof), ":")
842 for _, field := range oneof.Fields {
843 g.PrintLeadingComments(field.Location)
844 g.P("//\t*", fieldOneofType(field))
845 }
846 g.Annotate(message.GoIdent.GoName+"."+oneofFieldName(oneof), oneof.Location)
847 g.P(oneofFieldName(oneof), " ", oneofInterfaceName(oneof), " `protobuf_oneof:\"", oneof.Desc.Name(), "\"`")
848}
849
850// genOneofTypes generates the interface type used for a oneof field,
851// and the wrapper types that satisfy that interface.
852//
853// It also generates the getter method for the parent oneof field
854// (but not the member fields).
855func genOneofTypes(gen *protogen.Plugin, g *protogen.GeneratedFile, f *fileInfo, message *protogen.Message, oneof *protogen.Oneof) {
856 ifName := oneofInterfaceName(oneof)
857 g.P("type ", ifName, " interface {")
858 g.P(ifName, "()")
859 g.P("}")
860 g.P()
861 for _, field := range oneof.Fields {
862 name := fieldOneofType(field)
863 g.Annotate(name.GoName, field.Location)
864 g.Annotate(name.GoName+"."+field.GoName, field.Location)
865 g.P("type ", name, " struct {")
866 goType, _ := fieldGoType(g, field)
867 tags := []string{
868 fmt.Sprintf("protobuf:%q", fieldProtobufTag(field)),
869 }
870 g.P(field.GoName, " ", goType, " `", strings.Join(tags, " "), "`")
871 g.P("}")
872 g.P()
873 }
874 for _, field := range oneof.Fields {
875 g.P("func (*", fieldOneofType(field), ") ", ifName, "() {}")
876 g.P()
877 }
878 g.Annotate(message.GoIdent.GoName+".Get"+oneof.GoName, oneof.Location)
879 g.P("func (m *", message.GoIdent.GoName, ") Get", oneof.GoName, "() ", ifName, " {")
880 g.P("if m != nil {")
881 g.P("return m.", oneofFieldName(oneof))
882 g.P("}")
883 g.P("return nil")
884 g.P("}")
885 g.P()
886}
887
888// oneofFieldName returns the name of the struct field holding the oneof value.
889//
890// This function is trivial, but pulling out the name like this makes it easier
891// to experiment with alternative oneof implementations.
892func oneofFieldName(oneof *protogen.Oneof) string {
893 return oneof.GoName
894}
895
896// oneofInterfaceName returns the name of the interface type implemented by
897// the oneof field value types.
898func oneofInterfaceName(oneof *protogen.Oneof) string {
899 return fmt.Sprintf("is%s_%s", oneof.ParentMessage.GoIdent.GoName, oneof.GoName)
900}
901
902// genOneofWrappers generates the XXX_OneofWrappers method for a message.
903func genOneofWrappers(gen *protogen.Plugin, g *protogen.GeneratedFile, f *fileInfo, message *protogen.Message) {
904 g.P("// XXX_OneofWrappers is for the internal use of the proto package.")
905 g.P("func (*", message.GoIdent.GoName, ") XXX_OneofWrappers() []interface{} {")
906 g.P("return []interface{}{")
907 for _, oneof := range message.Oneofs {
908 for _, field := range oneof.Fields {
909 g.P("(*", fieldOneofType(field), ")(nil),")
910 }
911 }
912 g.P("}")
913 g.P("}")
914 g.P()
915}
916
917// fieldOneofType returns the wrapper type used to represent a field in a oneof.
918func fieldOneofType(field *protogen.Field) protogen.GoIdent {
919 ident := protogen.GoIdent{
920 GoImportPath: field.ParentMessage.GoIdent.GoImportPath,
921 GoName: field.ParentMessage.GoIdent.GoName + "_" + field.GoName,
922 }
923 // Check for collisions with nested messages or enums.
924 //
925 // This conflict resolution is incomplete: Among other things, it
926 // does not consider collisions with other oneof field types.
927 //
928 // TODO: Consider dropping this entirely. Detecting conflicts and
929 // producing an error is almost certainly better than permuting
930 // field and type names in mostly unpredictable ways.
931Loop:
932 for {
933 for _, message := range field.ParentMessage.Messages {
934 if message.GoIdent == ident {
935 ident.GoName += "_"
936 continue Loop
937 }
938 }
939 for _, enum := range field.ParentMessage.Enums {
940 if enum.GoIdent == ident {
941 ident.GoName += "_"
942 continue Loop
943 }
944 }
945 return ident
946 }
947}