-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
219 lines (178 loc) · 4.24 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
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
package main
import (
"context"
"fbsc/termprinter"
"flag"
"fmt"
"os"
"os/signal"
"strings"
"sync"
"sync/atomic"
"syscall"
"time"
"github.com/mattermost/logr/v2"
)
const (
DefaultConcurrentUsers = 3
DefaultUserCount = 5
DefaultChannelsPerUser = 3
DefaultBoardsPerChannel = 5
DefaultCardsPerBoard = 20
DefaultMaxWordsPerSentence = 30
DefaultMaxSentencesPerParagraph = 5
DefaultMaxParagraphsPerComment = 2
DefaultBoardDelay = 10
DefaultCardDelay = 10
FilePerms = 0664
)
func main() {
var exitCode int
var configFile string
var createConfig bool
var quiet bool
var help bool
flag.StringVar(&configFile, "f", "", "config file")
flag.BoolVar(&createConfig, "c", false, "creates a default config file")
flag.BoolVar(&quiet, "q", false, "suppress output")
flag.BoolVar(&help, "h", false, "displays this help text")
flag.Parse()
defer func(code *int) { os.Exit(*code) }(&exitCode)
printer := termprinter.NewPrinter()
lgr, _ := logr.New()
logger := lgr.NewLogger()
if err := initLogging(lgr, printer); err != nil {
exitCode = 1
return
}
defer func(l *logr.Logr) {
if l.IsShutdown() {
return
}
ctx, cancel := context.WithTimeout(context.Background(), time.Second*15)
defer cancel()
if err := lgr.ShutdownWithTimeout(ctx); err != nil {
fmt.Fprintf(os.Stderr, "%v", err)
}
}(lgr)
if help {
flag.PrintDefaults()
return
}
if configFile == "" {
logger.Error("You must specify a config file")
flag.PrintDefaults()
exitCode = 1
return
}
if createConfig {
if err := createDefaultConfig(configFile); err != nil {
logger.Error("Cannot create default config", logr.Err(err))
exitCode = 1
}
return
}
cfg, err := loadConfig(configFile)
if err != nil {
logger.Error("Cannot load config", logr.Err(err))
exitCode = 1
return
}
admin, err := NewAdminClient(cfg)
if err != nil {
logger.Error("Cannot create admin client", logr.Err(err))
exitCode = 3
return
}
if err := setUpServer(admin, cfg); err != nil {
logger.Error("Cannot setup server", logr.Err(err))
exitCode = 4
return
}
abort := make(chan struct{})
workersExited := make(chan struct{})
setUpInterruptHandler(func() {
close(abort)
// give the workers a chance to shut down gracefully (some may not, that's ok).
select {
case <-workersExited:
case <-time.After(time.Second * 15):
}
// shutdown the logger
ctx, cancel := context.WithTimeout(context.Background(), time.Second*10)
defer cancel()
_ = lgr.ShutdownWithTimeout(ctx)
})
ri := &runInfo{
cfg: cfg,
printer: printer,
logger: logger,
abort: abort,
admin: admin,
quiet: quiet,
stats: &stats{},
}
start := time.Now()
run(ri, workersExited)
blockCount := atomic.LoadInt64(&ri.blockCount)
duration := time.Since(start)
printer.Printf("Duration: %s\n", duration.Round(time.Millisecond))
blocksPerSecond := float64(blockCount) / duration.Seconds()
printer.Printf("Blocks Per Second: %.2f\n", blocksPerSecond)
}
func run(ri *runInfo, workersExited chan struct{}) {
defer close(workersExited)
var wg sync.WaitGroup
var usersLeft int32 = int32(ri.cfg.UserCount)
concurrency := ri.cfg.ConcurrentUsers
if !ri.quiet {
ri.printer.Printf("Creating %d users with %d concurrent threads.\n\n", usersLeft, concurrency)
}
for i := 0; i < concurrency; i++ {
wg.Add(1)
go func() {
defer wg.Done()
runConcurrentUsers(ri, &usersLeft)
}()
}
wg.Wait()
}
func runConcurrentUsers(ri *runInfo, usersLeft *int32) {
for {
select {
case <-ri.abort:
return
default:
}
if atomic.AddInt32(usersLeft, -1) <= 0 {
return
}
username := strings.ToLower(makeName("."))
stats, err := runUser(username, ri)
if err != nil {
ri.logger.Error("Cannot simulate user", logr.String("username", username), logr.Err(err))
}
ri.AddStats(stats)
}
}
func setUpInterruptHandler(cleanUp func()) {
sig := make(chan os.Signal, 1)
signal.Notify(sig, os.Interrupt, syscall.SIGTERM)
go func() {
<-sig
fmt.Println("\n user abort; exiting...")
if cleanUp != nil {
cleanUp()
}
os.Exit(1)
}()
}
// setUpServer creates the team.
func setUpServer(admin *AdminClient, cfg *Config) error {
team, err := admin.CreateTeam(cfg.TeamName, true)
if err != nil {
return err
}
cfg.setTeamID(team.Id)
return nil
}