quorum/ethereum/repl_darwin.go

81 lines
1.3 KiB
Go
Raw Normal View History

2014-05-17 06:15:46 -07:00
package main
// #cgo LDFLAGS: -lreadline
// #include <stdio.h>
// #include <stdlib.h>
// #include <readline/readline.h>
// #include <readline/history.h>
import "C"
2014-05-19 04:04:31 -07:00
import (
"strings"
"unsafe"
)
2014-05-17 06:15:46 -07:00
func readLine(prompt *string) *string {
var p *C.char
//readline allows an empty prompt(NULL)
if prompt != nil {
p = C.CString(*prompt)
}
ret := C.readline(p)
if p != nil {
C.free(unsafe.Pointer(p))
}
if ret == nil {
return nil
} //EOF
s := C.GoString(ret)
C.free(unsafe.Pointer(ret))
return &s
}
func addHistory(s string) {
p := C.CString(s)
C.add_history(p)
C.free(unsafe.Pointer(p))
}
2014-05-19 04:04:31 -07:00
var indentCount = 0
var str = ""
func (self *JSRepl) setIndent() {
open := strings.Count(str, "{")
open += strings.Count(str, "(")
closed := strings.Count(str, "}")
closed += strings.Count(str, ")")
indentCount = open - closed
if indentCount <= 0 {
self.prompt = "> "
} else {
self.prompt = strings.Join(make([]string, indentCount*2), "..")
self.prompt += " "
}
}
2014-05-17 06:15:46 -07:00
2014-05-19 04:04:31 -07:00
func (self *JSRepl) read() {
2014-05-17 06:15:46 -07:00
L:
for {
2014-05-19 04:04:31 -07:00
switch result := readLine(&self.prompt); true {
2014-05-17 06:15:46 -07:00
case result == nil:
break L //exit loop
case *result != "": //ignore blank lines
2014-05-19 04:04:31 -07:00
str += *result + "\n"
self.setIndent()
if indentCount <= 0 {
addHistory(str) //allow user to recall this line
2014-05-17 06:15:46 -07:00
2014-05-19 04:04:31 -07:00
self.parseInput(str)
}
2014-05-17 06:15:46 -07:00
}
}
}