-
-
Notifications
You must be signed in to change notification settings - Fork 65
/
field.go
269 lines (246 loc) · 6.31 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
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
// Copyright (c) 2017 Ernest Micklei
//
// MIT License
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restriction, including
// without limitation the rights to use, copy, modify, merge, publish,
// distribute, sublicense, and/or sell copies of the Software, and to
// permit persons to whom the Software is furnished to do so, subject to
// the following conditions:
//
// The above copyright notice and this permission notice shall be
// included in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
package proto
import (
"text/scanner"
)
// Field is an abstract message field.
type Field struct {
Position scanner.Position
Comment *Comment
Name string
Type string
Sequence int
Options []*Option
InlineComment *Comment
Parent Visitee
}
// inlineComment is part of commentInliner.
func (f *Field) inlineComment(c *Comment) {
f.InlineComment = c
}
// NormalField represents a field in a Message.
type NormalField struct {
*Field
Repeated bool
Optional bool // proto2
Required bool // proto2
}
func newNormalField() *NormalField { return &NormalField{Field: new(Field)} }
// Accept dispatches the call to the visitor.
func (f *NormalField) Accept(v Visitor) {
v.VisitNormalField(f)
}
// Doc is part of Documented
func (f *NormalField) Doc() *Comment {
return f.Comment
}
// parse expects:
// [ "repeated" | "optional" ] type fieldName "=" fieldNumber [ "[" fieldOptions "]" ] ";"
func (f *NormalField) parse(p *Parser) error {
for {
pos, tok, lit := p.nextTypeName()
switch tok {
case tCOMMENT:
c := newComment(pos, lit)
if f.InlineComment == nil {
f.InlineComment = c
} else {
f.InlineComment.Merge(c)
}
case tREPEATED:
f.Repeated = true
return f.parse(p)
case tOPTIONAL: // proto2
f.Optional = true
return f.parse(p)
case tIDENT:
f.Type = lit
return parseFieldAfterType(f.Field, p, f)
default:
goto done
}
}
done:
return nil
}
// parseFieldAfterType expects:
// fieldName "=" fieldNumber [ "[" fieldOptions "]" ] ";
func parseFieldAfterType(f *Field, p *Parser, parent Visitee) error {
expectedToken := tIDENT
expected := "field identifier"
for {
pos, tok, lit := p.next()
if tok == tCOMMENT {
c := newComment(pos, lit)
if f.InlineComment == nil {
f.InlineComment = c
} else {
f.InlineComment.Merge(c)
}
continue
}
if tok != expectedToken {
// allow keyword as field name
if expectedToken == tIDENT && isKeyword(tok) {
// continue as identifier
tok = tIDENT
} else {
return p.unexpected(lit, expected, f)
}
}
// found expected token
if tok == tIDENT {
f.Name = lit
expectedToken = tEQUALS
expected = "field ="
continue
}
if tok == tEQUALS {
expectedToken = tNUMBER
expected = "field sequence number"
continue
}
if tok == tNUMBER {
// put it back so we can use the generic nextInteger
p.nextPut(pos, tok, lit)
i, err := p.nextInteger()
if err != nil {
return p.unexpected(lit, expected, f)
}
f.Sequence = i
break
}
}
consumeFieldComments(f, p)
// see if there are options
pos, tok, lit := p.next()
if tLEFTSQUARE != tok {
p.nextPut(pos, tok, lit)
return nil
}
// consume options
for {
o := new(Option)
o.Position = pos
o.IsEmbedded = true
o.parent(parent)
err := o.parse(p)
if err != nil {
return err
}
f.Options = append(f.Options, o)
pos, tok, lit = p.next()
if tRIGHTSQUARE == tok {
break
}
if tCOMMA != tok {
return p.unexpected(lit, "option ,", o)
}
}
return nil
}
func consumeFieldComments(f *Field, p *Parser) {
pos, tok, lit := p.next()
for tok == tCOMMENT {
c := newComment(pos, lit)
if f.InlineComment == nil {
f.InlineComment = c
} else {
f.InlineComment.Merge(c)
}
pos, tok, lit = p.next()
}
// no longer a comment, put it back
p.nextPut(pos, tok, lit)
}
// TODO copy paste
func consumeOptionComments(o *Option, p *Parser) {
pos, tok, lit := p.next()
for tok == tCOMMENT {
c := newComment(pos, lit)
if o.Comment == nil {
o.Comment = c
} else {
o.Comment.Merge(c)
}
pos, tok, lit = p.next()
}
// no longer a comment, put it back
p.nextPut(pos, tok, lit)
}
// MapField represents a map entry in a message.
type MapField struct {
*Field
KeyType string
}
func newMapField() *MapField { return &MapField{Field: new(Field)} }
// Accept dispatches the call to the visitor.
func (f *MapField) Accept(v Visitor) {
v.VisitMapField(f)
}
// Doc is part of Documented
func (f *MapField) Doc() *Comment {
return f.Comment
}
// parse expects:
// mapField = "map" "<" keyType "," type ">" mapName "=" fieldNumber [ "[" fieldOptions "]" ] ";"
// keyType = "int32" | "int64" | "uint32" | "uint64" | "sint32" | "sint64" |
//
// "fixed32" | "fixed64" | "sfixed32" | "sfixed64" | "bool" | "string"
func (f *MapField) parse(p *Parser) error {
_, tok, lit := p.next()
if tLESS != tok {
return p.unexpected(lit, "map keyType <", f)
}
_, tok, lit = p.nextTypeName()
if tIDENT != tok {
return p.unexpected(lit, "map identifier", f)
}
f.KeyType = lit
_, tok, lit = p.next()
if tCOMMA != tok {
return p.unexpected(lit, "map type separator ,", f)
}
_, tok, lit = p.nextTypeName()
if tIDENT != tok {
return p.unexpected(lit, "map valueType identifier", f)
}
f.Type = lit
_, tok, lit = p.next()
if tGREATER != tok {
return p.unexpected(lit, "map valueType >", f)
}
return parseFieldAfterType(f.Field, p, f)
}
func (f *Field) parent(v Visitee) { f.Parent = v }
const optionNameDeprecated = "deprecated"
// IsDeprecated returns true if the option "deprecated" is set with value "true".
func (f *Field) IsDeprecated() bool {
for _, each := range f.Options {
if each.Name == optionNameDeprecated {
return each.Constant.Source == "true"
}
}
return false
}