aboutsummaryrefslogtreecommitdiff
path: root/interpreter/interpreter.go
blob: 8dd0d00ebec2c3ac90f24736dd89a005202c25e8 (plain)
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
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
package interpreter

import (
	"fmt"
	"strings"

	"git.usebox.net/micro-lang/ast"
	"git.usebox.net/micro-lang/errors"
	"git.usebox.net/micro-lang/tokens"
)

type Var struct {
	Value any
	Loc   tokens.Location
}

type Env struct {
	env    map[string]Var
	parent *Env
}

func NewEnv(parent *Env) *Env {
	return &Env{make(map[string]Var), parent}
}

func (e *Env) Get(key string, local bool) (Var, bool) {
	p := e
	for {
		if v, ok := p.env[key]; ok {
			return v, true
		}

		if !local && p.parent != nil {
			p = p.parent
			continue
		}

		return Var{}, false
	}
}

func (e *Env) GetArray(key string, local bool) ([]any, bool) {
	v, ok := e.Get(key, local)
	if !ok {
		return nil, false
	}
	arr, ok := v.Value.([]any)
	return arr, ok
}

// Set will create a new enviroment if this new value shadows an existing one.
func (e *Env) Set(key string, value Var) *Env {
	p := e
	if _, ok := e.Get(key, false); ok {
		p = NewEnv(e)
	}
	p.env[key] = value
	return p
}

func (e *Env) Update(key string, value any) error {
	p := e
	for {
		if v, ok := p.env[key]; ok {
			v.Value = value
			p.env[key] = v
			return nil
		}

		if p.parent != nil {
			p = p.parent
			continue
		}

		// should not happen
		return fmt.Errorf("variable not found '%s'", key)
	}
}

func (e *Env) string(pad string) string {
	b := strings.Builder{}

	b.WriteString(fmt.Sprintf("%senv {\n", pad))
	for k, v := range e.env {
		b.WriteString(fmt.Sprintf("%s%s = %v\n", pad+"  ", k, v))
	}
	if e.parent != nil {
		b.WriteString(e.parent.string(pad + "  "))
	}
	b.WriteString(fmt.Sprintf("%s}", pad))

	if pad != "" {
		b.WriteRune('\n')
	}

	return b.String()
}

func (e Env) String() string {
	return e.string("")
}

func (e *Env) Copy() *Env {
	ne := NewEnv(e.parent)
	for k, v := range e.env {
		val := Var{Value: v.Value, Loc: v.Loc}
		// FIXME: structs
		switch v := val.Value.(type) {
		// update the closures to the new environment
		case Function:
			v.closure = ne
			val.Value = v
		// copy the array
		case []any:
			arr := make([]any, len(v))
			copy(arr, v)
			val.Value = arr
		}
		ne.env[k] = val
	}

	return ne
}

type Struct struct {
	name string
	env  *Env
	inst bool
}

func (s Struct) String() string {
	if s.inst {
		return fmt.Sprintf("<struct %s>", s.name)
	} else {
		return fmt.Sprintf("struct %s", s.name)
	}
}

func (s Struct) Instance() Struct {
	return Struct{name: s.name, env: s.env.Copy(), inst: true}
}

type PanicJumpType int

const (
	PanicJumpReturn PanicJumpType = iota
	PanicJumpTailCall
	PanicJumpContinue
	PanicJumpBreak
)

type PanicJump struct {
	typ   PanicJumpType
	value any
	loc   tokens.Location
}

type Interpreter struct {
	env *Env
	// location of the last node evaluated
	last   tokens.Location
	fError bool
}

func NewInterpreter() Interpreter {
	global := NewEnv(nil)
	for k, v := range builtInFuncs {
		// not shadowing any value
		global.Set(k, Var{Value: v})
	}
	return Interpreter{env: global}
}

func (i *Interpreter) Interp(expr any) (val any, err error) {
	val, err = i.evaluate(expr)
	if err != nil {
		return nil, err
	}
	return val, nil
}

func (i *Interpreter) isTrue(expr any) bool {
	switch v := expr.(type) {
	case ast.Number:
		return v != 0
	case string:
		return v != ""
	case bool:
		return v
	case Function, Callable:
		return true
	default:
		return false
	}
}

