forked from alecthomas/participle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathebnf.go
More file actions
357 lines (314 loc) · 7.02 KB
/
ebnf.go
File metadata and controls
357 lines (314 loc) · 7.02 KB
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
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
package lexer
import (
"bufio"
"io"
"reflect"
"strings"
"text/scanner"
"unicode/utf8"
"golang.org/x/exp/ebnf"
)
type ebnfLexer struct {
r *bufio.Reader
def *ebnfLexerDefinition
pos Position
peeked *Token
}
func (e *ebnfLexer) Peek() Token {
if e.peeked != nil {
return *e.peeked
}
token := e.readToken()
e.peeked = &token
return token
}
func (e *ebnfLexer) Next() Token {
t := e.Peek()
e.peeked = nil
return t
}
func (e *ebnfLexer) readToken() Token {
if e.peek() == EOF {
return EOFToken
}
pos := e.pos
for name, production := range e.def.productions {
if match := e.match(production.Expr); match != nil {
return Token{
Type: e.def.symbols[name],
Pos: pos,
Value: strings.Join(match, ""),
}
}
}
e.panic("no match found")
return Token{}
}
func (e *ebnfLexer) match(expr ebnf.Expression) []string { // nolint: gocyclo
switch n := expr.(type) {
case ebnf.Alternative:
for _, an := range n {
if match := e.match(an); match != nil {
return match
}
}
return nil
case *ebnf.Group:
return e.match(n.Body)
case *ebnf.Name:
return e.match(e.def.grammar[n.String].Expr)
case *ebnf.Option:
match := e.match(n.Body)
if match == nil {
match = []string{}
}
return match
case *ebnf.Range:
// TODO: Ideally this would be cached somewhere.
// Doing an optimisation pass would probably be smart.
start, _ := utf8.DecodeRuneInString(n.Begin.String)
end, _ := utf8.DecodeRuneInString(n.End.String)
rn := e.peek()
if rn < start || rn > end {
return nil
}
e.read()
return []string{string(rn)}
case *ebnf.Repetition:
var out []string
for {
match := e.match(n.Body)
if match != nil {
out = append(out, match...)
} else {
break
}
}
return out
case ebnf.Sequence:
var out []string
for i, sn := range n {
match := e.match(sn)
if match != nil {
out = append(out, match...)
continue
}
if i > 0 {
e.panicf("expected %q", sn)
} else {
break
}
}
return out
case *ebnf.Token:
// If first rune doesn't match, we didn't match.
if rn, _ := utf8.DecodeRuneInString(n.String); rn != e.peek() {
return nil
}
for _, rn := range n.String {
if rn != e.read() {
e.panicf("expected %q", n.String)
}
}
return []string{n.String}
case *characterSet:
if strings.ContainsRune(n.Set, e.peek()) {
return []string{string(e.read())}
}
return nil
case nil:
if e.peek() == EOF {
return nil
}
e.panic("expected EOF")
}
panic("unsupported lexer expression type " + reflect.TypeOf(expr).String())
}
func (e *ebnfLexer) peek() rune {
// This is a bit more involved than I would like.
rn, _, err := e.r.ReadRune()
if err == io.EOF {
return EOF
}
if err != nil {
e.panicf("failed to read rune: %s", err)
}
if err = e.r.UnreadRune(); err != nil {
e.panicf("failed to unread rune: %s", err)
}
return rn
}
func (e *ebnfLexer) read() rune {
rn, n, err := e.r.ReadRune()
if err == io.EOF {
return EOF
}
if err != nil {
e.panicf("failed to read rune: %s", err)
}
e.pos.Offset += n
if rn == '\n' {
e.pos.Line++
e.pos.Column = 1
} else {
e.pos.Column++
}
return rn
}
func (e *ebnfLexer) panic(msg string) {
Panic(e.pos, msg)
}
func (e *ebnfLexer) panicf(msg string, args ...interface{}) {
Panicf(e.pos, msg, args...)
}
type ebnfLexerDefinition struct {
grammar ebnf.Grammar
symbols map[string]rune
productions ebnf.Grammar
}
// EBNF creates a Lexer from an EBNF grammar.
//
// The EBNF grammar syntax is as defined by "golang.org/x/exp/ebnf". Upper-case productions are
// exported as symbols. All productions are lexical.
//
// Here's an example grammar for parsing whitespace and identifiers:
//
// Identifier = alpha { alpha | number } .
// Whitespace = "\n" | "\r" | "\t" | " " .
// alpha = "a"…"z" | "A"…"Z" | "_" .
// number = "0"…"9" .
func EBNF(grammar string) (Definition, error) {
// Parse grammar.
r := strings.NewReader(grammar)
ast, err := ebnf.Parse("<grammar>", r)
if err != nil {
return nil, err
}
// Validate grammar.
for _, production := range ast {
if err = validate(ast, production); err != nil {
return nil, err
}
}
// Assign constants for roots.
rn := EOF - 1
symbols := map[string]rune{
"EOF": EOF,
}
// Optimize and export public productions.
productions := ebnf.Grammar{}
for symbol, production := range ast {
ch := symbol[0:1]
production.Expr = optimize(production.Expr)
if strings.ToUpper(ch) == ch {
symbols[symbol] = rn
productions[symbol] = production
rn--
}
}
def := &ebnfLexerDefinition{
grammar: ast,
symbols: symbols,
productions: productions,
}
return def, nil
}
func (e *ebnfLexerDefinition) Lex(r io.Reader) Lexer {
return &ebnfLexer{
r: bufio.NewReader(r),
def: e,
pos: Position{
Filename: NameOfReader(r),
Line: 1,
Column: 1,
},
}
}
func (e *ebnfLexerDefinition) Symbols() map[string]rune {
return e.symbols
}
type characterSet struct {
pos scanner.Position
Set string
}
func (c *characterSet) Pos() scanner.Position {
return c.pos
}
// Apply some optimizations to the EBNF.
//
// Convert alternate characters into a character set (eg. "a" | "b" | "c" | "true" becomes
// set("abc") | "true").
func optimize(expr ebnf.Expression) ebnf.Expression {
switch n := expr.(type) {
case ebnf.Alternative:
out := make(ebnf.Alternative, 0, len(n))
set := ""
for _, e := range n {
if t, ok := e.(*ebnf.Token); ok && utf8.RuneCountInString(t.String) == 1 {
set += t.String
} else {
out = append(out, optimize(e))
}
}
if set != "" {
out = append(out, &characterSet{Set: set})
}
return out
case ebnf.Sequence:
for i, e := range n {
n[i] = optimize(e)
}
case *ebnf.Group:
n.Body = optimize(n.Body)
case *ebnf.Option:
n.Body = optimize(n.Body)
case *ebnf.Repetition:
n.Body = optimize(n.Body)
}
return expr
}
// Validate the grammar against the lexer rules.
func validate(grammar ebnf.Grammar, expr ebnf.Expression) error { // nolint: gocyclo
switch n := expr.(type) {
case *ebnf.Production:
return validate(grammar, n.Expr)
case ebnf.Alternative:
for _, e := range n {
if err := validate(grammar, e); err != nil {
return err
}
}
return nil
case *ebnf.Group:
return validate(grammar, n.Body)
case *ebnf.Name:
if grammar[n.String] == nil {
return Errorf(Position(n.Pos()), "unknown production %q", n.String)
}
return nil
case *ebnf.Option:
return validate(grammar, n.Body)
case *ebnf.Range:
if utf8.RuneCountInString(n.Begin.String) != 1 {
return Errorf(Position(n.Pos()), "start of range must be a single rune")
}
if utf8.RuneCountInString(n.End.String) != 1 {
return Errorf(Position(n.Pos()), "end of range must be a single rune")
}
return nil
case *ebnf.Repetition:
return validate(grammar, n.Body)
case ebnf.Sequence:
for _, e := range n {
if err := validate(grammar, e); err != nil {
return err
}
}
return nil
case *ebnf.Token:
return nil
case nil:
return nil
}
return Errorf(Position(expr.Pos()), "unknown EBNF expression "+reflect.TypeOf(expr).String())
}