-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
171 lines (145 loc) · 4.08 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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
package main
import (
"context"
"fmt"
"runtime"
"sync"
"sync/atomic"
"time"
"github.com/cosmos/cosmos-sdk/crypto/keys/ed25519"
sdk "github.com/cosmos/cosmos-sdk/types"
// "github.com/davecgh/go-spew/spew"
"github.com/blockchain-tps-test/samples/cosmos/tps"
"github.com/pkg/errors"
)
var (
Endpoint = []string{
"tcp://10.10.1.1:26657",
}
mutex sync.Mutex
PrivKey = "656575bd1f7f9710f2f0780de101294f4524e5f9eac4a6d23b7c64ada4e74f24"
PrivKey2 = "e4b87f532e3c009ca45089811b6302c2b39ea9be97d5b718748671cd9f268777"
PrivKey3 = "098cc9ba1d5109b4b81fc06859dc99950617e9d50127ca940e8298bd9fb3c6eb"
// PrivKey4 = "098cc9ba1d5109b4b81fc06859dc99950617e9d50127ca940e8298bd9fb3c6eb"
Timeout = 15 * time.Second
MaxConcurrency = runtime.NumCPU() - 2
txMap map[string]time.Time
txMapCrossChain map[string]time.Time
model = "cosmos_crosschain" //cosmos_crosschain cosmos_nocrosschain
)
func createRandomAccounts(accNum int) []sdk.AccAddress {
testAddrs := make([]sdk.AccAddress, accNum)
for i := 0; i < accNum; i++ {
pk := ed25519.GenPrivKey().PubKey()
testAddrs[i] = sdk.AccAddress(pk.Address())
}
return testAddrs
}
func main() {
txMap = make(map[string]time.Time)
txMapCrossChain = make(map[string]time.Time)
var (
mesuringDuration = 600 * time.Second
queueSize = 100
concurrency = 1
queue = tps.NewQueue(queueSize)
closing uint32
idlingDuration uint32
logLevel = tps.WARN_LEVEL // INFO_LEVEL, WARN_LEVEL, FATAL_LEVEL
logger = tps.NewLogger(logLevel)
privs = []string{
PrivKey,
//PrivKey2,
//PrivKey3,
/// PrivKey4,
}
testAddrs = createRandomAccounts(100)
)
go func() {
defer atomic.AddUint32(&closing, 1)
time.Sleep(mesuringDuration)
fmt.Println("over------------------------")
}()
var client_list []CosmosClient
// client, err := NewClient(Endpoint[0])
// if err != nil {
// logger.Fatal("err NewClient: ", err)
// }
for i := 0; i < concurrency; i++ {
client, err := NewClient(Endpoint[i])
if err != nil {
logger.Fatal("err NewClient: ", err)
}
client_list = append(client_list, client)
}
ctx, cancel := context.WithTimeout(context.Background(), Timeout)
defer cancel()
addrs := make([]string, len(privs))
for i := range privs {
addr, err := AccAddressFromPrivString(privs[i])
if err != nil {
logger.Fatal("err AccAddressFromPrivString: ", err)
}
addrs[i] = addr
acc, err := client_list[0].Account(ctx, addr)
if err != nil {
logger.Fatal("err Account: ", err)
}
accNums[addr] = acc.GetAccountNumber()
}
wallet, err := tps.NewWallet(ctx, &client_list[0], privs, addrs)
if err != nil {
logger.Fatal("err NewWallet: ", err)
}
taskDo := func(t tps.Task, id int) error {
task, ok := t.(*CosmTask)
if !ok {
return errors.New("unexpected task type")
}
ctx, cancel := context.WithTimeout(context.Background(), Timeout)
defer cancel()
var (
priv = wallet.Priv(id)
currentNonce = wallet.IncrementNonce(priv)
)
if err = task.Do(ctx, &client_list[id], priv, currentNonce, &queue, logger); err != nil {
if errors.Is(err, tps.ErrWrongNonce) {
wallet.RecetNonce(priv, currentNonce)
task.tryCount = 0
queue.Push(task)
return nil
}
return errors.Wrap(err, "err Do")
}
// time.Sleep(ToDuration(&idlingDuration))
return nil
}
worker := tps.NewWorker(taskDo)
// performance likely not improved, whene exceed available cpu core
if concurrency > MaxConcurrency {
logger.Warn(fmt.Sprintf("concurrency setting is over logical max(%d)", MaxConcurrency))
}
for i := 0; i < concurrency; i++ {
go worker.Run(&queue, i)
}
go func() {
count := 0
for {
if atomic.LoadUint32(&closing) == 1 {
break
}
if queue.CountTasks() > queueSize {
continue
}
queue.Push(&CosmTask{
to: testAddrs[count%len(testAddrs)],
amount: 1,
})
count++
}
}()
client1, _ := NewClient("tcp://10.10.1.5:26657")
if err = tps.StartTPSMeasuring(context.Background(), client1, &closing, &idlingDuration, logger); err != nil {
logger.Fatal("err StartTPSMeasuring: ", err)
}
}