func (i *Interpreter) unaryNumeric(op tokens.Token, right any) (ast.Number, error) {
	if vr, ok := right.(ast.Number); ok {
		return vr, nil
	}

	// shouldn't happen
	return 0, errors.NewError(errors.Unexpected, op.Loc, "invalid operand")
}

func (i *Interpreter) binaryNumeric(left any, op tokens.Token, right any) (ast.Number, ast.Number, error) {
	vl, okl := left.(ast.Number)
	vr, okr := right.(ast.Number)
	if okl && okr {
		return vl, vr, nil
	}

	// shouldn't happen
	return 0, 0, errors.NewError(errors.Unexpected, op.Loc, "invalid operands")
}

func (i *Interpreter) evaluate(expr any) (any, error) {
	switch v := expr.(type) {
	case ast.Var:
		i.last = v.Name.Loc
		return i.declare(v)
	case ast.Variable:
		i.last = v.Name.Loc
		return i.variable(v)
	case ast.Assign:
		return i.assignment(v)
	case ast.Binary:
		i.last = v.Op.Loc
		return i.binaryExpr(v)
	case ast.Unary:
		i.last = v.Op.Loc
		return i.unaryExpr(v)
	case ast.Literal:
		i.last = v.Value.Loc
		return i.literalExpr(v)
	case ast.Group:
		return i.groupExpr(v)
	case ast.Block:
		return i.block(v)
	case ast.IfElse:
		return i.ifElse(v)
	case ast.For:
		return i.forStmt(v)
	case ast.ForIn:
		return i.forInStmt(v)
	case ast.Call:
		i.last = v.Loc
		return i.call(v)
	case ast.Func:
		i.last = v.Name.Loc
		return i.fun(v)
	case ast.Return:
		return i.returnStmt(v)
	case ast.Continue:
		return i.continueStmt(v)
	case ast.Break:
		return i.breakStmt(v)
	case ast.ExprList:
		return i.exprList(v)
	case ast.Struct:
		return i.strct(v)
	case ast.GetExpr:
		return i.getExpr(v)
	default:
		// XXX
		return nil, errors.Error{
			Code:    errors.Unimplemented,
			Message: fmt.Sprintf("evaluation unimplemented: %s", v),
		}
	}
}

func (i *Interpreter) defVal(typ ast.Type) any {
	switch typ.Value.Id {
	case tokens.TNumber:
		return ast.Number(0)
	case tokens.TBool:
		return false
	case tokens.TString:
		return ""
	case tokens.TArray:
		arr := make([]any, *typ.Len)
		for n := range arr {
			arr[n] = i.defVal(*typ.Ret)
		}
		return arr
	case tokens.TStruct:
		val, _ := i.env.Get(typ.Value.Value, false)
		strct := val.Value.(Struct)
		return strct.Instance()
	default:
		return nil
	}
}

func (i *Interpreter) declare(v ast.Var) (any, error) {
	var initv any
	var err error

	if v.Type.Value.Id == tokens.TArray && *v.Type.Len <= 0 {
		return nil, errors.NewError(errors.InvalidLength, v.Name.Loc, "invalid array length")
	}

	if v.Initv != nil {
		initv, err = i.evaluate(v.Initv)
		if err != nil {
			return 0, err
		}

		i.env = i.env.Set(v.Name.Value, Var{initv, v.Name.Loc})
		return initv, nil
	} else {
		// defaults
		initv = i.defVal(v.Type)
		value := Var{initv, v.Name.Loc}
		i.env = i.env.Set(v.Name.Value, value)
		return initv, nil
	}
}

func (i *Interpreter) variable(v ast.Variable) (any, error) {
	if val, ok := i.env.Get(v.Name.Value, false); ok {
		value := val.Value
		if v.Index != nil {
			index, err := i.evaluate(v.Index)
			if err != nil {
				return nil, err
			}
			idx, ok := index.(ast.Number)
			if !ok || idx < 0 || int(idx) >= *v.Type.Len {
				return nil, errors.NewError(errors.InvalidIndex, v.Name.Loc, "invalid index for", v.Type.String())
			}
			arr, ok := i.env.GetArray(v.Name.Value, false)
			if !ok {
				return nil, errors.NewError(errors.Unexpected, v.Name.Loc, "expected array")
			}
			value = arr[idx]
		}
		return value, nil
	}
	// shouldn't happen
	return nil, errors.NewError(errors.Unexpected, v.Name.Loc, "undefined variable", v.String())
}

