forked from microsoft/ethr
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathxserver.go
98 lines (90 loc) · 2.31 KB
/
xserver.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
//-----------------------------------------------------------------------------
// 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"
"github.com/microsoft/ethr-kai/internal/ethrLog"
)
func runXServer(testParam EthrTestParam, serverParam ethrServerParam) {
defer stopStatsTimer()
initXServer(serverParam.showUI)
xsRunTCPServer()
// runHTTPBandwidthServer()
// runHTTPSBandwidthServer()
startStatsTimer()
toStop := make(chan int, 1)
handleCtrlC(toStop)
<-toStop
ui.printMsg("Ethr done, received interrupt signal.")
}
func initXServer(showUI bool) {
initServerUI(showUI)
}
func finiXServer() {
ui.fini()
ethrLog.LogFini()
}
func xsRunTCPServer() {
l, err := net.Listen(tcp(ipVer), hostAddr+":"+tcpBandwidthPort)
if err != nil {
finiXServer()
fmt.Printf("Fatal error listening on "+tcpBandwidthPort+" for TCP tests: %v", err)
os.Exit(1)
}
ui.printMsg("Listening on " + tcpBandwidthPort + " for TCP tests")
go func(l net.Listener) {
defer l.Close()
for {
conn, err := l.Accept()
if err != nil {
ui.printErr("xsRunTCPServer: error accepting new TCP connection: %v", err)
continue
}
go xserverTCPHandler(conn)
}
}(l)
}
func xsCloseConn(conn net.Conn, cpsTest, bwTest *ethrTest) {
err := conn.Close()
if err != nil {
ui.printDbg("Failed to close TCP connection, error: %v", err)
}
// Delay delete the test. This is to ensure that tests like CPS don't
// end up not printing stats
time.Sleep(2 * time.Second)
if cpsTest != nil {
safeDeleteTest(cpsTest)
}
if bwTest != nil {
safeDeleteTest(bwTest)
}
}
func xserverTCPHandler(conn net.Conn) {
server, _, _ := net.SplitHostPort(conn.RemoteAddr().String())
cpsTest, isNew := createOrGetTest(server, TCP, Cps)
if cpsTest != nil {
atomic.AddUint64(&cpsTest.testResult.data, 1)
}
if isNew {
ui.emitTestHdr()
}
bwTest, _ := createOrGetTest(server, TCP, Bandwidth)
defer xsCloseConn(conn, cpsTest, bwTest)
buff := make([]byte, 2048)
for {
size, err := conn.Read(buff)
if err != nil {
return
}
if bwTest != nil {
atomic.AddUint64(&bwTest.testResult.data, uint64(size))
}
}
}