package main import ( "bufio" "bytes" "flag" "fmt" "io" "io/ioutil" "os" "path/filepath" "strings" "github.com/d5/tengo/compiler" "github.com/d5/tengo/compiler/ast" "github.com/d5/tengo/compiler/parser" "github.com/d5/tengo/compiler/source" "github.com/d5/tengo/objects" "github.com/d5/tengo/runtime" ) const ( sourceFileExt = ".tengo" replPrompt = ">> " ) var ( compileOutput string showHelp bool showVersion bool version = "dev" ) func init() { flag.BoolVar(&showHelp, "help", false, "Show help") flag.StringVar(&compileOutput, "o", "", "Compile output file") flag.BoolVar(&showVersion, "version", false, "Show version") flag.Parse() } func main() { if showHelp { doHelp() os.Exit(2) } else if showVersion { fmt.Println(version) return } inputFile := flag.Arg(0) if inputFile == "" { // REPL runREPL(os.Stdin, os.Stdout) return } inputData, err := ioutil.ReadFile(inputFile) if err != nil { _, _ = fmt.Fprintf(os.Stderr, "Error reading input file: %s", err.Error()) os.Exit(1) } if compileOutput != "" { if err := compileOnly(inputData, inputFile, compileOutput); err != nil { _, _ = fmt.Fprintln(os.Stderr, err.Error()) os.Exit(1) } } else if filepath.Ext(inputFile) == sourceFileExt { if err := compileAndRun(inputData, inputFile); err != nil { _, _ = fmt.Fprintln(os.Stderr, err.Error()) os.Exit(1) } } else { if err := runCompiled(inputData); err != nil { _, _ = fmt.Fprintln(os.Stderr, err.Error()) os.Exit(1) } } } func doHelp() { fmt.Println("Usage:") fmt.Println() fmt.Println(" tengo [flags] {input-file}") fmt.Println() fmt.Println("Flags:") fmt.Println() fmt.Println(" -o compile output file") fmt.Println(" -version show version") fmt.Println() fmt.Println("Examples:") fmt.Println() fmt.Println(" tengo") fmt.Println() fmt.Println(" Start Tengo REPL") fmt.Println() fmt.Println(" tengo myapp.tengo") fmt.Println() fmt.Println(" Compile and run source file (myapp.tengo)") fmt.Println(" Source file must have .tengo extension") fmt.Println() fmt.Println(" tengo -o myapp myapp.tengo") fmt.Println() fmt.Println(" Compile source file (myapp.tengo) into bytecode file (myapp)") fmt.Println() fmt.Println(" tengo myapp") fmt.Println() fmt.Println(" Run bytecode file (myapp)") fmt.Println() fmt.Println() } func compileOnly(data []byte, inputFile, outputFile string) (err error) { bytecode, err := compileSrc(data, filepath.Base(inputFile)) if err != nil { return } if outputFile == "" { outputFile = basename(inputFile) + ".out" } out, err := os.OpenFile(outputFile, os.O_CREATE|os.O_WRONLY, os.ModePerm) if err != nil { return } defer func() { if err != nil { _ = out.Close() } else { err = out.Close() } }() err = bytecode.Encode(out) if err != nil { return } fmt.Println(outputFile) return } func compileAndRun(data []byte, inputFile string) (err error) { bytecode, err := compileSrc(data, filepath.Base(inputFile)) if err != nil { return } machine := runtime.NewVM(bytecode, nil, nil, nil, -1) err = machine.Run() if err != nil { return } return } func runCompiled(data []byte) (err error) { bytecode := &compiler.Bytecode{} err = bytecode.Decode(bytes.NewReader(data)) if err != nil { return } machine := runtime.NewVM(bytecode, nil, nil, nil, -1) err = machine.Run() if err != nil { return } return } func runREPL(in io.Reader, out io.Writer) { stdin := bufio.NewScanner(in) fileSet := source.NewFileSet() globals := make([]*objects.Object, runtime.GlobalsSize) symbolTable := compiler.NewSymbolTable() for idx, fn := range objects.Builtins { symbolTable.DefineBuiltin(idx, fn.Name) } var constants []objects.Object for { _, _ = fmt.Fprint(out, replPrompt) scanned := stdin.Scan() if !scanned { return } line := stdin.Text() srcFile := fileSet.AddFile("repl", -1, len(line)) p := parser.NewParser(srcFile, []byte(line), nil) file, err := p.ParseFile() if err != nil { _, _ = fmt.Fprintln(out, err.Error()) continue } file = addPrints(file) c := compiler.NewCompiler(srcFile, symbolTable, constants, nil, nil) if err := c.Compile(file); err != nil { _, _ = fmt.Fprintln(out, err.Error()) continue } bytecode := c.Bytecode() machine := runtime.NewVM(bytecode, globals, nil, nil, -1) if err := machine.Run(); err != nil { _, _ = fmt.Fprintln(out, err.Error()) continue } constants = bytecode.Constants } } func compileSrc(src []byte, filename string) (*compiler.Bytecode, error) { fileSet := source.NewFileSet() srcFile := fileSet.AddFile(filename, -1, len(src)) p := parser.NewParser(srcFile, src, nil) file, err := p.ParseFile() if err != nil { return nil, err } c := compiler.NewCompiler(srcFile, nil, nil, nil, nil) if err := c.Compile(file); err != nil { return nil, err } bytecode := c.Bytecode() bytecode.RemoveDuplicates() return bytecode, nil } func addPrints(file *ast.File) *ast.File { var stmts []ast.Stmt for _, s := range file.Stmts { switch s := s.(type) { case *ast.ExprStmt: stmts = append(stmts, &ast.ExprStmt{ Expr: &ast.CallExpr{ Func: &ast.Ident{ Name: "print", }, Args: []ast.Expr{s.Expr}, }, }) case *ast.AssignStmt: stmts = append(stmts, s) stmts = append(stmts, &ast.ExprStmt{ Expr: &ast.CallExpr{ Func: &ast.Ident{ Name: "print", }, Args: s.LHS, }, }) default: stmts = append(stmts, s) } } return &ast.File{ InputFile: file.InputFile, Stmts: stmts, } } func basename(s string) string { s = filepath.Base(s) n := strings.LastIndexByte(s, '.') if n > 0 { return s[:n] } return s }