forked from etcd-io/protodoc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparse.go
251 lines (226 loc) · 5.96 KB
/
parse.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
// Copyright 2016 CoreOS, 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 parse
import (
"bufio"
"io"
"os"
"strings"
)
func readLines(r io.Reader) ([]string, error) {
var (
lines []string
scanner = bufio.NewScanner(r)
)
for scanner.Scan() {
// remove indentation
line := strings.TrimSpace(scanner.Text())
// skip empty line
if len(line) > 0 {
if strings.HasPrefix(line, "//") {
lines = append(lines, line)
continue
}
// remove semi-colon line-separator
sl := strings.Split(line, ";")
for _, txt := range sl {
txt = strings.TrimSpace(txt)
if len(txt) == 0 {
continue
}
if strings.HasPrefix(txt, "optional ") { // proto2
txt = strings.Replace(txt, "optional ", "", 1)
}
lines = append(lines, txt)
}
}
}
if err := scanner.Err(); err != nil {
return nil, err
}
return lines, nil
}
type parseMode int
const (
reading parseMode = iota
parsingMessage
parsingService
parsingRPC
)
func ReadDir(targetDir, messageOnlyFromThisFile string) (*Proto, error) {
rm, err := walkDirExt(targetDir, ".proto")
if err != nil {
return nil, err
}
pr := &Proto{
Services: []ProtoService{},
Messages: []ProtoMessage{},
}
for _, fpath := range rm {
p, err := ReadFile(fpath)
if err != nil {
return nil, err
}
pr.Services = append(pr.Services, p.Services...)
if messageOnlyFromThisFile == "" ||
(messageOnlyFromThisFile != "" && strings.HasSuffix(fpath, messageOnlyFromThisFile)) {
pr.Messages = append(pr.Messages, p.Messages...)
}
}
return pr, nil
}
func ReadFile(fpath string) (*Proto, error) {
f, err := os.OpenFile(fpath, os.O_RDONLY, 0444)
if err != nil {
return nil, err
}
var (
wd, _ = os.Getwd()
fs = fpath
)
if strings.HasPrefix(fs, wd) {
fs = strings.Replace(fs, wd, "", 1)
if strings.HasPrefix(fs, "/") {
fs = strings.Replace(fs, "/", "", 1)
}
}
lines, err := readLines(f)
if err != nil {
f.Close()
return nil, err
}
f.Close()
var (
rp = Proto{
Services: []ProtoService{},
Messages: []ProtoMessage{},
}
mode = reading
comments []string
protoMessage = ProtoMessage{}
protoService = ProtoService{}
)
skipping := 0
braceDepth := 0
for _, line := range lines {
if strings.HasPrefix(line, "//") {
ls := strings.Replace(line, "//", "", 1)
comments = append(comments, strings.TrimSpace(ls))
continue
}
emitComments := comments
comments = []string{}
if strings.Contains(line, "}") {
braceDepth--
}
if strings.Contains(line, "{") {
braceDepth++
}
line = strings.TrimSpace(line)
switch {
case skipping > 0 && braceDepth > skipping:
continue
case strings.HasPrefix(line, "enum "):
fallthrough
case strings.HasPrefix(line, "option (google.api.http) = "):
skipping = braceDepth - 1
continue
default:
skipping = 0
}
switch mode {
case reading:
fs := strings.Fields(line)
if len(fs) < 2 {
break
}
switch fs[0] {
case "message":
mode = parsingMessage
case "service":
mode = parsingService
}
switch fs[0] {
// proto message/service name
case "message":
mode = parsingMessage
protoMessage.Name = strings.Replace(fs[1], "{", "", -1)
protoMessage.Description = strings.Join(emitComments, " ")
protoMessage.Fields = []ProtoField{} // reset
case "service":
mode = parsingService
protoService.Name = strings.Replace(fs[1], "{", "", -1)
protoService.Description = strings.Join(emitComments, " ")
protoService.Methods = []ProtoMethod{} // reset
}
case parsingMessage:
if braceDepth == 0 { // closing of message
protoMessage.FilePath = fs
rp.Messages = append(rp.Messages, protoMessage)
protoMessage = ProtoMessage{}
mode = reading
break
}
protoField := ProtoField{}
tl := line
if strings.HasPrefix(tl, "repeated") {
protoField.Repeated = true
tl = strings.Replace(tl, "repeated ", "", -1)
}
fds := strings.Fields(tl)
if len(fds) < 2 {
break
}
tp, err := ToProtoType(fds[0])
if err != nil {
protoField.ProtoType = 0
protoField.UserDefinedProtoType = fds[0]
} else {
protoField.ProtoType = tp
protoField.UserDefinedProtoType = ""
}
protoField.Name = fds[1]
protoField.Description = strings.Join(emitComments, " ")
protoMessage.Fields = append(protoMessage.Fields, protoField)
case parsingService:
// parse 'rpc Watch(stream WatchRequest) returns (stream WatchResponse) {}'
if strings.HasPrefix(line, "rpc ") {
lt := strings.Replace(line, "rpc ", "", 1)
lt = strings.Replace(lt, ")", "", -1)
lt = strings.Replace(lt, " {}", "", 1) // without grpc gateway
lt = strings.Replace(lt, " {", "", 1) // with grpc gateway
fsigs := strings.Split(lt, " returns ")
ft := strings.Split(fsigs[0], "(") // split 'Watch(stream WatchRequest'
f1 := ft[0]
ft = strings.Fields(ft[1])
f2 := ft[len(ft)-1]
ft = strings.Fields(strings.Replace(fsigs[1], "(", "", 1)) // split '(stream WatchResponse'
f3 := ft[len(ft)-1]
protoMethod := ProtoMethod{} // reset
protoMethod.Name = f1
protoMethod.RequestType = f2
protoMethod.ResponseType = f3
protoMethod.Description = strings.Join(emitComments, " ")
protoService.Methods = append(protoService.Methods, protoMethod)
} else if !strings.HasSuffix(line, "{}") && braceDepth == 0 {
// end of service
protoService.FilePath = fs
rp.Services = append(rp.Services, protoService)
protoService = ProtoService{}
mode = reading
}
}
}
return &rp, nil
}