blob: f05ca8004fd6fcae9b8a1762589a6a09beec81a2 [file] [log] [blame]
Damien Neil220c2022018-08-15 11:24:18 -07001// Copyright 2018 The Go Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style
3// license that can be found in the LICENSE file.
4
Damien Neil1adaec92018-09-24 13:43:03 -07005// Package internal_gengo is internal to the protobuf module.
6package internal_gengo
Damien Neil220c2022018-08-15 11:24:18 -07007
8import (
Damien Neil7779e052018-09-07 14:14:06 -07009 "fmt"
Damien Neil7bf3ce22018-12-21 15:54:06 -080010 "go/ast"
11 "go/parser"
12 "go/token"
Damien Neilebc699d2018-09-13 08:50:13 -070013 "math"
Damien Neilce36f8d2018-09-13 15:19:08 -070014 "sort"
Damien Neil7779e052018-09-07 14:14:06 -070015 "strconv"
Damien Neilcab8dfe2018-09-06 14:51:28 -070016 "strings"
Damien Neil7bf3ce22018-12-21 15:54:06 -080017 "unicode"
18 "unicode/utf8"
Damien Neil7779e052018-09-07 14:14:06 -070019
20 "github.com/golang/protobuf/proto"
Joe Tsai1af1de02019-03-01 16:12:32 -080021 "github.com/golang/protobuf/v2/internal/descfield"
Joe Tsai05828db2018-11-01 13:52:16 -070022 "github.com/golang/protobuf/v2/internal/encoding/tag"
Joe Tsai01ab2962018-09-21 17:44:00 -070023 "github.com/golang/protobuf/v2/protogen"
24 "github.com/golang/protobuf/v2/reflect/protoreflect"
Joe Tsaie1f8d502018-11-26 18:55:29 -080025
26 descriptorpb "github.com/golang/protobuf/v2/types/descriptor"
Damien Neil220c2022018-08-15 11:24:18 -070027)
28
Damien Neild4127922018-09-12 11:13:49 -070029// generatedCodeVersion indicates a version of the generated code.
30// It is incremented whenever an incompatibility between the generated code and
31// proto package is introduced; the generated code references
32// a constant, proto.ProtoPackageIsVersionN (where N is generatedCodeVersion).
Joe Tsaid7e97bc2018-11-26 12:57:27 -080033const generatedCodeVersion = 3
Damien Neild4127922018-09-12 11:13:49 -070034
Joe Tsaic1c17aa2018-11-16 11:14:14 -080035const (
Joe Tsai24ceb2b2018-12-04 22:53:56 -080036 mathPackage = protogen.GoImportPath("math")
37 protoPackage = protogen.GoImportPath("github.com/golang/protobuf/proto")
38 protoapiPackage = protogen.GoImportPath("github.com/golang/protobuf/protoapi")
Joe Tsaic1c17aa2018-11-16 11:14:14 -080039)
Damien Neil46abb572018-09-07 12:45:37 -070040
Damien Neild39efc82018-09-24 12:38:10 -070041type fileInfo struct {
Damien Neilcab8dfe2018-09-06 14:51:28 -070042 *protogen.File
Damien Neil8012b442019-01-18 09:32:24 -080043
44 // vars containing the raw wire-encoded and compressed FileDescriptorProto.
45 descriptorRawVar string
46 descriptorGzipVar string
Joe Tsaib6405bd2018-11-15 14:44:37 -080047
Joe Tsai9667c482018-12-05 15:42:52 -080048 allEnums []*protogen.Enum
49 allEnumsByPtr map[*protogen.Enum]int // value is index into allEnums
50 allMessages []*protogen.Message
51 allMessagesByPtr map[*protogen.Message]int // value is index into allMessages
52 allExtensions []*protogen.Extension
Damien Neilcab8dfe2018-09-06 14:51:28 -070053}
54
Joe Tsai24ceb2b2018-12-04 22:53:56 -080055// protoPackage returns the package to import, which is either the protoPackage
56// or the protoapiPackage constant.
57//
58// This special casing exists because we are unable to move InternalMessageInfo
59// to protoapi since the implementation behind that logic is heavy and
60// too intricately connected to other parts of the proto package.
61// The descriptor proto is special in that it avoids using InternalMessageInfo
62// so that it is able to depend solely on protoapi and break its dependency
63// on the proto package. It is still semantically correct for descriptor to
64// avoid using InternalMessageInfo, but it does incur some performance penalty.
65// This is acceptable for descriptor, which is a single proto file and is not
66// known to be in the hot path for any code.
67//
68// TODO: Remove this special-casing when the table-driven implementation has
69// been ported over to v2.
70func (f *fileInfo) protoPackage() protogen.GoImportPath {
71 if isDescriptor(f.File) {
72 return protoapiPackage
73 }
74 return protoPackage
75}
76
Damien Neil9c420a62018-09-27 15:26:33 -070077// GenerateFile generates the contents of a .pb.go file.
Joe Tsai19058432019-02-27 21:46:29 -080078func GenerateFile(gen *protogen.Plugin, file *protogen.File) *protogen.GeneratedFile {
79 filename := file.GeneratedFilenamePrefix + ".pb.go"
80 g := gen.NewGeneratedFile(filename, file.GoImportPath)
Damien Neild39efc82018-09-24 12:38:10 -070081 f := &fileInfo{
Damien Neilba1159f2018-10-17 12:53:18 -070082 File: file,
Damien Neilcab8dfe2018-09-06 14:51:28 -070083 }
84
Damien Neil8012b442019-01-18 09:32:24 -080085 // Collect all enums, messages, and extensions in "flattened ordering".
86 // See fileinit.FileBuilder.
Joe Tsai9667c482018-12-05 15:42:52 -080087 f.allEnums = append(f.allEnums, f.Enums...)
88 f.allMessages = append(f.allMessages, f.Messages...)
89 f.allExtensions = append(f.allExtensions, f.Extensions...)
90 walkMessages(f.Messages, func(m *protogen.Message) {
91 f.allEnums = append(f.allEnums, m.Enums...)
92 f.allMessages = append(f.allMessages, m.Messages...)
93 f.allExtensions = append(f.allExtensions, m.Extensions...)
Damien Neil73ac8852018-09-17 15:11:24 -070094 })
Damien Neilce36f8d2018-09-13 15:19:08 -070095
Joe Tsai9667c482018-12-05 15:42:52 -080096 // Derive a reverse mapping of enum and message pointers to their index
97 // in allEnums and allMessages.
98 if len(f.allEnums) > 0 {
99 f.allEnumsByPtr = make(map[*protogen.Enum]int)
100 for i, e := range f.allEnums {
101 f.allEnumsByPtr[e] = i
102 }
103 }
104 if len(f.allMessages) > 0 {
105 f.allMessagesByPtr = make(map[*protogen.Message]int)
106 for i, m := range f.allMessages {
107 f.allMessagesByPtr[m] = i
108 }
109 }
Joe Tsaib6405bd2018-11-15 14:44:37 -0800110
Joe Tsai40692112019-02-27 20:25:51 -0800111 // Determine the name of the var holding the file descriptor.
112 f.descriptorRawVar = "xxx_" + f.GoDescriptorIdent.GoName + "_rawdesc"
Damien Neil8012b442019-01-18 09:32:24 -0800113 f.descriptorGzipVar = f.descriptorRawVar + "_gzipped"
Damien Neil46abb572018-09-07 12:45:37 -0700114
Damien Neil220c2022018-08-15 11:24:18 -0700115 g.P("// Code generated by protoc-gen-go. DO NOT EDIT.")
Damien Neil55fe1c02018-09-17 15:11:24 -0700116 if f.Proto.GetOptions().GetDeprecated() {
117 g.P("// ", f.Desc.Path(), " is a deprecated file.")
118 } else {
119 g.P("// source: ", f.Desc.Path())
120 }
Damien Neil220c2022018-08-15 11:24:18 -0700121 g.P()
Damien Neilba1159f2018-10-17 12:53:18 -0700122 g.PrintLeadingComments(protogen.Location{
123 SourceFile: f.Proto.GetName(),
Joe Tsai1af1de02019-03-01 16:12:32 -0800124 Path: []int32{descfield.FileDescriptorProto_Package},
Damien Neilba1159f2018-10-17 12:53:18 -0700125 })
Damien Neilcab8dfe2018-09-06 14:51:28 -0700126 g.P()
Damien Neil082ce922018-09-06 10:23:53 -0700127 g.P("package ", f.GoPackageName)
Damien Neilc7d07d92018-08-22 13:46:02 -0700128 g.P()
Damien Neil1ec33152018-09-13 13:12:36 -0700129
Joe Tsai24ceb2b2018-12-04 22:53:56 -0800130 if !isDescriptor(file) {
Joe Tsai24ceb2b2018-12-04 22:53:56 -0800131 g.P("// This is a compile-time assertion to ensure that this generated file")
132 g.P("// is compatible with the proto package it is being compiled against.")
133 g.P("// A compilation error at this line likely means your copy of the")
134 g.P("// proto package needs to be updated.")
135 g.P("const _ = ", protoPackage.Ident(fmt.Sprintf("ProtoPackageIsVersion%d", generatedCodeVersion)),
136 "// please upgrade the proto package")
137 g.P()
138 }
Damien Neilc7d07d92018-08-22 13:46:02 -0700139
Damien Neil73ac8852018-09-17 15:11:24 -0700140 for i, imps := 0, f.Desc.Imports(); i < imps.Len(); i++ {
141 genImport(gen, g, f, imps.Get(i))
142 }
Damien Neilce36f8d2018-09-13 15:19:08 -0700143 for _, enum := range f.allEnums {
Damien Neil46abb572018-09-07 12:45:37 -0700144 genEnum(gen, g, f, enum)
145 }
Damien Neilce36f8d2018-09-13 15:19:08 -0700146 for _, message := range f.allMessages {
Damien Neilcab8dfe2018-09-06 14:51:28 -0700147 genMessage(gen, g, f, message)
Damien Neilc7d07d92018-08-22 13:46:02 -0700148 }
Joe Tsaiafb455e2019-03-14 16:08:22 -0700149 genExtensions(gen, g, f)
Damien Neil220c2022018-08-15 11:24:18 -0700150
Damien Neilce36f8d2018-09-13 15:19:08 -0700151 genInitFunction(gen, g, f)
Damien Neil7779e052018-09-07 14:14:06 -0700152 genFileDescriptor(gen, g, f)
Joe Tsaib6405bd2018-11-15 14:44:37 -0800153 genReflectFileDescriptor(gen, g, f)
Joe Tsai19058432019-02-27 21:46:29 -0800154
155 return g
Damien Neil7779e052018-09-07 14:14:06 -0700156}
157
Damien Neil73ac8852018-09-17 15:11:24 -0700158// walkMessages calls f on each message and all of its descendants.
159func walkMessages(messages []*protogen.Message, f func(*protogen.Message)) {
160 for _, m := range messages {
161 f(m)
162 walkMessages(m.Messages, f)
163 }
164}
165
Damien Neild39efc82018-09-24 12:38:10 -0700166func genImport(gen *protogen.Plugin, g *protogen.GeneratedFile, f *fileInfo, imp protoreflect.FileImport) {
Damien Neil73ac8852018-09-17 15:11:24 -0700167 impFile, ok := gen.FileByName(imp.Path())
168 if !ok {
169 return
170 }
171 if impFile.GoImportPath == f.GoImportPath {
Damien Neil2e0c3da2018-09-19 12:51:36 -0700172 // Don't generate imports or aliases for types in the same Go package.
173 return
174 }
Damien Neil40a08052018-10-29 09:07:41 -0700175 // Generate imports for all non-weak dependencies, even if they are not
Damien Neil2e0c3da2018-09-19 12:51:36 -0700176 // referenced, because other code and tools depend on having the
177 // full transitive closure of protocol buffer types in the binary.
Damien Neil40a08052018-10-29 09:07:41 -0700178 if !imp.IsWeak {
179 g.Import(impFile.GoImportPath)
180 }
Damien Neil2e0c3da2018-09-19 12:51:36 -0700181 if !imp.IsPublic {
Damien Neil73ac8852018-09-17 15:11:24 -0700182 return
183 }
Damien Neil7bf3ce22018-12-21 15:54:06 -0800184
185 // Generate public imports by generating the imported file, parsing it,
186 // and extracting every symbol that should receive a forwarding declaration.
Joe Tsai19058432019-02-27 21:46:29 -0800187 impGen := GenerateFile(gen, impFile)
Damien Neil7bf3ce22018-12-21 15:54:06 -0800188 impGen.Skip()
Damien Neil7bf3ce22018-12-21 15:54:06 -0800189 b, err := impGen.Content()
190 if err != nil {
191 gen.Error(err)
192 return
193 }
194 fset := token.NewFileSet()
195 astFile, err := parser.ParseFile(fset, "", b, parser.ParseComments)
196 if err != nil {
197 gen.Error(err)
198 return
199 }
Damien Neila7cbd062019-01-06 16:29:14 -0800200 genForward := func(tok token.Token, name string, expr ast.Expr) {
Damien Neil7bf3ce22018-12-21 15:54:06 -0800201 // Don't import unexported symbols.
202 r, _ := utf8.DecodeRuneInString(name)
203 if !unicode.IsUpper(r) {
Damien Neil2193e8d2018-10-09 12:49:13 -0700204 return
205 }
Damien Neil7bf3ce22018-12-21 15:54:06 -0800206 // Don't import the FileDescriptor.
207 if name == impFile.GoDescriptorIdent.GoName {
208 return
209 }
Damien Neila7cbd062019-01-06 16:29:14 -0800210 // Don't import decls referencing a symbol defined in another package.
211 // i.e., don't import decls which are themselves public imports:
212 //
213 // type T = somepackage.T
214 if _, ok := expr.(*ast.SelectorExpr); ok {
215 return
216 }
Damien Neil7bf3ce22018-12-21 15:54:06 -0800217 g.P(tok, " ", name, " = ", impFile.GoImportPath.Ident(name))
218 }
219 g.P("// Symbols defined in public import of ", imp.Path())
220 g.P()
221 for _, decl := range astFile.Decls {
222 switch decl := decl.(type) {
223 case *ast.GenDecl:
224 for _, spec := range decl.Specs {
225 switch spec := spec.(type) {
226 case *ast.TypeSpec:
Damien Neila7cbd062019-01-06 16:29:14 -0800227 genForward(decl.Tok, spec.Name.Name, spec.Type)
Damien Neil7bf3ce22018-12-21 15:54:06 -0800228 case *ast.ValueSpec:
Damien Neila7cbd062019-01-06 16:29:14 -0800229 for i, name := range spec.Names {
230 var expr ast.Expr
231 if i < len(spec.Values) {
232 expr = spec.Values[i]
233 }
234 genForward(decl.Tok, name.Name, expr)
Damien Neil7bf3ce22018-12-21 15:54:06 -0800235 }
236 case *ast.ImportSpec:
237 default:
238 panic(fmt.Sprintf("can't generate forward for spec type %T", spec))
Damien Neil7e5c6472018-11-29 08:57:07 -0800239 }
Damien Neil2193e8d2018-10-09 12:49:13 -0700240 }
Damien Neil2193e8d2018-10-09 12:49:13 -0700241 }
Damien Neil6b541312018-10-29 09:14:14 -0700242 }
Damien Neil2193e8d2018-10-09 12:49:13 -0700243 g.P()
Damien Neilce36f8d2018-09-13 15:19:08 -0700244}
245
Damien Neild39efc82018-09-24 12:38:10 -0700246func genFileDescriptor(gen *protogen.Plugin, g *protogen.GeneratedFile, f *fileInfo) {
Damien Neil7779e052018-09-07 14:14:06 -0700247 // Trim the source_code_info from the descriptor.
248 // Marshal and gzip it.
Joe Tsaie1f8d502018-11-26 18:55:29 -0800249 descProto := proto.Clone(f.Proto).(*descriptorpb.FileDescriptorProto)
Damien Neil7779e052018-09-07 14:14:06 -0700250 descProto.SourceCodeInfo = nil
251 b, err := proto.Marshal(descProto)
252 if err != nil {
253 gen.Error(err)
254 return
255 }
Damien Neil7779e052018-09-07 14:14:06 -0700256
Damien Neil8012b442019-01-18 09:32:24 -0800257 g.P("var ", f.descriptorRawVar, " = []byte{")
258 g.P("// ", len(b), " bytes of the wire-encoded FileDescriptorProto")
Damien Neil7779e052018-09-07 14:14:06 -0700259 for len(b) > 0 {
260 n := 16
261 if n > len(b) {
262 n = len(b)
263 }
264
265 s := ""
266 for _, c := range b[:n] {
267 s += fmt.Sprintf("0x%02x,", c)
268 }
269 g.P(s)
270
271 b = b[n:]
272 }
273 g.P("}")
274 g.P()
Damien Neil8012b442019-01-18 09:32:24 -0800275
Joe Tsaicf81e672019-02-28 14:08:31 -0800276 // TODO: Modify CompressGZIP to lazy encode? Currently, the GZIP'd form
277 // is eagerly registered in v1, preventing any benefit from lazy encoding.
278 g.P("var ", f.descriptorGzipVar, " = ", protoapiPackage.Ident("CompressGZIP"), "(", f.descriptorRawVar, ")")
Damien Neil8012b442019-01-18 09:32:24 -0800279 g.P()
Damien Neil220c2022018-08-15 11:24:18 -0700280}
Damien Neilc7d07d92018-08-22 13:46:02 -0700281
Damien Neild39efc82018-09-24 12:38:10 -0700282func genEnum(gen *protogen.Plugin, g *protogen.GeneratedFile, f *fileInfo, enum *protogen.Enum) {
Damien Neilba1159f2018-10-17 12:53:18 -0700283 g.PrintLeadingComments(enum.Location)
Damien Neil162c1272018-10-04 12:42:37 -0700284 g.Annotate(enum.GoIdent.GoName, enum.Location)
Damien Neil55fe1c02018-09-17 15:11:24 -0700285 g.P("type ", enum.GoIdent, " int32",
Joe Tsaie1f8d502018-11-26 18:55:29 -0800286 deprecationComment(enum.Desc.Options().(*descriptorpb.EnumOptions).GetDeprecated()))
Damien Neil46abb572018-09-07 12:45:37 -0700287 g.P("const (")
288 for _, value := range enum.Values {
Damien Neilba1159f2018-10-17 12:53:18 -0700289 g.PrintLeadingComments(value.Location)
Damien Neil162c1272018-10-04 12:42:37 -0700290 g.Annotate(value.GoIdent.GoName, value.Location)
Damien Neil55fe1c02018-09-17 15:11:24 -0700291 g.P(value.GoIdent, " ", enum.GoIdent, " = ", value.Desc.Number(),
Joe Tsaie1f8d502018-11-26 18:55:29 -0800292 deprecationComment(value.Desc.Options().(*descriptorpb.EnumValueOptions).GetDeprecated()))
Damien Neil46abb572018-09-07 12:45:37 -0700293 }
294 g.P(")")
295 g.P()
Joe Tsaib6405bd2018-11-15 14:44:37 -0800296
297 // Generate support for protobuf reflection.
298 genReflectEnum(gen, g, f, enum)
299
Damien Neil46abb572018-09-07 12:45:37 -0700300 nameMap := enum.GoIdent.GoName + "_name"
301 g.P("var ", nameMap, " = map[int32]string{")
302 generated := make(map[protoreflect.EnumNumber]bool)
303 for _, value := range enum.Values {
304 duplicate := ""
305 if _, present := generated[value.Desc.Number()]; present {
306 duplicate = "// Duplicate value: "
307 }
308 g.P(duplicate, value.Desc.Number(), ": ", strconv.Quote(string(value.Desc.Name())), ",")
309 generated[value.Desc.Number()] = true
310 }
311 g.P("}")
312 g.P()
313 valueMap := enum.GoIdent.GoName + "_value"
314 g.P("var ", valueMap, " = map[string]int32{")
315 for _, value := range enum.Values {
316 g.P(strconv.Quote(string(value.Desc.Name())), ": ", value.Desc.Number(), ",")
317 }
318 g.P("}")
319 g.P()
320 if enum.Desc.Syntax() != protoreflect.Proto3 {
321 g.P("func (x ", enum.GoIdent, ") Enum() *", enum.GoIdent, " {")
322 g.P("p := new(", enum.GoIdent, ")")
323 g.P("*p = x")
324 g.P("return p")
325 g.P("}")
326 g.P()
327 }
328 g.P("func (x ", enum.GoIdent, ") String() string {")
Joe Tsai24ceb2b2018-12-04 22:53:56 -0800329 g.P("return ", f.protoPackage().Ident("EnumName"), "(", enum.GoIdent, "_name, int32(x))")
Damien Neil46abb572018-09-07 12:45:37 -0700330 g.P("}")
331 g.P()
332
Joe Tsai73903462018-12-14 12:22:41 -0800333 if enum.Desc.Syntax() == protoreflect.Proto2 {
Damien Neil46abb572018-09-07 12:45:37 -0700334 g.P("func (x *", enum.GoIdent, ") UnmarshalJSON(data []byte) error {")
Joe Tsai24ceb2b2018-12-04 22:53:56 -0800335 g.P("value, err := ", f.protoPackage().Ident("UnmarshalJSONEnum"), "(", enum.GoIdent, `_value, data, "`, enum.GoIdent, `")`)
Damien Neil46abb572018-09-07 12:45:37 -0700336 g.P("if err != nil {")
337 g.P("return err")
338 g.P("}")
339 g.P("*x = ", enum.GoIdent, "(value)")
340 g.P("return nil")
341 g.P("}")
342 g.P()
343 }
344
345 var indexes []string
Damien Neil162c1272018-10-04 12:42:37 -0700346 for i := 1; i < len(enum.Location.Path); i += 2 {
347 indexes = append(indexes, strconv.Itoa(int(enum.Location.Path[i])))
Damien Neil46abb572018-09-07 12:45:37 -0700348 }
349 g.P("func (", enum.GoIdent, ") EnumDescriptor() ([]byte, []int) {")
Damien Neil8012b442019-01-18 09:32:24 -0800350 g.P("return ", f.descriptorGzipVar, ", []int{", strings.Join(indexes, ","), "}")
Damien Neil46abb572018-09-07 12:45:37 -0700351 g.P("}")
352 g.P()
353
Damien Neilea7baf42018-09-28 14:23:44 -0700354 genWellKnownType(g, "", enum.GoIdent, enum.Desc)
Damien Neil46abb572018-09-07 12:45:37 -0700355}
356
Damien Neil658051b2018-09-10 12:26:21 -0700357// enumRegistryName returns the name used to register an enum with the proto
358// package registry.
359//
360// Confusingly, this is <proto_package>.<go_ident>. This probably should have
361// been the full name of the proto enum type instead, but changing it at this
362// point would require thought.
363func enumRegistryName(enum *protogen.Enum) string {
364 // Find the FileDescriptor for this enum.
365 var desc protoreflect.Descriptor = enum.Desc
366 for {
367 p, ok := desc.Parent()
368 if !ok {
369 break
370 }
371 desc = p
372 }
373 fdesc := desc.(protoreflect.FileDescriptor)
Damien Neildaa4fad2018-10-08 14:08:27 -0700374 if fdesc.Package() == "" {
375 return enum.GoIdent.GoName
376 }
Damien Neil658051b2018-09-10 12:26:21 -0700377 return string(fdesc.Package()) + "." + enum.GoIdent.GoName
378}
379
Damien Neild39efc82018-09-24 12:38:10 -0700380func genMessage(gen *protogen.Plugin, g *protogen.GeneratedFile, f *fileInfo, message *protogen.Message) {
Damien Neil0bd5a382018-09-13 15:07:10 -0700381 if message.Desc.IsMapEntry() {
382 return
383 }
384
Damien Neilba1159f2018-10-17 12:53:18 -0700385 hasComment := g.PrintLeadingComments(message.Location)
Joe Tsaie1f8d502018-11-26 18:55:29 -0800386 if message.Desc.Options().(*descriptorpb.MessageOptions).GetDeprecated() {
Damien Neil55fe1c02018-09-17 15:11:24 -0700387 if hasComment {
388 g.P("//")
389 }
390 g.P(deprecationComment(true))
391 }
Damien Neil162c1272018-10-04 12:42:37 -0700392 g.Annotate(message.GoIdent.GoName, message.Location)
Damien Neilcab8dfe2018-09-06 14:51:28 -0700393 g.P("type ", message.GoIdent, " struct {")
Damien Neil658051b2018-09-10 12:26:21 -0700394 for _, field := range message.Fields {
Damien Neil1fa78d82018-09-13 13:12:36 -0700395 if field.OneofType != nil {
396 // It would be a bit simpler to iterate over the oneofs below,
397 // but generating the field here keeps the contents of the Go
398 // struct in the same order as the contents of the source
399 // .proto file.
400 if field == field.OneofType.Fields[0] {
401 genOneofField(gen, g, f, message, field.OneofType)
402 }
Damien Neil658051b2018-09-10 12:26:21 -0700403 continue
404 }
Damien Neilba1159f2018-10-17 12:53:18 -0700405 g.PrintLeadingComments(field.Location)
Damien Neil77f82fe2018-09-13 10:59:17 -0700406 goType, pointer := fieldGoType(g, field)
407 if pointer {
408 goType = "*" + goType
409 }
Damien Neil0bd5a382018-09-13 15:07:10 -0700410 tags := []string{
411 fmt.Sprintf("protobuf:%q", fieldProtobufTag(field)),
412 fmt.Sprintf("json:%q", fieldJSONTag(field)),
413 }
414 if field.Desc.IsMap() {
415 key := field.MessageType.Fields[0]
416 val := field.MessageType.Fields[1]
417 tags = append(tags,
418 fmt.Sprintf("protobuf_key:%q", fieldProtobufTag(key)),
419 fmt.Sprintf("protobuf_val:%q", fieldProtobufTag(val)),
420 )
421 }
Damien Neil162c1272018-10-04 12:42:37 -0700422 g.Annotate(message.GoIdent.GoName+"."+field.GoName, field.Location)
Damien Neil55fe1c02018-09-17 15:11:24 -0700423 g.P(field.GoName, " ", goType, " `", strings.Join(tags, " "), "`",
Joe Tsaie1f8d502018-11-26 18:55:29 -0800424 deprecationComment(field.Desc.Options().(*descriptorpb.FieldOptions).GetDeprecated()))
Damien Neil658051b2018-09-10 12:26:21 -0700425 }
426 g.P("XXX_NoUnkeyedLiteral struct{} `json:\"-\"`")
Damien Neil993c04d2018-09-14 15:41:11 -0700427
428 if message.Desc.ExtensionRanges().Len() > 0 {
429 var tags []string
Joe Tsaie1f8d502018-11-26 18:55:29 -0800430 if message.Desc.Options().(*descriptorpb.MessageOptions).GetMessageSetWireFormat() {
Damien Neil993c04d2018-09-14 15:41:11 -0700431 tags = append(tags, `protobuf_messageset:"1"`)
432 }
433 tags = append(tags, `json:"-"`)
Joe Tsai24ceb2b2018-12-04 22:53:56 -0800434 g.P(f.protoPackage().Ident("XXX_InternalExtensions"), " `", strings.Join(tags, " "), "`")
Damien Neil993c04d2018-09-14 15:41:11 -0700435 }
Damien Neil658051b2018-09-10 12:26:21 -0700436 g.P("XXX_unrecognized []byte `json:\"-\"`")
437 g.P("XXX_sizecache int32 `json:\"-\"`")
Damien Neilc7d07d92018-08-22 13:46:02 -0700438 g.P("}")
439 g.P()
440
Joe Tsaib6405bd2018-11-15 14:44:37 -0800441 // Generate support for protobuf reflection.
442 genReflectMessage(gen, g, f, message)
443
Damien Neila1c6abc2018-09-12 13:36:34 -0700444 // Reset
445 g.P("func (m *", message.GoIdent, ") Reset() { *m = ", message.GoIdent, "{} }")
446 // String
Joe Tsai24ceb2b2018-12-04 22:53:56 -0800447 g.P("func (m *", message.GoIdent, ") String() string { return ", f.protoPackage().Ident("CompactTextString"), "(m) }")
Damien Neila1c6abc2018-09-12 13:36:34 -0700448 // ProtoMessage
449 g.P("func (*", message.GoIdent, ") ProtoMessage() {}")
450 // Descriptor
451 var indexes []string
Damien Neil162c1272018-10-04 12:42:37 -0700452 for i := 1; i < len(message.Location.Path); i += 2 {
453 indexes = append(indexes, strconv.Itoa(int(message.Location.Path[i])))
Damien Neila1c6abc2018-09-12 13:36:34 -0700454 }
455 g.P("func (*", message.GoIdent, ") Descriptor() ([]byte, []int) {")
Damien Neil8012b442019-01-18 09:32:24 -0800456 g.P("return ", f.descriptorGzipVar, ", []int{", strings.Join(indexes, ","), "}")
Damien Neila1c6abc2018-09-12 13:36:34 -0700457 g.P("}")
Damien Neil993c04d2018-09-14 15:41:11 -0700458 g.P()
459
460 // ExtensionRangeArray
461 if extranges := message.Desc.ExtensionRanges(); extranges.Len() > 0 {
Joe Tsai24ceb2b2018-12-04 22:53:56 -0800462 protoExtRange := f.protoPackage().Ident("ExtensionRange")
Damien Neil993c04d2018-09-14 15:41:11 -0700463 extRangeVar := "extRange_" + message.GoIdent.GoName
464 g.P("var ", extRangeVar, " = []", protoExtRange, " {")
465 for i := 0; i < extranges.Len(); i++ {
466 r := extranges.Get(i)
467 g.P("{Start:", r[0], ", End:", r[1]-1 /* inclusive */, "},")
468 }
469 g.P("}")
470 g.P()
471 g.P("func (*", message.GoIdent, ") ExtensionRangeArray() []", protoExtRange, " {")
472 g.P("return ", extRangeVar)
473 g.P("}")
474 g.P()
475 }
Damien Neila1c6abc2018-09-12 13:36:34 -0700476
Damien Neilea7baf42018-09-28 14:23:44 -0700477 genWellKnownType(g, "*", message.GoIdent, message.Desc)
478
Damien Neila1c6abc2018-09-12 13:36:34 -0700479 // Table-driven proto support.
480 //
481 // TODO: It does not scale to keep adding another method for every
482 // operation on protos that we want to switch over to using the
483 // table-driven approach. Instead, we should only add a single method
484 // that allows getting access to the *InternalMessageInfo struct and then
485 // calling Unmarshal, Marshal, Merge, Size, and Discard directly on that.
Joe Tsai24ceb2b2018-12-04 22:53:56 -0800486 if !isDescriptor(f.File) {
487 // NOTE: We avoid adding table-driven support for descriptor proto
488 // since this depends on the v1 proto package, which would eventually
489 // need to depend on the descriptor itself.
490 messageInfoVar := "xxx_messageInfo_" + message.GoIdent.GoName
491 // XXX_Unmarshal
492 g.P("func (m *", message.GoIdent, ") XXX_Unmarshal(b []byte) error {")
493 g.P("return ", messageInfoVar, ".Unmarshal(m, b)")
494 g.P("}")
495 // XXX_Marshal
496 g.P("func (m *", message.GoIdent, ") XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {")
497 g.P("return ", messageInfoVar, ".Marshal(b, m, deterministic)")
498 g.P("}")
499 // XXX_Merge
500 g.P("func (m *", message.GoIdent, ") XXX_Merge(src proto.Message) {")
501 g.P(messageInfoVar, ".Merge(m, src)")
502 g.P("}")
503 // XXX_Size
504 g.P("func (m *", message.GoIdent, ") XXX_Size() int {")
505 g.P("return ", messageInfoVar, ".Size(m)")
506 g.P("}")
507 // XXX_DiscardUnknown
508 g.P("func (m *", message.GoIdent, ") XXX_DiscardUnknown() {")
509 g.P(messageInfoVar, ".DiscardUnknown(m)")
510 g.P("}")
511 g.P()
512 g.P("var ", messageInfoVar, " ", protoPackage.Ident("InternalMessageInfo"))
513 g.P()
514 }
Damien Neila1c6abc2018-09-12 13:36:34 -0700515
Damien Neilebc699d2018-09-13 08:50:13 -0700516 // Constants and vars holding the default values of fields.
517 for _, field := range message.Fields {
Joe Tsai9667c482018-12-05 15:42:52 -0800518 if !field.Desc.HasDefault() {
Damien Neilebc699d2018-09-13 08:50:13 -0700519 continue
520 }
Damien Neil1fa78d82018-09-13 13:12:36 -0700521 defVarName := "Default_" + message.GoIdent.GoName + "_" + field.GoName
Damien Neilebc699d2018-09-13 08:50:13 -0700522 def := field.Desc.Default()
523 switch field.Desc.Kind() {
524 case protoreflect.StringKind:
525 g.P("const ", defVarName, " string = ", strconv.Quote(def.String()))
526 case protoreflect.BytesKind:
527 g.P("var ", defVarName, " []byte = []byte(", strconv.Quote(string(def.Bytes())), ")")
528 case protoreflect.EnumKind:
Damien Neila485fbd2018-10-26 13:28:37 -0700529 evalueDesc := field.Desc.DefaultEnumValue()
Damien Neilebc699d2018-09-13 08:50:13 -0700530 enum := field.EnumType
Damien Neila485fbd2018-10-26 13:28:37 -0700531 evalue := enum.Values[evalueDesc.Index()]
Damien Neilebc699d2018-09-13 08:50:13 -0700532 g.P("const ", defVarName, " ", field.EnumType.GoIdent, " = ", evalue.GoIdent)
533 case protoreflect.FloatKind, protoreflect.DoubleKind:
534 // Floating point numbers need extra handling for -Inf/Inf/NaN.
535 f := field.Desc.Default().Float()
536 goType := "float64"
537 if field.Desc.Kind() == protoreflect.FloatKind {
538 goType = "float32"
539 }
540 // funcCall returns a call to a function in the math package,
541 // possibly converting the result to float32.
542 funcCall := func(fn, param string) string {
Joe Tsaic1c17aa2018-11-16 11:14:14 -0800543 s := g.QualifiedGoIdent(mathPackage.Ident(fn)) + param
Damien Neilebc699d2018-09-13 08:50:13 -0700544 if goType != "float64" {
545 s = goType + "(" + s + ")"
546 }
547 return s
548 }
549 switch {
550 case math.IsInf(f, -1):
551 g.P("var ", defVarName, " ", goType, " = ", funcCall("Inf", "(-1)"))
552 case math.IsInf(f, 1):
553 g.P("var ", defVarName, " ", goType, " = ", funcCall("Inf", "(1)"))
554 case math.IsNaN(f):
555 g.P("var ", defVarName, " ", goType, " = ", funcCall("NaN", "()"))
556 default:
Damien Neil982684b2018-09-28 14:12:41 -0700557 g.P("const ", defVarName, " ", goType, " = ", field.Desc.Default().Interface())
Damien Neilebc699d2018-09-13 08:50:13 -0700558 }
559 default:
Damien Neil77f82fe2018-09-13 10:59:17 -0700560 goType, _ := fieldGoType(g, field)
Damien Neilebc699d2018-09-13 08:50:13 -0700561 g.P("const ", defVarName, " ", goType, " = ", def.Interface())
562 }
563 }
564 g.P()
565
Damien Neil77f82fe2018-09-13 10:59:17 -0700566 // Getters.
567 for _, field := range message.Fields {
Damien Neil1fa78d82018-09-13 13:12:36 -0700568 if field.OneofType != nil {
569 if field == field.OneofType.Fields[0] {
570 genOneofTypes(gen, g, f, message, field.OneofType)
571 }
572 }
Damien Neil77f82fe2018-09-13 10:59:17 -0700573 goType, pointer := fieldGoType(g, field)
574 defaultValue := fieldDefaultValue(g, message, field)
Joe Tsaie1f8d502018-11-26 18:55:29 -0800575 if field.Desc.Options().(*descriptorpb.FieldOptions).GetDeprecated() {
Damien Neil55fe1c02018-09-17 15:11:24 -0700576 g.P(deprecationComment(true))
577 }
Damien Neil162c1272018-10-04 12:42:37 -0700578 g.Annotate(message.GoIdent.GoName+".Get"+field.GoName, field.Location)
Damien Neil1fa78d82018-09-13 13:12:36 -0700579 g.P("func (m *", message.GoIdent, ") Get", field.GoName, "() ", goType, " {")
580 if field.OneofType != nil {
Damien Neil81d6d832018-09-19 12:12:17 -0700581 g.P("if x, ok := m.Get", field.OneofType.GoName, "().(*", fieldOneofType(field), "); ok {")
Damien Neil1fa78d82018-09-13 13:12:36 -0700582 g.P("return x.", field.GoName)
583 g.P("}")
Damien Neil77f82fe2018-09-13 10:59:17 -0700584 } else {
Damien Neil1fa78d82018-09-13 13:12:36 -0700585 if field.Desc.Syntax() == protoreflect.Proto3 || defaultValue == "nil" {
586 g.P("if m != nil {")
587 } else {
588 g.P("if m != nil && m.", field.GoName, " != nil {")
589 }
590 star := ""
591 if pointer {
592 star = "*"
593 }
594 g.P("return ", star, " m.", field.GoName)
595 g.P("}")
Damien Neil77f82fe2018-09-13 10:59:17 -0700596 }
Damien Neil77f82fe2018-09-13 10:59:17 -0700597 g.P("return ", defaultValue)
598 g.P("}")
599 g.P()
600 }
Damien Neila1c6abc2018-09-12 13:36:34 -0700601
Damien Neil1fa78d82018-09-13 13:12:36 -0700602 if len(message.Oneofs) > 0 {
Joe Tsaid7e97bc2018-11-26 12:57:27 -0800603 genOneofWrappers(gen, g, f, message)
Damien Neil1fa78d82018-09-13 13:12:36 -0700604 }
Damien Neilc7d07d92018-08-22 13:46:02 -0700605}
Damien Neilcab8dfe2018-09-06 14:51:28 -0700606
Damien Neil77f82fe2018-09-13 10:59:17 -0700607// fieldGoType returns the Go type used for a field.
608//
609// If it returns pointer=true, the struct field is a pointer to the type.
610func fieldGoType(g *protogen.GeneratedFile, field *protogen.Field) (goType string, pointer bool) {
Damien Neil77f82fe2018-09-13 10:59:17 -0700611 pointer = true
Damien Neil658051b2018-09-10 12:26:21 -0700612 switch field.Desc.Kind() {
613 case protoreflect.BoolKind:
Damien Neil77f82fe2018-09-13 10:59:17 -0700614 goType = "bool"
Damien Neil658051b2018-09-10 12:26:21 -0700615 case protoreflect.EnumKind:
Damien Neil77f82fe2018-09-13 10:59:17 -0700616 goType = g.QualifiedGoIdent(field.EnumType.GoIdent)
Damien Neil658051b2018-09-10 12:26:21 -0700617 case protoreflect.Int32Kind, protoreflect.Sint32Kind, protoreflect.Sfixed32Kind:
Damien Neil77f82fe2018-09-13 10:59:17 -0700618 goType = "int32"
Damien Neil658051b2018-09-10 12:26:21 -0700619 case protoreflect.Uint32Kind, protoreflect.Fixed32Kind:
Damien Neil77f82fe2018-09-13 10:59:17 -0700620 goType = "uint32"
Damien Neil658051b2018-09-10 12:26:21 -0700621 case protoreflect.Int64Kind, protoreflect.Sint64Kind, protoreflect.Sfixed64Kind:
Damien Neil77f82fe2018-09-13 10:59:17 -0700622 goType = "int64"
Damien Neil658051b2018-09-10 12:26:21 -0700623 case protoreflect.Uint64Kind, protoreflect.Fixed64Kind:
Damien Neil77f82fe2018-09-13 10:59:17 -0700624 goType = "uint64"
Damien Neil658051b2018-09-10 12:26:21 -0700625 case protoreflect.FloatKind:
Damien Neil77f82fe2018-09-13 10:59:17 -0700626 goType = "float32"
Damien Neil658051b2018-09-10 12:26:21 -0700627 case protoreflect.DoubleKind:
Damien Neil77f82fe2018-09-13 10:59:17 -0700628 goType = "float64"
Damien Neil658051b2018-09-10 12:26:21 -0700629 case protoreflect.StringKind:
Damien Neil77f82fe2018-09-13 10:59:17 -0700630 goType = "string"
Damien Neil658051b2018-09-10 12:26:21 -0700631 case protoreflect.BytesKind:
Damien Neil77f82fe2018-09-13 10:59:17 -0700632 goType = "[]byte"
633 pointer = false
Damien Neil658051b2018-09-10 12:26:21 -0700634 case protoreflect.MessageKind, protoreflect.GroupKind:
Damien Neil0bd5a382018-09-13 15:07:10 -0700635 if field.Desc.IsMap() {
636 keyType, _ := fieldGoType(g, field.MessageType.Fields[0])
637 valType, _ := fieldGoType(g, field.MessageType.Fields[1])
638 return fmt.Sprintf("map[%v]%v", keyType, valType), false
639 }
Damien Neil77f82fe2018-09-13 10:59:17 -0700640 goType = "*" + g.QualifiedGoIdent(field.MessageType.GoIdent)
641 pointer = false
Damien Neil658051b2018-09-10 12:26:21 -0700642 }
643 if field.Desc.Cardinality() == protoreflect.Repeated {
Damien Neil77f82fe2018-09-13 10:59:17 -0700644 goType = "[]" + goType
645 pointer = false
Damien Neil658051b2018-09-10 12:26:21 -0700646 }
Damien Neil44000a12018-10-24 12:31:16 -0700647 // Extension fields always have pointer type, even when defined in a proto3 file.
648 if field.Desc.Syntax() == protoreflect.Proto3 && field.Desc.ExtendedType() == nil {
Damien Neil77f82fe2018-09-13 10:59:17 -0700649 pointer = false
Damien Neil658051b2018-09-10 12:26:21 -0700650 }
Damien Neil77f82fe2018-09-13 10:59:17 -0700651 return goType, pointer
Damien Neil658051b2018-09-10 12:26:21 -0700652}
653
654func fieldProtobufTag(field *protogen.Field) string {
Joe Tsai05828db2018-11-01 13:52:16 -0700655 var enumName string
Damien Neil658051b2018-09-10 12:26:21 -0700656 if field.Desc.Kind() == protoreflect.EnumKind {
Joe Tsai05828db2018-11-01 13:52:16 -0700657 enumName = enumRegistryName(field.EnumType)
Damien Neil658051b2018-09-10 12:26:21 -0700658 }
Joe Tsai05828db2018-11-01 13:52:16 -0700659 return tag.Marshal(field.Desc, enumName)
Damien Neil658051b2018-09-10 12:26:21 -0700660}
661
Damien Neil77f82fe2018-09-13 10:59:17 -0700662func fieldDefaultValue(g *protogen.GeneratedFile, message *protogen.Message, field *protogen.Field) string {
663 if field.Desc.Cardinality() == protoreflect.Repeated {
664 return "nil"
665 }
Joe Tsai9667c482018-12-05 15:42:52 -0800666 if field.Desc.HasDefault() {
Damien Neil1fa78d82018-09-13 13:12:36 -0700667 defVarName := "Default_" + message.GoIdent.GoName + "_" + field.GoName
Damien Neil77f82fe2018-09-13 10:59:17 -0700668 if field.Desc.Kind() == protoreflect.BytesKind {
669 return "append([]byte(nil), " + defVarName + "...)"
670 }
671 return defVarName
672 }
673 switch field.Desc.Kind() {
674 case protoreflect.BoolKind:
675 return "false"
676 case protoreflect.StringKind:
677 return `""`
678 case protoreflect.MessageKind, protoreflect.GroupKind, protoreflect.BytesKind:
679 return "nil"
680 case protoreflect.EnumKind:
681 return g.QualifiedGoIdent(field.EnumType.Values[0].GoIdent)
682 default:
683 return "0"
684 }
685}
686
Damien Neil658051b2018-09-10 12:26:21 -0700687func fieldJSONTag(field *protogen.Field) string {
688 return string(field.Desc.Name()) + ",omitempty"
689}
690
Joe Tsaiafb455e2019-03-14 16:08:22 -0700691func genExtensions(gen *protogen.Plugin, g *protogen.GeneratedFile, f *fileInfo) {
692 if len(f.allExtensions) == 0 {
693 return
Damien Neil154da982018-09-19 13:21:58 -0700694 }
695
Joe Tsaiafb455e2019-03-14 16:08:22 -0700696 g.P("var ", extDecsVarName(f), " = []", f.protoPackage().Ident("ExtensionDesc"), "{")
697 for _, extension := range f.allExtensions {
698 // Special case for proto2 message sets: If this extension is extending
699 // proto2.bridge.MessageSet, and its final name component is "message_set_extension",
700 // then drop that last component.
701 //
702 // TODO: This should be implemented in the text formatter rather than the generator.
703 // In addition, the situation for when to apply this special case is implemented
704 // differently in other languages:
705 // https://github.com/google/protobuf/blob/aff10976/src/google/protobuf/text_format.cc#L1560
706 name := extension.Desc.FullName()
707 if n, ok := isExtensionMessageSetElement(extension); ok {
708 name = n
709 }
710
711 g.P("{")
712 g.P("ExtendedType: (*", extension.ExtendedType.GoIdent, ")(nil),")
713 goType, pointer := fieldGoType(g, extension)
714 if pointer {
715 goType = "*" + goType
716 }
717 g.P("ExtensionType: (", goType, ")(nil),")
718 g.P("Field: ", extension.Desc.Number(), ",")
719 g.P("Name: ", strconv.Quote(string(name)), ",")
720 g.P("Tag: ", strconv.Quote(fieldProtobufTag(extension)), ",")
721 g.P("Filename: ", strconv.Quote(f.Desc.Path()), ",")
722 g.P("},")
Damien Neil993c04d2018-09-14 15:41:11 -0700723 }
Damien Neil993c04d2018-09-14 15:41:11 -0700724 g.P("}")
Joe Tsaiafb455e2019-03-14 16:08:22 -0700725
726 g.P("var (")
727 for i, extension := range f.allExtensions {
728 ed := extension.Desc
729 targetName := string(ed.ExtendedType().FullName())
730 typeName := ed.Kind().String()
731 switch ed.Kind() {
732 case protoreflect.EnumKind:
733 typeName = string(ed.EnumType().FullName())
734 case protoreflect.MessageKind, protoreflect.GroupKind:
735 typeName = string(ed.MessageType().FullName())
736 }
737 fieldName := string(ed.Name())
738 g.P("// extend ", targetName, " { ", ed.Cardinality().String(), " ", typeName, " ", fieldName, " = ", ed.Number(), "; }")
739 g.P(extensionVar(f.File, extension), " = &", extDecsVarName(f), "[", i, "]")
740 g.P()
741 }
742 g.P(")")
Damien Neil993c04d2018-09-14 15:41:11 -0700743}
744
Damien Neil62386962018-10-30 10:35:48 -0700745// isExtensionMessageSetELement returns the adjusted name of an extension
746// which extends proto2.bridge.MessageSet.
747func isExtensionMessageSetElement(extension *protogen.Extension) (name protoreflect.FullName, ok bool) {
Joe Tsaie1f8d502018-11-26 18:55:29 -0800748 opts := extension.ExtendedType.Desc.Options().(*descriptorpb.MessageOptions)
Damien Neil62386962018-10-30 10:35:48 -0700749 if !opts.GetMessageSetWireFormat() || extension.Desc.Name() != "message_set_extension" {
750 return "", false
751 }
752 if extension.ParentMessage == nil {
753 // This case shouldn't be given special handling at all--we're
754 // only supposed to drop the ".message_set_extension" for
755 // extensions defined within a message (i.e., the extension
756 // takes the message's name).
757 //
758 // This matches the behavior of the v1 generator, however.
759 //
760 // TODO: See if we can drop this case.
761 name = extension.Desc.FullName()
762 name = name[:len(name)-len("message_set_extension")]
763 return name, true
764 }
765 return extension.Desc.FullName().Parent(), true
Damien Neil154da982018-09-19 13:21:58 -0700766}
767
Damien Neil993c04d2018-09-14 15:41:11 -0700768// extensionVar returns the var holding the ExtensionDesc for an extension.
Damien Neil6b541312018-10-29 09:14:14 -0700769func extensionVar(f *protogen.File, extension *protogen.Extension) protogen.GoIdent {
Damien Neil993c04d2018-09-14 15:41:11 -0700770 name := "E_"
771 if extension.ParentMessage != nil {
772 name += extension.ParentMessage.GoIdent.GoName + "_"
773 }
774 name += extension.GoName
Joe Tsaic1c17aa2018-11-16 11:14:14 -0800775 return f.GoImportPath.Ident(name)
Damien Neil993c04d2018-09-14 15:41:11 -0700776}
777
Damien Neilce36f8d2018-09-13 15:19:08 -0700778// genInitFunction generates an init function that registers the types in the
779// generated file with the proto package.
Damien Neild39efc82018-09-24 12:38:10 -0700780func genInitFunction(gen *protogen.Plugin, g *protogen.GeneratedFile, f *fileInfo) {
Damien Neilce36f8d2018-09-13 15:19:08 -0700781 g.P("func init() {")
Damien Neil8012b442019-01-18 09:32:24 -0800782 g.P(f.protoPackage().Ident("RegisterFile"), "(", strconv.Quote(f.Desc.Path()), ", ", f.descriptorGzipVar, ")")
Damien Neil154da982018-09-19 13:21:58 -0700783 for _, enum := range f.allEnums {
784 name := enum.GoIdent.GoName
Joe Tsai24ceb2b2018-12-04 22:53:56 -0800785 g.P(f.protoPackage().Ident("RegisterEnum"), fmt.Sprintf("(%q, %s_name, %s_value)", enumRegistryName(enum), name, name))
Damien Neil154da982018-09-19 13:21:58 -0700786 }
Damien Neilce36f8d2018-09-13 15:19:08 -0700787 for _, message := range f.allMessages {
788 if message.Desc.IsMapEntry() {
789 continue
790 }
791
792 name := message.GoIdent.GoName
Joe Tsai24ceb2b2018-12-04 22:53:56 -0800793 g.P(f.protoPackage().Ident("RegisterType"), fmt.Sprintf("((*%s)(nil), %q)", name, message.Desc.FullName()))
Damien Neilce36f8d2018-09-13 15:19:08 -0700794
795 // Types of map fields, sorted by the name of the field message type.
796 var mapFields []*protogen.Field
797 for _, field := range message.Fields {
798 if field.Desc.IsMap() {
799 mapFields = append(mapFields, field)
800 }
801 }
802 sort.Slice(mapFields, func(i, j int) bool {
803 ni := mapFields[i].MessageType.Desc.FullName()
804 nj := mapFields[j].MessageType.Desc.FullName()
805 return ni < nj
806 })
807 for _, field := range mapFields {
808 typeName := string(field.MessageType.Desc.FullName())
809 goType, _ := fieldGoType(g, field)
Joe Tsai24ceb2b2018-12-04 22:53:56 -0800810 g.P(f.protoPackage().Ident("RegisterMapType"), fmt.Sprintf("((%v)(nil), %q)", goType, typeName))
Damien Neilce36f8d2018-09-13 15:19:08 -0700811 }
812 }
Joe Tsai9667c482018-12-05 15:42:52 -0800813 for _, extension := range f.allExtensions {
814 g.P(f.protoPackage().Ident("RegisterExtension"), "(", extensionVar(f.File, extension), ")")
Damien Neil993c04d2018-09-14 15:41:11 -0700815 }
Damien Neilce36f8d2018-09-13 15:19:08 -0700816 g.P("}")
817 g.P()
818}
819
Damien Neil55fe1c02018-09-17 15:11:24 -0700820// deprecationComment returns a standard deprecation comment if deprecated is true.
821func deprecationComment(deprecated bool) string {
822 if !deprecated {
823 return ""
824 }
825 return "// Deprecated: Do not use."
826}
827
Damien Neilea7baf42018-09-28 14:23:44 -0700828func genWellKnownType(g *protogen.GeneratedFile, ptr string, ident protogen.GoIdent, desc protoreflect.Descriptor) {
Damien Neil46abb572018-09-07 12:45:37 -0700829 if wellKnownTypes[desc.FullName()] {
Damien Neilea7baf42018-09-28 14:23:44 -0700830 g.P("func (", ptr, ident, `) XXX_WellKnownType() string { return "`, desc.Name(), `" }`)
Damien Neil46abb572018-09-07 12:45:37 -0700831 g.P()
832 }
833}
834
835// Names of messages and enums for which we will generate XXX_WellKnownType methods.
836var wellKnownTypes = map[protoreflect.FullName]bool{
Damien Neilea7baf42018-09-28 14:23:44 -0700837 "google.protobuf.Any": true,
838 "google.protobuf.Duration": true,
839 "google.protobuf.Empty": true,
840 "google.protobuf.Struct": true,
841 "google.protobuf.Timestamp": true,
842
843 "google.protobuf.BoolValue": true,
844 "google.protobuf.BytesValue": true,
845 "google.protobuf.DoubleValue": true,
846 "google.protobuf.FloatValue": true,
847 "google.protobuf.Int32Value": true,
848 "google.protobuf.Int64Value": true,
849 "google.protobuf.ListValue": true,
850 "google.protobuf.NullValue": true,
851 "google.protobuf.StringValue": true,
852 "google.protobuf.UInt32Value": true,
853 "google.protobuf.UInt64Value": true,
854 "google.protobuf.Value": true,
Damien Neil46abb572018-09-07 12:45:37 -0700855}
Joe Tsaid7e97bc2018-11-26 12:57:27 -0800856
857// genOneofField generates the struct field for a oneof.
858func genOneofField(gen *protogen.Plugin, g *protogen.GeneratedFile, f *fileInfo, message *protogen.Message, oneof *protogen.Oneof) {
859 if g.PrintLeadingComments(oneof.Location) {
860 g.P("//")
861 }
862 g.P("// Types that are valid to be assigned to ", oneofFieldName(oneof), ":")
863 for _, field := range oneof.Fields {
864 g.PrintLeadingComments(field.Location)
865 g.P("//\t*", fieldOneofType(field))
866 }
867 g.Annotate(message.GoIdent.GoName+"."+oneofFieldName(oneof), oneof.Location)
868 g.P(oneofFieldName(oneof), " ", oneofInterfaceName(oneof), " `protobuf_oneof:\"", oneof.Desc.Name(), "\"`")
869}
870
871// genOneofTypes generates the interface type used for a oneof field,
872// and the wrapper types that satisfy that interface.
873//
874// It also generates the getter method for the parent oneof field
875// (but not the member fields).
876func genOneofTypes(gen *protogen.Plugin, g *protogen.GeneratedFile, f *fileInfo, message *protogen.Message, oneof *protogen.Oneof) {
877 ifName := oneofInterfaceName(oneof)
878 g.P("type ", ifName, " interface {")
879 g.P(ifName, "()")
880 g.P("}")
881 g.P()
882 for _, field := range oneof.Fields {
883 name := fieldOneofType(field)
884 g.Annotate(name.GoName, field.Location)
885 g.Annotate(name.GoName+"."+field.GoName, field.Location)
886 g.P("type ", name, " struct {")
887 goType, _ := fieldGoType(g, field)
888 tags := []string{
889 fmt.Sprintf("protobuf:%q", fieldProtobufTag(field)),
890 }
891 g.P(field.GoName, " ", goType, " `", strings.Join(tags, " "), "`")
892 g.P("}")
893 g.P()
894 }
895 for _, field := range oneof.Fields {
896 g.P("func (*", fieldOneofType(field), ") ", ifName, "() {}")
897 g.P()
898 }
899 g.Annotate(message.GoIdent.GoName+".Get"+oneof.GoName, oneof.Location)
900 g.P("func (m *", message.GoIdent.GoName, ") Get", oneof.GoName, "() ", ifName, " {")
901 g.P("if m != nil {")
902 g.P("return m.", oneofFieldName(oneof))
903 g.P("}")
904 g.P("return nil")
905 g.P("}")
906 g.P()
907}
908
909// oneofFieldName returns the name of the struct field holding the oneof value.
910//
911// This function is trivial, but pulling out the name like this makes it easier
912// to experiment with alternative oneof implementations.
913func oneofFieldName(oneof *protogen.Oneof) string {
914 return oneof.GoName
915}
916
917// oneofInterfaceName returns the name of the interface type implemented by
918// the oneof field value types.
919func oneofInterfaceName(oneof *protogen.Oneof) string {
920 return fmt.Sprintf("is%s_%s", oneof.ParentMessage.GoIdent.GoName, oneof.GoName)
921}
922
923// genOneofWrappers generates the XXX_OneofWrappers method for a message.
924func genOneofWrappers(gen *protogen.Plugin, g *protogen.GeneratedFile, f *fileInfo, message *protogen.Message) {
925 g.P("// XXX_OneofWrappers is for the internal use of the proto package.")
926 g.P("func (*", message.GoIdent.GoName, ") XXX_OneofWrappers() []interface{} {")
927 g.P("return []interface{}{")
928 for _, oneof := range message.Oneofs {
929 for _, field := range oneof.Fields {
930 g.P("(*", fieldOneofType(field), ")(nil),")
931 }
932 }
933 g.P("}")
934 g.P("}")
935 g.P()
936}
937
938// fieldOneofType returns the wrapper type used to represent a field in a oneof.
939func fieldOneofType(field *protogen.Field) protogen.GoIdent {
940 ident := protogen.GoIdent{
941 GoImportPath: field.ParentMessage.GoIdent.GoImportPath,
942 GoName: field.ParentMessage.GoIdent.GoName + "_" + field.GoName,
943 }
944 // Check for collisions with nested messages or enums.
945 //
946 // This conflict resolution is incomplete: Among other things, it
947 // does not consider collisions with other oneof field types.
948 //
949 // TODO: Consider dropping this entirely. Detecting conflicts and
950 // producing an error is almost certainly better than permuting
951 // field and type names in mostly unpredictable ways.
952Loop:
953 for {
954 for _, message := range field.ParentMessage.Messages {
955 if message.GoIdent == ident {
956 ident.GoName += "_"
957 continue Loop
958 }
959 }
960 for _, enum := range field.ParentMessage.Enums {
961 if enum.GoIdent == ident {
962 ident.GoName += "_"
963 continue Loop
964 }
965 }
966 return ident
967 }
968}