forked from mattn/anko
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vmStmt.go
732 lines (652 loc) · 15.3 KB
/
vmStmt.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
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
package vm
import (
"context"
"fmt"
"reflect"
"github.com/gbl08ma/anko/ast"
"github.com/gbl08ma/anko/env"
"github.com/gbl08ma/anko/parser"
)
// Execute parses script and executes in the specified environment.
func Execute(env *env.Env, options *Options, script string) (interface{}, error) {
stmt, err := parser.ParseSrc(script)
if err != nil {
return nilValue, err
}
return RunContext(context.Background(), env, options, stmt)
}
// ExecuteContext parses script and executes in the specified environment with context.
func ExecuteContext(ctx context.Context, env *env.Env, options *Options, script string) (interface{}, error) {
stmt, err := parser.ParseSrc(script)
if err != nil {
return nilValue, err
}
return RunContext(ctx, env, options, stmt)
}
// Run executes statement in the specified environment.
func Run(env *env.Env, options *Options, stmt ast.Stmt) (interface{}, error) {
return RunContext(context.Background(), env, options, stmt)
}
// RunContext executes statement in the specified environment with context.
func RunContext(ctx context.Context, env *env.Env, options *Options, stmt ast.Stmt) (interface{}, error) {
runInfo := runInfoStruct{ctx: ctx, env: env, options: options, stmt: stmt, rv: nilValue}
if runInfo.options == nil {
runInfo.options = &Options{}
}
runInfo.runSingleStmt()
if runInfo.err == ErrReturn {
runInfo.err = nil
}
return runInfo.rv.Interface(), runInfo.err
}
// runSingleStmt executes statement in the specified environment with context.
func (runInfo *runInfoStruct) runSingleStmt() {
select {
case <-runInfo.ctx.Done():
runInfo.rv = nilValue
runInfo.err = ErrInterrupt
return
default:
}
switch stmt := runInfo.stmt.(type) {
// nil
case nil:
// StmtsStmt
case *ast.StmtsStmt:
for _, stmt := range stmt.Stmts {
switch stmt.(type) {
case *ast.BreakStmt:
runInfo.err = ErrBreak
return
case *ast.ContinueStmt:
runInfo.err = ErrContinue
return
case *ast.ReturnStmt:
runInfo.stmt = stmt
runInfo.runSingleStmt()
if runInfo.err != nil {
return
}
runInfo.err = ErrReturn
return
default:
runInfo.stmt = stmt
runInfo.runSingleStmt()
if runInfo.err != nil {
return
}
}
}
// ExprStmt
case *ast.ExprStmt:
runInfo.expr = stmt.Expr
runInfo.invokeExpr()
// VarStmt
case *ast.VarStmt:
// get right side expression values
rvs := make([]reflect.Value, len(stmt.Exprs))
var i int
for i, runInfo.expr = range stmt.Exprs {
runInfo.invokeExpr()
if runInfo.err != nil {
return
}
rvs[i] = runInfo.rv
}
if len(rvs) == 1 && len(stmt.Names) > 1 {
// only one right side value but many left side names
value := rvs[0]
if value.Kind() == reflect.Interface && !value.IsNil() {
value = value.Elem()
}
if (value.Kind() == reflect.Slice || value.Kind() == reflect.Array) && value.Len() > 0 {
// value is slice/array, add each value to left side names
for i := 0; i < value.Len() && i < len(stmt.Names); i++ {
runInfo.env.DefineValue(stmt.Names[i], value.Index(i))
}
// return last value of slice/array
runInfo.rv = value.Index(value.Len() - 1)
return
}
}
// define all names with right side values
for i = 0; i < len(rvs) && i < len(stmt.Names); i++ {
runInfo.env.DefineValue(stmt.Names[i], rvs[i])
}
// return last right side value
runInfo.rv = rvs[len(rvs)-1]
// LetsStmt
case *ast.LetsStmt:
// get right side expression values
rvs := make([]reflect.Value, len(stmt.RHSS))
var i int
for i, runInfo.expr = range stmt.RHSS {
runInfo.invokeExpr()
if runInfo.err != nil {
return
}
rvs[i] = runInfo.rv
}
if len(rvs) == 1 && len(stmt.LHSS) > 1 {
// only one right side value but many left side expressions
value := rvs[0]
if value.Kind() == reflect.Interface && !value.IsNil() {
value = value.Elem()
}
if (value.Kind() == reflect.Slice || value.Kind() == reflect.Array) && value.Len() > 0 {
// value is slice/array, add each value to left side expression
for i := 0; i < value.Len() && i < len(stmt.LHSS); i++ {
runInfo.rv = value.Index(i)
runInfo.expr = stmt.LHSS[i]
runInfo.invokeLetExpr()
if runInfo.err != nil {
return
}
}
// return last value of slice/array
runInfo.rv = value.Index(value.Len() - 1)
return
}
}
// invoke all left side expressions with right side values
for i = 0; i < len(rvs) && i < len(stmt.LHSS); i++ {
value := rvs[i]
if value.Kind() == reflect.Interface && !value.IsNil() {
value = value.Elem()
}
runInfo.rv = value
runInfo.expr = stmt.LHSS[i]
runInfo.invokeLetExpr()
if runInfo.err != nil {
return
}
}
// return last right side value
runInfo.rv = rvs[len(rvs)-1]
// LetMapItemStmt
case *ast.LetMapItemStmt:
runInfo.expr = stmt.RHS
runInfo.invokeExpr()
if runInfo.err != nil {
return
}
var rvs []reflect.Value
if isNil(runInfo.rv) {
rvs = []reflect.Value{nilValue, falseValue}
} else {
rvs = []reflect.Value{runInfo.rv, trueValue}
}
var i int
for i, runInfo.expr = range stmt.LHSS {
runInfo.rv = rvs[i]
if runInfo.rv.Kind() == reflect.Interface && !runInfo.rv.IsNil() {
runInfo.rv = runInfo.rv.Elem()
}
runInfo.invokeLetExpr()
if runInfo.err != nil {
return
}
}
runInfo.rv = rvs[0]
// IfStmt
case *ast.IfStmt:
// if
runInfo.expr = stmt.If
runInfo.invokeExpr()
if runInfo.err != nil {
return
}
env := runInfo.env
if toBool(runInfo.rv) {
// then
runInfo.rv = nilValue
runInfo.stmt = stmt.Then
runInfo.env = env.NewEnv()
runInfo.runSingleStmt()
runInfo.env = env
return
}
for _, statement := range stmt.ElseIf {
elseIf := statement.(*ast.IfStmt)
// else if - if
runInfo.env = env.NewEnv()
runInfo.expr = elseIf.If
runInfo.invokeExpr()
if runInfo.err != nil {
runInfo.env = env
return
}
if !toBool(runInfo.rv) {
continue
}
// else if - then
runInfo.rv = nilValue
runInfo.stmt = elseIf.Then
runInfo.env = env.NewEnv()
runInfo.runSingleStmt()
runInfo.env = env
return
}
if stmt.Else != nil {
// else
runInfo.rv = nilValue
runInfo.stmt = stmt.Else
runInfo.env = env.NewEnv()
runInfo.runSingleStmt()
}
runInfo.env = env
// TryStmt
case *ast.TryStmt:
// only the try statement will ignore any error except ErrInterrupt
// all other parts will return the error
env := runInfo.env
runInfo.env = env.NewEnv()
runInfo.stmt = stmt.Try
runInfo.runSingleStmt()
if runInfo.err != nil {
if runInfo.err == ErrInterrupt {
runInfo.env = env
return
}
// Catch
runInfo.stmt = stmt.Catch
if stmt.Var != "" {
runInfo.env.DefineValue(stmt.Var, reflect.ValueOf(runInfo.err))
}
runInfo.err = nil
runInfo.runSingleStmt()
if runInfo.err != nil {
runInfo.env = env
return
}
}
if stmt.Finally != nil {
// Finally
runInfo.stmt = stmt.Finally
runInfo.runSingleStmt()
}
runInfo.env = env
// LoopStmt
case *ast.LoopStmt:
env := runInfo.env
runInfo.env = env.NewEnv()
for {
select {
case <-runInfo.ctx.Done():
runInfo.err = ErrInterrupt
runInfo.rv = nilValue
runInfo.env = env
return
default:
}
if stmt.Expr != nil {
runInfo.expr = stmt.Expr
runInfo.invokeExpr()
if runInfo.err != nil {
break
}
if !toBool(runInfo.rv) {
break
}
}
runInfo.stmt = stmt.Stmt
runInfo.runSingleStmt()
if runInfo.err != nil {
if runInfo.err == ErrContinue {
runInfo.err = nil
continue
}
if runInfo.err == ErrReturn {
runInfo.env = env
return
}
if runInfo.err == ErrBreak {
runInfo.err = nil
}
break
}
}
runInfo.rv = nilValue
runInfo.env = env
// ForStmt
case *ast.ForStmt:
runInfo.expr = stmt.Value
runInfo.invokeExpr()
value := runInfo.rv
if runInfo.err != nil {
return
}
if value.Kind() == reflect.Interface && !value.IsNil() {
value = value.Elem()
}
env := runInfo.env
runInfo.env = env.NewEnv()
switch value.Kind() {
case reflect.Slice, reflect.Array:
for i := 0; i < value.Len(); i++ {
select {
case <-runInfo.ctx.Done():
runInfo.err = ErrInterrupt
runInfo.rv = nilValue
runInfo.env = env
return
default:
}
iv := value.Index(i)
if iv.Kind() == reflect.Interface && !iv.IsNil() {
iv = iv.Elem()
}
if iv.Kind() == reflect.Ptr {
iv = iv.Elem()
}
runInfo.env.DefineValue(stmt.Vars[0], iv)
runInfo.stmt = stmt.Stmt
runInfo.runSingleStmt()
if runInfo.err != nil {
if runInfo.err == ErrContinue {
runInfo.err = nil
continue
}
if runInfo.err == ErrReturn {
runInfo.env = env
return
}
if runInfo.err == ErrBreak {
runInfo.err = nil
}
break
}
}
runInfo.rv = nilValue
runInfo.env = env
case reflect.Map:
keys := value.MapKeys()
for i := 0; i < len(keys); i++ {
select {
case <-runInfo.ctx.Done():
runInfo.err = ErrInterrupt
runInfo.rv = nilValue
runInfo.env = env
return
default:
}
runInfo.env.DefineValue(stmt.Vars[0], keys[i])
if len(stmt.Vars) > 1 {
runInfo.env.DefineValue(stmt.Vars[1], value.MapIndex(keys[i]))
}
runInfo.stmt = stmt.Stmt
runInfo.runSingleStmt()
if runInfo.err != nil {
if runInfo.err == ErrContinue {
runInfo.err = nil
continue
}
if runInfo.err == ErrReturn {
runInfo.env = env
return
}
if runInfo.err == ErrBreak {
runInfo.err = nil
}
break
}
}
runInfo.rv = nilValue
runInfo.env = env
case reflect.Chan:
var chosen int
var ok bool
for {
cases := []reflect.SelectCase{{
Dir: reflect.SelectRecv,
Chan: reflect.ValueOf(runInfo.ctx.Done()),
}, {
Dir: reflect.SelectRecv,
Chan: value,
}}
chosen, runInfo.rv, ok = reflect.Select(cases)
if chosen == 0 {
runInfo.err = ErrInterrupt
runInfo.rv = nilValue
break
}
if !ok {
break
}
if runInfo.rv.Kind() == reflect.Interface && !runInfo.rv.IsNil() {
runInfo.rv = runInfo.rv.Elem()
}
if runInfo.rv.Kind() == reflect.Ptr {
runInfo.rv = runInfo.rv.Elem()
}
runInfo.env.DefineValue(stmt.Vars[0], runInfo.rv)
runInfo.stmt = stmt.Stmt
runInfo.runSingleStmt()
if runInfo.err != nil {
if runInfo.err == ErrContinue {
runInfo.err = nil
continue
}
if runInfo.err == ErrReturn {
runInfo.env = env
return
}
if runInfo.err == ErrBreak {
runInfo.err = nil
}
break
}
}
runInfo.rv = nilValue
runInfo.env = env
default:
runInfo.err = newStringError(stmt, "for cannot loop over type "+value.Kind().String())
runInfo.rv = nilValue
runInfo.env = env
}
// CForStmt
case *ast.CForStmt:
env := runInfo.env
runInfo.env = env.NewEnv()
if stmt.Stmt1 != nil {
runInfo.stmt = stmt.Stmt1
runInfo.runSingleStmt()
if runInfo.err != nil {
runInfo.env = env
return
}
}
for {
select {
case <-runInfo.ctx.Done():
runInfo.err = ErrInterrupt
runInfo.rv = nilValue
runInfo.env = env
return
default:
}
if stmt.Expr2 != nil {
runInfo.expr = stmt.Expr2
runInfo.invokeExpr()
if runInfo.err != nil {
break
}
if !toBool(runInfo.rv) {
break
}
}
runInfo.stmt = stmt.Stmt
runInfo.runSingleStmt()
if runInfo.err == ErrContinue {
runInfo.err = nil
}
if runInfo.err != nil {
if runInfo.err == ErrReturn {
runInfo.env = env
return
}
if runInfo.err == ErrBreak {
runInfo.err = nil
}
break
}
if stmt.Expr3 != nil {
runInfo.expr = stmt.Expr3
runInfo.invokeExpr()
if runInfo.err != nil {
break
}
}
}
runInfo.rv = nilValue
runInfo.env = env
// ReturnStmt
case *ast.ReturnStmt:
switch len(stmt.Exprs) {
case 0:
runInfo.rv = nilValue
return
case 1:
runInfo.expr = stmt.Exprs[0]
runInfo.invokeExpr()
return
}
rvs := make([]interface{}, len(stmt.Exprs))
var i int
for i, runInfo.expr = range stmt.Exprs {
runInfo.invokeExpr()
if runInfo.err != nil {
return
}
rvs[i] = runInfo.rv.Interface()
}
runInfo.rv = reflect.ValueOf(rvs)
// ThrowStmt
case *ast.ThrowStmt:
runInfo.expr = stmt.Expr
runInfo.invokeExpr()
if runInfo.err != nil {
return
}
runInfo.err = newStringError(stmt, fmt.Sprint(runInfo.rv.Interface()))
// ModuleStmt
case *ast.ModuleStmt:
e := runInfo.env
runInfo.env, runInfo.err = e.NewModule(stmt.Name)
if runInfo.err != nil {
return
}
runInfo.stmt = stmt.Stmt
runInfo.runSingleStmt()
runInfo.env = e
if runInfo.err != nil {
return
}
runInfo.rv = nilValue
// SwitchStmt
case *ast.SwitchStmt:
env := runInfo.env
runInfo.env = env.NewEnv()
runInfo.expr = stmt.Expr
runInfo.invokeExpr()
if runInfo.err != nil {
runInfo.env = env
return
}
value := runInfo.rv
for _, switchCaseStmt := range stmt.Cases {
caseStmt := switchCaseStmt.(*ast.SwitchCaseStmt)
for _, runInfo.expr = range caseStmt.Exprs {
runInfo.invokeExpr()
if runInfo.err != nil {
runInfo.env = env
return
}
if equal(runInfo.rv, value) {
runInfo.stmt = caseStmt.Stmt
runInfo.runSingleStmt()
runInfo.env = env
return
}
}
}
if stmt.Default == nil {
runInfo.rv = nilValue
} else {
runInfo.stmt = stmt.Default
runInfo.runSingleStmt()
}
runInfo.env = env
// GoroutineStmt
case *ast.GoroutineStmt:
runInfo.expr = stmt.Expr
runInfo.invokeExpr()
// DeleteStmt
case *ast.DeleteStmt:
runInfo.expr = stmt.Item
runInfo.invokeExpr()
if runInfo.err != nil {
return
}
item := runInfo.rv
if stmt.Key != nil {
runInfo.expr = stmt.Key
runInfo.invokeExpr()
if runInfo.err != nil {
return
}
}
if item.Kind() == reflect.Interface && !item.IsNil() {
item = item.Elem()
}
switch item.Kind() {
case reflect.String:
if stmt.Key != nil && runInfo.rv.Kind() == reflect.Bool && runInfo.rv.Bool() {
runInfo.env.DeleteGlobal(item.String())
runInfo.rv = nilValue
return
}
runInfo.env.Delete(item.String())
runInfo.rv = nilValue
case reflect.Map:
if stmt.Key == nil {
runInfo.err = newStringError(stmt, "second argument to delete cannot be nil for map")
runInfo.rv = nilValue
return
}
if item.IsNil() {
runInfo.rv = nilValue
return
}
runInfo.rv, runInfo.err = convertReflectValueToType(runInfo.rv, item.Type().Key())
if runInfo.err != nil {
runInfo.err = newStringError(stmt, "cannot use type "+item.Type().Key().String()+" as type "+runInfo.rv.Type().String()+" in delete")
runInfo.rv = nilValue
return
}
item.SetMapIndex(runInfo.rv, reflect.Value{})
runInfo.rv = nilValue
default:
runInfo.err = newStringError(stmt, "first argument to delete cannot be type "+item.Kind().String())
runInfo.rv = nilValue
}
// CloseStmt
case *ast.CloseStmt:
runInfo.expr = stmt.Expr
runInfo.invokeExpr()
if runInfo.err != nil {
return
}
if runInfo.rv.Kind() == reflect.Chan {
runInfo.rv.Close()
runInfo.rv = nilValue
return
}
runInfo.err = newStringError(stmt, "type cannot be "+runInfo.rv.Kind().String()+" for close")
runInfo.rv = nilValue
// default
default:
runInfo.err = newStringError(stmt, "unknown statement")
runInfo.rv = nilValue
}
}