浏览代码

Added js interpret mode

obscuren 11 年之前
父节点
当前提交
92eaa98e83
共有 3 个文件被更改,包括 29 次插入3 次删除
  1. 2 0
      ethereum/config.go
  2. 18 1
      ethereum/ethereum.go
  3. 9 2
      ethereum/js_lib.go

+ 2 - 0
ethereum/config.go

@@ -21,6 +21,7 @@ var LogFile string
 var DataDir string
 var NonInteractive bool
 var StartJsConsole bool
+var InputFile string
 
 func Init() {
 	flag.BoolVar(&StartConsole, "c", false, "debug and testing console")
@@ -40,6 +41,7 @@ func Init() {
 	flag.StringVar(&ImportKey, "import", "", "imports the given private key (hex)")
 	flag.IntVar(&MaxPeer, "x", 5, "maximum desired peers")
 	flag.BoolVar(&StartJsConsole, "js", false, "exp")
+	flag.StringVar(&InputFile, "e", "", "Run javascript file")
 
 	flag.Parse()
 }

+ 18 - 1
ethereum/ethereum.go

@@ -6,6 +6,7 @@ import (
 	"github.com/ethereum/eth-go/ethchain"
 	"github.com/ethereum/eth-go/ethutil"
 	"github.com/ethereum/go-ethereum/utils"
+	"io/ioutil"
 	"log"
 	"os"
 	"os/signal"
@@ -51,7 +52,7 @@ func main() {
 	var logSys *log.Logger
 	flags := log.LstdFlags
 
-	if StartJsConsole {
+	if StartJsConsole || len(InputFile) > 0 {
 		ethutil.ReadConfig(DataDir, ethutil.LogFile)
 	} else {
 		ethutil.ReadConfig(DataDir, ethutil.LogFile|ethutil.LogStd)
@@ -157,6 +158,22 @@ save these words so you can restore your account later: %s
 		RegisterInterrupt(func(os.Signal) {
 			repl.Stop()
 		})
+	} else if len(InputFile) > 0 {
+		file, err := os.Open(InputFile)
+		if err != nil {
+			ethutil.Config.Log.Fatal(err)
+		}
+
+		content, err := ioutil.ReadAll(file)
+		if err != nil {
+			ethutil.Config.Log.Fatal(err)
+		}
+
+		re := NewJSRE(ethereum)
+		RegisterInterrupt(func(os.Signal) {
+			re.Stop()
+		})
+		re.Run(string(content))
 	}
 
 	if StartRpc {

+ 9 - 2
ethereum/js_lib.go

@@ -31,6 +31,8 @@ function pp(object) {
         str += "\033[1m\033[30m" + object;
     } else if(typeof(object) === "number") {
         str += "\033[31m" + object;
+    } else if(typeof(object) === "function") {
+	str += "\033[35m[Function]";
     } else {
         str += object;                    
     }
@@ -40,7 +42,12 @@ function pp(object) {
     return str;
 }
 
-function prettyPrint(object) {
-    console.log(pp(object))
+function prettyPrint(/* */) {
+    var args = arguments;
+    for(var i = 0, l = args.length; i < l; i++) {
+	    console.log(pp(args[i]))
+    }
 }
+
+var print = prettyPrint;
 `