forked from myzhan/boomer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
boomer.go
265 lines (231 loc) · 6.52 KB
/
boomer.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
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
package boomer
import (
"context"
"flag"
"log"
"os"
"os/signal"
"strings"
"syscall"
"time"
)
var defaultBoomer = &Boomer{}
// Mode is the running mode of boomer, both standalone and distributed are supported.
type Mode int
const (
// DistributedMode requires connecting to a master.
DistributedMode Mode = iota
// StandaloneMode will run without a master.
StandaloneMode
)
// A Boomer is used to run tasks.
// This type is exposed, so users can create and control a Boomer instance programmatically.
type Boomer struct {
masterHost string
masterPort int
mode Mode
slaveRunner *slaveRunner
localRunner *localRunner
spawnCount int
spawnRate int
cpuProfileFile string
cpuProfileDuration time.Duration
memoryProfileFile string
memoryProfileDuration time.Duration
outputs []Output
spawnChan chan<- *SpawnArgs
}
type SpawnArgs struct {
Count int
Rate float64
}
// NewBoomer returns a new Boomer.
func NewBoomer(masterHost string, masterPort int) *Boomer {
return &Boomer{
masterHost: masterHost,
masterPort: masterPort,
mode: DistributedMode,
}
}
// NewStandaloneBoomer returns a new Boomer, which can run without master.
func NewStandaloneBoomer(spawnCount int, spawnRate int) *Boomer {
return &Boomer{
spawnCount: spawnCount,
spawnRate: spawnRate,
mode: StandaloneMode,
}
}
// SetMode only accepts boomer.DistributedMode and boomer.StandaloneMode.
func (b *Boomer) SetMode(mode Mode) {
switch mode {
case DistributedMode:
b.mode = DistributedMode
case StandaloneMode:
b.mode = StandaloneMode
default:
log.Println("Invalid mode, ignored!")
}
}
// AddOutput accepts outputs which implements the boomer.Output interface.
func (b *Boomer) AddOutput(o Output) {
b.outputs = append(b.outputs, o)
}
// EnableCPUProfile will start cpu profiling after run.
func (b *Boomer) EnableCPUProfile(cpuProfileFile string, duration time.Duration) {
b.cpuProfileFile = cpuProfileFile
b.cpuProfileDuration = duration
}
// EnableMemoryProfile will start memory profiling after run.
func (b *Boomer) EnableMemoryProfile(memoryProfileFile string, duration time.Duration) {
b.memoryProfileFile = memoryProfileFile
b.memoryProfileDuration = duration
}
// Run accepts a slice of Task and connects to the locust master.
func (b *Boomer) Run(spawnChan chan *SpawnArgs) {
if b.cpuProfileFile != "" {
err := StartCPUProfile(b.cpuProfileFile, b.cpuProfileDuration)
if err != nil {
log.Printf("Error starting cpu profiling, %v", err)
}
}
if b.memoryProfileFile != "" {
err := StartMemoryProfile(b.memoryProfileFile, b.memoryProfileDuration)
if err != nil {
log.Printf("Error starting memory profiling, %v", err)
}
}
switch b.mode {
case DistributedMode:
b.slaveRunner = newSlaveRunner(b.masterHost, b.masterPort, spawnChan)
for _, o := range b.outputs {
b.slaveRunner.addOutput(o)
}
b.slaveRunner.run()
case StandaloneMode:
b.localRunner = newLocalRunner(spawnChan, b.spawnCount, b.spawnRate)
for _, o := range b.outputs {
b.localRunner.addOutput(o)
}
b.localRunner.run()
default:
log.Println("Invalid mode, expected boomer.DistributedMode or boomer.StandaloneMode")
}
}
// RecordSuccess reports a success.
func (b *Boomer) RecordSuccess(requestType, name string, responseTime int64, responseLength int64) {
if b.localRunner == nil && b.slaveRunner == nil {
return
}
switch b.mode {
case DistributedMode:
b.slaveRunner.stats.requestSuccessChan <- &requestSuccess{
requestType: requestType,
name: name,
responseTime: responseTime,
responseLength: responseLength,
}
case StandaloneMode:
b.localRunner.stats.requestSuccessChan <- &requestSuccess{
requestType: requestType,
name: name,
responseTime: responseTime,
responseLength: responseLength,
}
}
}
// RecordFailure reports a failure.
func (b *Boomer) RecordFailure(requestType, name string, responseTime int64, exception string) {
if b.localRunner == nil && b.slaveRunner == nil {
return
}
switch b.mode {
case DistributedMode:
b.slaveRunner.stats.requestFailureChan <- &requestFailure{
requestType: requestType,
name: name,
responseTime: responseTime,
error: exception,
}
case StandaloneMode:
b.localRunner.stats.requestFailureChan <- &requestFailure{
requestType: requestType,
name: name,
responseTime: responseTime,
error: exception,
}
}
}
// Quit will send a quit message to the master.
func (b *Boomer) Quit() {
Events.Publish(EVENT_QUIT)
var ticker = time.NewTicker(3 * time.Second)
switch b.mode {
case DistributedMode:
// wait for quit message is sent to master
select {
case <-b.slaveRunner.client.disconnectedChannel():
break
case <-ticker.C:
log.Println("Timeout waiting for sending quit message to master, boomer will quit any way.")
break
}
b.slaveRunner.shutdown()
case StandaloneMode:
b.localRunner.shutdown()
}
}
// Run tasks without connecting to the master.
func runTasksForTest(tasks ...*Task) {
taskNames := strings.Split(runTasks, ",")
for _, task := range tasks {
if task.Name == "" {
continue
} else {
for _, name := range taskNames {
if name == task.Name {
log.Println("Running " + task.Name)
task.Fn(context.Background())
}
}
}
}
}
// Run accepts a slice of Task and connects to a locust master.
// It's a convenience function to use the defaultBoomer.
func Run(spawnChan chan *SpawnArgs) {
if !flag.Parsed() {
flag.Parse()
}
initLegacyEventHandlers()
defaultBoomer.masterHost = masterHost
defaultBoomer.masterPort = masterPort
defaultBoomer.EnableMemoryProfile(memoryProfileFile, memoryProfileDuration)
defaultBoomer.EnableCPUProfile(cpuProfileFile, cpuProfileDuration)
defaultBoomer.Run(spawnChan)
quitByMe := false
quitChan := make(chan bool)
Events.SubscribeOnce(EVENT_QUIT, func() {
if !quitByMe {
close(quitChan)
}
})
c := make(chan os.Signal, 1)
signal.Notify(c, syscall.SIGINT, syscall.SIGTERM)
select {
case <-c:
quitByMe = true
defaultBoomer.Quit()
case <-quitChan:
}
log.Println("shut down")
}
// RecordSuccess reports a success.
// It's a convenience function to use the defaultBoomer.
func RecordSuccess(requestType, name string, responseTime int64, responseLength int64) {
defaultBoomer.RecordSuccess(requestType, name, responseTime, responseLength)
}
// RecordFailure reports a failure.
// It's a convenience function to use the defaultBoomer.
func RecordFailure(requestType, name string, responseTime int64, exception string) {
defaultBoomer.RecordFailure(requestType, name, responseTime, exception)
}