-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
388 lines (324 loc) · 6.97 KB
/
main.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
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
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
package main
import (
"bufio"
"errors"
"fmt"
"log"
"os"
"strconv"
)
// Type of token
type Type string
// Position ...
type Position struct {
Index, Line, Column int
FileName, FileContent string
}
// Next position
func (p *Position) Next(currentChar rune) {
p.Index++
if currentChar == '\n' {
p.Column = 0
p.Line++
}
p.Column++
}
// Copy position
func (p Position) Copy() Position { return p }
const (
TypeInt Type = "INT"
TypeFloat Type = "FLOAT"
TypePlus Type = "PLUS"
TypeMinus Type = "MINUS"
TypeMul Type = "MUL"
TypeDiv Type = "DIV"
TypeLP Type = "LP"
TypeRP Type = "RP"
)
// ERR_EOF ...
var ERR_EOF error = errors.New("EOF")
// Token ...
type Token struct {
Type Type
Value interface{}
}
// IToken ...
type IToken interface {
FToken() // should be a unique random name, just to use polymorphisme
}
// FToken ...
func (t Token) FToken() {}
// TokenPlus ...
type TokenPlus struct{ Token }
// NewTokenPlus ...
func NewTokenPlus() TokenPlus { return TokenPlus{Token{TypePlus, nil}} }
// Eval ...
func (t TokenPlus) Eval(left, right IExpression) float64 {
return left.Eval() + right.Eval()
}
// TokenMinus ...
type TokenMinus struct{ Token }
// NewTokenMinus ...
func NewTokenMinus() TokenMinus { return TokenMinus{Token{TypeMinus, nil}} }
// Eval ...
func (t TokenMinus) Eval(left, right IExpression) float64 {
return left.Eval() - right.Eval()
}
// TokenMul ...
type TokenMul struct{ Token }
// NewTokenMul ...
func NewTokenMul() TokenMul { return TokenMul{Token{TypeMul, nil}} }
// Eval ...
func (t TokenMul) Eval(left, right IExpression) float64 {
return left.Eval() * right.Eval()
}
// TokenDiv ...
type TokenDiv struct{ Token }
// NewTokenDiv ...
func NewTokenDiv() TokenDiv { return TokenDiv{Token{TypeDiv, nil}} }
// Eval ...
func (t TokenDiv) Eval(left, right IExpression) float64 {
// TODO: check div by zero
return left.Eval() / right.Eval()
}
// TokenLP ...
type TokenLP struct{ Token }
// NewTokenLP ...
func NewTokenLP() TokenLP { return TokenLP{Token{TypeLP, nil}} }
// TokenRP ...
type TokenRP struct{ Token }
// NewTokenRP ...
func NewTokenRP() TokenRP { return TokenRP{Token{TypeRP, nil}} }
// TokenInt ...
type TokenInt struct{ Token }
// NewTokenInt ...
func NewTokenInt(value int) TokenInt { return TokenInt{Token{TypeInt, value}} }
// TokenFloat ...
type TokenFloat struct{ Token }
// NewTokenFloat ...
func NewTokenFloat(value float64) TokenFloat { return TokenFloat{Token{TypeFloat, value}} }
// IExpression ...
type IExpression interface {
Eval() float64
}
// Eval ...
func (t TokenInt) Eval() float64 { return float64(t.Value.(int)) }
// Eval ...
func (t TokenFloat) Eval() float64 { return t.Value.(float64) }
// BinOpNode ...
type BinOpNode struct {
Left, Right IExpression
Op Operation
}
func (b BinOpNode) String() string {
return fmt.Sprintf("(%v,%v,%v)", b.Left, b.Op, b.Right)
}
// Eval ...
func (b BinOpNode) Eval() float64 {
return b.Op.Eval(b.Left, b.Right)
}
// Operation ...
type Operation interface {
Eval(left, right IExpression) float64
}
// String ...
func (t Token) String() string {
if t.Value == nil {
return string(t.Type)
}
if t.Type == TypeFloat {
return fmt.Sprintf("%v:%.3f", t.Type, t.Value)
}
return fmt.Sprintf("%v:%v", t.Type, t.Value)
}
// Lexer ...
type Lexer struct {
Text string
Pos Position
Current rune
}
// Next ...
func (l *Lexer) Next() bool {
l.Pos.Next(l.Current)
if l.Pos.Index < len(l.Text) {
l.Current = rune(l.Text[l.Pos.Index])
return true
}
l.Current = ' '
return false
}
// Tokens ...
type Tokens []IToken
// Add ...
func (t Tokens) Add(tokens ...IToken) Tokens {
return append(t, tokens...)
}
// MakeTokens ...
func (l *Lexer) MakeTokens() (Tokens, error) {
ret := Tokens{}
current := l.Current
switch current {
case ' ', '\t':
if !l.Next() {
return ret, nil
}
return l.MakeTokens()
case '+':
ret = ret.Add(NewTokenPlus())
case '-':
ret = ret.Add(NewTokenMinus())
case '*':
ret = ret.Add(NewTokenMul())
case '/':
ret = ret.Add(NewTokenDiv())
case '(':
ret = ret.Add(NewTokenLP())
case ')':
ret = ret.Add(NewTokenRP())
case '0', '1', '2', '3', '4', '5', '6', '7', '8', '9':
token := l.MakeNumber()
ret = ret.Add(token)
default:
return ret, fmt.Errorf("unknown token %q at file: %v, line: %v, col:% v", string(current), l.Pos.FileName, l.Pos.Line, l.Pos.Column)
}
if !l.Next() {
return ret, nil
}
tokens, err := l.MakeTokens()
if err != nil {
return ret, err
}
return ret.Add(tokens...), nil
}
func isDigit(r rune) bool {
switch r {
case '0', '1', '2', '3', '4', '5', '6', '7', '8', '9':
return true
}
return false
}
// MakeNumber ...
func (l *Lexer) MakeNumber() IToken {
dotCount := 0
numStr := ""
for {
if isDigit(l.Current) {
numStr += string(l.Current)
} else if l.Current == '.' && dotCount == 0 {
numStr += "."
dotCount++
} else {
break
}
l.Next()
}
if dotCount == 0 {
n, err := strconv.ParseInt(numStr, 10, 32)
if err != nil {
panic(err)
}
return NewTokenInt(int(n))
}
f, err := strconv.ParseFloat(numStr, 32)
if err != nil {
panic(err)
}
return NewTokenFloat(f)
}
// NewLexer ...
func NewLexer(fileName, text string) *Lexer {
return &Lexer{text, Position{-1, 0, -1, fileName, text}, ' '}
}
// NumberNode ...
type NumberNode struct{ Token }
// Parser ...
type Parser struct {
Tokens Tokens
TokenIndex int
CurrentToken IToken
}
// NewParser ...
func NewParser(tokens Tokens) *Parser {
p := &Parser{tokens, -1, Token{}}
p.Next()
return p
}
// Next ...
func (p *Parser) Next() bool {
p.TokenIndex++
if p.TokenIndex < len(p.Tokens) {
p.CurrentToken = p.Tokens[p.TokenIndex]
return true
}
return false
}
// Parse ...
func (p *Parser) Parse() IExpression {
return p.Expression()
}
// Factor ...
func (p *Parser) Factor() IExpression {
var node IExpression
switch token := p.CurrentToken.(type) {
case TokenFloat, TokenInt:
node = token.(IExpression)
}
p.Next()
return node
}
// Term ...
func (p *Parser) Term() IExpression {
left := p.Factor()
var op Operation
var binOp BinOpNode
switch token := p.CurrentToken.(type) {
case TokenDiv, TokenMul:
op = token.(Operation)
p.Next()
right := p.Factor()
binOp = BinOpNode{left, right, op}
}
if binOp.Op == nil {
return left
}
return binOp
}
// Expression ...
func (p *Parser) Expression() IExpression {
left := p.Term()
var op Operation
var binOp BinOpNode
switch token := p.CurrentToken.(type) {
case TokenPlus, TokenMinus:
op = token.(Operation)
p.Next()
right := p.Term()
binOp = BinOpNode{left, right, op}
}
if binOp.Op == nil {
return left
}
return binOp
}
func main() {
reader := bufio.NewReader(os.Stdin)
for {
fmt.Print("Basic > ")
l, _, err := reader.ReadLine()
if err != nil {
break
}
text := string(l)
lexer := NewLexer("stdin", text)
tokens, err := lexer.MakeTokens()
if err != nil {
log.Println("err:", err)
continue
}
parser := NewParser(tokens)
expr := parser.Parse()
fmt.Println(expr)
fmt.Println(tokens)
fmt.Println(expr.Eval())
}
}