blob: 8e57ebd7026810e6fc8ca049f1f5e86eaa7b2eff [file] [log] [blame]
Damien Neil220c2022018-08-15 11:24:18 -07001// Copyright 2018 The Go Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style
3// license that can be found in the LICENSE file.
4
Damien Neil1adaec92018-09-24 13:43:03 -07005// Package internal_gengo is internal to the protobuf module.
6package internal_gengo
Damien Neil220c2022018-08-15 11:24:18 -07007
8import (
Damien Neil7779e052018-09-07 14:14:06 -07009 "bytes"
10 "compress/gzip"
11 "crypto/sha256"
12 "encoding/hex"
13 "fmt"
Damien Neilebc699d2018-09-13 08:50:13 -070014 "math"
Damien Neilce36f8d2018-09-13 15:19:08 -070015 "sort"
Damien Neil7779e052018-09-07 14:14:06 -070016 "strconv"
Damien Neilcab8dfe2018-09-06 14:51:28 -070017 "strings"
Damien Neil7779e052018-09-07 14:14:06 -070018
19 "github.com/golang/protobuf/proto"
20 descpb "github.com/golang/protobuf/protoc-gen-go/descriptor"
Joe Tsai01ab2962018-09-21 17:44:00 -070021 "github.com/golang/protobuf/v2/protogen"
22 "github.com/golang/protobuf/v2/reflect/protoreflect"
Damien Neil220c2022018-08-15 11:24:18 -070023)
24
Damien Neild4127922018-09-12 11:13:49 -070025// generatedCodeVersion indicates a version of the generated code.
26// It is incremented whenever an incompatibility between the generated code and
27// proto package is introduced; the generated code references
28// a constant, proto.ProtoPackageIsVersionN (where N is generatedCodeVersion).
29const generatedCodeVersion = 2
30
Damien Neil46abb572018-09-07 12:45:37 -070031const protoPackage = "github.com/golang/protobuf/proto"
32
Damien Neild39efc82018-09-24 12:38:10 -070033type fileInfo struct {
Damien Neilcab8dfe2018-09-06 14:51:28 -070034 *protogen.File
Damien Neil46abb572018-09-07 12:45:37 -070035 descriptorVar string // var containing the gzipped FileDescriptorProto
Damien Neilce36f8d2018-09-13 15:19:08 -070036 allEnums []*protogen.Enum
37 allMessages []*protogen.Message
Damien Neil993c04d2018-09-14 15:41:11 -070038 allExtensions []*protogen.Extension
Damien Neilcab8dfe2018-09-06 14:51:28 -070039}
40
Damien Neil9c420a62018-09-27 15:26:33 -070041// GenerateFile generates the contents of a .pb.go file.
42func GenerateFile(gen *protogen.Plugin, file *protogen.File, g *protogen.GeneratedFile) {
Damien Neild39efc82018-09-24 12:38:10 -070043 f := &fileInfo{
Damien Neilba1159f2018-10-17 12:53:18 -070044 File: file,
Damien Neilcab8dfe2018-09-06 14:51:28 -070045 }
46
Damien Neil993c04d2018-09-14 15:41:11 -070047 // The different order for enums and extensions is to match the output
48 // of the previous implementation.
49 //
50 // TODO: Eventually make this consistent.
Damien Neilce36f8d2018-09-13 15:19:08 -070051 f.allEnums = append(f.allEnums, f.File.Enums...)
Damien Neil73ac8852018-09-17 15:11:24 -070052 walkMessages(f.Messages, func(message *protogen.Message) {
53 f.allMessages = append(f.allMessages, message)
54 f.allEnums = append(f.allEnums, message.Enums...)
55 f.allExtensions = append(f.allExtensions, message.Extensions...)
56 })
Damien Neil993c04d2018-09-14 15:41:11 -070057 f.allExtensions = append(f.allExtensions, f.File.Extensions...)
Damien Neilce36f8d2018-09-13 15:19:08 -070058
Damien Neil46abb572018-09-07 12:45:37 -070059 // Determine the name of the var holding the file descriptor:
60 //
61 // fileDescriptor_<hash of filename>
62 filenameHash := sha256.Sum256([]byte(f.Desc.Path()))
63 f.descriptorVar = fmt.Sprintf("fileDescriptor_%s", hex.EncodeToString(filenameHash[:8]))
64
Damien Neil220c2022018-08-15 11:24:18 -070065 g.P("// Code generated by protoc-gen-go. DO NOT EDIT.")
Damien Neil55fe1c02018-09-17 15:11:24 -070066 if f.Proto.GetOptions().GetDeprecated() {
67 g.P("// ", f.Desc.Path(), " is a deprecated file.")
68 } else {
69 g.P("// source: ", f.Desc.Path())
70 }
Damien Neil220c2022018-08-15 11:24:18 -070071 g.P()
Damien Neilcab8dfe2018-09-06 14:51:28 -070072 const filePackageField = 2 // FileDescriptorProto.package
Damien Neilba1159f2018-10-17 12:53:18 -070073 g.PrintLeadingComments(protogen.Location{
74 SourceFile: f.Proto.GetName(),
75 Path: []int32{filePackageField},
76 })
Damien Neilcab8dfe2018-09-06 14:51:28 -070077 g.P()
Damien Neil082ce922018-09-06 10:23:53 -070078 g.P("package ", f.GoPackageName)
Damien Neilc7d07d92018-08-22 13:46:02 -070079 g.P()
Damien Neil1ec33152018-09-13 13:12:36 -070080
81 // These references are not necessary, since we automatically add
82 // all necessary imports before formatting the generated file.
83 //
84 // This section exists to generate output more consistent with
85 // the previous version of protoc-gen-go, to make it easier to
86 // detect unintended variations.
87 //
88 // TODO: Eventually remove this.
89 g.P("// Reference imports to suppress errors if they are not otherwise used.")
90 g.P("var _ = ", protogen.GoIdent{GoImportPath: protoPackage, GoName: "Marshal"})
91 g.P("var _ = ", protogen.GoIdent{GoImportPath: "fmt", GoName: "Errorf"})
92 g.P("var _ = ", protogen.GoIdent{GoImportPath: "math", GoName: "Inf"})
93 g.P()
94
Damien Neild4127922018-09-12 11:13:49 -070095 g.P("// This is a compile-time assertion to ensure that this generated file")
96 g.P("// is compatible with the proto package it is being compiled against.")
97 g.P("// A compilation error at this line likely means your copy of the")
98 g.P("// proto package needs to be updated.")
99 g.P("const _ = ", protogen.GoIdent{
100 GoImportPath: protoPackage,
101 GoName: fmt.Sprintf("ProtoPackageIsVersion%d", generatedCodeVersion),
102 }, "// please upgrade the proto package")
103 g.P()
Damien Neilc7d07d92018-08-22 13:46:02 -0700104
Damien Neil73ac8852018-09-17 15:11:24 -0700105 for i, imps := 0, f.Desc.Imports(); i < imps.Len(); i++ {
106 genImport(gen, g, f, imps.Get(i))
107 }
Damien Neilce36f8d2018-09-13 15:19:08 -0700108 for _, enum := range f.allEnums {
Damien Neil46abb572018-09-07 12:45:37 -0700109 genEnum(gen, g, f, enum)
110 }
Damien Neilce36f8d2018-09-13 15:19:08 -0700111 for _, message := range f.allMessages {
Damien Neilcab8dfe2018-09-06 14:51:28 -0700112 genMessage(gen, g, f, message)
Damien Neilc7d07d92018-08-22 13:46:02 -0700113 }
Damien Neil993c04d2018-09-14 15:41:11 -0700114 for _, extension := range f.Extensions {
115 genExtension(gen, g, f, extension)
116 }
Damien Neil220c2022018-08-15 11:24:18 -0700117
Damien Neilce36f8d2018-09-13 15:19:08 -0700118 genInitFunction(gen, g, f)
Damien Neil7779e052018-09-07 14:14:06 -0700119 genFileDescriptor(gen, g, f)
120}
121
Damien Neil73ac8852018-09-17 15:11:24 -0700122// walkMessages calls f on each message and all of its descendants.
123func walkMessages(messages []*protogen.Message, f func(*protogen.Message)) {
124 for _, m := range messages {
125 f(m)
126 walkMessages(m.Messages, f)
127 }
128}
129
Damien Neild39efc82018-09-24 12:38:10 -0700130func genImport(gen *protogen.Plugin, g *protogen.GeneratedFile, f *fileInfo, imp protoreflect.FileImport) {
Damien Neil73ac8852018-09-17 15:11:24 -0700131 impFile, ok := gen.FileByName(imp.Path())
132 if !ok {
133 return
134 }
135 if impFile.GoImportPath == f.GoImportPath {
Damien Neil2e0c3da2018-09-19 12:51:36 -0700136 // Don't generate imports or aliases for types in the same Go package.
137 return
138 }
139 // Generate imports for all dependencies, even if they are not
140 // referenced, because other code and tools depend on having the
141 // full transitive closure of protocol buffer types in the binary.
142 g.Import(impFile.GoImportPath)
143 if !imp.IsPublic {
Damien Neil73ac8852018-09-17 15:11:24 -0700144 return
145 }
Damien Neil2193e8d2018-10-09 12:49:13 -0700146 // TODO: An alternate approach to generating public imports might be
147 // to generate the imported file contents, parse it, and extract all
148 // exported identifiers from the AST to build a list of forwarding
149 // declarations.
150 //
151 // TODO: Consider whether this should generate recursive aliases. e.g.,
152 // if a.proto publicly imports b.proto publicly imports c.proto, should
153 // a.pb.go contain aliases for symbols defined in c.proto?
Damien Neil73ac8852018-09-17 15:11:24 -0700154 var enums []*protogen.Enum
155 enums = append(enums, impFile.Enums...)
156 walkMessages(impFile.Messages, func(message *protogen.Message) {
Damien Neil2193e8d2018-10-09 12:49:13 -0700157 if message.Desc.IsMapEntry() {
158 return
159 }
Damien Neil73ac8852018-09-17 15:11:24 -0700160 enums = append(enums, message.Enums...)
Damien Neil2193e8d2018-10-09 12:49:13 -0700161 for _, field := range message.Fields {
162 if !fieldHasDefault(field) {
163 continue
164 }
165 defVar := protogen.GoIdent{
166 GoImportPath: message.GoIdent.GoImportPath,
167 GoName: "Default_" + message.GoIdent.GoName + "_" + field.GoName,
168 }
169 decl := "const"
170 if field.Desc.Kind() == protoreflect.BytesKind {
171 decl = "var"
172 }
173 g.P(decl, " ", defVar.GoName, " = ", defVar)
174 }
Damien Neil73ac8852018-09-17 15:11:24 -0700175 g.P("// ", message.GoIdent.GoName, " from public import ", imp.Path())
176 g.P("type ", message.GoIdent.GoName, " = ", message.GoIdent)
177 for _, oneof := range message.Oneofs {
178 for _, field := range oneof.Fields {
179 typ := fieldOneofType(field)
180 g.P("type ", typ.GoName, " = ", typ)
181 }
182 }
183 g.P()
184 })
185 for _, enum := range enums {
186 g.P("// ", enum.GoIdent.GoName, " from public import ", imp.Path())
187 g.P("type ", enum.GoIdent.GoName, " = ", enum.GoIdent)
188 g.P("var ", enum.GoIdent.GoName, "_name = ", enum.GoIdent, "_name")
189 g.P("var ", enum.GoIdent.GoName, "_value = ", enum.GoIdent, "_value")
190 g.P()
191 for _, value := range enum.Values {
192 g.P("const ", value.GoIdent.GoName, " = ", enum.GoIdent.GoName, "(", value.GoIdent, ")")
193 }
Damien Neilce36f8d2018-09-13 15:19:08 -0700194 }
Damien Neil2193e8d2018-10-09 12:49:13 -0700195 g.P()
Damien Neilce36f8d2018-09-13 15:19:08 -0700196}
197
Damien Neild39efc82018-09-24 12:38:10 -0700198func genFileDescriptor(gen *protogen.Plugin, g *protogen.GeneratedFile, f *fileInfo) {
Damien Neil7779e052018-09-07 14:14:06 -0700199 // Trim the source_code_info from the descriptor.
200 // Marshal and gzip it.
201 descProto := proto.Clone(f.Proto).(*descpb.FileDescriptorProto)
202 descProto.SourceCodeInfo = nil
203 b, err := proto.Marshal(descProto)
204 if err != nil {
205 gen.Error(err)
206 return
207 }
208 var buf bytes.Buffer
209 w, _ := gzip.NewWriterLevel(&buf, gzip.BestCompression)
210 w.Write(b)
211 w.Close()
212 b = buf.Bytes()
213
Damien Neil46abb572018-09-07 12:45:37 -0700214 g.P("func init() { proto.RegisterFile(", strconv.Quote(f.Desc.Path()), ", ", f.descriptorVar, ") }")
Damien Neil7779e052018-09-07 14:14:06 -0700215 g.P()
Damien Neil46abb572018-09-07 12:45:37 -0700216 g.P("var ", f.descriptorVar, " = []byte{")
Damien Neil7779e052018-09-07 14:14:06 -0700217 g.P("// ", len(b), " bytes of a gzipped FileDescriptorProto")
218 for len(b) > 0 {
219 n := 16
220 if n > len(b) {
221 n = len(b)
222 }
223
224 s := ""
225 for _, c := range b[:n] {
226 s += fmt.Sprintf("0x%02x,", c)
227 }
228 g.P(s)
229
230 b = b[n:]
231 }
232 g.P("}")
233 g.P()
Damien Neil220c2022018-08-15 11:24:18 -0700234}
Damien Neilc7d07d92018-08-22 13:46:02 -0700235
Damien Neild39efc82018-09-24 12:38:10 -0700236func genEnum(gen *protogen.Plugin, g *protogen.GeneratedFile, f *fileInfo, enum *protogen.Enum) {
Damien Neilba1159f2018-10-17 12:53:18 -0700237 g.PrintLeadingComments(enum.Location)
Damien Neil162c1272018-10-04 12:42:37 -0700238 g.Annotate(enum.GoIdent.GoName, enum.Location)
Damien Neil55fe1c02018-09-17 15:11:24 -0700239 g.P("type ", enum.GoIdent, " int32",
Damien Neil204f1c02018-10-23 15:03:38 -0700240 deprecationComment(enum.Desc.Options().(*descpb.EnumOptions).GetDeprecated()))
Damien Neil46abb572018-09-07 12:45:37 -0700241 g.P("const (")
242 for _, value := range enum.Values {
Damien Neilba1159f2018-10-17 12:53:18 -0700243 g.PrintLeadingComments(value.Location)
Damien Neil162c1272018-10-04 12:42:37 -0700244 g.Annotate(value.GoIdent.GoName, value.Location)
Damien Neil55fe1c02018-09-17 15:11:24 -0700245 g.P(value.GoIdent, " ", enum.GoIdent, " = ", value.Desc.Number(),
Damien Neil204f1c02018-10-23 15:03:38 -0700246 deprecationComment(value.Desc.Options().(*descpb.EnumValueOptions).GetDeprecated()))
Damien Neil46abb572018-09-07 12:45:37 -0700247 }
248 g.P(")")
249 g.P()
250 nameMap := enum.GoIdent.GoName + "_name"
251 g.P("var ", nameMap, " = map[int32]string{")
252 generated := make(map[protoreflect.EnumNumber]bool)
253 for _, value := range enum.Values {
254 duplicate := ""
255 if _, present := generated[value.Desc.Number()]; present {
256 duplicate = "// Duplicate value: "
257 }
258 g.P(duplicate, value.Desc.Number(), ": ", strconv.Quote(string(value.Desc.Name())), ",")
259 generated[value.Desc.Number()] = true
260 }
261 g.P("}")
262 g.P()
263 valueMap := enum.GoIdent.GoName + "_value"
264 g.P("var ", valueMap, " = map[string]int32{")
265 for _, value := range enum.Values {
266 g.P(strconv.Quote(string(value.Desc.Name())), ": ", value.Desc.Number(), ",")
267 }
268 g.P("}")
269 g.P()
270 if enum.Desc.Syntax() != protoreflect.Proto3 {
271 g.P("func (x ", enum.GoIdent, ") Enum() *", enum.GoIdent, " {")
272 g.P("p := new(", enum.GoIdent, ")")
273 g.P("*p = x")
274 g.P("return p")
275 g.P("}")
276 g.P()
277 }
278 g.P("func (x ", enum.GoIdent, ") String() string {")
279 g.P("return ", protogen.GoIdent{GoImportPath: protoPackage, GoName: "EnumName"}, "(", enum.GoIdent, "_name, int32(x))")
280 g.P("}")
281 g.P()
282
283 if enum.Desc.Syntax() != protoreflect.Proto3 {
284 g.P("func (x *", enum.GoIdent, ") UnmarshalJSON(data []byte) error {")
285 g.P("value, err := ", protogen.GoIdent{GoImportPath: protoPackage, GoName: "UnmarshalJSONEnum"}, "(", enum.GoIdent, `_value, data, "`, enum.GoIdent, `")`)
286 g.P("if err != nil {")
287 g.P("return err")
288 g.P("}")
289 g.P("*x = ", enum.GoIdent, "(value)")
290 g.P("return nil")
291 g.P("}")
292 g.P()
293 }
294
295 var indexes []string
Damien Neil162c1272018-10-04 12:42:37 -0700296 for i := 1; i < len(enum.Location.Path); i += 2 {
297 indexes = append(indexes, strconv.Itoa(int(enum.Location.Path[i])))
Damien Neil46abb572018-09-07 12:45:37 -0700298 }
299 g.P("func (", enum.GoIdent, ") EnumDescriptor() ([]byte, []int) {")
300 g.P("return ", f.descriptorVar, ", []int{", strings.Join(indexes, ","), "}")
301 g.P("}")
302 g.P()
303
Damien Neilea7baf42018-09-28 14:23:44 -0700304 genWellKnownType(g, "", enum.GoIdent, enum.Desc)
Damien Neil46abb572018-09-07 12:45:37 -0700305}
306
Damien Neil658051b2018-09-10 12:26:21 -0700307// enumRegistryName returns the name used to register an enum with the proto
308// package registry.
309//
310// Confusingly, this is <proto_package>.<go_ident>. This probably should have
311// been the full name of the proto enum type instead, but changing it at this
312// point would require thought.
313func enumRegistryName(enum *protogen.Enum) string {
314 // Find the FileDescriptor for this enum.
315 var desc protoreflect.Descriptor = enum.Desc
316 for {
317 p, ok := desc.Parent()
318 if !ok {
319 break
320 }
321 desc = p
322 }
323 fdesc := desc.(protoreflect.FileDescriptor)
Damien Neildaa4fad2018-10-08 14:08:27 -0700324 if fdesc.Package() == "" {
325 return enum.GoIdent.GoName
326 }
Damien Neil658051b2018-09-10 12:26:21 -0700327 return string(fdesc.Package()) + "." + enum.GoIdent.GoName
328}
329
Damien Neild39efc82018-09-24 12:38:10 -0700330func genMessage(gen *protogen.Plugin, g *protogen.GeneratedFile, f *fileInfo, message *protogen.Message) {
Damien Neil0bd5a382018-09-13 15:07:10 -0700331 if message.Desc.IsMapEntry() {
332 return
333 }
334
Damien Neilba1159f2018-10-17 12:53:18 -0700335 hasComment := g.PrintLeadingComments(message.Location)
Damien Neil204f1c02018-10-23 15:03:38 -0700336 if message.Desc.Options().(*descpb.MessageOptions).GetDeprecated() {
Damien Neil55fe1c02018-09-17 15:11:24 -0700337 if hasComment {
338 g.P("//")
339 }
340 g.P(deprecationComment(true))
341 }
Damien Neil162c1272018-10-04 12:42:37 -0700342 g.Annotate(message.GoIdent.GoName, message.Location)
Damien Neilcab8dfe2018-09-06 14:51:28 -0700343 g.P("type ", message.GoIdent, " struct {")
Damien Neil658051b2018-09-10 12:26:21 -0700344 for _, field := range message.Fields {
Damien Neil1fa78d82018-09-13 13:12:36 -0700345 if field.OneofType != nil {
346 // It would be a bit simpler to iterate over the oneofs below,
347 // but generating the field here keeps the contents of the Go
348 // struct in the same order as the contents of the source
349 // .proto file.
350 if field == field.OneofType.Fields[0] {
351 genOneofField(gen, g, f, message, field.OneofType)
352 }
Damien Neil658051b2018-09-10 12:26:21 -0700353 continue
354 }
Damien Neilba1159f2018-10-17 12:53:18 -0700355 g.PrintLeadingComments(field.Location)
Damien Neil77f82fe2018-09-13 10:59:17 -0700356 goType, pointer := fieldGoType(g, field)
357 if pointer {
358 goType = "*" + goType
359 }
Damien Neil0bd5a382018-09-13 15:07:10 -0700360 tags := []string{
361 fmt.Sprintf("protobuf:%q", fieldProtobufTag(field)),
362 fmt.Sprintf("json:%q", fieldJSONTag(field)),
363 }
364 if field.Desc.IsMap() {
365 key := field.MessageType.Fields[0]
366 val := field.MessageType.Fields[1]
367 tags = append(tags,
368 fmt.Sprintf("protobuf_key:%q", fieldProtobufTag(key)),
369 fmt.Sprintf("protobuf_val:%q", fieldProtobufTag(val)),
370 )
371 }
Damien Neil162c1272018-10-04 12:42:37 -0700372 g.Annotate(message.GoIdent.GoName+"."+field.GoName, field.Location)
Damien Neil55fe1c02018-09-17 15:11:24 -0700373 g.P(field.GoName, " ", goType, " `", strings.Join(tags, " "), "`",
Damien Neil204f1c02018-10-23 15:03:38 -0700374 deprecationComment(field.Desc.Options().(*descpb.FieldOptions).GetDeprecated()))
Damien Neil658051b2018-09-10 12:26:21 -0700375 }
376 g.P("XXX_NoUnkeyedLiteral struct{} `json:\"-\"`")
Damien Neil993c04d2018-09-14 15:41:11 -0700377
378 if message.Desc.ExtensionRanges().Len() > 0 {
379 var tags []string
Damien Neil204f1c02018-10-23 15:03:38 -0700380 if message.Desc.Options().(*descpb.MessageOptions).GetMessageSetWireFormat() {
Damien Neil993c04d2018-09-14 15:41:11 -0700381 tags = append(tags, `protobuf_messageset:"1"`)
382 }
383 tags = append(tags, `json:"-"`)
384 g.P(protogen.GoIdent{
385 GoImportPath: protoPackage,
386 GoName: "XXX_InternalExtensions",
387 }, " `", strings.Join(tags, " "), "`")
388 }
Damien Neil658051b2018-09-10 12:26:21 -0700389 // TODO XXX_InternalExtensions
390 g.P("XXX_unrecognized []byte `json:\"-\"`")
391 g.P("XXX_sizecache int32 `json:\"-\"`")
Damien Neilc7d07d92018-08-22 13:46:02 -0700392 g.P("}")
393 g.P()
394
Damien Neila1c6abc2018-09-12 13:36:34 -0700395 // Reset
396 g.P("func (m *", message.GoIdent, ") Reset() { *m = ", message.GoIdent, "{} }")
397 // String
398 g.P("func (m *", message.GoIdent, ") String() string { return ", protogen.GoIdent{
399 GoImportPath: protoPackage,
400 GoName: "CompactTextString",
401 }, "(m) }")
402 // ProtoMessage
403 g.P("func (*", message.GoIdent, ") ProtoMessage() {}")
404 // Descriptor
405 var indexes []string
Damien Neil162c1272018-10-04 12:42:37 -0700406 for i := 1; i < len(message.Location.Path); i += 2 {
407 indexes = append(indexes, strconv.Itoa(int(message.Location.Path[i])))
Damien Neila1c6abc2018-09-12 13:36:34 -0700408 }
409 g.P("func (*", message.GoIdent, ") Descriptor() ([]byte, []int) {")
410 g.P("return ", f.descriptorVar, ", []int{", strings.Join(indexes, ","), "}")
411 g.P("}")
Damien Neil993c04d2018-09-14 15:41:11 -0700412 g.P()
413
414 // ExtensionRangeArray
415 if extranges := message.Desc.ExtensionRanges(); extranges.Len() > 0 {
Damien Neil204f1c02018-10-23 15:03:38 -0700416 if message.Desc.Options().(*descpb.MessageOptions).GetMessageSetWireFormat() {
Damien Neil993c04d2018-09-14 15:41:11 -0700417 g.P("func (m *", message.GoIdent, ") MarshalJSON() ([]byte, error) {")
418 g.P("return ", protogen.GoIdent{
419 GoImportPath: protoPackage,
420 GoName: "MarshalMessageSetJSON",
421 }, "(&m.XXX_InternalExtensions)")
422 g.P("}")
423 g.P("func (m *", message.GoIdent, ") UnmarshalJSON(buf []byte) error {")
424 g.P("return ", protogen.GoIdent{
425 GoImportPath: protoPackage,
426 GoName: "UnmarshalMessageSetJSON",
427 }, "(buf, &m.XXX_InternalExtensions)")
428 g.P("}")
429 g.P()
430 }
431
432 protoExtRange := protogen.GoIdent{
433 GoImportPath: protoPackage,
434 GoName: "ExtensionRange",
435 }
436 extRangeVar := "extRange_" + message.GoIdent.GoName
437 g.P("var ", extRangeVar, " = []", protoExtRange, " {")
438 for i := 0; i < extranges.Len(); i++ {
439 r := extranges.Get(i)
440 g.P("{Start:", r[0], ", End:", r[1]-1 /* inclusive */, "},")
441 }
442 g.P("}")
443 g.P()
444 g.P("func (*", message.GoIdent, ") ExtensionRangeArray() []", protoExtRange, " {")
445 g.P("return ", extRangeVar)
446 g.P("}")
447 g.P()
448 }
Damien Neila1c6abc2018-09-12 13:36:34 -0700449
Damien Neilea7baf42018-09-28 14:23:44 -0700450 genWellKnownType(g, "*", message.GoIdent, message.Desc)
451
Damien Neila1c6abc2018-09-12 13:36:34 -0700452 // Table-driven proto support.
453 //
454 // TODO: It does not scale to keep adding another method for every
455 // operation on protos that we want to switch over to using the
456 // table-driven approach. Instead, we should only add a single method
457 // that allows getting access to the *InternalMessageInfo struct and then
458 // calling Unmarshal, Marshal, Merge, Size, and Discard directly on that.
459 messageInfoVar := "xxx_messageInfo_" + message.GoIdent.GoName
460 // XXX_Unmarshal
461 g.P("func (m *", message.GoIdent, ") XXX_Unmarshal(b []byte) error {")
462 g.P("return ", messageInfoVar, ".Unmarshal(m, b)")
463 g.P("}")
464 // XXX_Marshal
465 g.P("func (m *", message.GoIdent, ") XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {")
466 g.P("return ", messageInfoVar, ".Marshal(b, m, deterministic)")
467 g.P("}")
468 // XXX_Merge
469 g.P("func (m *", message.GoIdent, ") XXX_Merge(src proto.Message) {")
470 g.P(messageInfoVar, ".Merge(m, src)")
471 g.P("}")
472 // XXX_Size
473 g.P("func (m *", message.GoIdent, ") XXX_Size() int {")
474 g.P("return ", messageInfoVar, ".Size(m)")
475 g.P("}")
476 // XXX_DiscardUnknown
477 g.P("func (m *", message.GoIdent, ") XXX_DiscardUnknown() {")
478 g.P(messageInfoVar, ".DiscardUnknown(m)")
479 g.P("}")
480 g.P()
481 g.P("var ", messageInfoVar, " ", protogen.GoIdent{
482 GoImportPath: protoPackage,
483 GoName: "InternalMessageInfo",
484 })
485 g.P()
486
Damien Neilebc699d2018-09-13 08:50:13 -0700487 // Constants and vars holding the default values of fields.
488 for _, field := range message.Fields {
Damien Neilccf3fa62018-09-28 14:41:45 -0700489 if !fieldHasDefault(field) {
Damien Neilebc699d2018-09-13 08:50:13 -0700490 continue
491 }
Damien Neil1fa78d82018-09-13 13:12:36 -0700492 defVarName := "Default_" + message.GoIdent.GoName + "_" + field.GoName
Damien Neilebc699d2018-09-13 08:50:13 -0700493 def := field.Desc.Default()
494 switch field.Desc.Kind() {
495 case protoreflect.StringKind:
496 g.P("const ", defVarName, " string = ", strconv.Quote(def.String()))
497 case protoreflect.BytesKind:
498 g.P("var ", defVarName, " []byte = []byte(", strconv.Quote(string(def.Bytes())), ")")
499 case protoreflect.EnumKind:
500 enum := field.EnumType
501 evalue := enum.Values[enum.Desc.Values().ByNumber(def.Enum()).Index()]
502 g.P("const ", defVarName, " ", field.EnumType.GoIdent, " = ", evalue.GoIdent)
503 case protoreflect.FloatKind, protoreflect.DoubleKind:
504 // Floating point numbers need extra handling for -Inf/Inf/NaN.
505 f := field.Desc.Default().Float()
506 goType := "float64"
507 if field.Desc.Kind() == protoreflect.FloatKind {
508 goType = "float32"
509 }
510 // funcCall returns a call to a function in the math package,
511 // possibly converting the result to float32.
512 funcCall := func(fn, param string) string {
513 s := g.QualifiedGoIdent(protogen.GoIdent{
514 GoImportPath: "math",
515 GoName: fn,
516 }) + param
517 if goType != "float64" {
518 s = goType + "(" + s + ")"
519 }
520 return s
521 }
522 switch {
523 case math.IsInf(f, -1):
524 g.P("var ", defVarName, " ", goType, " = ", funcCall("Inf", "(-1)"))
525 case math.IsInf(f, 1):
526 g.P("var ", defVarName, " ", goType, " = ", funcCall("Inf", "(1)"))
527 case math.IsNaN(f):
528 g.P("var ", defVarName, " ", goType, " = ", funcCall("NaN", "()"))
529 default:
Damien Neil982684b2018-09-28 14:12:41 -0700530 g.P("const ", defVarName, " ", goType, " = ", field.Desc.Default().Interface())
Damien Neilebc699d2018-09-13 08:50:13 -0700531 }
532 default:
Damien Neil77f82fe2018-09-13 10:59:17 -0700533 goType, _ := fieldGoType(g, field)
Damien Neilebc699d2018-09-13 08:50:13 -0700534 g.P("const ", defVarName, " ", goType, " = ", def.Interface())
535 }
536 }
537 g.P()
538
Damien Neil77f82fe2018-09-13 10:59:17 -0700539 // Getters.
540 for _, field := range message.Fields {
Damien Neil1fa78d82018-09-13 13:12:36 -0700541 if field.OneofType != nil {
542 if field == field.OneofType.Fields[0] {
543 genOneofTypes(gen, g, f, message, field.OneofType)
544 }
545 }
Damien Neil77f82fe2018-09-13 10:59:17 -0700546 goType, pointer := fieldGoType(g, field)
547 defaultValue := fieldDefaultValue(g, message, field)
Damien Neil204f1c02018-10-23 15:03:38 -0700548 if field.Desc.Options().(*descpb.FieldOptions).GetDeprecated() {
Damien Neil55fe1c02018-09-17 15:11:24 -0700549 g.P(deprecationComment(true))
550 }
Damien Neil162c1272018-10-04 12:42:37 -0700551 g.Annotate(message.GoIdent.GoName+".Get"+field.GoName, field.Location)
Damien Neil1fa78d82018-09-13 13:12:36 -0700552 g.P("func (m *", message.GoIdent, ") Get", field.GoName, "() ", goType, " {")
553 if field.OneofType != nil {
Damien Neil81d6d832018-09-19 12:12:17 -0700554 g.P("if x, ok := m.Get", field.OneofType.GoName, "().(*", fieldOneofType(field), "); ok {")
Damien Neil1fa78d82018-09-13 13:12:36 -0700555 g.P("return x.", field.GoName)
556 g.P("}")
Damien Neil77f82fe2018-09-13 10:59:17 -0700557 } else {
Damien Neil1fa78d82018-09-13 13:12:36 -0700558 if field.Desc.Syntax() == protoreflect.Proto3 || defaultValue == "nil" {
559 g.P("if m != nil {")
560 } else {
561 g.P("if m != nil && m.", field.GoName, " != nil {")
562 }
563 star := ""
564 if pointer {
565 star = "*"
566 }
567 g.P("return ", star, " m.", field.GoName)
568 g.P("}")
Damien Neil77f82fe2018-09-13 10:59:17 -0700569 }
Damien Neil77f82fe2018-09-13 10:59:17 -0700570 g.P("return ", defaultValue)
571 g.P("}")
572 g.P()
573 }
Damien Neila1c6abc2018-09-12 13:36:34 -0700574
Damien Neil1fa78d82018-09-13 13:12:36 -0700575 if len(message.Oneofs) > 0 {
576 genOneofFuncs(gen, g, f, message)
577 }
Damien Neil993c04d2018-09-14 15:41:11 -0700578 for _, extension := range message.Extensions {
579 genExtension(gen, g, f, extension)
580 }
Damien Neilc7d07d92018-08-22 13:46:02 -0700581}
Damien Neilcab8dfe2018-09-06 14:51:28 -0700582
Damien Neil77f82fe2018-09-13 10:59:17 -0700583// fieldGoType returns the Go type used for a field.
584//
585// If it returns pointer=true, the struct field is a pointer to the type.
586func fieldGoType(g *protogen.GeneratedFile, field *protogen.Field) (goType string, pointer bool) {
Damien Neil77f82fe2018-09-13 10:59:17 -0700587 pointer = true
Damien Neil658051b2018-09-10 12:26:21 -0700588 switch field.Desc.Kind() {
589 case protoreflect.BoolKind:
Damien Neil77f82fe2018-09-13 10:59:17 -0700590 goType = "bool"
Damien Neil658051b2018-09-10 12:26:21 -0700591 case protoreflect.EnumKind:
Damien Neil77f82fe2018-09-13 10:59:17 -0700592 goType = g.QualifiedGoIdent(field.EnumType.GoIdent)
Damien Neil658051b2018-09-10 12:26:21 -0700593 case protoreflect.Int32Kind, protoreflect.Sint32Kind, protoreflect.Sfixed32Kind:
Damien Neil77f82fe2018-09-13 10:59:17 -0700594 goType = "int32"
Damien Neil658051b2018-09-10 12:26:21 -0700595 case protoreflect.Uint32Kind, protoreflect.Fixed32Kind:
Damien Neil77f82fe2018-09-13 10:59:17 -0700596 goType = "uint32"
Damien Neil658051b2018-09-10 12:26:21 -0700597 case protoreflect.Int64Kind, protoreflect.Sint64Kind, protoreflect.Sfixed64Kind:
Damien Neil77f82fe2018-09-13 10:59:17 -0700598 goType = "int64"
Damien Neil658051b2018-09-10 12:26:21 -0700599 case protoreflect.Uint64Kind, protoreflect.Fixed64Kind:
Damien Neil77f82fe2018-09-13 10:59:17 -0700600 goType = "uint64"
Damien Neil658051b2018-09-10 12:26:21 -0700601 case protoreflect.FloatKind:
Damien Neil77f82fe2018-09-13 10:59:17 -0700602 goType = "float32"
Damien Neil658051b2018-09-10 12:26:21 -0700603 case protoreflect.DoubleKind:
Damien Neil77f82fe2018-09-13 10:59:17 -0700604 goType = "float64"
Damien Neil658051b2018-09-10 12:26:21 -0700605 case protoreflect.StringKind:
Damien Neil77f82fe2018-09-13 10:59:17 -0700606 goType = "string"
Damien Neil658051b2018-09-10 12:26:21 -0700607 case protoreflect.BytesKind:
Damien Neil77f82fe2018-09-13 10:59:17 -0700608 goType = "[]byte"
609 pointer = false
Damien Neil658051b2018-09-10 12:26:21 -0700610 case protoreflect.MessageKind, protoreflect.GroupKind:
Damien Neil0bd5a382018-09-13 15:07:10 -0700611 if field.Desc.IsMap() {
612 keyType, _ := fieldGoType(g, field.MessageType.Fields[0])
613 valType, _ := fieldGoType(g, field.MessageType.Fields[1])
614 return fmt.Sprintf("map[%v]%v", keyType, valType), false
615 }
Damien Neil77f82fe2018-09-13 10:59:17 -0700616 goType = "*" + g.QualifiedGoIdent(field.MessageType.GoIdent)
617 pointer = false
Damien Neil658051b2018-09-10 12:26:21 -0700618 }
619 if field.Desc.Cardinality() == protoreflect.Repeated {
Damien Neil77f82fe2018-09-13 10:59:17 -0700620 goType = "[]" + goType
621 pointer = false
Damien Neil658051b2018-09-10 12:26:21 -0700622 }
Damien Neil44000a12018-10-24 12:31:16 -0700623 // Extension fields always have pointer type, even when defined in a proto3 file.
624 if field.Desc.Syntax() == protoreflect.Proto3 && field.Desc.ExtendedType() == nil {
Damien Neil77f82fe2018-09-13 10:59:17 -0700625 pointer = false
Damien Neil658051b2018-09-10 12:26:21 -0700626 }
Damien Neil77f82fe2018-09-13 10:59:17 -0700627 return goType, pointer
Damien Neil658051b2018-09-10 12:26:21 -0700628}
629
630func fieldProtobufTag(field *protogen.Field) string {
631 var tag []string
632 // wire type
633 tag = append(tag, wireTypes[field.Desc.Kind()])
634 // field number
635 tag = append(tag, strconv.Itoa(int(field.Desc.Number())))
636 // cardinality
637 switch field.Desc.Cardinality() {
638 case protoreflect.Optional:
639 tag = append(tag, "opt")
640 case protoreflect.Required:
641 tag = append(tag, "req")
642 case protoreflect.Repeated:
643 tag = append(tag, "rep")
644 }
Damien Neild4803f52018-09-19 11:43:35 -0700645 if field.Desc.IsPacked() {
646 tag = append(tag, "packed")
647 }
Damien Neil658051b2018-09-10 12:26:21 -0700648 // TODO: packed
649 // name
650 name := string(field.Desc.Name())
651 if field.Desc.Kind() == protoreflect.GroupKind {
652 // The name of the FieldDescriptor for a group field is
653 // lowercased. To find the original capitalization, we
654 // look in the field's MessageType.
655 name = string(field.MessageType.Desc.Name())
656 }
657 tag = append(tag, "name="+name)
658 // JSON name
659 if jsonName := field.Desc.JSONName(); jsonName != "" && jsonName != name {
660 tag = append(tag, "json="+jsonName)
661 }
662 // proto3
Damien Neil44000a12018-10-24 12:31:16 -0700663 // The previous implementation does not tag extension fields as proto3,
664 // even when the field is defined in a proto3 file. Match that behavior
665 // for consistency.
666 if field.Desc.Syntax() == protoreflect.Proto3 && field.Desc.ExtendedType() == nil {
Damien Neil658051b2018-09-10 12:26:21 -0700667 tag = append(tag, "proto3")
668 }
669 // enum
670 if field.Desc.Kind() == protoreflect.EnumKind {
671 tag = append(tag, "enum="+enumRegistryName(field.EnumType))
672 }
673 // oneof
674 if field.Desc.OneofType() != nil {
675 tag = append(tag, "oneof")
676 }
Damien Neilebc699d2018-09-13 08:50:13 -0700677 // default value
678 // This must appear last in the tag, since commas in strings aren't escaped.
679 if field.Desc.HasDefault() {
680 var def string
681 switch field.Desc.Kind() {
682 case protoreflect.BoolKind:
683 if field.Desc.Default().Bool() {
684 def = "1"
685 } else {
686 def = "0"
687 }
688 case protoreflect.BytesKind:
Joe Tsaibda671f2018-10-20 13:15:35 -0700689 // Preserve protoc-gen-go's historical output of escaped bytes.
690 // This behavior is buggy, but fixing it makes it impossible to
691 // distinguish between the escaped and unescaped forms.
692 //
693 // To match the exact output of protoc, this is identical to the
694 // CEscape function in strutil.cc of the protoc source code.
695 var b []byte
696 for _, c := range field.Desc.Default().Bytes() {
697 switch c {
698 case '\n':
699 b = append(b, `\n`...)
700 case '\r':
701 b = append(b, `\r`...)
702 case '\t':
703 b = append(b, `\t`...)
704 case '"':
705 b = append(b, `\"`...)
706 case '\'':
707 b = append(b, `\'`...)
708 case '\\':
709 b = append(b, `\\`...)
710 default:
711 if c >= 0x20 && c <= 0x7e {
712 b = append(b, c)
713 } else {
714 b = append(b, fmt.Sprintf(`\%03o`, c)...)
715 }
716 }
717 }
718 def = string(b)
Damien Neilebc699d2018-09-13 08:50:13 -0700719 case protoreflect.FloatKind, protoreflect.DoubleKind:
720 f := field.Desc.Default().Float()
721 switch {
722 case math.IsInf(f, -1):
723 def = "-inf"
724 case math.IsInf(f, 1):
725 def = "inf"
726 case math.IsNaN(f):
727 def = "nan"
728 default:
Damien Neil982684b2018-09-28 14:12:41 -0700729 def = fmt.Sprint(field.Desc.Default().Interface())
Damien Neilebc699d2018-09-13 08:50:13 -0700730 }
731 default:
732 def = fmt.Sprint(field.Desc.Default().Interface())
733 }
734 tag = append(tag, "def="+def)
735 }
Damien Neil658051b2018-09-10 12:26:21 -0700736 return strings.Join(tag, ",")
737}
738
Damien Neil77f82fe2018-09-13 10:59:17 -0700739func fieldDefaultValue(g *protogen.GeneratedFile, message *protogen.Message, field *protogen.Field) string {
740 if field.Desc.Cardinality() == protoreflect.Repeated {
741 return "nil"
742 }
Damien Neilccf3fa62018-09-28 14:41:45 -0700743 if fieldHasDefault(field) {
Damien Neil1fa78d82018-09-13 13:12:36 -0700744 defVarName := "Default_" + message.GoIdent.GoName + "_" + field.GoName
Damien Neil77f82fe2018-09-13 10:59:17 -0700745 if field.Desc.Kind() == protoreflect.BytesKind {
746 return "append([]byte(nil), " + defVarName + "...)"
747 }
748 return defVarName
749 }
750 switch field.Desc.Kind() {
751 case protoreflect.BoolKind:
752 return "false"
753 case protoreflect.StringKind:
754 return `""`
755 case protoreflect.MessageKind, protoreflect.GroupKind, protoreflect.BytesKind:
756 return "nil"
757 case protoreflect.EnumKind:
758 return g.QualifiedGoIdent(field.EnumType.Values[0].GoIdent)
759 default:
760 return "0"
761 }
762}
763
Damien Neilccf3fa62018-09-28 14:41:45 -0700764// fieldHasDefault returns true if we consider a field to have a default value.
765//
766// For consistency with the previous generator, it returns false for fields with
767// [default=""], preventing the generation of a default const or var for these
768// fields.
769//
770// TODO: Drop this special case.
771func fieldHasDefault(field *protogen.Field) bool {
772 if !field.Desc.HasDefault() {
773 return false
774 }
775 switch field.Desc.Kind() {
776 case protoreflect.StringKind:
777 return field.Desc.Default().String() != ""
778 case protoreflect.BytesKind:
779 return len(field.Desc.Default().Bytes()) > 0
780 }
781 return true
782}
783
Damien Neil658051b2018-09-10 12:26:21 -0700784var wireTypes = map[protoreflect.Kind]string{
785 protoreflect.BoolKind: "varint",
786 protoreflect.EnumKind: "varint",
787 protoreflect.Int32Kind: "varint",
788 protoreflect.Sint32Kind: "zigzag32",
789 protoreflect.Uint32Kind: "varint",
790 protoreflect.Int64Kind: "varint",
791 protoreflect.Sint64Kind: "zigzag64",
792 protoreflect.Uint64Kind: "varint",
793 protoreflect.Sfixed32Kind: "fixed32",
794 protoreflect.Fixed32Kind: "fixed32",
795 protoreflect.FloatKind: "fixed32",
796 protoreflect.Sfixed64Kind: "fixed64",
797 protoreflect.Fixed64Kind: "fixed64",
798 protoreflect.DoubleKind: "fixed64",
799 protoreflect.StringKind: "bytes",
800 protoreflect.BytesKind: "bytes",
801 protoreflect.MessageKind: "bytes",
802 protoreflect.GroupKind: "group",
803}
804
805func fieldJSONTag(field *protogen.Field) string {
806 return string(field.Desc.Name()) + ",omitempty"
807}
808
Damien Neild39efc82018-09-24 12:38:10 -0700809func genExtension(gen *protogen.Plugin, g *protogen.GeneratedFile, f *fileInfo, extension *protogen.Extension) {
Damien Neil154da982018-09-19 13:21:58 -0700810 // Special case for proto2 message sets: If this extension is extending
811 // proto2.bridge.MessageSet, and its final name component is "message_set_extension",
812 // then drop that last component.
813 //
814 // TODO: This should be implemented in the text formatter rather than the generator.
815 // In addition, the situation for when to apply this special case is implemented
816 // differently in other languages:
817 // https://github.com/google/protobuf/blob/aff10976/src/google/protobuf/text_format.cc#L1560
818 name := extension.Desc.FullName()
819 if isExtensionMessageSetElement(gen, extension) {
820 name = name.Parent()
821 }
822
Damien Neil993c04d2018-09-14 15:41:11 -0700823 g.P("var ", extensionVar(f, extension), " = &", protogen.GoIdent{
824 GoImportPath: protoPackage,
825 GoName: "ExtensionDesc",
826 }, "{")
827 g.P("ExtendedType: (*", extension.ExtendedType.GoIdent, ")(nil),")
828 goType, pointer := fieldGoType(g, extension)
829 if pointer {
830 goType = "*" + goType
831 }
832 g.P("ExtensionType: (", goType, ")(nil),")
833 g.P("Field: ", extension.Desc.Number(), ",")
Damien Neil154da982018-09-19 13:21:58 -0700834 g.P("Name: ", strconv.Quote(string(name)), ",")
Damien Neil993c04d2018-09-14 15:41:11 -0700835 g.P("Tag: ", strconv.Quote(fieldProtobufTag(extension)), ",")
836 g.P("Filename: ", strconv.Quote(f.Desc.Path()), ",")
837 g.P("}")
838 g.P()
839}
840
Damien Neil154da982018-09-19 13:21:58 -0700841func isExtensionMessageSetElement(gen *protogen.Plugin, extension *protogen.Extension) bool {
842 return extension.ParentMessage != nil &&
Damien Neil204f1c02018-10-23 15:03:38 -0700843 extension.ExtendedType.Desc.Options().(*descpb.MessageOptions).GetMessageSetWireFormat() &&
Damien Neil154da982018-09-19 13:21:58 -0700844 extension.Desc.Name() == "message_set_extension"
845}
846
Damien Neil993c04d2018-09-14 15:41:11 -0700847// extensionVar returns the var holding the ExtensionDesc for an extension.
Damien Neild39efc82018-09-24 12:38:10 -0700848func extensionVar(f *fileInfo, extension *protogen.Extension) protogen.GoIdent {
Damien Neil993c04d2018-09-14 15:41:11 -0700849 name := "E_"
850 if extension.ParentMessage != nil {
851 name += extension.ParentMessage.GoIdent.GoName + "_"
852 }
853 name += extension.GoName
854 return protogen.GoIdent{
855 GoImportPath: f.GoImportPath,
856 GoName: name,
857 }
858}
859
Damien Neilce36f8d2018-09-13 15:19:08 -0700860// genInitFunction generates an init function that registers the types in the
861// generated file with the proto package.
Damien Neild39efc82018-09-24 12:38:10 -0700862func genInitFunction(gen *protogen.Plugin, g *protogen.GeneratedFile, f *fileInfo) {
Damien Neil993c04d2018-09-14 15:41:11 -0700863 if len(f.allMessages) == 0 && len(f.allEnums) == 0 && len(f.allExtensions) == 0 {
Damien Neilce36f8d2018-09-13 15:19:08 -0700864 return
865 }
866
867 g.P("func init() {")
Damien Neil154da982018-09-19 13:21:58 -0700868 for _, enum := range f.allEnums {
869 name := enum.GoIdent.GoName
870 g.P(protogen.GoIdent{
871 GoImportPath: protoPackage,
872 GoName: "RegisterEnum",
873 }, fmt.Sprintf("(%q, %s_name, %s_value)", enumRegistryName(enum), name, name))
874 }
Damien Neilce36f8d2018-09-13 15:19:08 -0700875 for _, message := range f.allMessages {
876 if message.Desc.IsMapEntry() {
877 continue
878 }
879
Damien Neil154da982018-09-19 13:21:58 -0700880 for _, extension := range message.Extensions {
881 genRegisterExtension(gen, g, f, extension)
882 }
883
Damien Neilce36f8d2018-09-13 15:19:08 -0700884 name := message.GoIdent.GoName
885 g.P(protogen.GoIdent{
886 GoImportPath: protoPackage,
887 GoName: "RegisterType",
888 }, fmt.Sprintf("((*%s)(nil), %q)", name, message.Desc.FullName()))
889
890 // Types of map fields, sorted by the name of the field message type.
891 var mapFields []*protogen.Field
892 for _, field := range message.Fields {
893 if field.Desc.IsMap() {
894 mapFields = append(mapFields, field)
895 }
896 }
897 sort.Slice(mapFields, func(i, j int) bool {
898 ni := mapFields[i].MessageType.Desc.FullName()
899 nj := mapFields[j].MessageType.Desc.FullName()
900 return ni < nj
901 })
902 for _, field := range mapFields {
903 typeName := string(field.MessageType.Desc.FullName())
904 goType, _ := fieldGoType(g, field)
905 g.P(protogen.GoIdent{
906 GoImportPath: protoPackage,
907 GoName: "RegisterMapType",
908 }, fmt.Sprintf("((%v)(nil), %q)", goType, typeName))
909 }
910 }
Damien Neil154da982018-09-19 13:21:58 -0700911 for _, extension := range f.Extensions {
912 genRegisterExtension(gen, g, f, extension)
Damien Neil993c04d2018-09-14 15:41:11 -0700913 }
Damien Neilce36f8d2018-09-13 15:19:08 -0700914 g.P("}")
915 g.P()
916}
917
Damien Neild39efc82018-09-24 12:38:10 -0700918func genRegisterExtension(gen *protogen.Plugin, g *protogen.GeneratedFile, f *fileInfo, extension *protogen.Extension) {
Damien Neil154da982018-09-19 13:21:58 -0700919 g.P(protogen.GoIdent{
920 GoImportPath: protoPackage,
921 GoName: "RegisterExtension",
922 }, "(", extensionVar(f, extension), ")")
923 if isExtensionMessageSetElement(gen, extension) {
924 goType, pointer := fieldGoType(g, extension)
925 if pointer {
926 goType = "*" + goType
927 }
928 g.P(protogen.GoIdent{
929 GoImportPath: protoPackage,
930 GoName: "RegisterMessageSetType",
931 }, "((", goType, ")(nil), ", extension.Desc.Number(), ",", strconv.Quote(string(extension.Desc.FullName().Parent())), ")")
932 }
933}
934
Damien Neil55fe1c02018-09-17 15:11:24 -0700935// deprecationComment returns a standard deprecation comment if deprecated is true.
936func deprecationComment(deprecated bool) string {
937 if !deprecated {
938 return ""
939 }
940 return "// Deprecated: Do not use."
941}
942
Damien Neilea7baf42018-09-28 14:23:44 -0700943func genWellKnownType(g *protogen.GeneratedFile, ptr string, ident protogen.GoIdent, desc protoreflect.Descriptor) {
Damien Neil46abb572018-09-07 12:45:37 -0700944 if wellKnownTypes[desc.FullName()] {
Damien Neilea7baf42018-09-28 14:23:44 -0700945 g.P("func (", ptr, ident, `) XXX_WellKnownType() string { return "`, desc.Name(), `" }`)
Damien Neil46abb572018-09-07 12:45:37 -0700946 g.P()
947 }
948}
949
950// Names of messages and enums for which we will generate XXX_WellKnownType methods.
951var wellKnownTypes = map[protoreflect.FullName]bool{
Damien Neilea7baf42018-09-28 14:23:44 -0700952 "google.protobuf.Any": true,
953 "google.protobuf.Duration": true,
954 "google.protobuf.Empty": true,
955 "google.protobuf.Struct": true,
956 "google.protobuf.Timestamp": true,
957
958 "google.protobuf.BoolValue": true,
959 "google.protobuf.BytesValue": true,
960 "google.protobuf.DoubleValue": true,
961 "google.protobuf.FloatValue": true,
962 "google.protobuf.Int32Value": true,
963 "google.protobuf.Int64Value": true,
964 "google.protobuf.ListValue": true,
965 "google.protobuf.NullValue": true,
966 "google.protobuf.StringValue": true,
967 "google.protobuf.UInt32Value": true,
968 "google.protobuf.UInt64Value": true,
969 "google.protobuf.Value": true,
Damien Neil46abb572018-09-07 12:45:37 -0700970}