func (i *Interpreter) assignment(v ast.Assign) (any, error) {
	env := i.env
	vLeft := v.Left

	if getExpr, ok := v.Left.(ast.GetExpr); ok {
		obj, err := i.evaluate(getExpr.Object)
		if err != nil {
			return nil, err
		}
		strct := obj.(Struct)
		env = strct.env
		vLeft = getExpr.Expr
	}

	left, ok := vLeft.(ast.Variable)
	if !ok {
		return nil, errors.NewError(errors.Unexpected, v.Loc, "expected variable in assignation")
	}
	right, err := i.evaluate(v.Right)
	if err != nil {
		return nil, err
	}

	if left.Type.Value.Id == tokens.TArray && v.Right.Resolve().Value.Id != tokens.TArray {
		if left.Index == nil {
			return nil, errors.NewError(errors.Unexpected, v.Loc, "expected index in assignation")
		}
		index, err := i.evaluate(left.Index)
		if err != nil {
			return nil, err
		}
		idx, ok := index.(ast.Number)
		if !ok || idx < 0 || int(idx) >= *left.Type.Len {
			return nil, errors.NewError(errors.InvalidIndex, v.Loc, "invalid index for", left.Type.String())
		}
		arr, ok := i.env.GetArray(left.Name.Value, false)
		if !ok {
			return nil, errors.NewError(errors.Unexpected, v.Loc, "expected array")
		}
		arr[idx] = right
		right = arr
	}

	err = env.Update(left.Name.Value, right)
	if err != nil {
		return nil, errors.NewError(errors.InvalidValue, left.Name.Loc, err.Error())
	}
	return right, nil
}

func (i *Interpreter) binaryExpr(expr ast.Binary) (any, error) {
	// first lazy operators
	if expr.Op.Id == tokens.And || expr.Op.Id == tokens.Or {
		left, err := i.evaluate(expr.Left)
		if err != nil {
			return nil, err
		}
		if expr.Op.Id == tokens.And {
			if !i.isTrue(left) {
				return false, nil
			}
		} else {
			if i.isTrue(left) {
				return true, nil
			}
		}
		right, err := i.evaluate(expr.Right)
		if err != nil {
			return nil, err
		}
		return i.isTrue(right), nil
	}

	left, err := i.evaluate(expr.Left)
	if err != nil {
		return nil, err
	}
	right, err := i.evaluate(expr.Right)
	if err != nil {
		return nil, err
	}

	// equality compares two values as long as they are the same type
	switch expr.Op.Id {
	case tokens.Ne:
		return right != left, nil
	case tokens.Eq:
		return right == left, nil
	}

	vl, vr, err := i.binaryNumeric(left, expr.Op, right)
	if err != nil {
		return 0, err
	}

	switch expr.Op.Id {
	case tokens.Sub:
		return vl - vr, nil
	case tokens.Add:
		return vl + vr, nil
	case tokens.Mul:
		return vl * vr, nil
	case tokens.Div:
		if vr == 0 {
			return nil, errors.NewError(errors.InvalidOperation, expr.Op.Loc, "invalid operation: division by zero")
		}
		return vl / vr, nil
	case tokens.Mod:
		if vr == 0 {
			return nil, errors.NewError(errors.InvalidOperation, expr.Op.Loc, "invalid operation: division by zero")
		}
		return vl % vr, nil
	case tokens.BitAnd:
		return vl & vr, nil
	case tokens.BitShl:
		return vl << vr, nil
	case tokens.BitShr:
		return vl >> vr, nil
	case tokens.BitOr:
		return vl | vr, nil
	case tokens.BitXor:
		return vl ^ vr, nil
	case tokens.Lt:
		return vl < vr, nil
	case tokens.Le:
		return vl <= vr, nil
	case tokens.Gt:
		return vl > vr, nil
	case tokens.Ge:
		return vl >= vr, nil
	default:
		return nil, errors.NewError(errors.Unimplemented, expr.Op.Loc, "unimplemented operator", expr.Op.Value)
	}

}

