-
Notifications
You must be signed in to change notification settings - Fork 18
/
cli.go
96 lines (88 loc) · 2.2 KB
/
cli.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
package main
import (
"fmt"
"os"
"strconv"
)
//处理用户输入命令,完成具体函数的调用
//cli : command line 命令行
type CLI struct {
//不需要字段
}
//使用说明,帮助用户正确使用
const Usage = `
正确使用方法:
./blockchain create <地址> "创建区块链"
./blockchain addBlock <需要写入的的数据> "添加区块"
./blockchain print "打印区块链"
./blockchain getBalance <地址> "获取余额"
./blockchain send <FROM> <TO> <AMOUNT> <MINER> <DATA>
./blockchain createWallet "创建钱包"
./blockchain listAddress "列举所有的钱包地址"
./blockchain printTx "打印区块的所有交易"
`
// const Usage1 = "" +
// "./block" +
// ""
//负责解析命令的方法
func (cli *CLI) Run() {
cmds := os.Args
//用户至少输入两个参数
if len(cmds) < 2 {
fmt.Println("输入参数无效,请检查!")
fmt.Println(Usage)
return
}
switch cmds[1] {
case "create":
fmt.Println("创建区块被调用!")
if len(cmds) != 3 {
fmt.Println("输入参数无效,请检查!")
return
}
address := cmds[2]
cli.createBlockChain(address)
case "addBlock":
if len(cmds) != 3 {
fmt.Println("输入参数无效,请检查!")
return
}
data := cmds[2] //需要检验个数
cli.addBlock(data)
case "print":
fmt.Println("打印区块被调用!")
cli.print()
case "getBalance":
fmt.Println("获取余额命令被调用!")
if len(cmds) != 3 {
fmt.Println("输入参数无效,请检查!")
return
}
address := cmds[2] //需要检验个数
cli.getBalance(address)
case "send":
fmt.Println("send命令被调用")
if len(cmds) != 7 {
fmt.Println("输入参数无效,请检查!")
return
}
from := cmds[2]
to := cmds[3]
//这个是金额,float64,命令接收都是字符串,需要转换
amount, _ := strconv.ParseFloat(cmds[4], 64)
miner := cmds[5]
data := cmds[6]
cli.send(from, to, amount, miner, data)
case "createWallet":
fmt.Println("创建钱包命令被调用!")
cli.createWallet()
case "listAddress":
fmt.Println("listAddress 被调用")
cli.listAddress()
case "printTx":
cli.printTx()
default:
fmt.Println("输入参数无效,请检查!")
fmt.Println(Usage)
}
}