blob: 7b129d4d4866d5401cb657924907bac2eaf6a34d [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 "bytes"
10 "compress/gzip"
11 "crypto/sha256"
12 "encoding/hex"
13 "fmt"
Damien Neilebc699d2018-09-13 08:50:13 -070014 "math"
Damien Neilce36f8d2018-09-13 15:19:08 -070015 "sort"
Damien Neil7779e052018-09-07 14:14:06 -070016 "strconv"
Damien Neilcab8dfe2018-09-06 14:51:28 -070017 "strings"
Damien Neil7779e052018-09-07 14:14:06 -070018
19 "github.com/golang/protobuf/proto"
Joe Tsai05828db2018-11-01 13:52:16 -070020 "github.com/golang/protobuf/v2/internal/encoding/tag"
Joe Tsai01ab2962018-09-21 17:44:00 -070021 "github.com/golang/protobuf/v2/protogen"
22 "github.com/golang/protobuf/v2/reflect/protoreflect"
Joe Tsaie1f8d502018-11-26 18:55:29 -080023
24 descriptorpb "github.com/golang/protobuf/v2/types/descriptor"
Damien Neil220c2022018-08-15 11:24:18 -070025)
26
Damien Neild4127922018-09-12 11:13:49 -070027// generatedCodeVersion indicates a version of the generated code.
28// It is incremented whenever an incompatibility between the generated code and
29// proto package is introduced; the generated code references
30// a constant, proto.ProtoPackageIsVersionN (where N is generatedCodeVersion).
Joe Tsaid7e97bc2018-11-26 12:57:27 -080031const generatedCodeVersion = 3
Damien Neild4127922018-09-12 11:13:49 -070032
Joe Tsaic1c17aa2018-11-16 11:14:14 -080033const (
Joe Tsai24ceb2b2018-12-04 22:53:56 -080034 fmtPackage = protogen.GoImportPath("fmt")
35 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 Neil46abb572018-09-07 12:45:37 -070042 descriptorVar string // var containing the gzipped FileDescriptorProto
Joe Tsaib6405bd2018-11-15 14:44:37 -080043
Joe Tsai9667c482018-12-05 15:42:52 -080044 allEnums []*protogen.Enum
45 allEnumsByPtr map[*protogen.Enum]int // value is index into allEnums
46 allMessages []*protogen.Message
47 allMessagesByPtr map[*protogen.Message]int // value is index into allMessages
48 allExtensions []*protogen.Extension
Damien Neilcab8dfe2018-09-06 14:51:28 -070049}
50
Joe Tsai24ceb2b2018-12-04 22:53:56 -080051// protoPackage returns the package to import, which is either the protoPackage
52// or the protoapiPackage constant.
53//
54// This special casing exists because we are unable to move InternalMessageInfo
55// to protoapi since the implementation behind that logic is heavy and
56// too intricately connected to other parts of the proto package.
57// The descriptor proto is special in that it avoids using InternalMessageInfo
58// so that it is able to depend solely on protoapi and break its dependency
59// on the proto package. It is still semantically correct for descriptor to
60// avoid using InternalMessageInfo, but it does incur some performance penalty.
61// This is acceptable for descriptor, which is a single proto file and is not
62// known to be in the hot path for any code.
63//
64// TODO: Remove this special-casing when the table-driven implementation has
65// been ported over to v2.
66func (f *fileInfo) protoPackage() protogen.GoImportPath {
67 if isDescriptor(f.File) {
68 return protoapiPackage
69 }
70 return protoPackage
71}
72
Damien Neil9c420a62018-09-27 15:26:33 -070073// GenerateFile generates the contents of a .pb.go file.
74func GenerateFile(gen *protogen.Plugin, file *protogen.File, g *protogen.GeneratedFile) {
Damien Neild39efc82018-09-24 12:38:10 -070075 f := &fileInfo{
Damien Neilba1159f2018-10-17 12:53:18 -070076 File: file,
Damien Neilcab8dfe2018-09-06 14:51:28 -070077 }
78
Joe Tsai9667c482018-12-05 15:42:52 -080079 // Collect all enums, messages, and extensions in a breadth-first order.
80 f.allEnums = append(f.allEnums, f.Enums...)
81 f.allMessages = append(f.allMessages, f.Messages...)
82 f.allExtensions = append(f.allExtensions, f.Extensions...)
83 walkMessages(f.Messages, func(m *protogen.Message) {
84 f.allEnums = append(f.allEnums, m.Enums...)
85 f.allMessages = append(f.allMessages, m.Messages...)
86 f.allExtensions = append(f.allExtensions, m.Extensions...)
Damien Neil73ac8852018-09-17 15:11:24 -070087 })
Damien Neilce36f8d2018-09-13 15:19:08 -070088
Joe Tsai9667c482018-12-05 15:42:52 -080089 // Derive a reverse mapping of enum and message pointers to their index
90 // in allEnums and allMessages.
91 if len(f.allEnums) > 0 {
92 f.allEnumsByPtr = make(map[*protogen.Enum]int)
93 for i, e := range f.allEnums {
94 f.allEnumsByPtr[e] = i
95 }
96 }
97 if len(f.allMessages) > 0 {
98 f.allMessagesByPtr = make(map[*protogen.Message]int)
99 for i, m := range f.allMessages {
100 f.allMessagesByPtr[m] = i
101 }
102 }
Joe Tsaib6405bd2018-11-15 14:44:37 -0800103
Damien Neil46abb572018-09-07 12:45:37 -0700104 // Determine the name of the var holding the file descriptor:
105 //
106 // fileDescriptor_<hash of filename>
107 filenameHash := sha256.Sum256([]byte(f.Desc.Path()))
108 f.descriptorVar = fmt.Sprintf("fileDescriptor_%s", hex.EncodeToString(filenameHash[:8]))
109
Damien Neil220c2022018-08-15 11:24:18 -0700110 g.P("// Code generated by protoc-gen-go. DO NOT EDIT.")
Damien Neil55fe1c02018-09-17 15:11:24 -0700111 if f.Proto.GetOptions().GetDeprecated() {
112 g.P("// ", f.Desc.Path(), " is a deprecated file.")
113 } else {
114 g.P("// source: ", f.Desc.Path())
115 }
Damien Neil220c2022018-08-15 11:24:18 -0700116 g.P()
Damien Neilcab8dfe2018-09-06 14:51:28 -0700117 const filePackageField = 2 // FileDescriptorProto.package
Damien Neilba1159f2018-10-17 12:53:18 -0700118 g.PrintLeadingComments(protogen.Location{
119 SourceFile: f.Proto.GetName(),
120 Path: []int32{filePackageField},
121 })
Damien Neilcab8dfe2018-09-06 14:51:28 -0700122 g.P()
Damien Neil082ce922018-09-06 10:23:53 -0700123 g.P("package ", f.GoPackageName)
Damien Neilc7d07d92018-08-22 13:46:02 -0700124 g.P()
Damien Neil1ec33152018-09-13 13:12:36 -0700125
126 // These references are not necessary, since we automatically add
127 // all necessary imports before formatting the generated file.
128 //
129 // This section exists to generate output more consistent with
130 // the previous version of protoc-gen-go, to make it easier to
131 // detect unintended variations.
Joe Tsai24ceb2b2018-12-04 22:53:56 -0800132 if !isDescriptor(file) {
Joe Tsai24ceb2b2018-12-04 22:53:56 -0800133 g.P("// This is a compile-time assertion to ensure that this generated file")
134 g.P("// is compatible with the proto package it is being compiled against.")
135 g.P("// A compilation error at this line likely means your copy of the")
136 g.P("// proto package needs to be updated.")
137 g.P("const _ = ", protoPackage.Ident(fmt.Sprintf("ProtoPackageIsVersion%d", generatedCodeVersion)),
138 "// please upgrade the proto package")
139 g.P()
140 }
Damien Neilc7d07d92018-08-22 13:46:02 -0700141
Damien Neil73ac8852018-09-17 15:11:24 -0700142 for i, imps := 0, f.Desc.Imports(); i < imps.Len(); i++ {
143 genImport(gen, g, f, imps.Get(i))
144 }
Damien Neilce36f8d2018-09-13 15:19:08 -0700145 for _, enum := range f.allEnums {
Damien Neil46abb572018-09-07 12:45:37 -0700146 genEnum(gen, g, f, enum)
147 }
Damien Neilce36f8d2018-09-13 15:19:08 -0700148 for _, message := range f.allMessages {
Damien Neilcab8dfe2018-09-06 14:51:28 -0700149 genMessage(gen, g, f, message)
Damien Neilc7d07d92018-08-22 13:46:02 -0700150 }
Joe Tsai9667c482018-12-05 15:42:52 -0800151 for _, extension := range f.allExtensions {
Damien Neil993c04d2018-09-14 15:41:11 -0700152 genExtension(gen, g, f, extension)
153 }
Damien Neil220c2022018-08-15 11:24:18 -0700154
Damien Neilce36f8d2018-09-13 15:19:08 -0700155 genInitFunction(gen, g, f)
Damien Neil7779e052018-09-07 14:14:06 -0700156 genFileDescriptor(gen, g, f)
Joe Tsaib6405bd2018-11-15 14:44:37 -0800157 genReflectInitFunction(gen, g, f)
158 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 Neil2193e8d2018-10-09 12:49:13 -0700187 // TODO: An alternate approach to generating public imports might be
188 // to generate the imported file contents, parse it, and extract all
189 // exported identifiers from the AST to build a list of forwarding
190 // declarations.
191 //
192 // TODO: Consider whether this should generate recursive aliases. e.g.,
193 // if a.proto publicly imports b.proto publicly imports c.proto, should
194 // a.pb.go contain aliases for symbols defined in c.proto?
Damien Neil73ac8852018-09-17 15:11:24 -0700195 var enums []*protogen.Enum
196 enums = append(enums, impFile.Enums...)
197 walkMessages(impFile.Messages, func(message *protogen.Message) {
Damien Neil2193e8d2018-10-09 12:49:13 -0700198 if message.Desc.IsMapEntry() {
199 return
200 }
Damien Neil73ac8852018-09-17 15:11:24 -0700201 enums = append(enums, message.Enums...)
Damien Neil2193e8d2018-10-09 12:49:13 -0700202 for _, field := range message.Fields {
Joe Tsai9667c482018-12-05 15:42:52 -0800203 if !field.Desc.HasDefault() {
Damien Neil2193e8d2018-10-09 12:49:13 -0700204 continue
205 }
206 defVar := protogen.GoIdent{
207 GoImportPath: message.GoIdent.GoImportPath,
208 GoName: "Default_" + message.GoIdent.GoName + "_" + field.GoName,
209 }
210 decl := "const"
Damien Neil7e5c6472018-11-29 08:57:07 -0800211 switch field.Desc.Kind() {
212 case protoreflect.BytesKind:
Damien Neil2193e8d2018-10-09 12:49:13 -0700213 decl = "var"
Damien Neil7e5c6472018-11-29 08:57:07 -0800214 case protoreflect.FloatKind, protoreflect.DoubleKind:
215 f := field.Desc.Default().Float()
216 if math.IsInf(f, -1) || math.IsInf(f, 1) || math.IsNaN(f) {
217 decl = "var"
218 }
Damien Neil2193e8d2018-10-09 12:49:13 -0700219 }
220 g.P(decl, " ", defVar.GoName, " = ", defVar)
221 }
Damien Neil73ac8852018-09-17 15:11:24 -0700222 g.P("// ", message.GoIdent.GoName, " from public import ", imp.Path())
223 g.P("type ", message.GoIdent.GoName, " = ", message.GoIdent)
224 for _, oneof := range message.Oneofs {
225 for _, field := range oneof.Fields {
226 typ := fieldOneofType(field)
227 g.P("type ", typ.GoName, " = ", typ)
228 }
229 }
230 g.P()
231 })
232 for _, enum := range enums {
233 g.P("// ", enum.GoIdent.GoName, " from public import ", imp.Path())
234 g.P("type ", enum.GoIdent.GoName, " = ", enum.GoIdent)
235 g.P("var ", enum.GoIdent.GoName, "_name = ", enum.GoIdent, "_name")
236 g.P("var ", enum.GoIdent.GoName, "_value = ", enum.GoIdent, "_value")
237 g.P()
238 for _, value := range enum.Values {
239 g.P("const ", value.GoIdent.GoName, " = ", enum.GoIdent.GoName, "(", value.GoIdent, ")")
240 }
Damien Neilce36f8d2018-09-13 15:19:08 -0700241 }
Damien Neil6b541312018-10-29 09:14:14 -0700242 for _, ext := range impFile.Extensions {
243 ident := extensionVar(impFile, ext)
244 g.P("var ", ident.GoName, " = ", ident)
245 g.P()
246 }
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 }
260 var buf bytes.Buffer
261 w, _ := gzip.NewWriterLevel(&buf, gzip.BestCompression)
262 w.Write(b)
263 w.Close()
264 b = buf.Bytes()
265
Damien Neil46abb572018-09-07 12:45:37 -0700266 g.P("var ", f.descriptorVar, " = []byte{")
Damien Neil7779e052018-09-07 14:14:06 -0700267 g.P("// ", len(b), " bytes of a gzipped FileDescriptorProto")
268 for len(b) > 0 {
269 n := 16
270 if n > len(b) {
271 n = len(b)
272 }
273
274 s := ""
275 for _, c := range b[:n] {
276 s += fmt.Sprintf("0x%02x,", c)
277 }
278 g.P(s)
279
280 b = b[n:]
281 }
282 g.P("}")
283 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
337 if enum.Desc.Syntax() != protoreflect.Proto3 {
338 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) {")
354 g.P("return ", f.descriptorVar, ", []int{", strings.Join(indexes, ","), "}")
355 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) {")
460 g.P("return ", f.descriptorVar, ", []int{", strings.Join(indexes, ","), "}")
461 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) {
Joe Tsaib6405bd2018-11-15 14:44:37 -0800760 if len(f.allEnums)+len(f.allMessages)+len(f.allExtensions) == 0 {
Damien Neilce36f8d2018-09-13 15:19:08 -0700761 return
762 }
763
764 g.P("func init() {")
Joe Tsai9667c482018-12-05 15:42:52 -0800765 g.P(f.protoPackage().Ident("RegisterFile"), "(", strconv.Quote(f.Desc.Path()), ", ", f.descriptorVar, ")")
Damien Neil154da982018-09-19 13:21:58 -0700766 for _, enum := range f.allEnums {
767 name := enum.GoIdent.GoName
Joe Tsai24ceb2b2018-12-04 22:53:56 -0800768 g.P(f.protoPackage().Ident("RegisterEnum"), fmt.Sprintf("(%q, %s_name, %s_value)", enumRegistryName(enum), name, name))
Damien Neil154da982018-09-19 13:21:58 -0700769 }
Damien Neilce36f8d2018-09-13 15:19:08 -0700770 for _, message := range f.allMessages {
771 if message.Desc.IsMapEntry() {
772 continue
773 }
774
775 name := message.GoIdent.GoName
Joe Tsai24ceb2b2018-12-04 22:53:56 -0800776 g.P(f.protoPackage().Ident("RegisterType"), fmt.Sprintf("((*%s)(nil), %q)", name, message.Desc.FullName()))
Damien Neilce36f8d2018-09-13 15:19:08 -0700777
778 // Types of map fields, sorted by the name of the field message type.
779 var mapFields []*protogen.Field
780 for _, field := range message.Fields {
781 if field.Desc.IsMap() {
782 mapFields = append(mapFields, field)
783 }
784 }
785 sort.Slice(mapFields, func(i, j int) bool {
786 ni := mapFields[i].MessageType.Desc.FullName()
787 nj := mapFields[j].MessageType.Desc.FullName()
788 return ni < nj
789 })
790 for _, field := range mapFields {
791 typeName := string(field.MessageType.Desc.FullName())
792 goType, _ := fieldGoType(g, field)
Joe Tsai24ceb2b2018-12-04 22:53:56 -0800793 g.P(f.protoPackage().Ident("RegisterMapType"), fmt.Sprintf("((%v)(nil), %q)", goType, typeName))
Damien Neilce36f8d2018-09-13 15:19:08 -0700794 }
795 }
Joe Tsai9667c482018-12-05 15:42:52 -0800796 for _, extension := range f.allExtensions {
797 g.P(f.protoPackage().Ident("RegisterExtension"), "(", extensionVar(f.File, extension), ")")
Damien Neil993c04d2018-09-14 15:41:11 -0700798 }
Damien Neilce36f8d2018-09-13 15:19:08 -0700799 g.P("}")
800 g.P()
801}
802
Damien Neil55fe1c02018-09-17 15:11:24 -0700803// deprecationComment returns a standard deprecation comment if deprecated is true.
804func deprecationComment(deprecated bool) string {
805 if !deprecated {
806 return ""
807 }
808 return "// Deprecated: Do not use."
809}
810
Damien Neilea7baf42018-09-28 14:23:44 -0700811func genWellKnownType(g *protogen.GeneratedFile, ptr string, ident protogen.GoIdent, desc protoreflect.Descriptor) {
Damien Neil46abb572018-09-07 12:45:37 -0700812 if wellKnownTypes[desc.FullName()] {
Damien Neilea7baf42018-09-28 14:23:44 -0700813 g.P("func (", ptr, ident, `) XXX_WellKnownType() string { return "`, desc.Name(), `" }`)
Damien Neil46abb572018-09-07 12:45:37 -0700814 g.P()
815 }
816}
817
818// Names of messages and enums for which we will generate XXX_WellKnownType methods.
819var wellKnownTypes = map[protoreflect.FullName]bool{
Damien Neilea7baf42018-09-28 14:23:44 -0700820 "google.protobuf.Any": true,
821 "google.protobuf.Duration": true,
822 "google.protobuf.Empty": true,
823 "google.protobuf.Struct": true,
824 "google.protobuf.Timestamp": true,
825
826 "google.protobuf.BoolValue": true,
827 "google.protobuf.BytesValue": true,
828 "google.protobuf.DoubleValue": true,
829 "google.protobuf.FloatValue": true,
830 "google.protobuf.Int32Value": true,
831 "google.protobuf.Int64Value": true,
832 "google.protobuf.ListValue": true,
833 "google.protobuf.NullValue": true,
834 "google.protobuf.StringValue": true,
835 "google.protobuf.UInt32Value": true,
836 "google.protobuf.UInt64Value": true,
837 "google.protobuf.Value": true,
Damien Neil46abb572018-09-07 12:45:37 -0700838}
Joe Tsaid7e97bc2018-11-26 12:57:27 -0800839
840// genOneofField generates the struct field for a oneof.
841func genOneofField(gen *protogen.Plugin, g *protogen.GeneratedFile, f *fileInfo, message *protogen.Message, oneof *protogen.Oneof) {
842 if g.PrintLeadingComments(oneof.Location) {
843 g.P("//")
844 }
845 g.P("// Types that are valid to be assigned to ", oneofFieldName(oneof), ":")
846 for _, field := range oneof.Fields {
847 g.PrintLeadingComments(field.Location)
848 g.P("//\t*", fieldOneofType(field))
849 }
850 g.Annotate(message.GoIdent.GoName+"."+oneofFieldName(oneof), oneof.Location)
851 g.P(oneofFieldName(oneof), " ", oneofInterfaceName(oneof), " `protobuf_oneof:\"", oneof.Desc.Name(), "\"`")
852}
853
854// genOneofTypes generates the interface type used for a oneof field,
855// and the wrapper types that satisfy that interface.
856//
857// It also generates the getter method for the parent oneof field
858// (but not the member fields).
859func genOneofTypes(gen *protogen.Plugin, g *protogen.GeneratedFile, f *fileInfo, message *protogen.Message, oneof *protogen.Oneof) {
860 ifName := oneofInterfaceName(oneof)
861 g.P("type ", ifName, " interface {")
862 g.P(ifName, "()")
863 g.P("}")
864 g.P()
865 for _, field := range oneof.Fields {
866 name := fieldOneofType(field)
867 g.Annotate(name.GoName, field.Location)
868 g.Annotate(name.GoName+"."+field.GoName, field.Location)
869 g.P("type ", name, " struct {")
870 goType, _ := fieldGoType(g, field)
871 tags := []string{
872 fmt.Sprintf("protobuf:%q", fieldProtobufTag(field)),
873 }
874 g.P(field.GoName, " ", goType, " `", strings.Join(tags, " "), "`")
875 g.P("}")
876 g.P()
877 }
878 for _, field := range oneof.Fields {
879 g.P("func (*", fieldOneofType(field), ") ", ifName, "() {}")
880 g.P()
881 }
882 g.Annotate(message.GoIdent.GoName+".Get"+oneof.GoName, oneof.Location)
883 g.P("func (m *", message.GoIdent.GoName, ") Get", oneof.GoName, "() ", ifName, " {")
884 g.P("if m != nil {")
885 g.P("return m.", oneofFieldName(oneof))
886 g.P("}")
887 g.P("return nil")
888 g.P("}")
889 g.P()
890}
891
892// oneofFieldName returns the name of the struct field holding the oneof value.
893//
894// This function is trivial, but pulling out the name like this makes it easier
895// to experiment with alternative oneof implementations.
896func oneofFieldName(oneof *protogen.Oneof) string {
897 return oneof.GoName
898}
899
900// oneofInterfaceName returns the name of the interface type implemented by
901// the oneof field value types.
902func oneofInterfaceName(oneof *protogen.Oneof) string {
903 return fmt.Sprintf("is%s_%s", oneof.ParentMessage.GoIdent.GoName, oneof.GoName)
904}
905
906// genOneofWrappers generates the XXX_OneofWrappers method for a message.
907func genOneofWrappers(gen *protogen.Plugin, g *protogen.GeneratedFile, f *fileInfo, message *protogen.Message) {
908 g.P("// XXX_OneofWrappers is for the internal use of the proto package.")
909 g.P("func (*", message.GoIdent.GoName, ") XXX_OneofWrappers() []interface{} {")
910 g.P("return []interface{}{")
911 for _, oneof := range message.Oneofs {
912 for _, field := range oneof.Fields {
913 g.P("(*", fieldOneofType(field), ")(nil),")
914 }
915 }
916 g.P("}")
917 g.P("}")
918 g.P()
919}
920
921// fieldOneofType returns the wrapper type used to represent a field in a oneof.
922func fieldOneofType(field *protogen.Field) protogen.GoIdent {
923 ident := protogen.GoIdent{
924 GoImportPath: field.ParentMessage.GoIdent.GoImportPath,
925 GoName: field.ParentMessage.GoIdent.GoName + "_" + field.GoName,
926 }
927 // Check for collisions with nested messages or enums.
928 //
929 // This conflict resolution is incomplete: Among other things, it
930 // does not consider collisions with other oneof field types.
931 //
932 // TODO: Consider dropping this entirely. Detecting conflicts and
933 // producing an error is almost certainly better than permuting
934 // field and type names in mostly unpredictable ways.
935Loop:
936 for {
937 for _, message := range field.ParentMessage.Messages {
938 if message.GoIdent == ident {
939 ident.GoName += "_"
940 continue Loop
941 }
942 }
943 for _, enum := range field.ParentMessage.Enums {
944 if enum.GoIdent == ident {
945 ident.GoName += "_"
946 continue Loop
947 }
948 }
949 return ident
950 }
951}