blob: 1f48f6aa8d686bc6fa5c3b9f5d408a3de52594f8 (
plain)
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
|
// **********************************************************************
//
// Copyright (c) 2003-2009 ZeroC, Inc. All rights reserved.
//
// This copy of Ice is licensed to you under the terms described in the
// ICE_LICENSE file included in this distribution.
//
// **********************************************************************
using System;
using System.ServiceModel;
using System.ServiceModel.Description;
public class Client
{
static void menu()
{
Console.WriteLine("usage:\n"
+ "\n"
+ "r: run latency test with selected transport\n"
+ "\n"
+ "select transport to use:\n"
+ "1: TCP, binary encoded (default)\n"
+ "2: HTTP, SOAP encoded\n"
+ "\n"
+ "other commands\n"
+ "s: shutdown server\n"
+ "x: exit\n"
+ "?: help\n");
}
public static int Main(string[] args)
{
const int repetitions = 100000;
string addr = null;
string tcpPort = "10001";
string httpPort = "10002";
if(args.Length == 0)
{
addr = "127.0.0.1";
}
else if(args.Length == 1)
{
addr = args[0];
}
else if(args.Length == 3)
{
addr = args[0];
tcpPort = args[1];
httpPort = args[2];
}
else
{
Console.Error.WriteLine("usage: client [host [tcpPort httpPort]]");
Environment.Exit(1);
}
Service.Latency tcpProxy = null;
Service.Latency httpProxy = null;
try
{
NetTcpBinding tcpBinding = new NetTcpBinding(SecurityMode.None);
EndpointAddress tcpAddr = new EndpointAddress("net.tcp://" + addr + ":" + tcpPort);
ChannelFactory<Service.Latency> tcpFac = new ChannelFactory<Service.Latency>(tcpBinding, tcpAddr);
tcpProxy = tcpFac.CreateChannel();
WSHttpBinding httpBinding = new WSHttpBinding(SecurityMode.None);
EndpointAddress httpAddr = new EndpointAddress("http://" + addr + ":" + httpPort);
ChannelFactory<Service.Latency> httpFac = new ChannelFactory<Service.Latency>(httpBinding, httpAddr);
httpProxy = httpFac.CreateChannel();
}
catch(Exception ex)
{
Console.Error.WriteLine(ex);
Environment.Exit(1);
}
try
{
Console.Write("Warming up...");
Console.Out.Flush();
for(int i = 0; i < 20000; ++i)
{
tcpProxy.o();
}
for(int i = 0; i < 20000; ++i)
{
httpProxy.o();
}
}
catch(Exception ex)
{
Console.Error.WriteLine(ex);
Environment.Exit(1);
}
menu();
Service.Latency proxy = tcpProxy;
String line = null;
do
{
try
{
Console.Write("==> ");
Console.Out.Flush();
line = Console.ReadLine();
if(line == null)
{
break;
}
if(line.Equals("1"))
{
Console.WriteLine("Using TCP");
proxy = tcpProxy;
}
else if(line.Equals("2"))
{
Console.WriteLine("Using HTTP");
proxy = httpProxy;
}
else if(line.Equals("r"))
{
Console.WriteLine("Pinging server " + repetitions + " times via " +
(proxy == tcpProxy ? "TCP" : "HTTP") + ". (This may take a while.)");
DateTime startTime = DateTime.Now;
for(int i = 0; i < repetitions; ++i)
{
proxy.o();
}
TimeSpan elapsed = DateTime.Now - startTime;
Console.WriteLine(elapsed.TotalMilliseconds + "ms" );
}
else if(line.Equals("s"))
{
proxy.shutdown();
}
else if(line.Equals("x"))
{
// Nothing to do, will exit below.
}
else if(line.Equals("?"))
{
menu();
}
else
{
Console.WriteLine("unknown command `" + line + "'");
}
}
catch(Exception ex)
{
Console.Error.WriteLine(ex);
}
} while(!line.Equals("x"));
return 0;
}
}
|