func (i *Interpreter) unaryExpr(expr ast.Unary) (any, error) {
	if expr.Op.Id == tokens.TestE {
		i.fError = false
	}

	right, err := i.evaluate(expr.Right)
	if err != nil {
		return nil, err
	}

	switch expr.Op.Id {
	case tokens.TestE:
		return i.fError, nil
	case tokens.Sub:
		vr, err := i.unaryNumeric(expr.Op, right)
		if err != nil {
			return nil, err
		}
		return -vr, nil
	case tokens.Neg:
		vr, err := i.unaryNumeric(expr.Op, right)
		if err != nil {
			return nil, err
		}
		return ^vr, nil
	case tokens.Not:
		vr := i.isTrue(right)
		return !vr, nil
	default:
		return nil, errors.NewError(errors.Unimplemented, expr.Op.Loc, "unimplemented operator", expr.Op.Value)
	}
}

func (i *Interpreter) literalExpr(expr ast.Literal) (any, error) {
	switch expr.Value.Id {
	case tokens.Number:
		return expr.Numval, nil
	case tokens.String:
		return expr.Value.Value, nil
	case tokens.True:
		return true, nil
	case tokens.False:
		return false, nil
	case tokens.None:
		return nil, nil
	default:
		return nil, errors.NewError(errors.Unimplemented, expr.Value.Loc, "unimplemented type", expr.Value.String())
	}
}

func (i *Interpreter) groupExpr(expr ast.Group) (any, error) {
	return i.evaluate(expr.Expr)
}

func (i *Interpreter) blockNoEnv(block ast.Block) (any, error) {
	var v any
	var err error
	for _, expr := range block.Stmts {
		v, err = i.evaluate(expr)
		if err != nil {
			return nil, err
		}
	}
	return v, nil
}

func (i *Interpreter) block(block ast.Block) (any, error) {
	pEnv := i.env
	i.env = NewEnv(pEnv)
	defer func() {
		i.env = pEnv
	}()

	return i.blockNoEnv(block)
}

func (i *Interpreter) ifElse(ifElse ast.IfElse) (any, error) {
	cond, err := i.evaluate(ifElse.Cond)
	if err != nil {
		return nil, err
	}
	if i.isTrue(cond) {
		return i.evaluate(ifElse.True)
	} else {
		return i.evaluate(ifElse.False)
	}
}

func (i *Interpreter) forEval(fcond func() (bool, error), stmts ast.Expr) (any, error) {
	var last any

	for {
		end, result, err := func() (end bool, result any, err error) {
			// handle "interruptions"
			defer func() {
				if r := recover(); r != nil {
					if val, ok := r.(*PanicJump); ok {
						if val.typ == PanicJumpContinue {
							end = false
							return
						}
						if val.typ == PanicJumpBreak {
							end = true
							result = last
							err = nil
							return
						}
					}
					panic(r)
				}
			}()
			for {
				if fcond != nil {
					cond, err := fcond()
					if err != nil {
						return true, nil, err
					}
					if !cond {
						return true, last, nil
					}
				}

				last, err = i.evaluate(stmts)
				if err != nil {
					return true, nil, err
				}
			}
		}()
		if end {
			return result, err
		}
	}
}

func (i *Interpreter) forStmt(forStmt ast.For) (any, error) {
	if forStmt.Cond == nil {
		return i.forEval(nil, forStmt.Stmts)
	} else {
		return i.forEval(func() (bool, error) {
			cond, err := i.evaluate(forStmt.Cond)
			if err != nil {
				return false, err
			}
			return i.isTrue(cond), nil
		}, forStmt.Stmts)
	}
}

func (i *Interpreter) forInStmt(forInStmt ast.ForIn) (any, error) {
	expr, err := i.evaluate(forInStmt.Expr)
	if err != nil {
		return nil, err
	}

	index := 0
	arr := expr.([]any)

	pEnv := i.env
	i.env = NewEnv(pEnv)
	defer func() {
		i.env = pEnv
	}()
	i.env = i.env.Set(forInStmt.Name.Value, Var{Loc: forInStmt.Name.Loc})

	return i.forEval(func() (bool, error) {
		if index == len(arr) {
			return false, nil
		}
		i.env.Update(forInStmt.Name.Value, arr[index])
		index++
		return true, nil
	}, forInStmt.Stmts)
}

