aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-06-24 16:09:02 +0800
committerobscuren <geffobscura@gmail.com>2014-06-24 16:09:02 +0800
commitfd1ddbce6892e3f0e09eec68687b6ef34b216888 (patch)
tree6f5e801f84083fd3de487769ebedcc6981416d33
parenta13aa873c205f35d3d90adf9da4c6355499fff1b (diff)
downloadgo-tangerine-fd1ddbce6892e3f0e09eec68687b6ef34b216888.tar
go-tangerine-fd1ddbce6892e3f0e09eec68687b6ef34b216888.tar.gz
go-tangerine-fd1ddbce6892e3f0e09eec68687b6ef34b216888.tar.bz2
go-tangerine-fd1ddbce6892e3f0e09eec68687b6ef34b216888.tar.lz
go-tangerine-fd1ddbce6892e3f0e09eec68687b6ef34b216888.tar.xz
go-tangerine-fd1ddbce6892e3f0e09eec68687b6ef34b216888.tar.zst
go-tangerine-fd1ddbce6892e3f0e09eec68687b6ef34b216888.zip
Save repl history to file and recall on next session
-rw-r--r--ethereum/repl.go27
-rw-r--r--ethereum/repl_darwin.go4
2 files changed, 29 insertions, 2 deletions
diff --git a/ethereum/repl.go b/ethereum/repl.go
index 0208459ad..dd8d08179 100644
--- a/ethereum/repl.go
+++ b/ethereum/repl.go
@@ -1,10 +1,15 @@
package main
import (
+ "bufio"
"fmt"
"github.com/ethereum/eth-go"
"github.com/ethereum/eth-go/ethpub"
+ "github.com/ethereum/eth-go/ethutil"
"github.com/obscuren/otto"
+ "io"
+ "os"
+ "path"
)
type Repl interface {
@@ -16,18 +21,38 @@ type JSRepl struct {
re *JSRE
prompt string
+
+ history *os.File
}
func NewJSRepl(ethereum *eth.Ethereum) *JSRepl {
- return &JSRepl{re: NewJSRE(ethereum), prompt: "> "}
+ hist, err := os.OpenFile(path.Join(ethutil.Config.ExecPath, "history"), os.O_RDWR|os.O_CREATE, os.ModePerm)
+ if err != nil {
+ panic(err)
+ }
+
+ return &JSRepl{re: NewJSRE(ethereum), prompt: "> ", history: hist}
}
func (self *JSRepl) Start() {
+ reader := bufio.NewReader(self.history)
+ for {
+ line, err := reader.ReadString('\n')
+ if err != nil && err == io.EOF {
+ break
+ } else if err != nil {
+ fmt.Println("error reading history", err)
+ break
+ }
+
+ addHistory(line[:len(line)-1])
+ }
self.read()
}
func (self *JSRepl) Stop() {
self.re.Stop()
+ self.history.Close()
}
func (self *JSRepl) parseInput(code string) {
diff --git a/ethereum/repl_darwin.go b/ethereum/repl_darwin.go
index b61d4edd7..62b40059a 100644
--- a/ethereum/repl_darwin.go
+++ b/ethereum/repl_darwin.go
@@ -102,7 +102,9 @@ L:
break L
}
- addHistory(str[:len(str)-1]) //allow user to recall this line
+ hist := str[:len(str)-1]
+ addHistory(hist) //allow user to recall this line
+ self.history.WriteString(str)
self.parseInput(str)