aboutsummaryrefslogtreecommitdiffstats
path: root/cmd/ethereum/repl/repl_windows.go
blob: d2c405ee9b0e122c1a3f3caa70392f837b915119 (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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
// Copyright (c) 2013-2014, Jeffrey Wilcke. All rights reserved.
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public
// License as published by the Free Software Foundation; either
// version 2.1 of the License, or (at your option) any later version.
//
// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
// General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this library; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
// MA 02110-1301  USA

package ethrepl

import (
    "bufio"
    "fmt"
    "os"
    "strings"
)

func (self *JSRepl) read() {
    reader := bufio.NewReader(os.Stdin)
    for {
        fmt.Printf(self.prompt)
        str, _, err := reader.ReadLine()
        if err != nil {
            fmt.Println("Error reading input", err)
        } else {
            if string(str) == "exit" {
                self.Stop()
                break
            } else {
                self.parseInput(string(str))
            }
        }
    }
}

func addHistory(s string) {
}

func printColored(outputVal string) {
    for outputVal != "" {
        codePart := ""
        if strings.HasPrefix(outputVal, "\033[32m") {
            codePart = "\033[32m"
            changeColor(2)
        }
        if strings.HasPrefix(outputVal, "\033[1m\033[30m") {
            codePart = "\033[1m\033[30m"
            changeColor(8)
        }
        if strings.HasPrefix(outputVal, "\033[31m") {
            codePart = "\033[31m"
            changeColor(red)
        }
        if strings.HasPrefix(outputVal, "\033[35m") {
            codePart = "\033[35m"
            changeColor(5)
        }
        if strings.HasPrefix(outputVal, "\033[0m") {
            codePart = "\033[0m"
            resetColorful()
        }
        textPart := outputVal[len(codePart):len(outputVal)]
        index := strings.Index(textPart, "\033")
        if index == -1 {
            outputVal = ""
        } else {
            outputVal = textPart[index:len(textPart)]
            textPart = textPart[0:index]
        }
        fmt.Printf("%v", textPart)
    }
}

func (self *JSRepl) PrintValue(v interface{}) {
    method, _ := self.re.Vm.Get("prettyPrint")
    v, err := self.re.Vm.ToValue(v)
    if err == nil {
        val, err := method.Call(method, v)
        if err == nil {
            printColored(fmt.Sprintf("%v", val))
        }
    }
}