func (i *Interpreter) evalArgs(name string, loc tokens.Location, params []ast.Type, args []ast.Expr) ([]any, error) {
	vals := make([]any, 0, 16)
	for _, a := range args {
		arg, err := i.evaluate(a)
		if err != nil {
			return nil, err
		}
		vals = append(vals, arg)
	}

	return vals, nil
}

func (i *Interpreter) call(call ast.Call) (result any, err error) {
	callee, err := i.evaluate(call.Callee)
	if err != nil {
		return nil, err
	}

	fun, ok := callee.(Callable)
	if !ok {
		return nil, errors.NewError(errors.NotCallable, call.Loc, "value is not callable")
	}

	args, err := i.evalArgs(fun.Name(), call.Loc, fun.Params(), call.Args)
	if err != nil {
		return nil, err
	}

	// handle return via panic call
	defer func() {
		if r := recover(); r != nil {
			if val, ok := r.(*PanicJump); ok && val.typ == PanicJumpReturn {
				result = val.value
				err = nil
			} else {
				// won't be handled here
				panic(r)
			}
		}
	}()

	_, err = fun.Call(i, args, call.Loc)
	if err != nil {
		e := errors.NewError(errors.CallError, call.Loc, "error calling", fun.Name()).(errors.Error)
		e.Err = err
		return nil, e
	}

	// clear return if there's no return value
	if fun.Ret() == nil {
		return nil, nil
	}

	return nil, errors.NewError(errors.NoReturn, i.last, "no return value in", fun.Name(), "expected", fun.Ret().String())
}

func (i *Interpreter) fun(v ast.Func) (any, error) {
	callable := Function{fun: v, closure: i.env}
	i.env = i.env.Set(v.Name.Value, Var{callable, v.Name.Loc})
	return nil, nil
}

func (i *Interpreter) strct(v ast.Struct) (any, error) {
	pEnv := i.env
	sEnv := NewEnv(pEnv)
	i.env = sEnv
	defer func() {
		i.env = pEnv
		strct := Struct{name: v.Name.Value, env: sEnv}
		i.env = i.env.Set(v.Name.Value, Var{Value: strct, Loc: v.Name.Loc})
	}()

	_, err := i.blockNoEnv(v.Body)
	if err != nil {
		return nil, err
	}

	return nil, nil
}

func (i *Interpreter) getExpr(v ast.GetExpr) (any, error) {
	obj, err := i.evaluate(v.Object)
	if err != nil {
		return nil, err
	}

	if val, ok := obj.(Struct); ok {
		name := v.Expr.(ast.Variable)
		if name.Index == nil {
			expr, _ := val.env.Get(name.Name.Value, true)
			return expr.Value, nil
		}

		arr, _ := val.env.GetArray(name.Name.Value, true)
		index, err := i.evaluate(name.Index)
		if err != nil {
			return nil, err
		}
		return arr[index.(ast.Number)], nil
	}

	// shouldn't happen
	return nil, errors.NewError(errors.Unimplemented, v.Resolve().Value.Loc, "unimplemented get-expr")
}

func (i *Interpreter) returnStmt(v ast.Return) (any, error) {
	var val any

	if v.Value != nil {
		// could be a tail call we could optimize
		if call, ok := v.Value.(ast.Call); ok {
			i.fError = v.Error
			panic(&PanicJump{typ: PanicJumpTailCall, value: call, loc: v.Loc})
		}

		var err error
		val, err = i.evaluate(v.Value)
		if err != nil {
			return nil, err
		}
	}

	i.fError = v.Error
	panic(&PanicJump{typ: PanicJumpReturn, value: val, loc: v.Loc})
}

func (i *Interpreter) continueStmt(v ast.Continue) (any, error) {
	panic(&PanicJump{typ: PanicJumpContinue, loc: v.Loc})
}

func (i *Interpreter) breakStmt(v ast.Break) (any, error) {
	panic(&PanicJump{typ: PanicJumpBreak, loc: v.Loc})
}

func (i *Interpreter) exprList(v ast.ExprList) (any, error) {
	// XXX: should we set last?
	vals := make([]any, len(v.Exprs))
	for n, expr := range v.Exprs {
		val, err := i.evaluate(expr)
		if err != nil {
			return nil, err
		}
		vals[n] = val
	}
	return vals, nil
}