-
Notifications
You must be signed in to change notification settings - Fork 2
/
lex.go
297 lines (226 loc) · 4.79 KB
/
lex.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
package cc
import (
"fmt"
"unicode"
"github.com/bbuck/go-lexer"
)
const (
breakingChangeFooterToken = "BREAKING CHANGE"
)
// all lexer token types that are emitted.
const (
body lexer.TokenType = iota
breakingChange
descriptionDelimiter
description
footerDelimter
footerToken
footerValue
leftScopeDelimiter
rightScopeDelimiter
headerScope
headerType
)
func typeState(l *lexer.L) lexer.StateFunc {
for {
r := l.Peek()
if r == lexer.EOFRune {
l.Error("missing scope or description")
return nil
}
if r == ':' {
l.Emit(headerType)
return descriptionDelimiterState
}
if r == '!' {
l.Emit(headerType)
return descriptionDelimiterState
}
if r == '(' {
l.Emit(headerType)
l.Take("(")
l.Emit(leftScopeDelimiter)
return scopeState
}
if !unicode.IsLetter(r) {
l.Error(fmt.Sprintf("invalid character '%c' in type", r))
return nil
}
l.Next()
}
}
func scopeState(l *lexer.L) lexer.StateFunc {
for {
r := l.Peek()
if r == ')' {
if l.Current() == "" {
l.Error("empty scope")
return nil
}
l.Emit(headerScope)
l.Take(")")
l.Emit(rightScopeDelimiter)
return descriptionDelimiterState
}
if !(unicode.IsLetter(r) || unicode.IsDigit(r) || r == '-' || r == '_') {
l.Error("scope must be noun in ()")
return nil
}
l.Next()
}
}
func descriptionDelimiterState(l *lexer.L) lexer.StateFunc {
if l.Peek() == '!' {
l.Next()
l.Emit(breakingChange)
}
l.Take(": ")
if l.Current() != ": " {
l.Error("scope must be followed by ': '")
return nil
}
l.Emit(descriptionDelimiter)
return descriptionState
}
func descriptionState(l *lexer.L) lexer.StateFunc {
for {
if l.Next() == lexer.EOFRune {
l.Emit(description)
return nil
}
if l.Peek() == '\n' {
l.Emit(description)
return headerDelimeterState
}
}
}
func headerDelimeterState(l *lexer.L) lexer.StateFunc {
l.Take("\n")
if len(l.Current()) < 2 {
l.Error("at least one empty line required after header")
return nil
}
l.Ignore()
return bodyOrFooterState
}
func bodyOrFooterState(l *lexer.L) lexer.StateFunc {
count := takeFooterToken(l)
// there is no body
if count > 0 {
rewind(l, count)
return footerTokenState
}
return bodyState
}
func bodyState(l *lexer.L) lexer.StateFunc {
found := takeUntilFirstFooterToken(l)
if !found {
l.Emit(body)
return nil
}
// go back to the last newline character
for {
l.Rewind()
if l.Peek() != '\n' {
break
}
}
l.Next()
l.Emit(body)
return bodyDelimeterState
}
func bodyDelimeterState(l *lexer.L) lexer.StateFunc {
l.Take("\n")
if len(l.Current()) < 2 {
l.Error("at least one empty line required after body")
return nil
}
l.Ignore()
return footerTokenState
}
func footerTokenState(l *lexer.L) lexer.StateFunc {
l.Take("\n")
l.Ignore()
takeFooterToken(l)
l.Emit(footerToken)
return footerDelimiterState
}
func footerValueState(l *lexer.L) lexer.StateFunc {
if l.Peek() == lexer.EOFRune {
return nil
}
found := takeUntilFirstFooterToken(l)
l.Emit(footerValue)
if !found {
return nil
}
return footerTokenState
}
func footerDelimiterState(l *lexer.L) lexer.StateFunc {
l.Take(": ")
l.Emit(footerDelimter)
return footerValueState
}
// takeUntilFirstFooter takes all characters until a footer token is detected
func takeUntilFirstFooterToken(l *lexer.L) bool {
for {
r := l.Next()
if r == lexer.EOFRune {
return false
}
// a footer token has to begin at the start of a line
if r == '\n' {
count := takeFooterToken(l)
if count > 0 {
// if count is > 0 we are at the end of the footer token
for i := 0; i < count; i++ {
l.Rewind()
}
return true
}
}
}
}
func rewind(l *lexer.L, count int) {
for i := count; i > 0; i-- {
l.Rewind()
}
}
// takeFooterToken continues over each consecutive character in the source
// until an invalid footer token character is detected. The method returns
// the length if there is a valid footer token found. If it is not a valid footer
// token, 0 is returned.
func takeFooterToken(l *lexer.L) int {
// handle BREAKING CHANGE: (BREAKING-CHANGE: is handled as standard footer token)
if l.Peek() == 'B' {
candidate := peekString(l, len(breakingChangeFooterToken)+2)
if candidate == breakingChangeFooterToken+": " {
l.Take(breakingChangeFooterToken)
return len(breakingChangeFooterToken)
}
}
count := 0
r := l.Next()
for unicode.IsLetter(r) || unicode.IsDigit(r) || r == '-' {
count++
r = l.Next()
}
// :<space> or <space># delimiter
if (r == ':' && l.Peek() == ' ') || (r == ' ' && l.Peek() == '#') {
l.Rewind()
return count
}
l.Rewind()
return 0
}
func peekString(l *lexer.L, count int) string {
s := ""
for i := 0; i < count; i++ {
if l.Peek() == lexer.EOFRune {
return s
}
s += string(l.Next())
defer l.Rewind() //nolint: gocritic
}
return s
}