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
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
|
/*
* Copyright 2000-2014 Vaadin Ltd.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
package com.vaadin.launcher;
import java.io.File;
import java.io.IOException;
import java.io.OutputStream;
import java.net.InetAddress;
import java.net.ServerSocket;
import java.net.Socket;
import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.EnumSet;
import java.util.HashMap;
import java.util.Map;
import java.util.Map.Entry;
import javax.servlet.DispatcherType;
import javax.servlet.Filter;
import javax.servlet.FilterChain;
import javax.servlet.FilterConfig;
import javax.servlet.ServletException;
import javax.servlet.ServletRequest;
import javax.servlet.ServletResponse;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.eclipse.jetty.server.Connector;
import org.eclipse.jetty.server.Server;
import org.eclipse.jetty.server.nio.SelectChannelConnector;
import org.eclipse.jetty.server.ssl.SslSocketConnector;
import org.eclipse.jetty.webapp.WebAppContext;
import com.vaadin.launcher.util.BrowserLauncher;
/**
* Class for running Jetty servlet container within Eclipse project.
*
*/
public class DevelopmentServerLauncher {
private static final String KEYSTORE = "uitest/src/com/vaadin/launcher/keystore";
private final static int serverPort = 8888;
/**
* Main function for running Jetty.
*
* Command line Arguments are passed through to Jetty, see runServer method
* for options.
*
* @param args
* @throws Exception
*/
public static void main(String[] args) {
System.setProperty("java.awt.headless", "true");
assertAssertionsEnabled();
// Pass-through of arguments for Jetty
final Map<String, String> serverArgs = parseArguments(args);
if (!serverArgs.containsKey("shutdownPort")) {
serverArgs.put("shutdownPort", "8889");
}
int port = Integer.parseInt(serverArgs.get("shutdownPort"));
if (port > 0) {
try {
// Try to notify another instance that it's time to close
Socket socket = new Socket((String) null, port);
// Wait until the other instance says it has closed
socket.getInputStream().read();
// Then tidy up
socket.close();
} catch (IOException e) {
// Ignore if port is not open
}
}
// Start Jetty
System.out.println("Starting Jetty servlet container.");
String url;
try {
url = runServer(serverArgs, "Development Server Mode");
// Start Browser
if (serverArgs.containsKey("gui") && url != null) {
System.out.println("Starting Web Browser.");
// Open browser into application URL
BrowserLauncher.openBrowser(url);
}
} catch (Exception e) {
// NOP exception already on console by jetty
}
}
private static void assertAssertionsEnabled() {
try {
assert false;
System.err.println("You should run "
+ DevelopmentServerLauncher.class.getSimpleName()
+ " with assertions enabled. Add -ea as a VM argument.");
} catch (AssertionError e) {
// All is fine
}
}
/**
* Run the server with specified arguments.
*
* @param serverArgs
* @return
* @throws Exception
* @throws Exception
*/
protected static String runServer(Map<String, String> serverArgs,
String mode) throws Exception {
// Assign default values for some arguments
assignDefault(serverArgs, "webroot", "WebContent");
assignDefault(serverArgs, "httpPort", "" + serverPort);
assignDefault(serverArgs, "context", "");
int port = serverPort;
try {
port = Integer.parseInt(serverArgs.get("httpPort"));
} catch (NumberFormatException e) {
// keep default value for port
}
// Add help for System.out
System.out
.println("-------------------------------------------------\n"
+ "Starting Vaadin in "
+ mode
+ ".\n"
+ "Running in http://localhost:"
+ port
+ "\n-------------------------------------------------\n");
final Server server = new Server();
final Connector connector = new SelectChannelConnector();
connector.setPort(port);
if (serverArgs.containsKey("withssl")) {
final SslSocketConnector sslConnector = new SslSocketConnector();
sslConnector.setPort(8444);
sslConnector.setTruststore(KEYSTORE);
sslConnector.setTrustPassword("password");
sslConnector.setKeystore(KEYSTORE);
sslConnector.setKeyPassword("password");
sslConnector.setPassword("password");
server.setConnectors(new Connector[] { connector, sslConnector });
} else {
server.setConnectors(new Connector[] { connector });
}
final WebAppContext webappcontext = new WebAppContext();
String path = DevelopmentServerLauncher.class.getPackage().getName()
.replace(".", File.separator);
webappcontext.setContextPath(serverArgs.get("context"));
webappcontext.setWar(serverArgs.get("webroot"));
server.setHandler(webappcontext);
// --slowdown=/run/APP/PUBLISHED/*,/other/path/asd.jpg
// slows down specified paths
if (serverArgs.containsKey("slowdown")) {
String[] paths = serverArgs.get("slowdown").split(",");
for (String p : paths) {
System.out.println("Slowing down: " + p);
webappcontext.addFilter(SlowFilter.class, p,
EnumSet.of(DispatcherType.REQUEST));
}
}
// --cache=/run/APP/PUBLISHED/*,/other/path/asd.jpg
// caches specified paths
if (serverArgs.containsKey("cache")) {
String[] paths = serverArgs.get("cache").split(",");
for (String p : paths) {
System.out.println("Enabling cache for: " + p);
webappcontext.addFilter(CacheFilter.class, p,
EnumSet.of(DispatcherType.REQUEST));
}
}
try {
server.start();
if (serverArgs.containsKey("shutdownPort")) {
int shutdownPort = Integer.parseInt(serverArgs
.get("shutdownPort"));
final ServerSocket serverSocket = new ServerSocket(
shutdownPort, 1, InetAddress.getByName("127.0.0.1"));
new Thread() {
@Override
public void run() {
try {
System.out
.println("Waiting for shutdown signal on port "
+ serverSocket.getLocalPort());
// Start waiting for a close signal
Socket accept = serverSocket.accept();
// First stop listening to the port
serverSocket.close();
// Start a thread that kills the JVM if
// server.stop() doesn't have any effect
Thread interruptThread = new Thread() {
@Override
public void run() {
try {
Thread.sleep(5000);
if (!server.isStopped()) {
System.out
.println("Jetty still running. Closing JVM.");
dumpThreadStacks();
System.exit(-1);
}
} catch (InterruptedException e) {
// Interrupted if server.stop() was
// successful
}
}
};
interruptThread.setDaemon(true);
interruptThread.start();
// Then stop the jetty server
server.stop();
interruptThread.interrupt();
// Send a byte to tell the other process that it can
// start jetty
OutputStream outputStream = accept
.getOutputStream();
outputStream.write(0);
outputStream.flush();
// Finally close the socket
accept.close();
} catch (Exception e) {
e.printStackTrace();
}
}
}.start();
}
} catch (Exception e) {
server.stop();
throw e;
}
return "http://localhost:" + port + serverArgs.get("context");
}
/**
* Assign default value for given key.
*
* @param map
* @param key
* @param value
*/
private static void assignDefault(Map<String, String> map, String key,
String value) {
if (!map.containsKey(key)) {
map.put(key, value);
}
}
/**
* Parse all command line arguments into a map.
*
* Arguments format "key=value" are put into map.
*
* @param args
* @return map of arguments key value pairs.
*/
protected static Map<String, String> parseArguments(String[] args) {
final Map<String, String> map = new HashMap<String, String>();
for (int i = 0; i < args.length; i++) {
final int d = args[i].indexOf("=");
if (d > 0 && d < args[i].length() && args[i].startsWith("--")) {
final String name = args[i].substring(2, d);
final String value = args[i].substring(d + 1);
map.put(name, value);
}
}
return map;
}
/**
* Sleeps for 2-5 seconds when serving resources that matches given
* pathSpec. --slowdown=/run/APP/PUBLISHED/*,/other/path/asd.jpg
*/
public static class SlowFilter implements Filter {
@Override
public void init(FilterConfig filterConfig) throws ServletException {
// TODO Auto-generated method stub
}
@Override
public void doFilter(ServletRequest request, ServletResponse response,
FilterChain chain) throws IOException, ServletException {
String path = ((HttpServletRequest) request).getPathInfo();
long delay = Math.round(Math.random() * 3000) + 2000;
System.out.println("Delaying " + path + " for " + delay);
try {
Thread.sleep(delay);
} catch (InterruptedException e) {
System.out.println("Delay interrupted for " + path);
} finally {
System.out.println("Resuming " + path);
}
chain.doFilter(request, response);
}
@Override
public void destroy() {
// TODO Auto-generated method stub
}
}
/**
* Adds "Expires" and "Cache-control" headers when serving resources that
* match given pathSpec, in order to cache resource for CACHE_MINUTES.
* --cache=/run/APP/PUBLISHED/*,/other/path/asd.jpg
*/
public static class CacheFilter implements Filter {
private static final int CACHE_MINUTES = 1;
@Override
public void init(FilterConfig filterConfig) throws ServletException {
// TODO Auto-generated method stub
}
@Override
public void doFilter(ServletRequest request, ServletResponse response,
FilterChain chain) throws IOException, ServletException {
String path = ((HttpServletRequest) request).getPathInfo();
System.out.println("Caching " + path + " for " + CACHE_MINUTES
+ " minutes");
Calendar calendar = Calendar.getInstance();
calendar.add(Calendar.MINUTE, CACHE_MINUTES);
String expires = new SimpleDateFormat("EEE, dd MMM yyyy HH:mm:ss z")
.format(calendar.getTime());
((HttpServletResponse) response).setHeader("Expires", expires);
((HttpServletResponse) response).setHeader("Cache-Control",
"max-age=" + (CACHE_MINUTES * 60));
chain.doFilter(request, response);
}
@Override
public void destroy() {
// TODO Auto-generated method stub
}
}
private static void dumpThreadStacks() {
for (Entry<Thread, StackTraceElement[]> entry : Thread
.getAllStackTraces().entrySet()) {
Thread thread = entry.getKey();
StackTraceElement[] stackTraceElements = entry.getValue();
System.out.println(thread.getName() + " - " + thread.getState());
for (StackTraceElement stackTraceElement : stackTraceElements) {
System.out.println(" at " + stackTraceElement.toString());
}
System.out.println();
}
}
}
|