-
Notifications
You must be signed in to change notification settings - Fork 0
/
sakura.go
404 lines (377 loc) · 8.52 KB
/
sakura.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
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
// sakura
package sakura
import (
"bufio"
"fmt"
"io"
"sakura/types"
"strconv"
"strings"
"unicode"
)
type Token struct {
token_type int
name string
value interface{}
}
type Value struct {
value_type int
value interface{}
}
type Exception struct {
msg string
}
func (e Exception) Error() string {
return e.msg
}
type source struct {
*bufio.Reader
buffer *Token
}
func (src *source) unget_token(token Token) {
src.buffer = &token
}
func (src *source) next_token() (tok Token) {
var token_type int = types.NOTYPE
var token []rune
// post 处理
defer func() {
if tok.token_type == types.NOTYPE {
tok.token_type = token_type
}
if tok.value == nil {
switch tok.token_type {
case types.NUMBER:
// 数值转换
if strings.Contains(tok.name, ".") {
tok.value, _ = strconv.ParseFloat(tok.name, 64)
} else {
tok.value, _ = strconv.ParseInt(tok.name, 10, 64)
}
case types.IDENTIFIER:
// 预定义标识符
switch tok.name {
case "true":
tok.token_type = types.BOOLEAN
tok.value = true
case "false":
tok.token_type = types.BOOLEAN
tok.value = false
}
default:
}
}
//fmt.Println(tok)
}()
// buffer 中有,直接返回
if src.buffer != nil {
tok = *src.buffer
src.buffer = nil
return tok
}
for {
ch, _, err := src.ReadRune()
if err != nil {
return tok
}
switch token_type {
case types.NOTYPE: // 无类型
switch ch {
case '\t', '\n', '\v', '\f', '\r', ' ': // 空白字符
case '(', ')', '{', '}', ';': // 分隔符
token_type = types.DELIMITER
tok.name = string(append(token, ch))
return tok
case '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '.':
token_type = types.NUMBER
token = append(token, ch)
case '"': // ",字符串
token_type = types.CHARS
case '+', '-', '*', '/', '%', '^': // + - * / %
token_type = types.OPERATOR
tok.name = string(append(token, ch))
return tok
case '&': // &, && 操作符
ch, _, _ := src.ReadRune()
switch ch {
case '&':
tok.name = "&&"
default:
src.UnreadRune()
tok.name = "&"
}
token_type = types.OPERATOR
return tok
case '|': // |, || 操作符
ch, _, _ := src.ReadRune()
switch ch {
case '|':
tok.name = "||"
default:
src.UnreadRune()
tok.name = "|"
}
token_type = types.OPERATOR
return tok
case '!': // !, != 操作符
ch, _, _ := src.ReadRune()
switch ch {
case '=':
tok.name = "!="
default:
src.UnreadRune()
tok.name = "!"
}
token_type = types.OPERATOR
return tok
case '=': // =, == 操作符
ch, _, _ := src.ReadRune()
switch ch {
case '=':
tok.name = "=="
default:
src.UnreadRune()
tok.name = "="
}
token_type = types.OPERATOR
return tok
case '>': // >, >=, >> 操作符
ch, _, _ := src.ReadRune()
switch ch {
case '=':
tok.name = ">="
case '>':
tok.name = ">>"
default:
src.UnreadRune()
tok.name = ">"
}
token_type = types.OPERATOR
return tok
case '<': // <, <=, << 操作符
ch, _, _ := src.ReadRune()
switch ch {
case '=':
tok.name = "<="
case '<':
tok.name = "<<"
default:
src.UnreadRune()
tok.name = "<"
}
token_type = types.OPERATOR
return tok
default:
if unicode.IsLetter(ch) {
token_type = types.IDENTIFIER
token = append(token, ch)
} else {
panic("some special char encountered.")
}
}
case types.CHARS:
switch ch {
case '"':
tok.name = string(token)
return tok
default:
token = append(token, ch)
}
case types.NUMBER:
switch ch {
case '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '.':
token = append(token, ch)
default:
src.UnreadRune() // 回退一个字符
tok.name = string(token)
return tok
}
case types.IDENTIFIER:
if unicode.IsLetter(ch) || unicode.IsDigit(ch) {
token = append(token, ch)
} else {
src.UnreadRune() // 回退一个字符
tok.name = string(token)
return tok
}
}
}
}
var src *source // input source
var symbol_table map[string]*Value = make(map[string]*Value, 20)
func Run(reader io.Reader) {
src = &source{bufio.NewReader(reader), nil} // source
for {
token := src.next_token()
if token.token_type == types.NOTYPE {
break
}
switch token.name {
case "quit":
return
case "help":
help()
continue
}
src.unget_token(token)
statement()
}
}
func statement() {
token := src.next_token()
if token.token_type == types.NOTYPE {
return
}
switch string(token.name) {
case "let":
err := declaration()
if err != nil {
fmt.Println("error encounter:", err.Error())
}
// fmt.Println("statement:", symbol_table)
case "if":
condition := expression(expression_min_level).value
if _, ok := condition.(bool); !ok {
panic("if conditon must be boolean expression.")
}
yes := condition.(bool)
token = src.next_token()
if token.name != "{" {
panic("if expression, { expected.")
}
for {
token = src.next_token()
if token.name == "}" {
src.unget_token(token)
break
} else {
src.unget_token(token)
}
value := expression(expression_min_level)
if yes {
fmt.Println(value.value)
}
token = src.next_token()
if token.name != ";" {
panic("if expression block, ; expected.")
}
}
token = src.next_token()
if token.name != "}" {
panic("if expression, } expected.")
}
case "for":
default:
src.unget_token(token)
value := expression(expression_min_level)
fmt.Println(value.value)
}
token = src.next_token()
if token.token_type != types.DELIMITER || token.name != ";" {
// fmt.Println("statement: expect ; ")
src.unget_token(token)
}
}
// 常量定义类似于 abc = 3.14
func declaration() error {
var err *Exception
key := src.next_token()
if key.token_type != types.IDENTIFIER {
err = &Exception{"declare: name expected"}
}
/*
if symbol_table[key.name] != nil {
err = &Exception{"declare: name declare twice"}
}
*/
equal := src.next_token()
if equal.token_type != types.IDENTIFIER && equal.name != "=" {
return Exception{"declare: = expected"}
}
value := expression(expression_min_level)
if err != nil {
return *err
}
symbol_table[key.name] = &value
return nil
}
// Expression = Term | Term + Term | Term - Term
var op_levels = map[int][]string{
1: []string{"||"},
2: []string{"&&"},
3: []string{"==", "!=", ">", ">=", "<", "<="},
4: []string{"+", "-", "|", "^"},
5: []string{"*", "/", "%", "<<", ">>", "&"},
}
var (
expression_max_level = 5
expression_min_level = 1
)
func expression(level int) (value Value) {
var target func(int) Value
if level < expression_max_level {
target = expression
} else {
target = primary
}
left := target(level + 1)
// fmt.Println("----", left.value) // todo
var ops []string = op_levels[level]
NEXT:
for {
op := src.next_token()
for _, op_item := range ops {
// fmt.Println("----", op_item) // todo
if op.name != op_item {
continue
}
right := target(level + 1)
// fmt.Println("----", right.value) // todo
sum := types.Op_values(op.name, left.value, right.value)
// fmt.Println("----", sum) // todo
left.value = sum
continue NEXT
}
src.unget_token(op)
return left
}
}
func primary(level int) (value Value) {
token := src.next_token()
// fmt.Println("------------", token.name)
switch token.token_type {
// 标识符
case types.IDENTIFIER:
value = *symbol_table[token.name]
// 数值
case types.NUMBER:
switch token.value.(type) {
case uint64:
value.value_type = types.INT_64
case float64:
value.value_type = types.FLOAT_64
}
value.value = token.value
// 布尔
case types.BOOLEAN:
value.value_type = types.BOOL
value.value = token.value
// 字符串
case types.CHARS:
value.value_type = types.STRING
value.value = token.name
default:
switch token.name {
case "+", "-", "!", "^":
value = primary(level)
value.value = types.Op_values(token.name, value.value, nil)
case "(":
value = expression(expression_min_level)
token = src.next_token()
if token.name != ")" {
panic(") expected")
}
}
}
return value
}