-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
103 lines (85 loc) · 2.33 KB
/
main.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
package main
import (
"flag"
"fmt"
"os"
"runtime"
"strconv"
"github.com/ramseskamanda/explore-blockchain/blockchain"
)
type CommandLine struct {
blockchain *blockchain.BlockChain
}
//printUsage will display what options are availble to the user
func (cli *CommandLine) printUsage() {
fmt.Println("Usage: ")
fmt.Println(" add -block <BLOCK_DATA> - add a block to the chain")
fmt.Println(" print - prints the blocks in the chain")
}
//validateArgs ensures the cli was given valid input
func (cli *CommandLine) validateArgs() {
if len(os.Args) < 2 {
cli.printUsage()
//go exit will exit the application by shutting down the goroutine
// if you were to use os.exit you might corrupt the data
runtime.Goexit()
}
}
//addBlock allows users to add blocks to the chain via the cli
func (cli *CommandLine) addBlock(data string) {
cli.blockchain.AddBlock(data)
fmt.Println("Added Block!")
}
//printChain will display the entire contents of the blockchain
func (cli *CommandLine) printChain() {
iterator := cli.blockchain.Iterator()
for {
block := iterator.Next()
fmt.Printf("Previous hash: %x\n", block.PrevHash)
fmt.Printf("data: %s\n", block.Data)
fmt.Printf("hash: %x\n", block.Hash)
pow := blockchain.NewProofOfWork(block)
fmt.Printf("Pow: %s\n", strconv.FormatBool(pow.Validate()))
fmt.Println()
// This works because the Genesis block has no PrevHash to point to.
if len(block.PrevHash) == 0 {
break
}
}
}
//run will start up the command line
func (cli *CommandLine) run() {
cli.validateArgs()
addBlockCmd := flag.NewFlagSet("add", flag.ExitOnError)
printChainCmd := flag.NewFlagSet("print", flag.ExitOnError)
addBlockData := addBlockCmd.String("block", "", "Block data")
switch os.Args[1] {
case "add":
err := addBlockCmd.Parse(os.Args[2:])
blockchain.HandleError(err)
case "print":
err := printChainCmd.Parse(os.Args[2:])
blockchain.HandleError(err)
default:
cli.printUsage()
runtime.Goexit()
}
// Parsed() will return true if the object it was used on has been called
if addBlockCmd.Parsed() {
if *addBlockData == "" {
addBlockCmd.Usage()
runtime.Goexit()
}
cli.addBlock(*addBlockData)
}
if printChainCmd.Parsed() {
cli.printChain()
}
}
func main() {
defer os.Exit(0)
chain := blockchain.InitBlockChain()
defer chain.Database.Close()
cli := CommandLine{chain}
cli.run()
}