blob: a6449af8f5dc10c737250897e9497e889c8984e1 (
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
package main
import (
"bufio"
"fmt"
"github.com/ethereum/eth-go"
"github.com/ethereum/eth-go/ethpub"
"github.com/robertkrimen/otto"
"os"
)
type JSConsole struct {
vm *otto.Otto
lib *ethpub.PEthereum
}
func NewJSConsole(ethereum *eth.Ethereum) *JSConsole {
return &JSConsole{vm: otto.New(), lib: ethpub.NewPEthereum(ethereum)}
}
func (self *JSConsole) Start() {
self.initBindings()
fmt.Println("Eth JS Console")
reader := bufio.NewReader(os.Stdin)
for {
fmt.Printf("eth >>> ")
str, _, err := reader.ReadLine()
if err != nil {
fmt.Println("Error reading input", err)
} else {
if string(str) == "quit" {
return
}
self.ParseInput(string(str))
}
}
}
func (self *JSConsole) ParseInput(code string) {
value, err := self.vm.Run(code)
if err != nil {
fmt.Println(err)
return
}
fmt.Println(value)
}
type OtherStruct struct {
Test string
}
type JSWrapper struct {
pub *ethpub.PEthereum
vm *otto.Otto
}
func (self *JSWrapper) GetKey() otto.Value {
result, err := self.vm.ToValue(self.pub.GetKey())
if err != nil {
fmt.Println(err)
return otto.UndefinedValue()
}
return result
}
func (self *JSConsole) initBindings() {
t := &JSWrapper{self.lib, self.vm}
self.vm.Set("eth", t)
}
|