forked from lyft/protoc-gen-star
-
Notifications
You must be signed in to change notification settings - Fork 0
/
oneof.go
103 lines (83 loc) · 2.75 KB
/
oneof.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
package pgs
import (
"github.com/golang/protobuf/proto"
"github.com/golang/protobuf/protoc-gen-go/descriptor"
)
// OneOf describes a OneOf block within a Message. OneOfs behave like C++
// unions, where only one of the contained fields will exist on the Message.
type OneOf interface {
Entity
// Descriptor returns the underlying proto descriptor for this OneOf
Descriptor() *descriptor.OneofDescriptorProto
// Message returns the parent message for this OneOf.
Message() Message
// Fields returns all fields contained within this OneOf.
Fields() []Field
// IsSynthetic returns true if this is a proto3 synthetic oneof.
// See: https://github.com/protocolbuffers/protobuf/blob/v3.17.0/docs/field_presence.md
IsSynthetic() bool
setMessage(m Message)
addField(f Field)
}
type oneof struct {
desc *descriptor.OneofDescriptorProto
msg Message
flds []Field
fqn string
info SourceCodeInfo
}
func (o *oneof) accept(v Visitor) (err error) {
if v == nil {
return
}
_, err = v.VisitOneOf(o)
return
}
func (o *oneof) Name() Name { return Name(o.desc.GetName()) }
func (o *oneof) FullyQualifiedName() string { return o.fqn }
func (o *oneof) Syntax() Syntax { return o.msg.Syntax() }
func (o *oneof) Package() Package { return o.msg.Package() }
func (o *oneof) File() File { return o.msg.File() }
func (o *oneof) BuildTarget() bool { return o.msg.BuildTarget() }
func (o *oneof) SourceCodeInfo() SourceCodeInfo { return o.info }
func (o *oneof) Descriptor() *descriptor.OneofDescriptorProto { return o.desc }
func (o *oneof) Message() Message { return o.msg }
func (o *oneof) setMessage(m Message) { o.msg = m }
func (o *oneof) IsSynthetic() bool {
return o.Syntax() == Proto3 &&
len(o.flds) == 1 &&
!o.flds[0].InRealOneOf()
}
func (o *oneof) Imports() (i []File) {
// Mapping for avoiding duplicate entries
mp := make(map[string]File, len(o.flds))
for _, f := range o.flds {
for _, imp := range f.Imports() {
mp[imp.File().Name().String()] = imp
}
}
for _, f := range mp {
i = append(i, f)
}
return
}
func (o *oneof) Extension(desc *proto.ExtensionDesc, ext interface{}) (ok bool, err error) {
return extension(o.desc.GetOptions(), desc, &ext)
}
func (o *oneof) Fields() []Field {
f := make([]Field, len(o.flds))
copy(f, o.flds)
return f
}
func (o *oneof) addField(f Field) {
f.setOneOf(o)
o.flds = append(o.flds, f)
}
func (o *oneof) childAtPath(path []int32) Entity {
if len(path) == 0 {
return o
}
return nil
}
func (o *oneof) addSourceCodeInfo(info SourceCodeInfo) { o.info = info }
var _ OneOf = (*oneof)(nil)