aboutsummaryrefslogtreecommitdiffstats
path: root/ethereum/repl_darwin.go
blob: b6de190e4d8193bd2cd385eeb325ae9a1bd83e26 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
package main

// #cgo LDFLAGS: -lreadline
// #include <stdio.h>
// #include <stdlib.h>
// #include <readline/readline.h>
// #include <readline/history.h>
import "C"
import "unsafe"

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))
}

func (self *JSRepl) read() {
    prompt := "eth >>> "

L:
    for {
        switch result := readLine(&prompt); true {
        case result == nil:
            break L //exit loop

        case *result != "": //ignore blank lines
            addHistory(*result) //allow user to recall this line

            self.parseInput(*result)
        }
    }
}