This repository was archived by the owner on Feb 21, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrepl.go
168 lines (160 loc) · 4.11 KB
/
repl.go
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
package main
import (
"encoding/base64"
"github.com/chzyer/readline"
log "github.com/sirupsen/logrus"
"github.com/u-speak/poc/chain"
d "github.com/u-speak/poc/distribution"
"github.com/u-speak/poc/util"
context "golang.org/x/net/context"
"io"
"strconv"
"strings"
)
func filterInput(r rune) (rune, bool) {
switch r {
// block CtrlZ feature
case readline.CharCtrlZ:
return r, false
}
return r, true
}
func listNodes(ns *NodeServer) func(string) []string {
return func(_ string) []string {
ret := []string{}
for r := range ns.remoteConnections {
ret = append(ret, r)
}
return ret
}
}
func formatHash(hash [32]byte) string {
if Config.Logger.PrintEmoji {
return util.CompactEmoji(hash)
}
return base64.URLEncoding.EncodeToString(hash[:])
}
func repl(c *chain.Chain, ns *NodeServer) {
var hosts = readline.PcItemDynamic(listNodes(ns))
var completer = readline.NewPrefixCompleter(
readline.PcItem("block",
readline.PcItem("get"),
readline.PcItem("add"),
),
readline.PcItem("mine"),
readline.PcItem("chain", readline.PcItem("print")),
readline.PcItem("node",
readline.PcItem("add"),
readline.PcItem("status", hosts),
readline.PcItem("sync", hosts),
readline.PcItem("list"),
),
)
l, err := readline.NewEx(&readline.Config{
Prompt: Config.NodeNetwork.Interface + ":" + strconv.Itoa(Config.NodeNetwork.Port) + " \033[31m»\033[0m ",
HistoryFile: "/tmp/readline.tmp",
AutoComplete: completer,
InterruptPrompt: "^C",
EOFPrompt: "exit",
HistorySearchFold: true,
FuncFilterInputRune: filterInput,
})
if err != nil {
panic(err)
}
defer l.Close()
for {
line, err := l.Readline()
if err == readline.ErrInterrupt {
if len(line) == 0 {
break
} else {
continue
}
} else if err == io.EOF {
break
}
line = strings.TrimSpace(line)
switch {
case strings.HasPrefix(line, "mine "):
content := line[5:]
mine(content, c.LastHash())
case strings.HasPrefix(line, "block add "):
content := line[10:]
n := mine(content, c.LastHash())
ns.Push(&chain.Block{Content: content, Nonce: n})
case strings.HasPrefix(line, "block get "):
content := line[10:]
h, err := base64.URLEncoding.DecodeString(content)
if err != nil {
log.Error(err)
break
}
log.Debug(h)
var hash [32]byte
copy(hash[:], h)
block := c.Get(hash)
if block == nil {
log.Info("No block found")
break
}
log.Info(block.Content)
case strings.HasPrefix(line, "node add "):
content := line[9:]
err := ns.Connect(content)
if err != nil {
log.Error(err)
continue
}
case strings.HasPrefix(line, "node status "):
content := line[12:]
if _, contained := ns.remoteConnections[content]; !contained {
log.Errorf("You are not connected to node %s", content)
continue
}
client := d.NewDistributionServiceClient(ns.remoteConnections[content])
info, err := client.GetInfo(context.Background(), &d.StatusParams{Host: Config.NodeNetwork.Interface + ":" + strconv.Itoa(Config.NodeNetwork.Port)})
if err != nil {
log.Error(err)
continue
}
log.Debugf("%#v", info)
case strings.HasPrefix(line, "node sync "):
content := line[10:]
if _, contained := ns.remoteConnections[content]; !contained {
log.Errorf("You are not connected to node %s", content)
continue
}
err := ns.SynchronizeChain(content)
if err != nil {
log.Error(err)
}
case strings.HasPrefix(line, "node list"):
for r := range ns.remoteConnections {
log.Debug(r)
}
case strings.HasPrefix(line, "chain print"):
dump, err := c.DumpChain()
if err != nil {
log.Error(err)
break
}
for _, b := range dump {
log.WithFields(log.Fields{
"hash": formatHash(b.Hash()),
"prev": formatHash(b.PrevHash),
}).Debug(b.Content)
}
case line == "emj":
log.Info("Toggling Emoji mode...")
Config.Logger.PrintEmoji = !Config.Logger.PrintEmoji
case line == "exit":
return
case strings.HasPrefix(line, "get "):
//hash := line[4:]
default:
log.Warnf("Command `%s' not found", line)
log.Warn("Please check if you specified the correct number of arguments")
}
}
}