-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscanner.go
232 lines (206 loc) · 4.3 KB
/
scanner.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
package deslang
import (
"bufio"
"bytes"
"io"
"unicode"
)
// For lexing an io.Reader. Groups characters into tokens.
type Scanner struct {
errh errorHandler
source *bufio.Reader // source code to scan
tokens []Token // tokens seen
currLex []byte // partial lexeme
line int // current line
ch byte // most recently read character
}
var keywords = map[string]tokentype{
"and": _and,
"else": _else,
"false": _false,
"for": _for,
"fun": _fun,
"if": _if,
"or": _or,
"print": _print,
"return": _return,
"true": _true,
"var": _var,
"while": _while,
}
func NewScanner(errh errorHandler) *Scanner {
return &Scanner{
errh: errh,
line: 1,
}
}
func (s *Scanner) reset() {
s.tokens = []Token{}
s.line = 1
}
// If reading the next byte fails, Scan will return an error. All syntax errors
// are reported via the errorHandler.
func (s *Scanner) Scan(src io.Reader) ([]Token, error) {
s.reset()
s.source = bufio.NewReader(src)
for {
s.currLex = []byte{}
if err := s.next(); err != nil {
if err == io.EOF {
s.addToken(_eof, nil)
}
return s.tokens, err
}
s.parseCh()
}
}
func (s *Scanner) addToken(ttype tokentype, lit []byte) {
t := Token{
Type: ttype,
Lexeme: s.currLex,
Literal: lit,
Line: s.line,
}
s.tokens = append(s.tokens, t)
}
// Read the next character and store the byte in s.ch. Append the character to
// s.currLex.
func (s *Scanner) next() error {
b, err := s.source.ReadByte()
if err != nil {
return err
}
s.ch = b
s.currLex = append(s.currLex, s.ch)
return nil
}
func (s *Scanner) peek() byte {
b, _ := s.source.Peek(1)
return b[0]
}
// Return true if the previous character in the current lexeme matches the
// expected byte. Advances s.source via s.next() if it's a match.
func (s *Scanner) match(expected byte) bool {
if s.peek() == expected {
s.next()
return true
}
return false
}
// Consumes a string including the closing quotation mark.
func (s *Scanner) string() {
// Move to first character inside quote.
s.next()
for s.ch != '"' {
if err := s.next(); err == io.EOF {
s.errh(s.line, "", "Unterminated string")
return
}
}
s.addToken(_string, bytes.Trim(s.currLex, "\""))
}
// Consumes a number
func (s *Scanner) number() {
for unicode.IsNumber(rune(s.peek())) {
if err := s.next(); err != nil {
return
}
}
// In order to handle decimals, if there's a period, consume it, then keep
// consuming any remaining digits.
if s.peek() == '.' {
s.next()
for unicode.IsNumber(rune(s.peek())) {
if err := s.next(); err != nil {
break
}
}
}
s.addToken(_number, s.currLex)
}
func (s *Scanner) identifier() {
r := rune(s.peek())
for unicode.IsLetter(r) || unicode.IsNumber(r) {
s.next()
r = rune(s.peek())
}
// Check if it's a reserved keyword.
if tokenType, has := keywords[string(s.currLex)]; has {
s.addToken(tokenType, nil)
} else {
s.addToken(_identifier, nil)
}
}
// Parse s.ch
func (s *Scanner) parseCh() {
switch s.ch {
case '(':
s.addToken(_left_paren, nil)
case ')':
s.addToken(_right_paren, nil)
case '{':
s.addToken(_left_brace, nil)
case '}':
s.addToken(_right_brace, nil)
case ',':
s.addToken(_comma, nil)
case '-':
s.addToken(_minus, nil)
case '+':
s.addToken(_plus, nil)
case ';':
s.addToken(_semicolon, nil)
case '*':
s.addToken(_star, nil)
case '!':
if s.match('=') {
s.addToken(_bang_equal, nil)
} else {
s.addToken(_bang, nil)
}
case '=':
if s.match('=') {
s.addToken(_equal_equal, nil)
} else {
s.addToken(_equal, nil)
}
case '>':
if s.match('=') {
s.addToken(_greater_equal, nil)
} else {
s.addToken(_greater, nil)
}
case '<':
if s.match('=') {
s.addToken(_less_equal, nil)
} else {
s.addToken(_less, nil)
}
case '/':
// If it's a comment, clear this entire line.
if s.match('/') {
for s.peek() != '\n' {
if err := s.next(); err != nil {
// Most likely an EOF err but doesn't hurt to break on any error.
break
}
}
} else {
s.addToken(_slash, nil)
}
case ' ', '\r', '\t':
return
case '\n':
s.line++
case '"':
s.string()
case '1', '2', '3', '4', '5', '6', '7', '8', '9', '0':
s.number()
default:
if unicode.IsLetter(rune(s.ch)) {
s.identifier()
} else {
s.errh(s.line, "", "Unexpected character")
}
}
}