blob: 7a2fee0b9d67645e4a13d62f09d0fb759da023a7 [file] [log] [blame]
Damien Neil220c2022018-08-15 11:24:18 -07001// Copyright 2018 The Go Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style
3// license that can be found in the LICENSE file.
4
Damien Neil1adaec92018-09-24 13:43:03 -07005// Package internal_gengo is internal to the protobuf module.
6package internal_gengo
Damien Neil220c2022018-08-15 11:24:18 -07007
8import (
Damien Neil7779e052018-09-07 14:14:06 -07009 "fmt"
Damien Neil7bf3ce22018-12-21 15:54:06 -080010 "go/ast"
11 "go/parser"
12 "go/token"
Damien Neilebc699d2018-09-13 08:50:13 -070013 "math"
Damien Neil7779e052018-09-07 14:14:06 -070014 "strconv"
Damien Neilcab8dfe2018-09-06 14:51:28 -070015 "strings"
Damien Neil7bf3ce22018-12-21 15:54:06 -080016 "unicode"
17 "unicode/utf8"
Damien Neil7779e052018-09-07 14:14:06 -070018
Damien Neil5c5b5312019-05-14 12:44:37 -070019 "google.golang.org/protobuf/compiler/protogen"
Damien Neile89e6242019-05-13 23:55:40 -070020 "google.golang.org/protobuf/internal/encoding/tag"
21 "google.golang.org/protobuf/internal/fieldnum"
Damien Neile89e6242019-05-13 23:55:40 -070022 "google.golang.org/protobuf/reflect/protoreflect"
Joe Tsai58b42d82019-05-22 16:27:51 -040023 "google.golang.org/protobuf/runtime/protoimpl"
Joe Tsaie1f8d502018-11-26 18:55:29 -080024
Joe Tsaia95b29f2019-05-16 12:47:20 -070025 "google.golang.org/protobuf/types/descriptorpb"
Damien Neil220c2022018-08-15 11:24:18 -070026)
27
Joe Tsaic1c17aa2018-11-16 11:14:14 -080028const (
Joe Tsaiab61d412019-04-16 15:23:29 -070029 // generateEnumMapVars specifies whether to generate enum maps,
30 // which provide a bi-directional mapping between enum numbers and names.
31 generateEnumMapVars = true
32
33 // generateRawDescMethods specifies whether to generate EnumDescriptor and
34 // Descriptor methods for enums and messages. These methods return the
35 // GZIP'd contents of the raw file descriptor and the path from the root
36 // to the given enum or message descriptor.
37 generateRawDescMethods = true
Joe Tsai09912272019-07-08 10:38:11 -070038
39 // generateOneofWrapperMethods specifies whether to generate
40 // XXX_OneofWrappers methods on messages with oneofs.
41 generateOneofWrapperMethods = false
Joe Tsaic0e4bb22019-07-06 13:05:11 -070042
43 // generateNoUnkeyedLiteralFields specifies whether to generate
44 // the XXX_NoUnkeyedLiteral field.
45 generateNoUnkeyedLiteralFields = false
46
47 // generateExportedSizeCacheFields specifies whether to generate an exported
48 // XXX_sizecache field instead of an unexported sizeCache field.
49 generateExportedSizeCacheFields = false
50
51 // generateExportedUnknownFields specifies whether to generate an exported
52 // XXX_unrecognized field instead of an unexported unknownFields field.
53 generateExportedUnknownFields = false
54
55 // generateExportedExtensionFields specifies whether to generate an exported
56 // XXX_InternalExtensions field instead of an unexported extensionFields field.
57 generateExportedExtensionFields = false
Joe Tsaiab61d412019-04-16 15:23:29 -070058)
59
60const (
Joe Tsai5d72cc22019-03-28 01:13:26 -070061 syncPackage = protogen.GoImportPath("sync")
Joe Tsai4fddeba2019-03-20 18:29:32 -070062 mathPackage = protogen.GoImportPath("math")
Damien Neile89e6242019-05-13 23:55:40 -070063 protoifacePackage = protogen.GoImportPath("google.golang.org/protobuf/runtime/protoiface")
64 protoimplPackage = protogen.GoImportPath("google.golang.org/protobuf/runtime/protoimpl")
65 protoreflectPackage = protogen.GoImportPath("google.golang.org/protobuf/reflect/protoreflect")
66 protoregistryPackage = protogen.GoImportPath("google.golang.org/protobuf/reflect/protoregistry")
Joe Tsaid8881392019-06-06 13:01:53 -070067 prototypePackage = protogen.GoImportPath("google.golang.org/protobuf/reflect/prototype")
Joe Tsaic1c17aa2018-11-16 11:14:14 -080068)
Damien Neil46abb572018-09-07 12:45:37 -070069
Damien Neild39efc82018-09-24 12:38:10 -070070type fileInfo struct {
Damien Neilcab8dfe2018-09-06 14:51:28 -070071 *protogen.File
Damien Neil8012b442019-01-18 09:32:24 -080072
Joe Tsaic0e4bb22019-07-06 13:05:11 -070073 allEnums []*protogen.Enum
74 allMessages []*protogen.Message
75 allExtensions []*protogen.Extension
76
77 allEnumsByPtr map[*protogen.Enum]int // value is index into allEnums
78 allMessagesByPtr map[*protogen.Message]int // value is index into allMessages
79 allMessageFieldsByPtr map[*protogen.Message]*structFields
80}
81
82type structFields struct {
83 count int
84 unexported map[int]string
85}
86
87func (sf *structFields) append(name string) {
88 if r, _ := utf8.DecodeRuneInString(name); !unicode.IsUpper(r) {
89 if sf.unexported == nil {
90 sf.unexported = make(map[int]string)
91 }
92 sf.unexported[sf.count] = name
93 }
94 sf.count++
Damien Neilcab8dfe2018-09-06 14:51:28 -070095}
96
Damien Neil9c420a62018-09-27 15:26:33 -070097// GenerateFile generates the contents of a .pb.go file.
Joe Tsai19058432019-02-27 21:46:29 -080098func GenerateFile(gen *protogen.Plugin, file *protogen.File) *protogen.GeneratedFile {
99 filename := file.GeneratedFilenamePrefix + ".pb.go"
100 g := gen.NewGeneratedFile(filename, file.GoImportPath)
Damien Neild39efc82018-09-24 12:38:10 -0700101 f := &fileInfo{
Damien Neilba1159f2018-10-17 12:53:18 -0700102 File: file,
Damien Neilcab8dfe2018-09-06 14:51:28 -0700103 }
104
Damien Neil8012b442019-01-18 09:32:24 -0800105 // Collect all enums, messages, and extensions in "flattened ordering".
Joe Tsaid8881392019-06-06 13:01:53 -0700106 // See filetype.TypeBuilder.
Joe Tsai9667c482018-12-05 15:42:52 -0800107 f.allEnums = append(f.allEnums, f.Enums...)
108 f.allMessages = append(f.allMessages, f.Messages...)
109 f.allExtensions = append(f.allExtensions, f.Extensions...)
110 walkMessages(f.Messages, func(m *protogen.Message) {
111 f.allEnums = append(f.allEnums, m.Enums...)
112 f.allMessages = append(f.allMessages, m.Messages...)
113 f.allExtensions = append(f.allExtensions, m.Extensions...)
Damien Neil73ac8852018-09-17 15:11:24 -0700114 })
Damien Neilce36f8d2018-09-13 15:19:08 -0700115
Joe Tsai9667c482018-12-05 15:42:52 -0800116 // Derive a reverse mapping of enum and message pointers to their index
117 // in allEnums and allMessages.
118 if len(f.allEnums) > 0 {
119 f.allEnumsByPtr = make(map[*protogen.Enum]int)
120 for i, e := range f.allEnums {
121 f.allEnumsByPtr[e] = i
122 }
123 }
124 if len(f.allMessages) > 0 {
125 f.allMessagesByPtr = make(map[*protogen.Message]int)
Joe Tsaic0e4bb22019-07-06 13:05:11 -0700126 f.allMessageFieldsByPtr = make(map[*protogen.Message]*structFields)
Joe Tsai9667c482018-12-05 15:42:52 -0800127 for i, m := range f.allMessages {
128 f.allMessagesByPtr[m] = i
Joe Tsaic0e4bb22019-07-06 13:05:11 -0700129 f.allMessageFieldsByPtr[m] = new(structFields)
Joe Tsai9667c482018-12-05 15:42:52 -0800130 }
131 }
Joe Tsaib6405bd2018-11-15 14:44:37 -0800132
Damien Neil220c2022018-08-15 11:24:18 -0700133 g.P("// Code generated by protoc-gen-go. DO NOT EDIT.")
Damien Neil55fe1c02018-09-17 15:11:24 -0700134 if f.Proto.GetOptions().GetDeprecated() {
135 g.P("// ", f.Desc.Path(), " is a deprecated file.")
136 } else {
137 g.P("// source: ", f.Desc.Path())
138 }
Damien Neil220c2022018-08-15 11:24:18 -0700139 g.P()
Damien Neilba1159f2018-10-17 12:53:18 -0700140 g.PrintLeadingComments(protogen.Location{
141 SourceFile: f.Proto.GetName(),
Joe Tsaica46d8c2019-03-20 16:51:09 -0700142 Path: []int32{fieldnum.FileDescriptorProto_Package},
Damien Neilba1159f2018-10-17 12:53:18 -0700143 })
Damien Neilcab8dfe2018-09-06 14:51:28 -0700144 g.P()
Damien Neil082ce922018-09-06 10:23:53 -0700145 g.P("package ", f.GoPackageName)
Damien Neilc7d07d92018-08-22 13:46:02 -0700146 g.P()
Damien Neil1ec33152018-09-13 13:12:36 -0700147
Joe Tsai5d72cc22019-03-28 01:13:26 -0700148 // Emit a static check that enforces a minimum version of the proto package.
Joe Tsai58b42d82019-05-22 16:27:51 -0400149 g.P("const (")
150 g.P("// Verify that runtime/protoimpl is sufficiently up-to-date.")
151 g.P("_ = ", protoimplPackage.Ident("EnforceVersion"), "(", protoimplPackage.Ident("MaxVersion"), " - ", protoimpl.Version, ")")
152 g.P("// Verify that this generated code is sufficiently up-to-date.")
153 g.P("_ = ", protoimplPackage.Ident("EnforceVersion"), "(", protoimpl.Version, " - ", protoimplPackage.Ident("MinVersion"), ")")
154 g.P(")")
Joe Tsai5d72cc22019-03-28 01:13:26 -0700155 g.P()
156
Damien Neil73ac8852018-09-17 15:11:24 -0700157 for i, imps := 0, f.Desc.Imports(); i < imps.Len(); i++ {
158 genImport(gen, g, f, imps.Get(i))
159 }
Damien Neilce36f8d2018-09-13 15:19:08 -0700160 for _, enum := range f.allEnums {
Damien Neil46abb572018-09-07 12:45:37 -0700161 genEnum(gen, g, f, enum)
162 }
Damien Neilce36f8d2018-09-13 15:19:08 -0700163 for _, message := range f.allMessages {
Damien Neilcab8dfe2018-09-06 14:51:28 -0700164 genMessage(gen, g, f, message)
Damien Neilc7d07d92018-08-22 13:46:02 -0700165 }
Joe Tsaiafb455e2019-03-14 16:08:22 -0700166 genExtensions(gen, g, f)
Damien Neil220c2022018-08-15 11:24:18 -0700167
Joe Tsaib6405bd2018-11-15 14:44:37 -0800168 genReflectFileDescriptor(gen, g, f)
Joe Tsai19058432019-02-27 21:46:29 -0800169
170 return g
Damien Neil7779e052018-09-07 14:14:06 -0700171}
172
Damien Neil73ac8852018-09-17 15:11:24 -0700173// walkMessages calls f on each message and all of its descendants.
174func walkMessages(messages []*protogen.Message, f func(*protogen.Message)) {
175 for _, m := range messages {
176 f(m)
177 walkMessages(m.Messages, f)
178 }
179}
180
Damien Neild39efc82018-09-24 12:38:10 -0700181func genImport(gen *protogen.Plugin, g *protogen.GeneratedFile, f *fileInfo, imp protoreflect.FileImport) {
Damien Neil73ac8852018-09-17 15:11:24 -0700182 impFile, ok := gen.FileByName(imp.Path())
183 if !ok {
184 return
185 }
186 if impFile.GoImportPath == f.GoImportPath {
Damien Neil2e0c3da2018-09-19 12:51:36 -0700187 // Don't generate imports or aliases for types in the same Go package.
188 return
189 }
Damien Neil40a08052018-10-29 09:07:41 -0700190 // Generate imports for all non-weak dependencies, even if they are not
Damien Neil2e0c3da2018-09-19 12:51:36 -0700191 // referenced, because other code and tools depend on having the
192 // full transitive closure of protocol buffer types in the binary.
Damien Neil40a08052018-10-29 09:07:41 -0700193 if !imp.IsWeak {
194 g.Import(impFile.GoImportPath)
195 }
Damien Neil2e0c3da2018-09-19 12:51:36 -0700196 if !imp.IsPublic {
Damien Neil73ac8852018-09-17 15:11:24 -0700197 return
198 }
Damien Neil7bf3ce22018-12-21 15:54:06 -0800199
200 // Generate public imports by generating the imported file, parsing it,
201 // and extracting every symbol that should receive a forwarding declaration.
Joe Tsai19058432019-02-27 21:46:29 -0800202 impGen := GenerateFile(gen, impFile)
Damien Neil7bf3ce22018-12-21 15:54:06 -0800203 impGen.Skip()
Damien Neil7bf3ce22018-12-21 15:54:06 -0800204 b, err := impGen.Content()
205 if err != nil {
206 gen.Error(err)
207 return
208 }
209 fset := token.NewFileSet()
210 astFile, err := parser.ParseFile(fset, "", b, parser.ParseComments)
211 if err != nil {
212 gen.Error(err)
213 return
214 }
Damien Neila7cbd062019-01-06 16:29:14 -0800215 genForward := func(tok token.Token, name string, expr ast.Expr) {
Damien Neil7bf3ce22018-12-21 15:54:06 -0800216 // Don't import unexported symbols.
217 r, _ := utf8.DecodeRuneInString(name)
218 if !unicode.IsUpper(r) {
Damien Neil2193e8d2018-10-09 12:49:13 -0700219 return
220 }
Damien Neil7bf3ce22018-12-21 15:54:06 -0800221 // Don't import the FileDescriptor.
222 if name == impFile.GoDescriptorIdent.GoName {
223 return
224 }
Damien Neila7cbd062019-01-06 16:29:14 -0800225 // Don't import decls referencing a symbol defined in another package.
226 // i.e., don't import decls which are themselves public imports:
227 //
228 // type T = somepackage.T
229 if _, ok := expr.(*ast.SelectorExpr); ok {
230 return
231 }
Damien Neil7bf3ce22018-12-21 15:54:06 -0800232 g.P(tok, " ", name, " = ", impFile.GoImportPath.Ident(name))
233 }
234 g.P("// Symbols defined in public import of ", imp.Path())
235 g.P()
236 for _, decl := range astFile.Decls {
237 switch decl := decl.(type) {
238 case *ast.GenDecl:
239 for _, spec := range decl.Specs {
240 switch spec := spec.(type) {
241 case *ast.TypeSpec:
Damien Neila7cbd062019-01-06 16:29:14 -0800242 genForward(decl.Tok, spec.Name.Name, spec.Type)
Damien Neil7bf3ce22018-12-21 15:54:06 -0800243 case *ast.ValueSpec:
Damien Neila7cbd062019-01-06 16:29:14 -0800244 for i, name := range spec.Names {
245 var expr ast.Expr
246 if i < len(spec.Values) {
247 expr = spec.Values[i]
248 }
249 genForward(decl.Tok, name.Name, expr)
Damien Neil7bf3ce22018-12-21 15:54:06 -0800250 }
251 case *ast.ImportSpec:
252 default:
253 panic(fmt.Sprintf("can't generate forward for spec type %T", spec))
Damien Neil7e5c6472018-11-29 08:57:07 -0800254 }
Damien Neil2193e8d2018-10-09 12:49:13 -0700255 }
Damien Neil2193e8d2018-10-09 12:49:13 -0700256 }
Damien Neil6b541312018-10-29 09:14:14 -0700257 }
Damien Neil2193e8d2018-10-09 12:49:13 -0700258 g.P()
Damien Neilce36f8d2018-09-13 15:19:08 -0700259}
260
Damien Neild39efc82018-09-24 12:38:10 -0700261func genEnum(gen *protogen.Plugin, g *protogen.GeneratedFile, f *fileInfo, enum *protogen.Enum) {
Joe Tsai61968ce2019-04-01 12:59:24 -0700262 // Enum type declaration.
Damien Neilba1159f2018-10-17 12:53:18 -0700263 g.PrintLeadingComments(enum.Location)
Damien Neil162c1272018-10-04 12:42:37 -0700264 g.Annotate(enum.GoIdent.GoName, enum.Location)
Damien Neil55fe1c02018-09-17 15:11:24 -0700265 g.P("type ", enum.GoIdent, " int32",
Joe Tsaie1f8d502018-11-26 18:55:29 -0800266 deprecationComment(enum.Desc.Options().(*descriptorpb.EnumOptions).GetDeprecated()))
Joe Tsai61968ce2019-04-01 12:59:24 -0700267
268 // Enum value constants.
Damien Neil46abb572018-09-07 12:45:37 -0700269 g.P("const (")
270 for _, value := range enum.Values {
Damien Neilba1159f2018-10-17 12:53:18 -0700271 g.PrintLeadingComments(value.Location)
Damien Neil162c1272018-10-04 12:42:37 -0700272 g.Annotate(value.GoIdent.GoName, value.Location)
Damien Neil55fe1c02018-09-17 15:11:24 -0700273 g.P(value.GoIdent, " ", enum.GoIdent, " = ", value.Desc.Number(),
Joe Tsaie1f8d502018-11-26 18:55:29 -0800274 deprecationComment(value.Desc.Options().(*descriptorpb.EnumValueOptions).GetDeprecated()))
Damien Neil46abb572018-09-07 12:45:37 -0700275 }
276 g.P(")")
277 g.P()
Joe Tsaib6405bd2018-11-15 14:44:37 -0800278
Joe Tsai61968ce2019-04-01 12:59:24 -0700279 // Enum value mapping (number -> name).
Joe Tsaiab61d412019-04-16 15:23:29 -0700280 if generateEnumMapVars {
281 nameMap := enum.GoIdent.GoName + "_name"
Joe Tsaiab61d412019-04-16 15:23:29 -0700282 g.P("var ", nameMap, " = map[int32]string{")
283 generated := make(map[protoreflect.EnumNumber]bool)
284 for _, value := range enum.Values {
285 duplicate := ""
286 if _, present := generated[value.Desc.Number()]; present {
287 duplicate = "// Duplicate value: "
288 }
289 g.P(duplicate, value.Desc.Number(), ": ", strconv.Quote(string(value.Desc.Name())), ",")
290 generated[value.Desc.Number()] = true
Damien Neil46abb572018-09-07 12:45:37 -0700291 }
Joe Tsaiab61d412019-04-16 15:23:29 -0700292 g.P("}")
293 g.P()
Damien Neil46abb572018-09-07 12:45:37 -0700294 }
Joe Tsai8e506a82019-03-16 00:05:34 -0700295
Joe Tsai61968ce2019-04-01 12:59:24 -0700296 // Enum value mapping (name -> number).
Joe Tsaiab61d412019-04-16 15:23:29 -0700297 if generateEnumMapVars {
298 valueMap := enum.GoIdent.GoName + "_value"
Joe Tsaiab61d412019-04-16 15:23:29 -0700299 g.P("var ", valueMap, " = map[string]int32{")
300 for _, value := range enum.Values {
301 g.P(strconv.Quote(string(value.Desc.Name())), ": ", value.Desc.Number(), ",")
302 }
303 g.P("}")
304 g.P()
Damien Neil46abb572018-09-07 12:45:37 -0700305 }
Joe Tsai8e506a82019-03-16 00:05:34 -0700306
Joe Tsai61968ce2019-04-01 12:59:24 -0700307 // Enum method.
Joe Tsaidbab6c02019-05-14 15:06:03 -0700308 //
309 // NOTE: A pointer value is needed to represent presence in proto2.
310 // Since a proto2 message can reference a proto3 enum, it is useful to
311 // always generate this method (even on proto3 enums) to support that case.
312 g.P("func (x ", enum.GoIdent, ") Enum() *", enum.GoIdent, " {")
313 g.P("p := new(", enum.GoIdent, ")")
314 g.P("*p = x")
315 g.P("return p")
316 g.P("}")
317 g.P()
318
Joe Tsai61968ce2019-04-01 12:59:24 -0700319 // String method.
Damien Neil46abb572018-09-07 12:45:37 -0700320 g.P("func (x ", enum.GoIdent, ") String() string {")
Joe Tsai0fc49f82019-05-01 12:29:25 -0700321 g.P("return ", protoimplPackage.Ident("X"), ".EnumStringOf(x.Descriptor(), ", protoreflectPackage.Ident("EnumNumber"), "(x))")
Damien Neil46abb572018-09-07 12:45:37 -0700322 g.P("}")
323 g.P()
324
Joe Tsai61968ce2019-04-01 12:59:24 -0700325 genReflectEnum(gen, g, f, enum)
326
327 // UnmarshalJSON method.
Joe Tsai73903462018-12-14 12:22:41 -0800328 if enum.Desc.Syntax() == protoreflect.Proto2 {
Joe Tsai8e506a82019-03-16 00:05:34 -0700329 g.P("// Deprecated: Do not use.")
330 g.P("func (x *", enum.GoIdent, ") UnmarshalJSON(b []byte) error {")
Joe Tsai0fc49f82019-05-01 12:29:25 -0700331 g.P("num, err := ", protoimplPackage.Ident("X"), ".UnmarshalJSONEnum(x.Descriptor(), b)")
Damien Neil46abb572018-09-07 12:45:37 -0700332 g.P("if err != nil {")
333 g.P("return err")
334 g.P("}")
Joe Tsai8e506a82019-03-16 00:05:34 -0700335 g.P("*x = ", enum.GoIdent, "(num)")
Damien Neil46abb572018-09-07 12:45:37 -0700336 g.P("return nil")
337 g.P("}")
338 g.P()
339 }
340
Joe Tsai61968ce2019-04-01 12:59:24 -0700341 // EnumDescriptor method.
Joe Tsaiab61d412019-04-16 15:23:29 -0700342 if generateRawDescMethods {
343 var indexes []string
344 for i := 1; i < len(enum.Location.Path); i += 2 {
345 indexes = append(indexes, strconv.Itoa(int(enum.Location.Path[i])))
346 }
347 g.P("// Deprecated: Use ", enum.GoIdent, ".Type instead.")
348 g.P("func (", enum.GoIdent, ") EnumDescriptor() ([]byte, []int) {")
349 g.P("return ", rawDescVarName(f), "GZIP(), []int{", strings.Join(indexes, ","), "}")
350 g.P("}")
351 g.P()
Damien Neil46abb572018-09-07 12:45:37 -0700352 }
Damien Neil46abb572018-09-07 12:45:37 -0700353
Damien Neilea7baf42018-09-28 14:23:44 -0700354 genWellKnownType(g, "", enum.GoIdent, enum.Desc)
Damien Neil46abb572018-09-07 12:45:37 -0700355}
356
Joe Tsai61968ce2019-04-01 12:59:24 -0700357// enumLegacyName returns the name used by the v1 proto package.
Damien Neil658051b2018-09-10 12:26:21 -0700358//
359// Confusingly, this is <proto_package>.<go_ident>. This probably should have
360// been the full name of the proto enum type instead, but changing it at this
361// point would require thought.
Joe Tsai61968ce2019-04-01 12:59:24 -0700362func enumLegacyName(enum *protogen.Enum) string {
Joe Tsai67c1d9b2019-05-12 02:27:46 -0700363 fdesc := enum.Desc.ParentFile()
Damien Neildaa4fad2018-10-08 14:08:27 -0700364 if fdesc.Package() == "" {
365 return enum.GoIdent.GoName
366 }
Damien Neil658051b2018-09-10 12:26:21 -0700367 return string(fdesc.Package()) + "." + enum.GoIdent.GoName
368}
369
Damien Neild39efc82018-09-24 12:38:10 -0700370func genMessage(gen *protogen.Plugin, g *protogen.GeneratedFile, f *fileInfo, message *protogen.Message) {
Damien Neil0bd5a382018-09-13 15:07:10 -0700371 if message.Desc.IsMapEntry() {
372 return
373 }
374
Joe Tsai61968ce2019-04-01 12:59:24 -0700375 // Message type declaration.
Damien Neilba1159f2018-10-17 12:53:18 -0700376 hasComment := g.PrintLeadingComments(message.Location)
Joe Tsaie1f8d502018-11-26 18:55:29 -0800377 if message.Desc.Options().(*descriptorpb.MessageOptions).GetDeprecated() {
Damien Neil55fe1c02018-09-17 15:11:24 -0700378 if hasComment {
379 g.P("//")
380 }
381 g.P(deprecationComment(true))
382 }
Damien Neil162c1272018-10-04 12:42:37 -0700383 g.Annotate(message.GoIdent.GoName, message.Location)
Damien Neilcab8dfe2018-09-06 14:51:28 -0700384 g.P("type ", message.GoIdent, " struct {")
Joe Tsaic0e4bb22019-07-06 13:05:11 -0700385 sf := f.allMessageFieldsByPtr[message]
Damien Neil658051b2018-09-10 12:26:21 -0700386 for _, field := range message.Fields {
Joe Tsaid24bc722019-04-15 23:39:09 -0700387 if field.Oneof != nil {
Damien Neil1fa78d82018-09-13 13:12:36 -0700388 // It would be a bit simpler to iterate over the oneofs below,
389 // but generating the field here keeps the contents of the Go
390 // struct in the same order as the contents of the source
391 // .proto file.
Joe Tsaic0e4bb22019-07-06 13:05:11 -0700392 oneof := field.Oneof
393 if field != oneof.Fields[0] {
394 continue // already generated oneof field for first entry
Damien Neil1fa78d82018-09-13 13:12:36 -0700395 }
Joe Tsaic0e4bb22019-07-06 13:05:11 -0700396 if g.PrintLeadingComments(oneof.Location) {
397 g.P("//")
398 }
399 g.P("// Types that are valid to be assigned to ", oneofFieldName(oneof), ":")
400 for _, field := range oneof.Fields {
401 g.PrintLeadingComments(field.Location)
402 g.P("//\t*", fieldOneofType(field))
403 }
404 g.Annotate(message.GoIdent.GoName+"."+oneofFieldName(oneof), oneof.Location)
405 g.P(oneofFieldName(oneof), " ", oneofInterfaceName(oneof), " `protobuf_oneof:\"", oneof.Desc.Name(), "\"`")
406 sf.append(oneofFieldName(oneof))
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() {
Joe Tsaid24bc722019-04-15 23:39:09 -0700419 key := field.Message.Fields[0]
420 val := field.Message.Fields[1]
Damien Neil0bd5a382018-09-13 15:07:10 -0700421 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()))
Joe Tsaic0e4bb22019-07-06 13:05:11 -0700429 sf.append(field.GoName)
Damien Neil658051b2018-09-10 12:26:21 -0700430 }
Damien Neil993c04d2018-09-14 15:41:11 -0700431
Joe Tsaic0e4bb22019-07-06 13:05:11 -0700432 if generateNoUnkeyedLiteralFields {
433 g.P("XXX_NoUnkeyedLiteral", " struct{} `json:\"-\"`")
434 sf.append("XXX_NoUnkeyedLiteral")
435 }
436 if generateExportedSizeCacheFields {
437 g.P("XXX_sizecache", " ", protoimplPackage.Ident("SizeCache"), " `json:\"-\"`")
438 sf.append("XXX_sizecache")
439 } else {
440 g.P("sizeCache", " ", protoimplPackage.Ident("SizeCache"))
441 sf.append("sizeCache")
442 }
443 if generateExportedUnknownFields {
444 g.P("XXX_unrecognized", " ", protoimplPackage.Ident("UnknownFields"), " `json:\"-\"`")
445 sf.append("XXX_unrecognized")
446 } else {
447 g.P("unknownFields", " ", protoimplPackage.Ident("UnknownFields"))
448 sf.append("unknownFields")
449 }
Damien Neil993c04d2018-09-14 15:41:11 -0700450 if message.Desc.ExtensionRanges().Len() > 0 {
Joe Tsaic0e4bb22019-07-06 13:05:11 -0700451 if generateExportedExtensionFields {
Joe Tsai6ceeaab2019-07-08 12:31:21 -0700452 g.P("XXX_InternalExtensions", " ", protoimplPackage.Ident("ExtensionFields"), " `json:\"-\"`")
Joe Tsaic0e4bb22019-07-06 13:05:11 -0700453 sf.append("XXX_InternalExtensions")
454 } else {
Joe Tsai6ceeaab2019-07-08 12:31:21 -0700455 g.P("extensionFields", " ", protoimplPackage.Ident("ExtensionFields"))
Joe Tsaic0e4bb22019-07-06 13:05:11 -0700456 sf.append("extensionFields")
457 }
Damien Neil993c04d2018-09-14 15:41:11 -0700458 }
Damien Neilc7d07d92018-08-22 13:46:02 -0700459 g.P("}")
460 g.P()
461
Joe Tsai61968ce2019-04-01 12:59:24 -0700462 // Reset method.
463 g.P("func (x *", message.GoIdent, ") Reset() {")
464 g.P("*x = ", message.GoIdent, "{}")
465 g.P("}")
466 g.P()
467 // String method.
468 g.P("func (x *", message.GoIdent, ") String() string {")
469 g.P("return ", protoimplPackage.Ident("X"), ".MessageStringOf(x)")
470 g.P("}")
471 g.P()
472 // ProtoMessage method.
473 g.P("func (*", message.GoIdent, ") ProtoMessage() {}")
474 g.P()
475
Joe Tsaib6405bd2018-11-15 14:44:37 -0800476 genReflectMessage(gen, g, f, message)
477
Joe Tsai61968ce2019-04-01 12:59:24 -0700478 // Descriptor method.
Joe Tsaiab61d412019-04-16 15:23:29 -0700479 if generateRawDescMethods {
480 var indexes []string
481 for i := 1; i < len(message.Location.Path); i += 2 {
482 indexes = append(indexes, strconv.Itoa(int(message.Location.Path[i])))
483 }
484 g.P("// Deprecated: Use ", message.GoIdent, ".ProtoReflect.Type instead.")
485 g.P("func (*", message.GoIdent, ") Descriptor() ([]byte, []int) {")
486 g.P("return ", rawDescVarName(f), "GZIP(), []int{", strings.Join(indexes, ","), "}")
487 g.P("}")
488 g.P()
Damien Neila1c6abc2018-09-12 13:36:34 -0700489 }
Damien Neil993c04d2018-09-14 15:41:11 -0700490
Joe Tsai61968ce2019-04-01 12:59:24 -0700491 // ExtensionRangeArray method.
Damien Neil993c04d2018-09-14 15:41:11 -0700492 if extranges := message.Desc.ExtensionRanges(); extranges.Len() > 0 {
Joe Tsai4fddeba2019-03-20 18:29:32 -0700493 protoExtRange := protoifacePackage.Ident("ExtensionRangeV1")
Damien Neil993c04d2018-09-14 15:41:11 -0700494 extRangeVar := "extRange_" + message.GoIdent.GoName
495 g.P("var ", extRangeVar, " = []", protoExtRange, " {")
496 for i := 0; i < extranges.Len(); i++ {
497 r := extranges.Get(i)
498 g.P("{Start:", r[0], ", End:", r[1]-1 /* inclusive */, "},")
499 }
500 g.P("}")
501 g.P()
Joe Tsai8e506a82019-03-16 00:05:34 -0700502 g.P("// Deprecated: Use ", message.GoIdent, ".ProtoReflect.Type.ExtensionRanges instead.")
Damien Neil993c04d2018-09-14 15:41:11 -0700503 g.P("func (*", message.GoIdent, ") ExtensionRangeArray() []", protoExtRange, " {")
504 g.P("return ", extRangeVar)
505 g.P("}")
506 g.P()
507 }
Damien Neila1c6abc2018-09-12 13:36:34 -0700508
Damien Neilea7baf42018-09-28 14:23:44 -0700509 genWellKnownType(g, "*", message.GoIdent, message.Desc)
510
Damien Neilebc699d2018-09-13 08:50:13 -0700511 // Constants and vars holding the default values of fields.
512 for _, field := range message.Fields {
Joe Tsai9667c482018-12-05 15:42:52 -0800513 if !field.Desc.HasDefault() {
Damien Neilebc699d2018-09-13 08:50:13 -0700514 continue
515 }
Damien Neil1fa78d82018-09-13 13:12:36 -0700516 defVarName := "Default_" + message.GoIdent.GoName + "_" + field.GoName
Damien Neilebc699d2018-09-13 08:50:13 -0700517 def := field.Desc.Default()
518 switch field.Desc.Kind() {
519 case protoreflect.StringKind:
520 g.P("const ", defVarName, " string = ", strconv.Quote(def.String()))
521 case protoreflect.BytesKind:
522 g.P("var ", defVarName, " []byte = []byte(", strconv.Quote(string(def.Bytes())), ")")
523 case protoreflect.EnumKind:
Damien Neila485fbd2018-10-26 13:28:37 -0700524 evalueDesc := field.Desc.DefaultEnumValue()
Joe Tsaid24bc722019-04-15 23:39:09 -0700525 enum := field.Enum
Damien Neila485fbd2018-10-26 13:28:37 -0700526 evalue := enum.Values[evalueDesc.Index()]
Joe Tsaid24bc722019-04-15 23:39:09 -0700527 g.P("const ", defVarName, " ", field.Enum.GoIdent, " = ", evalue.GoIdent)
Damien Neilebc699d2018-09-13 08:50:13 -0700528 case protoreflect.FloatKind, protoreflect.DoubleKind:
529 // Floating point numbers need extra handling for -Inf/Inf/NaN.
530 f := field.Desc.Default().Float()
531 goType := "float64"
532 if field.Desc.Kind() == protoreflect.FloatKind {
533 goType = "float32"
534 }
535 // funcCall returns a call to a function in the math package,
536 // possibly converting the result to float32.
537 funcCall := func(fn, param string) string {
Joe Tsaic1c17aa2018-11-16 11:14:14 -0800538 s := g.QualifiedGoIdent(mathPackage.Ident(fn)) + param
Damien Neilebc699d2018-09-13 08:50:13 -0700539 if goType != "float64" {
540 s = goType + "(" + s + ")"
541 }
542 return s
543 }
544 switch {
545 case math.IsInf(f, -1):
546 g.P("var ", defVarName, " ", goType, " = ", funcCall("Inf", "(-1)"))
547 case math.IsInf(f, 1):
548 g.P("var ", defVarName, " ", goType, " = ", funcCall("Inf", "(1)"))
549 case math.IsNaN(f):
550 g.P("var ", defVarName, " ", goType, " = ", funcCall("NaN", "()"))
551 default:
Damien Neil982684b2018-09-28 14:12:41 -0700552 g.P("const ", defVarName, " ", goType, " = ", field.Desc.Default().Interface())
Damien Neilebc699d2018-09-13 08:50:13 -0700553 }
554 default:
Damien Neil77f82fe2018-09-13 10:59:17 -0700555 goType, _ := fieldGoType(g, field)
Damien Neilebc699d2018-09-13 08:50:13 -0700556 g.P("const ", defVarName, " ", goType, " = ", def.Interface())
557 }
558 }
559 g.P()
560
Joe Tsai61968ce2019-04-01 12:59:24 -0700561 // Getter methods.
Damien Neil77f82fe2018-09-13 10:59:17 -0700562 for _, field := range message.Fields {
Joe Tsai872b5002019-04-08 14:03:15 -0700563 if isFirstOneofField(field) {
Joe Tsaid24bc722019-04-15 23:39:09 -0700564 genOneofGetter(gen, g, f, message, field.Oneof)
Damien Neil1fa78d82018-09-13 13:12:36 -0700565 }
Damien Neil77f82fe2018-09-13 10:59:17 -0700566 goType, pointer := fieldGoType(g, field)
567 defaultValue := fieldDefaultValue(g, message, field)
Joe Tsaie1f8d502018-11-26 18:55:29 -0800568 if field.Desc.Options().(*descriptorpb.FieldOptions).GetDeprecated() {
Damien Neil55fe1c02018-09-17 15:11:24 -0700569 g.P(deprecationComment(true))
570 }
Damien Neil162c1272018-10-04 12:42:37 -0700571 g.Annotate(message.GoIdent.GoName+".Get"+field.GoName, field.Location)
Joe Tsai61968ce2019-04-01 12:59:24 -0700572 g.P("func (x *", message.GoIdent, ") Get", field.GoName, "() ", goType, " {")
Joe Tsaid24bc722019-04-15 23:39:09 -0700573 if field.Oneof != nil {
574 g.P("if x, ok := x.Get", field.Oneof.GoName, "().(*", fieldOneofType(field), "); ok {")
Damien Neil1fa78d82018-09-13 13:12:36 -0700575 g.P("return x.", field.GoName)
576 g.P("}")
Damien Neil77f82fe2018-09-13 10:59:17 -0700577 } else {
Damien Neil1fa78d82018-09-13 13:12:36 -0700578 if field.Desc.Syntax() == protoreflect.Proto3 || defaultValue == "nil" {
Joe Tsai61968ce2019-04-01 12:59:24 -0700579 g.P("if x != nil {")
Damien Neil1fa78d82018-09-13 13:12:36 -0700580 } else {
Joe Tsai61968ce2019-04-01 12:59:24 -0700581 g.P("if x != nil && x.", field.GoName, " != nil {")
Damien Neil1fa78d82018-09-13 13:12:36 -0700582 }
583 star := ""
584 if pointer {
585 star = "*"
586 }
Joe Tsai61968ce2019-04-01 12:59:24 -0700587 g.P("return ", star, " x.", field.GoName)
Damien Neil1fa78d82018-09-13 13:12:36 -0700588 g.P("}")
Damien Neil77f82fe2018-09-13 10:59:17 -0700589 }
Damien Neil77f82fe2018-09-13 10:59:17 -0700590 g.P("return ", defaultValue)
591 g.P("}")
592 g.P()
593 }
Damien Neila1c6abc2018-09-12 13:36:34 -0700594
Joe Tsai09912272019-07-08 10:38:11 -0700595 // Oneof wrapper types.
Damien Neil1fa78d82018-09-13 13:12:36 -0700596 if len(message.Oneofs) > 0 {
Joe Tsaid7e97bc2018-11-26 12:57:27 -0800597 genOneofWrappers(gen, g, f, message)
Damien Neil1fa78d82018-09-13 13:12:36 -0700598 }
Damien Neilc7d07d92018-08-22 13:46:02 -0700599}
Damien Neilcab8dfe2018-09-06 14:51:28 -0700600
Damien Neil77f82fe2018-09-13 10:59:17 -0700601// fieldGoType returns the Go type used for a field.
602//
603// If it returns pointer=true, the struct field is a pointer to the type.
604func fieldGoType(g *protogen.GeneratedFile, field *protogen.Field) (goType string, pointer bool) {
Damien Neil77f82fe2018-09-13 10:59:17 -0700605 pointer = true
Damien Neil658051b2018-09-10 12:26:21 -0700606 switch field.Desc.Kind() {
607 case protoreflect.BoolKind:
Damien Neil77f82fe2018-09-13 10:59:17 -0700608 goType = "bool"
Damien Neil658051b2018-09-10 12:26:21 -0700609 case protoreflect.EnumKind:
Joe Tsaid24bc722019-04-15 23:39:09 -0700610 goType = g.QualifiedGoIdent(field.Enum.GoIdent)
Damien Neil658051b2018-09-10 12:26:21 -0700611 case protoreflect.Int32Kind, protoreflect.Sint32Kind, protoreflect.Sfixed32Kind:
Damien Neil77f82fe2018-09-13 10:59:17 -0700612 goType = "int32"
Damien Neil658051b2018-09-10 12:26:21 -0700613 case protoreflect.Uint32Kind, protoreflect.Fixed32Kind:
Damien Neil77f82fe2018-09-13 10:59:17 -0700614 goType = "uint32"
Damien Neil658051b2018-09-10 12:26:21 -0700615 case protoreflect.Int64Kind, protoreflect.Sint64Kind, protoreflect.Sfixed64Kind:
Damien Neil77f82fe2018-09-13 10:59:17 -0700616 goType = "int64"
Damien Neil658051b2018-09-10 12:26:21 -0700617 case protoreflect.Uint64Kind, protoreflect.Fixed64Kind:
Damien Neil77f82fe2018-09-13 10:59:17 -0700618 goType = "uint64"
Damien Neil658051b2018-09-10 12:26:21 -0700619 case protoreflect.FloatKind:
Damien Neil77f82fe2018-09-13 10:59:17 -0700620 goType = "float32"
Damien Neil658051b2018-09-10 12:26:21 -0700621 case protoreflect.DoubleKind:
Damien Neil77f82fe2018-09-13 10:59:17 -0700622 goType = "float64"
Damien Neil658051b2018-09-10 12:26:21 -0700623 case protoreflect.StringKind:
Damien Neil77f82fe2018-09-13 10:59:17 -0700624 goType = "string"
Damien Neil658051b2018-09-10 12:26:21 -0700625 case protoreflect.BytesKind:
Damien Neil77f82fe2018-09-13 10:59:17 -0700626 goType = "[]byte"
627 pointer = false
Damien Neil658051b2018-09-10 12:26:21 -0700628 case protoreflect.MessageKind, protoreflect.GroupKind:
Joe Tsaid24bc722019-04-15 23:39:09 -0700629 goType = "*" + g.QualifiedGoIdent(field.Message.GoIdent)
Damien Neil77f82fe2018-09-13 10:59:17 -0700630 pointer = false
Damien Neil658051b2018-09-10 12:26:21 -0700631 }
Joe Tsaiac31a352019-05-13 14:32:56 -0700632 switch {
633 case field.Desc.IsList():
Damien Neil77f82fe2018-09-13 10:59:17 -0700634 goType = "[]" + goType
635 pointer = false
Joe Tsaiac31a352019-05-13 14:32:56 -0700636 case field.Desc.IsMap():
637 keyType, _ := fieldGoType(g, field.Message.Fields[0])
638 valType, _ := fieldGoType(g, field.Message.Fields[1])
639 return fmt.Sprintf("map[%v]%v", keyType, valType), false
Damien Neil658051b2018-09-10 12:26:21 -0700640 }
Joe Tsaiac31a352019-05-13 14:32:56 -0700641
Damien Neil44000a12018-10-24 12:31:16 -0700642 // Extension fields always have pointer type, even when defined in a proto3 file.
Joe Tsaiac31a352019-05-13 14:32:56 -0700643 if field.Desc.Syntax() == protoreflect.Proto3 && !field.Desc.IsExtension() {
Damien Neil77f82fe2018-09-13 10:59:17 -0700644 pointer = false
Damien Neil658051b2018-09-10 12:26:21 -0700645 }
Damien Neil77f82fe2018-09-13 10:59:17 -0700646 return goType, pointer
Damien Neil658051b2018-09-10 12:26:21 -0700647}
648
649func fieldProtobufTag(field *protogen.Field) string {
Joe Tsai05828db2018-11-01 13:52:16 -0700650 var enumName string
Damien Neil658051b2018-09-10 12:26:21 -0700651 if field.Desc.Kind() == protoreflect.EnumKind {
Joe Tsaid24bc722019-04-15 23:39:09 -0700652 enumName = enumLegacyName(field.Enum)
Damien Neil658051b2018-09-10 12:26:21 -0700653 }
Joe Tsai05828db2018-11-01 13:52:16 -0700654 return tag.Marshal(field.Desc, enumName)
Damien Neil658051b2018-09-10 12:26:21 -0700655}
656
Damien Neil77f82fe2018-09-13 10:59:17 -0700657func fieldDefaultValue(g *protogen.GeneratedFile, message *protogen.Message, field *protogen.Field) string {
Joe Tsaiac31a352019-05-13 14:32:56 -0700658 if field.Desc.IsList() {
Damien Neil77f82fe2018-09-13 10:59:17 -0700659 return "nil"
660 }
Joe Tsai9667c482018-12-05 15:42:52 -0800661 if field.Desc.HasDefault() {
Damien Neil1fa78d82018-09-13 13:12:36 -0700662 defVarName := "Default_" + message.GoIdent.GoName + "_" + field.GoName
Damien Neil77f82fe2018-09-13 10:59:17 -0700663 if field.Desc.Kind() == protoreflect.BytesKind {
664 return "append([]byte(nil), " + defVarName + "...)"
665 }
666 return defVarName
667 }
668 switch field.Desc.Kind() {
669 case protoreflect.BoolKind:
670 return "false"
671 case protoreflect.StringKind:
672 return `""`
673 case protoreflect.MessageKind, protoreflect.GroupKind, protoreflect.BytesKind:
674 return "nil"
675 case protoreflect.EnumKind:
Joe Tsaid24bc722019-04-15 23:39:09 -0700676 return g.QualifiedGoIdent(field.Enum.Values[0].GoIdent)
Damien Neil77f82fe2018-09-13 10:59:17 -0700677 default:
678 return "0"
679 }
680}
681
Damien Neil658051b2018-09-10 12:26:21 -0700682func fieldJSONTag(field *protogen.Field) string {
683 return string(field.Desc.Name()) + ",omitempty"
684}
685
Joe Tsaiafb455e2019-03-14 16:08:22 -0700686func genExtensions(gen *protogen.Plugin, g *protogen.GeneratedFile, f *fileInfo) {
687 if len(f.allExtensions) == 0 {
688 return
Damien Neil154da982018-09-19 13:21:58 -0700689 }
690
Joe Tsaid8881392019-06-06 13:01:53 -0700691 g.P("var ", extDescsVarName(f), " = []", protoifacePackage.Ident("ExtensionDescV1"), "{")
Joe Tsaiafb455e2019-03-14 16:08:22 -0700692 for _, extension := range f.allExtensions {
Joe Tsaiafb455e2019-03-14 16:08:22 -0700693 g.P("{")
Joe Tsaid24bc722019-04-15 23:39:09 -0700694 g.P("ExtendedType: (*", extension.Extendee.GoIdent, ")(nil),")
Joe Tsaiafb455e2019-03-14 16:08:22 -0700695 goType, pointer := fieldGoType(g, extension)
696 if pointer {
697 goType = "*" + goType
698 }
699 g.P("ExtensionType: (", goType, ")(nil),")
700 g.P("Field: ", extension.Desc.Number(), ",")
Joe Tsai6ceeaab2019-07-08 12:31:21 -0700701 g.P("Name: ", strconv.Quote(string(extension.Desc.FullName())), ",")
Joe Tsaiafb455e2019-03-14 16:08:22 -0700702 g.P("Tag: ", strconv.Quote(fieldProtobufTag(extension)), ",")
703 g.P("Filename: ", strconv.Quote(f.Desc.Path()), ",")
704 g.P("},")
Damien Neil993c04d2018-09-14 15:41:11 -0700705 }
Damien Neil993c04d2018-09-14 15:41:11 -0700706 g.P("}")
Joe Tsaiafb455e2019-03-14 16:08:22 -0700707
708 g.P("var (")
709 for i, extension := range f.allExtensions {
710 ed := extension.Desc
Joe Tsaiac31a352019-05-13 14:32:56 -0700711 targetName := string(ed.ContainingMessage().FullName())
Joe Tsaiafb455e2019-03-14 16:08:22 -0700712 typeName := ed.Kind().String()
713 switch ed.Kind() {
714 case protoreflect.EnumKind:
Joe Tsaid24bc722019-04-15 23:39:09 -0700715 typeName = string(ed.Enum().FullName())
Joe Tsaiafb455e2019-03-14 16:08:22 -0700716 case protoreflect.MessageKind, protoreflect.GroupKind:
Joe Tsaid24bc722019-04-15 23:39:09 -0700717 typeName = string(ed.Message().FullName())
Joe Tsaiafb455e2019-03-14 16:08:22 -0700718 }
719 fieldName := string(ed.Name())
720 g.P("// extend ", targetName, " { ", ed.Cardinality().String(), " ", typeName, " ", fieldName, " = ", ed.Number(), "; }")
Joe Tsaid8881392019-06-06 13:01:53 -0700721 g.P(extensionVar(f.File, extension), " = &", extDescsVarName(f), "[", i, "]")
Joe Tsaiafb455e2019-03-14 16:08:22 -0700722 g.P()
723 }
724 g.P(")")
Damien Neil993c04d2018-09-14 15:41:11 -0700725}
726
727// extensionVar returns the var holding the ExtensionDesc for an extension.
Damien Neil6b541312018-10-29 09:14:14 -0700728func extensionVar(f *protogen.File, extension *protogen.Extension) protogen.GoIdent {
Damien Neil993c04d2018-09-14 15:41:11 -0700729 name := "E_"
Joe Tsaid24bc722019-04-15 23:39:09 -0700730 if extension.Parent != nil {
731 name += extension.Parent.GoIdent.GoName + "_"
Damien Neil993c04d2018-09-14 15:41:11 -0700732 }
733 name += extension.GoName
Joe Tsaic1c17aa2018-11-16 11:14:14 -0800734 return f.GoImportPath.Ident(name)
Damien Neil993c04d2018-09-14 15:41:11 -0700735}
736
Damien Neil55fe1c02018-09-17 15:11:24 -0700737// deprecationComment returns a standard deprecation comment if deprecated is true.
738func deprecationComment(deprecated bool) string {
739 if !deprecated {
740 return ""
741 }
742 return "// Deprecated: Do not use."
743}
744
Damien Neil5c5b5312019-05-14 12:44:37 -0700745// TODO: Remove this. This was added to aid protojson, but protojson does this work
Joe Tsai61968ce2019-04-01 12:59:24 -0700746// through the use of protobuf reflection now.
Damien Neilea7baf42018-09-28 14:23:44 -0700747func genWellKnownType(g *protogen.GeneratedFile, ptr string, ident protogen.GoIdent, desc protoreflect.Descriptor) {
Damien Neil46abb572018-09-07 12:45:37 -0700748 if wellKnownTypes[desc.FullName()] {
Damien Neilea7baf42018-09-28 14:23:44 -0700749 g.P("func (", ptr, ident, `) XXX_WellKnownType() string { return "`, desc.Name(), `" }`)
Damien Neil46abb572018-09-07 12:45:37 -0700750 g.P()
751 }
752}
753
754// Names of messages and enums for which we will generate XXX_WellKnownType methods.
755var wellKnownTypes = map[protoreflect.FullName]bool{
Damien Neilea7baf42018-09-28 14:23:44 -0700756 "google.protobuf.Any": true,
757 "google.protobuf.Duration": true,
758 "google.protobuf.Empty": true,
759 "google.protobuf.Struct": true,
760 "google.protobuf.Timestamp": true,
761
762 "google.protobuf.BoolValue": true,
763 "google.protobuf.BytesValue": true,
764 "google.protobuf.DoubleValue": true,
765 "google.protobuf.FloatValue": true,
766 "google.protobuf.Int32Value": true,
767 "google.protobuf.Int64Value": true,
768 "google.protobuf.ListValue": true,
769 "google.protobuf.NullValue": true,
770 "google.protobuf.StringValue": true,
771 "google.protobuf.UInt32Value": true,
772 "google.protobuf.UInt64Value": true,
773 "google.protobuf.Value": true,
Damien Neil46abb572018-09-07 12:45:37 -0700774}
Joe Tsaid7e97bc2018-11-26 12:57:27 -0800775
Joe Tsai872b5002019-04-08 14:03:15 -0700776// genOneofGetter generate a Get method for a oneof.
777func genOneofGetter(gen *protogen.Plugin, g *protogen.GeneratedFile, f *fileInfo, message *protogen.Message, oneof *protogen.Oneof) {
778 g.Annotate(message.GoIdent.GoName+".Get"+oneof.GoName, oneof.Location)
779 g.P("func (m *", message.GoIdent.GoName, ") Get", oneof.GoName, "() ", oneofInterfaceName(oneof), " {")
780 g.P("if m != nil {")
781 g.P("return m.", oneofFieldName(oneof))
782 g.P("}")
783 g.P("return nil")
784 g.P("}")
785 g.P()
786}
787
Joe Tsai09912272019-07-08 10:38:11 -0700788// genOneofWrappers generates the oneof wrapper types and associates the types
789// with the parent message type.
Joe Tsai872b5002019-04-08 14:03:15 -0700790func genOneofWrappers(gen *protogen.Plugin, g *protogen.GeneratedFile, f *fileInfo, message *protogen.Message) {
Joe Tsai09912272019-07-08 10:38:11 -0700791 idx := f.allMessagesByPtr[message]
792 typesVar := messageTypesVarName(f)
793
794 // Associate the wrapper types through a XXX_OneofWrappers method.
795 if generateOneofWrapperMethods {
796 g.P("// XXX_OneofWrappers is for the internal use of the proto package.")
797 g.P("func (*", message.GoIdent.GoName, ") XXX_OneofWrappers() []interface{} {")
798 g.P("return ", typesVar, "[", idx, "].OneofWrappers")
799 g.P("}")
800 g.P()
Joe Tsai872b5002019-04-08 14:03:15 -0700801 }
Joe Tsai09912272019-07-08 10:38:11 -0700802
803 // Generate the oneof wrapper types.
804 for _, oneof := range message.Oneofs {
805 genOneofTypes(gen, g, f, message, oneof)
806 }
Joe Tsai872b5002019-04-08 14:03:15 -0700807}
808
Joe Tsaid7e97bc2018-11-26 12:57:27 -0800809// genOneofTypes generates the interface type used for a oneof field,
810// and the wrapper types that satisfy that interface.
Joe Tsaid7e97bc2018-11-26 12:57:27 -0800811func genOneofTypes(gen *protogen.Plugin, g *protogen.GeneratedFile, f *fileInfo, message *protogen.Message, oneof *protogen.Oneof) {
812 ifName := oneofInterfaceName(oneof)
813 g.P("type ", ifName, " interface {")
814 g.P(ifName, "()")
815 g.P("}")
816 g.P()
817 for _, field := range oneof.Fields {
818 name := fieldOneofType(field)
819 g.Annotate(name.GoName, field.Location)
820 g.Annotate(name.GoName+"."+field.GoName, field.Location)
821 g.P("type ", name, " struct {")
822 goType, _ := fieldGoType(g, field)
823 tags := []string{
824 fmt.Sprintf("protobuf:%q", fieldProtobufTag(field)),
825 }
826 g.P(field.GoName, " ", goType, " `", strings.Join(tags, " "), "`")
827 g.P("}")
828 g.P()
829 }
830 for _, field := range oneof.Fields {
831 g.P("func (*", fieldOneofType(field), ") ", ifName, "() {}")
832 g.P()
833 }
Joe Tsai872b5002019-04-08 14:03:15 -0700834}
835
836// isFirstOneofField reports whether this is the first field in a oneof.
837func isFirstOneofField(field *protogen.Field) bool {
Joe Tsaid24bc722019-04-15 23:39:09 -0700838 return field.Oneof != nil && field.Oneof.Fields[0] == field
Joe Tsaid7e97bc2018-11-26 12:57:27 -0800839}
840
841// oneofFieldName returns the name of the struct field holding the oneof value.
842//
843// This function is trivial, but pulling out the name like this makes it easier
844// to experiment with alternative oneof implementations.
845func oneofFieldName(oneof *protogen.Oneof) string {
846 return oneof.GoName
847}
848
849// oneofInterfaceName returns the name of the interface type implemented by
850// the oneof field value types.
851func oneofInterfaceName(oneof *protogen.Oneof) string {
Joe Tsaid24bc722019-04-15 23:39:09 -0700852 return fmt.Sprintf("is%s_%s", oneof.Parent.GoIdent.GoName, oneof.GoName)
Joe Tsaid7e97bc2018-11-26 12:57:27 -0800853}
854
Joe Tsaid7e97bc2018-11-26 12:57:27 -0800855// fieldOneofType returns the wrapper type used to represent a field in a oneof.
856func fieldOneofType(field *protogen.Field) protogen.GoIdent {
857 ident := protogen.GoIdent{
Joe Tsaid24bc722019-04-15 23:39:09 -0700858 GoImportPath: field.Parent.GoIdent.GoImportPath,
859 GoName: field.Parent.GoIdent.GoName + "_" + field.GoName,
Joe Tsaid7e97bc2018-11-26 12:57:27 -0800860 }
861 // Check for collisions with nested messages or enums.
862 //
863 // This conflict resolution is incomplete: Among other things, it
864 // does not consider collisions with other oneof field types.
865 //
866 // TODO: Consider dropping this entirely. Detecting conflicts and
867 // producing an error is almost certainly better than permuting
868 // field and type names in mostly unpredictable ways.
869Loop:
870 for {
Joe Tsaid24bc722019-04-15 23:39:09 -0700871 for _, message := range field.Parent.Messages {
Joe Tsaid7e97bc2018-11-26 12:57:27 -0800872 if message.GoIdent == ident {
873 ident.GoName += "_"
874 continue Loop
875 }
876 }
Joe Tsaid24bc722019-04-15 23:39:09 -0700877 for _, enum := range field.Parent.Enums {
Joe Tsaid7e97bc2018-11-26 12:57:27 -0800878 if enum.GoIdent == ident {
879 ident.GoName += "_"
880 continue Loop
881 }
882 }
883 return ident
884 }
885}