5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-09-19 21:32:31 +00:00
matterbridge/vendor/github.com/d5/tengo/v2
2022-11-27 00:42:16 +01:00
..
parser Update dependencies (#1851) 2022-06-25 00:36:16 +02:00
stdlib Update dependencies and vendor (#1761) 2022-03-12 19:41:07 +01:00
token Update to tengo v2 (#976) 2020-01-09 21:52:19 +01:00
.gitignore Update to tengo v2 (#976) 2020-01-09 21:52:19 +01:00
.goreleaser.yml Update vendor d5/tengo (#1066) 2020-03-28 23:41:35 +01:00
builtins.go Update vendor (#1414) 2021-03-20 22:40:23 +01:00
bytecode.go Update dependencies / vendor (#1146) 2020-05-24 00:06:21 +02:00
compiler.go Update dependencies and fix whatsmeow API changes (#1887) 2022-09-05 21:00:54 +02:00
doc.go Update to tengo v2 (#976) 2020-01-09 21:52:19 +01:00
errors.go Update vendor (#1414) 2021-03-20 22:40:23 +01:00
eval.go Update vendor (#1560) 2021-07-31 18:27:55 +02:00
formatter.go Update to tengo v2 (#976) 2020-01-09 21:52:19 +01:00
instructions.go Update to tengo v2 (#976) 2020-01-09 21:52:19 +01:00
iterator.go Update to tengo v2 (#976) 2020-01-09 21:52:19 +01:00
LICENSE Update to tengo v2 (#976) 2020-01-09 21:52:19 +01:00
Makefile Update dependencies / vendor (#1146) 2020-05-24 00:06:21 +02:00
modules.go Update dependencies/vendor (#1659) 2021-12-12 00:05:15 +01:00
objects.go Update dependencies and vendor (#1761) 2022-03-12 19:41:07 +01:00
README.md Update dependencies and go1.18 (#1873) 2022-08-13 16:14:26 +02:00
script.go Update dependencies (#1929) 2022-11-27 00:42:16 +01:00
symbol_table.go Update vendor (#1257) 2020-10-11 23:07:00 +02:00
tengo.go Update dependencies/vendor (#1659) 2021-12-12 00:05:15 +01:00
variable.go Update to tengo v2 (#976) 2020-01-09 21:52:19 +01:00
vm.go Update dependencies (#1929) 2022-11-27 00:42:16 +01:00

The Tengo Language

GoDoc test Go Report Card

Tengo is a small, dynamic, fast, secure script language for Go.

Tengo is fast and secure because it's compiled/executed as bytecode on stack-based VM that's written in native Go.

/* The Tengo Language */
fmt := import("fmt")

each := func(seq, fn) {
    for x in seq { fn(x) }
}

sum := func(init, seq) {
    each(seq, func(x) { init += x })
    return init
}

fmt.println(sum(0, [1, 2, 3]))   // "6"
fmt.println(sum("", [1, 2, 3]))  // "123"

Test this Tengo code in the Tengo Playground

Features

Benchmark

fib(35) fibt(35) Language (Type)
Tengo 2,315ms 3ms Tengo (VM)
go-lua 4,028ms 3ms Lua (VM)
GopherLua 4,409ms 3ms Lua (VM)
goja 5,194ms 4ms JavaScript (VM)
starlark-go 6,954ms 3ms Starlark (Interpreter)
gpython 11,324ms 4ms Python (Interpreter)
Yaegi 11,715ms 10ms Yaegi (Interpreter)
otto 48,539ms 6ms JavaScript (Interpreter)
Anko 52,821ms 6ms Anko (Interpreter)
- - - -
Go 47ms 2ms Go (Native)
Lua 756ms 2ms Lua (Native)
Python 1,907ms 14ms Python2 (Native)

* fib(35): Fibonacci(35)
* fibt(35): tail-call version of Fibonacci(35)
* Go does not read the source code from file, while all other cases do
* See here for commands/codes used

Quick Start

go get github.com/d5/tengo/v2

A simple Go example code that compiles/runs Tengo script code with some input/output values:

package main

import (
	"context"
	"fmt"

	"github.com/d5/tengo/v2"
)

func main() {
	// create a new Script instance
	script := tengo.NewScript([]byte(
`each := func(seq, fn) {
    for x in seq { fn(x) }
}

sum := 0
mul := 1
each([a, b, c, d], func(x) {
    sum += x
    mul *= x
})`))

	// set values
	_ = script.Add("a", 1)
	_ = script.Add("b", 9)
	_ = script.Add("c", 8)
	_ = script.Add("d", 4)

	// run the script
	compiled, err := script.RunContext(context.Background())
	if err != nil {
		panic(err)
	}

	// retrieve values
	sum := compiled.Get("sum")
	mul := compiled.Get("mul")
	fmt.Println(sum, mul) // "22 288"
}

Or, if you need to evaluate a simple expression, you can use Eval function instead:

res, err := tengo.Eval(ctx,
	`input ? "success" : "fail"`,
	map[string]interface{}{"input": 1})
if err != nil {
	panic(err)
}
fmt.Println(res) // "success"

References