-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathfield_build_context.go
498 lines (424 loc) · 14.7 KB
/
field_build_context.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
/*
Copyright 2015-2021 Gravitational, Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package main
import (
"strconv"
"strings"
"github.com/gogo/protobuf/gogoproto"
"github.com/gogo/protobuf/protoc-gen-gogo/descriptor"
"github.com/gogo/protobuf/protoc-gen-gogo/generator"
"github.com/gravitational/trace"
"github.com/stoewer/go-strcase"
)
var (
float64Type = TerraformType{
Type: Types + ".Float64Type",
ValueType: Types + ".Float64",
ElemType: Types + ".Float64Type",
ElemValueType: Types + ".Float64",
ValueCastToType: "float64",
ZeroValue: "0",
IsTypeScalar: true,
IsElemTypeScalar: true,
}
int64Type = TerraformType{
Type: Types + ".Int64Type",
ValueType: Types + ".Int64",
ElemType: Types + ".Int64Type",
ElemValueType: Types + ".Int64",
ValueCastToType: "int64",
ZeroValue: "0",
IsTypeScalar: true,
IsElemTypeScalar: true,
}
stringType = TerraformType{
Type: Types + ".StringType",
ValueType: Types + ".String",
ElemType: Types + ".StringType",
ElemValueType: Types + ".String",
ValueCastToType: "string",
ZeroValue: `""`,
IsTypeScalar: true,
IsElemTypeScalar: true,
}
boolType = TerraformType{
Type: Types + ".BoolType",
ValueType: Types + ".Bool",
ElemType: Types + ".BoolType",
ElemValueType: Types + ".Bool",
ValueCastToType: "bool",
ZeroValue: "false",
IsTypeScalar: true,
IsElemTypeScalar: true,
}
objectType = TerraformType{
Type: Types + ".ObjectType",
ValueType: Types + ".Object",
ElemType: Types + ".ObjectType",
ElemValueType: Types + ".Object",
}
)
// FieldBuildContext is a facade helper struct which facilitates getting field properties
type FieldBuildContext struct {
MessageBuildContext
field *FieldDescriptorProtoExt
index int
typeName string
imports *Imports
path string
goType string
}
// NewFieldBuildContext creates FieldBuildContext
func NewFieldBuildContext(m MessageBuildContext, field *FieldDescriptorProtoExt, index int) (*FieldBuildContext, error) {
typeName := m.GetName() + "." + field.GetName()
path := m.GetPath() + "." + field.GetName()
// If the field is an embedded field, path should be
// message name, instead of full path to message name.
if gogoproto.IsEmbed(field.FieldDescriptorProto) {
path = m.GetName()
}
var t string
// This is the workaround for the gogo bug: in case a field has gogo.cast_type/gogo.custom_type with
// fully qualified name, it generates the malformed import
// TODO: Handle * here
if gogoproto.IsCastType(field.FieldDescriptorProto) {
t = gogoproto.GetCastType(field.FieldDescriptorProto)
if field.IsRepeated() {
t = "[]" + t
}
} else if gogoproto.IsCustomType(field.FieldDescriptorProto) {
t = gogoproto.GetCustomType(field.FieldDescriptorProto)
if field.IsRepeated() {
t = "[]" + t
}
} else {
// Needs to be called explicitly because of gogo implementation details
t, _ = m.gen.GoType(m.desc, field.FieldDescriptorProto)
if t == "" {
return nil, trace.Errorf("invalid field go type %v", path)
}
}
c := &FieldBuildContext{
MessageBuildContext: m,
field: field,
index: index,
typeName: typeName,
imports: m.imports,
path: path,
goType: m.imports.PrependPackageNameIfMissing(t, m.config.DefaultPackageName),
}
return c, nil
}
// NewMapValueFieldBuildContext creates FieldBuildContext for MapValueField
func NewMapValueFieldBuildContext(c *FieldBuildContext, field *FieldDescriptorProtoExt, index int, typ string) (*FieldBuildContext, error) {
// We've gen.GoType always returns *type here, have to override
i := strings.LastIndex(typ, "]")
t := typ[i+1:]
return &FieldBuildContext{
MessageBuildContext: c.MessageBuildContext,
field: field,
index: index,
typeName: c.typeName,
imports: c.imports,
path: c.path,
goType: c.imports.PrependPackageNameIfMissing(t, c.config.DefaultPackageName),
}, nil
}
// GetGoType returns Go type for the field
func (c *FieldBuildContext) GetGoType() string {
return c.goType
}
// IsExcluded returns true if field is added to config.ExcludeFields
func (c *FieldBuildContext) IsExcluded() bool {
return c.GetFlagValue(c.config.ExcludeFields)
}
// GetNameWithTypeName returns field type name with package
func (c *FieldBuildContext) GetNameWithTypeName() string {
return c.typeName
}
// GetName returns field name
func (c *FieldBuildContext) GetName() string {
name := c.field.GetName()
if name[0:1] == strings.ToLower(name[0:1]) {
return strcase.UpperCamelCase(name)
}
return name
}
// GetPath returns a field path
func (c *FieldBuildContext) GetPath() string {
return c.path
}
// GetTerraformType returns terraform type meta information
func (c *FieldBuildContext) GetTerraformType() (TerraformType, error) {
t := TerraformType{}
p := c.field.FieldDescriptorProto
// gogo protobuf does not support nullable elementary fields
elemType := strings.ReplaceAll(c.GetGoType(), "[]", "")
switch {
case c.field.IsTime():
if c.config.TimeType == nil {
return t, trace.Errorf("%v field has time type, but config.time_type is not defined", c.path)
}
t = TerraformType{
Type: c.config.TimeType.Type,
ValueType: c.config.TimeType.ValueType,
ElemType: c.config.TimeType.Type,
ElemValueType: c.config.TimeType.ValueType,
ValueCastToType: c.config.TimeType.CastToType,
ValueCastFromType: c.config.TimeType.CastFromType,
TypeConstructor: c.config.TimeType.TypeConstructor,
}
case c.field.IsDuration(c.config.DurationCustomType): // In Terraform Framework special type needs to be defined
if c.config.DurationType == nil {
return t, trace.Errorf("%v field has duration type, but config.duration_type is not defined", c.path)
}
t = TerraformType{
Type: c.config.DurationType.Type,
ValueType: c.config.DurationType.ValueType,
ElemType: c.config.DurationType.Type,
ElemValueType: c.config.DurationType.ValueType,
ValueCastToType: c.config.DurationType.CastToType,
ValueCastFromType: c.config.DurationType.CastFromType,
TypeConstructor: c.config.DurationType.TypeConstructor,
}
case c.field.IsTypeEq(descriptor.FieldDescriptorProto_TYPE_DOUBLE) || gogoproto.IsStdDouble(p):
t = float64Type
t.ValueCastFromType = "float64"
case c.field.IsTypeEq(descriptor.FieldDescriptorProto_TYPE_FLOAT) || gogoproto.IsStdFloat(p):
t = float64Type
t.ValueCastFromType = "float32"
case c.field.IsTypeEq(descriptor.FieldDescriptorProto_TYPE_INT64) || gogoproto.IsStdInt64(p):
t = int64Type
t.ValueCastFromType = "int64"
case c.field.IsTypeEq(descriptor.FieldDescriptorProto_TYPE_UINT64) || gogoproto.IsStdUInt64(p):
t = int64Type
t.ValueCastFromType = "uint64"
case c.field.IsTypeEq(descriptor.FieldDescriptorProto_TYPE_INT32) || gogoproto.IsStdInt32(p):
t = int64Type
t.ValueCastFromType = "int32"
case c.field.IsTypeEq(descriptor.FieldDescriptorProto_TYPE_UINT32) || gogoproto.IsStdUInt32(p):
t = int64Type
t.ValueCastFromType = "uint32"
case c.field.IsTypeEq(descriptor.FieldDescriptorProto_TYPE_FIXED64):
t = int64Type
t.ValueCastFromType = "uint64"
case c.field.IsTypeEq(descriptor.FieldDescriptorProto_TYPE_FIXED32):
t = int64Type
t.ValueCastFromType = "uint32"
case c.field.IsTypeEq(descriptor.FieldDescriptorProto_TYPE_SFIXED32):
t = int64Type
t.ValueCastFromType = "int32"
case c.field.IsTypeEq(descriptor.FieldDescriptorProto_TYPE_SFIXED64):
t = int64Type
t.ValueCastFromType = "int64"
case c.field.IsTypeEq(descriptor.FieldDescriptorProto_TYPE_SINT32):
t = int64Type
t.ValueCastFromType = "int32"
case c.field.IsTypeEq(descriptor.FieldDescriptorProto_TYPE_SINT64):
t = int64Type
t.ValueCastFromType = "int64"
case c.field.IsTypeEq(descriptor.FieldDescriptorProto_TYPE_BOOL) || gogoproto.IsStdBool(p):
t = boolType
t.ValueCastFromType = "bool"
case c.field.IsTypeEq(descriptor.FieldDescriptorProto_TYPE_STRING) || gogoproto.IsStdString(p):
t = stringType
t.ValueCastFromType = "string"
case c.field.IsTypeEq(descriptor.FieldDescriptorProto_TYPE_BYTES) || gogoproto.IsStdBytes(p):
t = stringType
t.ValueCastFromType = "[]byte"
case c.field.IsTypeEq(descriptor.FieldDescriptorProto_TYPE_ENUM):
t = int64Type
t.ValueCastFromType = elemType
case c.field.IsMessage():
t = objectType
t.IsMessage = true
default:
return t, trace.Errorf("unknown field type %v", c.GetPath())
}
if c.IsRepeated() {
t.Type = Types + ".ListType"
t.ValueType = Types + ".List"
}
if c.IsMap() {
t.Type = Types + ".MapType"
t.ValueType = Types + ".Map"
}
if c.IsCastType() {
t.ValueCastFromType = elemType
}
return t, nil
}
// IsTime returns true if field is time
func (c *FieldBuildContext) IsTime() bool {
return c.field.IsTime()
}
// IsDuration returns true if field is duration
func (c *FieldBuildContext) IsDuration() bool {
return c.field.IsDuration(c.config.DurationCustomType)
}
// IsMessage returns true if field is message
func (c *FieldBuildContext) IsMessage() bool {
return c.field.IsMessage()
}
// IsCustomType returns true if fields has gogo.custom_type flag
// or if there's a custom type override in configuration.
func (c *FieldBuildContext) IsCustomType() bool {
_, ok := c.config.CustomTypes[c.GetPath()]
return c.field.IsCustomType() || ok
}
// GetCustomType returns true if fields has gogo.custom_type flag
func (c *FieldBuildContext) GetCustomType() string {
if customType, ok := c.config.CustomTypes[c.GetPath()]; ok {
return customType
}
return c.field.GetCustomType()
}
// IsCastType returns true if fields has gogo.cast_type flag
func (c *FieldBuildContext) IsCastType() bool {
return c.field.IsCastType()
}
// GetComment returns field comment as a single line
func (c *FieldBuildContext) GetComment() string {
// ",2," marks that we are extracting comment for a message field. See descriptor.SourceCodeInfo source for details.
p := c.desc.Path() + ",2," + strconv.Itoa(c.index)
for _, l := range c.desc.File().GetSourceCodeInfo().GetLocation() {
if c.GetLocationPath(l) == p {
c := Comment(strings.TrimSpace(strings.Trim(l.GetLeadingComments(), "\n")))
return c.ToSingleLine()
}
}
return ""
}
// GetMessageDescriptor returns underlying field message descriptor
func (c *FieldBuildContext) GetMessageDescriptor() (*generator.Descriptor, error) {
// Resolve underlying message via protobuf
x := c.gen.ObjectNamed(c.field.GetTypeName())
desc, ok := x.(*generator.Descriptor)
if desc == nil || !ok {
return nil, trace.Errorf("failed to convert %T to *generator.Descriptor", x)
}
return desc, nil
}
// IsRepeated returns true if field is repeated
func (c *FieldBuildContext) IsRepeated() bool {
return !c.gen.IsMap(c.field.FieldDescriptorProto) && c.field.IsRepeated()
}
// IsMap returns true if field is map
func (c *FieldBuildContext) IsMap() bool {
return c.gen.IsMap(c.field.FieldDescriptorProto)
}
// IsOneOf returns true if this field belongs to a OneOf group
func (c *FieldBuildContext) IsOneOf() bool {
return c.field.OneofIndex != nil
}
// GetMapValueFieldDescriptorAndType returns field descriptor for a map field
func (c *FieldBuildContext) GetMapValueFieldDescriptorAndType() (string, *FieldDescriptorProtoExt, error) {
m := c.gen.GoMapType(nil, c.field.FieldDescriptorProto)
k, _ := c.gen.GoType(c.desc, m.KeyField)
if k != "string" {
return "", nil, trace.Errorf("non-string map keys are not supported %v", c.GetPath())
}
if m.ValueField == nil {
return "", nil, trace.Errorf("map value descriptor is nil %v", c.GetPath())
}
return c.imports.PrependPackageNameIfMissing(m.GoType, c.config.DefaultPackageName), &FieldDescriptorProtoExt{m.ValueField}, nil
}
// GetNameSnake returns field snake name
func (c *FieldBuildContext) GetNameSnake() string {
v, ok := c.config.NameOverrides[c.GetPath()]
if !ok {
v, ok = c.config.NameOverrides[c.GetNameWithTypeName()]
}
if ok {
return v
}
n := c.field.GetJSONName()
if n != "" {
return n
}
return strcase.SnakeCase(c.field.GetName())
}
// GetFlagValue returns a flag value for the field
func (c *FieldBuildContext) GetFlagValue(f map[string]struct{}) bool {
_, ok1 := f[c.GetNameWithTypeName()]
_, ok2 := f[c.GetPath()]
return ok1 || ok2
}
// IsComputed returns true if a field is computed
func (c *FieldBuildContext) IsComputed() bool {
return c.GetFlagValue(c.config.ComputedFields)
}
// GetValidators returns field validators
func (c *FieldBuildContext) GetValidators() []string {
v, ok := c.config.Validators[c.GetPath()]
if !ok {
v, ok = c.config.Validators[c.GetNameWithTypeName()]
}
if ok {
return v
}
return []string{}
}
// GetPlanModifiers returns field validators
func (c *FieldBuildContext) GetPlanModifiers() []string {
v, ok := c.config.PlanModifiers[c.GetPath()]
if !ok {
v, ok = c.config.PlanModifiers[c.GetNameWithTypeName()]
}
if ok {
return v
}
if c.config.UseStateForUnknownByDefault && c.IsComputed() {
return []string{"github.com/hashicorp/terraform-plugin-framework/tfsdk.UseStateForUnknown()"}
}
return []string{}
}
// GetNullable returns the nullable flag
func (c *FieldBuildContext) GetNullable() bool {
// E_NULLABLE option is not applicable here because by default all fields must be nullable by protobuf specs.
// We need to examine a target Go type for this specific field.
return strings.Contains(c.GetGoType(), "*")
}
// GetTerraformTypeOverride returns Schema overrides
func (c *FieldBuildContext) GetTerraformTypeOverride() *SchemaType {
v, ok := c.config.SchemaTypes[c.GetPath()]
if !ok {
v, ok = c.config.SchemaTypes[c.GetNameWithTypeName()]
}
if ok {
return &v
}
return nil
}
// GetOneOfFieldName returns OneOf container name
func (c *FieldBuildContext) GetOneOfFieldName() string {
if !c.IsOneOf() {
return ""
}
name := c.desc.OneofDecl[*c.field.OneofIndex].GetName()
if name[0:1] == strings.ToLower(name[0:1]) {
return strcase.UpperCamelCase(name)
}
return name
}
// GetOneOfTypeName returns OneOf container go name
func (c *FieldBuildContext) GetOneOfTypeName() string {
if !c.IsOneOf() {
return ""
}
name := c.MessageBuildContext.GetName() + "_" + c.GetName()
if c.config.DefaultPackageName == "" {
return name
}
return c.config.DefaultPackageName + "." + name
}