forked from MirrorNetworking/Telepathy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRunServer.cs
60 lines (49 loc) · 1.96 KB
/
RunServer.cs
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
using System.Diagnostics;
using System.Threading;
namespace Telepathy.LoadTest
{
public class RunServer
{
public const int MaxMessageSize = 16 * 1024;
static long messagesReceived = 0;
static long dataReceived = 0;
public static void StartServer(int port, int seconds)
{
// create server
Server server = new Server(MaxMessageSize);
// OnData replies and updates statistics
server.OnData = (connectionId, data) => {
server.Send(connectionId, data);
messagesReceived++;
dataReceived += data.Count;
};
server.Start(port);
int serverFrequency = 60;
Log.Info("started server");
Stopwatch stopwatch = Stopwatch.StartNew();
var runTimer = Stopwatch.StartNew();
bool runServer = true;
while (runServer)
{
// tick and process as many as we can. will auto reply.
// (100k limit to avoid deadlocks)
server.Tick(100000);
// sleep
Thread.Sleep(1000 / serverFrequency);
// report every 10 seconds
if (stopwatch.ElapsedMilliseconds > 1000 * 2)
{
Log.Info(string.Format("Thread[" + Thread.CurrentThread.ManagedThreadId + "]: Server in={0} ({1} KB/s) out={0} ({1} KB/s) ReceiveQueue={2}", messagesReceived, (dataReceived * 1000 / (stopwatch.ElapsedMilliseconds * 1024)), server.ReceivePipeTotalCount.ToString()));
stopwatch.Stop();
stopwatch = Stopwatch.StartNew();
messagesReceived = 0;
dataReceived = 0;
}
if (seconds != 0)
{
runServer = (runTimer.ElapsedMilliseconds < (seconds * 1000));
}
}
}
}
}