forked from TooTallNate/Java-WebSocket
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathServerStressTest.java
More file actions
217 lines (193 loc) · 5.54 KB
/
ServerStressTest.java
File metadata and controls
217 lines (193 loc) · 5.54 KB
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
import java.awt.FlowLayout;
import java.awt.GridLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.net.URI;
import java.net.URISyntaxException;
import java.nio.channels.NotYetConnectedException;
import java.util.Collections;
import java.util.LinkedList;
import java.util.List;
import java.util.Timer;
import java.util.TimerTask;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JSlider;
import javax.swing.JTextArea;
import javax.swing.JTextField;
import javax.swing.event.ChangeEvent;
import javax.swing.event.ChangeListener;
import org.java_websocket.client.WebSocketClient;
public class ServerStressTest extends JFrame {
private JSlider clients;
private JSlider interval;
private JSlider joinrate;
private JButton start, stop, reset;
private JLabel joinratelabel = new JLabel();
private JLabel clientslabel = new JLabel();
private JLabel intervallabel = new JLabel();
private JTextField uriinput = new JTextField( "ws://localhost:8887" );
private JTextArea text = new JTextArea( "payload" );
private Timer timer = new Timer( true );
private Thread adjustthread;
private int notyetconnected = 0;
public ServerStressTest() {
setTitle( "ServerStressTest" );
setDefaultCloseOperation( EXIT_ON_CLOSE );
start = new JButton( "Start" );
start.addActionListener( new ActionListener() {
@Override
public void actionPerformed( ActionEvent e ) {
start.setEnabled( false );
stop.setEnabled( true );
reset.setEnabled( false );
interval.setEnabled( false );
clients.setEnabled( false );
stopAdjust();
adjustthread = new Thread( new Runnable() {
@Override
public void run() {
try {
adjust();
} catch ( InterruptedException e ) {
System.out.println( "adjust chanced" );
}
}
} );
adjustthread.start();
}
} );
stop = new JButton( "Stop" );
stop.setEnabled( false );
stop.addActionListener( new ActionListener() {
@Override
public void actionPerformed( ActionEvent e ) {
timer.cancel();
stopAdjust();
start.setEnabled( true );
stop.setEnabled( false );
reset.setEnabled( true );
joinrate.setEnabled( true );
interval.setEnabled( true );
clients.setEnabled( true );
}
} );
reset = new JButton( "reset" );
reset.setEnabled( true );
reset.addActionListener( new ActionListener() {
@Override
public void actionPerformed( ActionEvent e ) {
while ( !websockets.isEmpty() )
websockets.remove( 0 ).close();
}
} );
joinrate = new JSlider( 0, 5000 );
joinrate.addChangeListener( new ChangeListener() {
@Override
public void stateChanged( ChangeEvent e ) {
joinratelabel.setText( "Joinrate: " + joinrate.getValue() + " ms " );
}
} );
clients = new JSlider( 0, 10000 );
clients.addChangeListener( new ChangeListener() {
@Override
public void stateChanged( ChangeEvent e ) {
clientslabel.setText( "Clients: " + clients.getValue() );
}
} );
interval = new JSlider( 0, 5000 );
interval.addChangeListener( new ChangeListener() {
@Override
public void stateChanged( ChangeEvent e ) {
intervallabel.setText( "Interval: " + interval.getValue() + " ms " );
}
} );
setSize( 300, 400 );
setLayout( new GridLayout( 10, 1, 10, 10 ) );
add( new JLabel( "URI" ) );
add( uriinput );
add( joinratelabel );
add( joinrate );
add( clientslabel );
add( clients );
add( intervallabel );
add( interval );
JPanel south = new JPanel( new FlowLayout( FlowLayout.CENTER ) );
add( text );
add( south );
south.add( start );
south.add( stop );
south.add( reset );
joinrate.setValue( 200 );
interval.setValue( 1000 );
clients.setValue( 1 );
}
List<WebSocketClient> websockets = Collections.synchronizedList( new LinkedList<WebSocketClient>() );
URI uri;
public void adjust() throws InterruptedException {
System.out.println( "Adjust" );
try {
uri = new URI( uriinput.getText() );
} catch ( URISyntaxException e ) {
e.printStackTrace();
}
int totalclients = clients.getValue();
while ( websockets.size() < totalclients ) {
WebSocketClient cl = new ExampleClient( uri ) {
@Override
public void onClose( int code, String reason, boolean remote ) {
System.out.println( "Closed duo " + code + " " + reason );
clients.setValue( websockets.size() );
websockets.remove( this );
}
};
cl.connect();
clients.setValue( websockets.size() );
websockets.add( cl );
Thread.sleep( joinrate.getValue() );
}
while ( websockets.size() > clients.getValue() ) {
websockets.remove( 0 ).close();
}
timer = new Timer( true );
timer.scheduleAtFixedRate( new TimerTask() {
@Override
public void run() {
send();
}
}, 0, interval.getValue() );
}
public void stopAdjust() {
if( adjustthread != null ) {
adjustthread.interrupt();
try {
adjustthread.join();
} catch ( InterruptedException e ) {
e.printStackTrace();
}
}
}
public void send() {
notyetconnected = 0;
String payload = text.getText();
long time1 = System.currentTimeMillis();
synchronized ( websockets ) {
for( WebSocketClient cl : websockets ) {
try {
cl.send( payload );
} catch ( NotYetConnectedException e ) {
notyetconnected++;
}
}
}
System.out.println( websockets.size() + "/" + notyetconnected + " clients sent \"" + payload + "\"" + ( System.currentTimeMillis() - time1 ) );
}
/**
* @param args
*/
public static void main( String[] args ) {
new ServerStressTest().setVisible( true );
}
}