-
Notifications
You must be signed in to change notification settings - Fork 17
/
main.go
154 lines (124 loc) · 3.86 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
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
package main
import (
"bytes"
"crypto/rsa"
"fmt"
"math/rand"
"time"
"./config"
"./core"
"./role"
"./util"
)
var chain core.Blockchain
var users []*role.User
var miner *role.Miner
const userCount = 4
func boostNetwork() {
// 1. create the initial user of blockchain
firstUser := role.CreateBoostUser()
// 2. boost the blockchain with initial user
diff := core.CreateMADifficulty(10000, 0.2, 16)
chain = core.InitializeBlockchainWithDiff(&firstUser.Address, diff)
}
func boostUsers() {
// create 10 users
for i := 0; i < userCount; i++ {
user := role.CreateUser(chain)
users = append(users, user)
util.GetMainLogger().Infof("User %v created\n", user.GetShortIdentity())
}
}
func startTrading() {
s1 := rand.NewSource(time.Now().UnixNano())
r1 := rand.New(s1)
block := miner.GetBlockChain().GetLatestBlock()
var usage [userCount + 1]int // miner is the last one
for i := 0; i <= userCount; i++ {
usage[userCount] = 0
}
var from, to int
for i := 0; true; i++ {
from = r1.Intn(userCount)
if from < userCount/2 {
to = userCount/2 + r1.Intn(userCount/2)
} else {
to = r1.Intn(userCount / 2)
}
//if block.GetBlockHash() != chain.GetLatestBlock().GetBlockHash() {
if util.Hash(*block) != util.Hash(miner.GetBlockChain().GetLatestBlock()) {
util.GetMainLogger().Infof("Chain confirmed a new block. Clean the usage\n")
block = miner.GetBlockChain().GetLatestBlock()
}
if block != nil {
time.Sleep(500 * time.Millisecond)
}
amount := r1.Intn(config.MinerRewardBase / 1000)
fee := r1.Intn(10)
if couldUserPostTransaction(miner.Address) && int(miner.GetBlockChain().BalanceOf(&miner.Address)) > amount {
miner.SendTo(users[to], uint64(amount), uint64(fee))
time.Sleep(1 * time.Second)
}
amount = r1.Intn(config.MinerRewardBase / 1000)
fee = r1.Intn(userCount)
if couldUserPostTransaction(users[from].Address) && int(miner.GetBlockChain().BalanceOf(&users[from].Address)) > amount {
users[from].SendTo(users[to], uint64(amount), uint64(fee))
time.Sleep(1 * time.Second)
}
}
}
func initializeOneMinerAndStartMining() {
miner = role.CreateMiner(chain)
miner.StartMining()
}
func printStatus() {
for {
var buffer bytes.Buffer
buffer.WriteString(fmt.Sprintf("Miner[%s:%d]] ", miner.GetShortIdentity(), miner.GetBlockChain().BalanceOf(&miner.Address)))
for i := 0; i < userCount; i++ {
buffer.WriteString(fmt.Sprintf("User[%s:%d]] ", users[i].GetShortIdentity(), miner.GetBlockChain().BalanceOf(&users[i].Address)))
}
util.GetMainLogger().Debugf("Account Status: %s\n", buffer.String())
//util.GetMainLogger().Debugf("Chain Status: %s\n", miner.GetBlockChain().Print())
time.Sleep(1 * time.Second)
}
}
// TODO this implementation doesn't support multiple transactions from same user.
func couldUserPostTransaction(sender rsa.PublicKey) bool {
for _, tran := range miner.GetBlockChain().TransactionPool {
if tran.Sender == sender {
return false
}
}
return true
}
/*
* This function is to simulate the blochchain workflow
*/
func runSimulator() {
// 1. boost the blochchain
util.GetMainLogger().Infof("Start to boost blockchain \n")
boostNetwork()
util.GetMainLogger().Infof("Finished boosting blockchain \n")
// 3. initialize a miner to mine the trasaction and generate block
util.GetMainLogger().Infof("Start to boost miner \n")
go initializeOneMinerAndStartMining()
//time.Sleep(10 * time.Second)
// 2. boost users
util.GetMainLogger().Infof("Start to boost users \n")
boostUsers()
util.GetMainLogger().Infof("Finished boosting users \n")
// 3. print status
go printStatus()
// 4. use miner to vest coins to user. Like user buy coins from exchange
//time.Sleep(10 * time.Second)
// 5. initialize a few users for generating random transactions
util.GetMainLogger().Infof("Start to boost trading \n")
go startTrading()
for {
time.Sleep(10 * time.Second)
}
}
func main() {
runSimulator()
}