forked from lyft/protoc-gen-star
-
Notifications
You must be signed in to change notification settings - Fork 0
/
field.go
138 lines (110 loc) · 4.11 KB
/
field.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
package pgs
import (
"github.com/golang/protobuf/proto"
"github.com/golang/protobuf/protoc-gen-go/descriptor"
)
// A Field describes a member of a Message. A field may also be a member of a
// OneOf on the Message.
type Field interface {
Entity
// Descriptor returns the proto descriptor for this field
Descriptor() *descriptor.FieldDescriptorProto
// Message returns the Message containing this Field.
Message() Message
// InOneOf returns true if the field is in a OneOf of the parent Message.
// This will return true for synthetic oneofs (proto3 field presence) as well.
InOneOf() bool
// InRealOneOf returns true if the field is in a OneOf of the parent Message.
// This will return false for synthetic oneofs, and will only include 'real' oneofs.
// See: https://github.com/protocolbuffers/protobuf/blob/v3.17.0/docs/field_presence.md
InRealOneOf() bool
// OneOf returns the OneOf that this field is a part of. Nil is returned if
// the field is not within a OneOf.
OneOf() OneOf
// Type returns the FieldType of this Field.
Type() FieldType
// HasPresence returns true for all fields that have explicit presence as defined by:
// See: https://github.com/protocolbuffers/protobuf/blob/v3.17.0/docs/field_presence.md
HasPresence() bool
// HasOptionalKeyword returns whether the field is labeled as optional.
HasOptionalKeyword() bool
// Required returns whether the field is labeled as required. This
// will only be true if the syntax is proto2.
Required() bool
setMessage(m Message)
setOneOf(o OneOf)
addType(t FieldType)
}
type field struct {
desc *descriptor.FieldDescriptorProto
fqn string
msg Message
oneof OneOf
typ FieldType
info SourceCodeInfo
}
func (f *field) Name() Name { return Name(f.desc.GetName()) }
func (f *field) FullyQualifiedName() string { return f.fqn }
func (f *field) Syntax() Syntax { return f.msg.Syntax() }
func (f *field) Package() Package { return f.msg.Package() }
func (f *field) Imports() []File { return f.typ.Imports() }
func (f *field) File() File { return f.msg.File() }
func (f *field) BuildTarget() bool { return f.msg.BuildTarget() }
func (f *field) SourceCodeInfo() SourceCodeInfo { return f.info }
func (f *field) Descriptor() *descriptor.FieldDescriptorProto { return f.desc }
func (f *field) Message() Message { return f.msg }
func (f *field) InOneOf() bool { return f.oneof != nil }
func (f *field) OneOf() OneOf { return f.oneof }
func (f *field) Type() FieldType { return f.typ }
func (f *field) setMessage(m Message) { f.msg = m }
func (f *field) setOneOf(o OneOf) { f.oneof = o }
func (f *field) InRealOneOf() bool {
return f.InOneOf() && !f.desc.GetProto3Optional()
}
func (f *field) HasPresence() bool {
if f.InOneOf() {
return true
}
if f.Type().IsEmbed() {
return true
}
if !f.Type().IsRepeated() && !f.Type().IsMap() {
if f.Syntax() == Proto2 {
return true
}
return f.HasOptionalKeyword()
}
return false
}
func (f *field) HasOptionalKeyword() bool {
if f.Syntax() == Proto3 {
return f.desc.GetProto3Optional()
}
return f.desc.GetLabel() == descriptor.FieldDescriptorProto_LABEL_OPTIONAL
}
func (f *field) Required() bool {
return f.Syntax().SupportsRequiredPrefix() &&
f.desc.GetLabel() == descriptor.FieldDescriptorProto_LABEL_REQUIRED
}
func (f *field) addType(t FieldType) {
t.setField(f)
f.typ = t
}
func (f *field) Extension(desc *proto.ExtensionDesc, ext interface{}) (ok bool, err error) {
return extension(f.desc.GetOptions(), desc, &ext)
}
func (f *field) accept(v Visitor) (err error) {
if v == nil {
return
}
_, err = v.VisitField(f)
return
}
func (f *field) childAtPath(path []int32) Entity {
if len(path) == 0 {
return f
}
return nil
}
func (f *field) addSourceCodeInfo(info SourceCodeInfo) { f.info = info }
var _ Field = (*field)(nil)