forked from microsoft/ethr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
xclient.go
185 lines (177 loc) · 4.84 KB
/
xclient.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
//-----------------------------------------------------------------------------
// Copyright (C) Microsoft. All rights reserved.
// Licensed under the MIT license.
// See LICENSE.txt file in the project root for full license information.
//-----------------------------------------------------------------------------
package main
import (
"fmt"
"net"
"os"
"sync/atomic"
"time"
)
func runXClient(testParam EthrTestParam, clientParam ethrClientParam, server string) {
initClient()
test, err := newTest(server, nil, testParam, nil, nil)
if err != nil {
ui.printErr("Failed to create the new test.")
return
}
xcRunTest(test, clientParam.duration, clientParam.gap)
}
func initXClient() {
initClientUI()
}
func xcRunTest(test *ethrTest, d, g time.Duration) {
startStatsTimer()
if test.testParam.TestID.Protocol == TCP {
if test.testParam.TestID.Type == ConnLatency {
go xcRunTCPConnLatencyTest(test, g)
} else if test.testParam.TestID.Type == Bandwidth {
go xcRunTCPBandwidthTest(test)
}
}
test.isActive = true
toStop := make(chan int, 1)
runDurationTimer(d, toStop)
handleCtrlC(toStop)
reason := <-toStop
close(test.done)
stopStatsTimer()
switch reason {
case timeout:
ui.printMsg("Ethr done, duration: " + d.String() + ".")
case interrupt:
ui.printMsg("Ethr done, received interrupt signal.")
}
}
func xcRunTCPConnLatencyTest(test *ethrTest, g time.Duration) {
server := test.session.remoteAddr
// TODO: Override NumThreads for now, fix it later to support parallel
// threads.
test.testParam.NumThreads = 1
for th := uint32(0); th < test.testParam.NumThreads; th++ {
go func() {
var min, max, avg time.Duration
var sum, sent, rcvd, lost int64
min = time.Hour
sent = -1
warmup := true
warmupText := "[warmup] "
ExitForLoop:
for {
select {
case <-test.done:
ui.printMsg("TCP connect statistics for %s:", server)
ui.printMsg(" Sent = %d, Received = %d, Lost = %d", sent, rcvd, lost)
ui.printMsg(" Min = %s, Max = %s, Avg = %s", durationToString(min),
durationToString(max), durationToString(avg))
break ExitForLoop
default:
sent++
t0 := time.Now()
conn, err := net.Dial(tcp(ipVer), server)
if err != nil {
lost++
ui.printDbg("Unable to dial TCP connection to [%s], error: %v", server, err)
ui.printMsg("[tcp] %sConnection %s: Timed out", warmupText, server)
continue
}
t1 := time.Since(t0)
rserver, rport, _ := net.SplitHostPort(conn.RemoteAddr().String())
lserver, lport, _ := net.SplitHostPort(conn.LocalAddr().String())
ui.printMsg("[tcp] %sConnection from [%s]:%s to [%s]:%s: %s",
warmupText, lserver, lport, rserver, rport, durationToString(t1))
if !warmup {
rcvd++
sum += t1.Nanoseconds()
avg = time.Duration(sum / rcvd)
if t1 < min {
min = t1
}
if t1 > max {
max = t1
}
} else {
warmup = false
warmupText = ""
server = fmt.Sprintf("[%s]:%s", rserver, rport)
}
tcpconn, ok := conn.(*net.TCPConn)
if ok {
tcpconn.SetLinger(0)
}
conn.Close()
t1 = time.Since(t0)
if t1 < g {
time.Sleep(g - t1)
}
}
}
}()
}
}
func xcCloseConn(conn net.Conn, test *ethrTest) {
test.delConn(conn)
err := conn.Close()
if err != nil {
ui.printDbg("Failed to close TCP connection, error: %v", err)
}
xcDeleteTest(test)
}
func xcDeleteTest(test *ethrTest) {
if test != nil {
if safeDeleteTest(test) {
ui.printMsg("Ethr done, server terminated the session.")
os.Exit(0)
}
}
}
func xcRunTCPBandwidthTest(test *ethrTest) {
server := test.session.remoteAddr
ui.printMsg("Connecting to host %s, port %s", server, tcpBandwidthPort)
for th := uint32(0); th < test.testParam.NumThreads; th++ {
buff := make([]byte, test.testParam.BufferSize)
for i := uint32(0); i < test.testParam.BufferSize; i++ {
buff[i] = byte(i)
}
go func() {
conn, err := net.Dial(tcp(ipVer), server)
if err != nil {
ui.printErr("Error in dialing TCP connection: %v", err)
os.Exit(1)
return
}
ec := test.newConn(conn)
rserver, rport, _ := net.SplitHostPort(conn.RemoteAddr().String())
lserver, lport, _ := net.SplitHostPort(conn.LocalAddr().String())
ui.printMsg("[%3d] local %s port %s connected to %s port %s",
ec.fd, lserver, lport, rserver, rport)
blen := len(buff)
addRef(test)
defer xcCloseConn(conn, test)
ExitForLoop:
for {
select {
case <-test.done:
break ExitForLoop
default:
n, err := conn.Write(buff)
if err != nil {
// ui.printErr(err)
// test.ctrlConn.Close()
return
}
if n < blen {
// ui.printErr("Partial write: " + strconv.Itoa(n))
// test.ctrlConn.Close()
return
}
atomic.AddUint64(&ec.data, uint64(blen))
atomic.AddUint64(&test.testResult.data, uint64(blen))
}
}
}()
}
}