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
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
|
/*
@ITMillApache2LicenseForJavaFiles@
*/
package com.itmill.toolkit.terminal.gwt.server;
import java.io.BufferedWriter;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.io.OutputStreamWriter;
import java.io.PrintWriter;
import java.io.Writer;
import java.lang.reflect.Constructor;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.net.MalformedURLException;
import java.net.URL;
import java.util.Collection;
import java.util.Enumeration;
import java.util.HashMap;
import java.util.Iterator;
import java.util.Map;
import java.util.Properties;
import javax.servlet.ServletContext;
import javax.servlet.ServletException;
import javax.servlet.ServletOutputStream;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.http.HttpSession;
import org.xml.sax.SAXException;
import com.itmill.toolkit.Application;
import com.itmill.toolkit.Application.SystemMessages;
import com.itmill.toolkit.external.org.apache.commons.fileupload.servlet.ServletFileUpload;
import com.itmill.toolkit.service.FileTypeResolver;
import com.itmill.toolkit.terminal.DownloadStream;
import com.itmill.toolkit.terminal.ParameterHandler;
import com.itmill.toolkit.terminal.ThemeResource;
import com.itmill.toolkit.terminal.URIHandler;
import com.itmill.toolkit.ui.Window;
/**
* This servlet connects IT Mill Toolkit Application to Web.
*
* @author IT Mill Ltd.
* @version
* @VERSION@
* @since 5.0
*/
public class ApplicationServlet extends HttpServlet {
private static final long serialVersionUID = -4937882979845826574L;
/**
* Version number of this release. For example "5.0.0".
*/
public static final String VERSION;
/**
* Major version number. For example 5 in 5.1.0.
*/
public static final int VERSION_MAJOR;
/**
* Minor version number. For example 1 in 5.1.0.
*/
public static final int VERSION_MINOR;
/**
* Builds number. For example 0-custom_tag in 5.0.0-custom_tag.
*/
public static final String VERSION_BUILD;
/* Initialize version numbers from string replaced by build-script. */
static {
if ("@VERSION@".equals("@" + "VERSION" + "@")) {
VERSION = "5.9.9-INTERNAL-NONVERSIONED-DEBUG-BUILD";
} else {
VERSION = "@VERSION@";
}
final String[] digits = VERSION.split("\\.");
VERSION_MAJOR = Integer.parseInt(digits[0]);
VERSION_MINOR = Integer.parseInt(digits[1]);
VERSION_BUILD = digits[2];
}
/**
* If the attribute is present in the request, a html fragment will be
* written instead of a whole page.
*/
public static final String REQUEST_FRAGMENT = ApplicationServlet.class
.getName()
+ ".fragment";
/**
* This request attribute forces widgetset used; e.g for portlets that can
* not have different widgetsets.
*/
public static final String REQUEST_WIDGETSET = ApplicationServlet.class
.getName()
+ ".widgetset";
/**
* This request attribute is used to add styles to the main element. E.g
* "height:500px" generates a style="height:500px" to the main element,
* useful from some embedding situations (e.g portlet include.)
*/
public static final String REQUEST_APPSTYLE = ApplicationServlet.class
.getName()
+ ".style";
// Configurable parameter names
private static final String PARAMETER_DEBUG = "Debug";
private static final String PARAMETER_ITMILL_RESOURCES = "Resources";
private static final int DEFAULT_BUFFER_SIZE = 32 * 1024;
private static final int MAX_BUFFER_SIZE = 64 * 1024;
// TODO This is session specific not servlet wide data. No need to store
// this here, move it to Session from where it can be queried when required
protected static HashMap applicationToAjaxAppMgrMap = new HashMap();
private static final String RESOURCE_URI = "/RES/";
private static final String AJAX_UIDL_URI = "/UIDL";
static final String THEME_DIRECTORY_PATH = "ITMILL/themes/";
private static final int DEFAULT_THEME_CACHETIME = 1000 * 60 * 60 * 24;
static final String WIDGETSET_DIRECTORY_PATH = "ITMILL/widgetsets/";
// Name of the default widget set, used if not specified in web.xml
private static final String DEFAULT_WIDGETSET = "com.itmill.toolkit.terminal.gwt.DefaultWidgetSet";
// Widget set parameter name
private static final String PARAMETER_WIDGETSET = "widgetset";
// Private fields
private Class applicationClass;
private Properties applicationProperties;
private String resourcePath = null;
private String debugMode = "";
// Is this servlet application runner
boolean isApplicationRunnerServlet = false;
// If servlet is application runner, store request's classname
String applicationRunnerClassname = null;
private ClassLoader classLoader;
private boolean testingToolsActive = false;
private String testingToolsServerUri = null;
/**
* Called by the servlet container to indicate to a servlet that the servlet
* is being placed into service.
*
* @param servletConfig
* the object containing the servlet's configuration and
* initialization parameters
* @throws javax.servlet.ServletException
* if an exception has occurred that interferes with the
* servlet's normal operation.
*/
public void init(javax.servlet.ServletConfig servletConfig)
throws javax.servlet.ServletException {
super.init(servletConfig);
// Get applicationRunner
final String applicationRunner = servletConfig
.getInitParameter("applicationRunner");
if (applicationRunner != null) {
if ("true".equals(applicationRunner)) {
isApplicationRunnerServlet = true;
} else if ("false".equals(applicationRunner)) {
isApplicationRunnerServlet = false;
} else {
throw new ServletException(
"If applicationRunner parameter is given for an application, it must be 'true' or 'false'");
}
}
// Stores the application parameters into Properties object
applicationProperties = new Properties();
for (final Enumeration e = servletConfig.getInitParameterNames(); e
.hasMoreElements();) {
final String name = (String) e.nextElement();
applicationProperties.setProperty(name, servletConfig
.getInitParameter(name));
}
// Overrides with server.xml parameters
final ServletContext context = servletConfig.getServletContext();
for (final Enumeration e = context.getInitParameterNames(); e
.hasMoreElements();) {
final String name = (String) e.nextElement();
applicationProperties.setProperty(name, context
.getInitParameter(name));
}
// Gets the debug window parameter
final String debug = getApplicationOrSystemProperty(PARAMETER_DEBUG, "")
.toLowerCase();
// Enables application specific debug
if (!"".equals(debug) && !"true".equals(debug)
&& !"false".equals(debug)) {
throw new ServletException(
"If debug parameter is given for an application, it must be 'true' or 'false'");
}
debugMode = debug;
// Gets Testing Tools parameters if feature is activated
if (getApplicationOrSystemProperty("testingToolsActive", "false")
.equals("true")) {
testingToolsActive = true;
testingToolsServerUri = getApplicationOrSystemProperty(
"testingToolsServerUri", null);
}
// Gets custom class loader
final String classLoaderName = getApplicationOrSystemProperty(
"ClassLoader", null);
ClassLoader classLoader;
if (classLoaderName == null) {
classLoader = getClass().getClassLoader();
} else {
try {
final Class classLoaderClass = getClass().getClassLoader()
.loadClass(classLoaderName);
final Constructor c = classLoaderClass
.getConstructor(new Class[] { ClassLoader.class });
classLoader = (ClassLoader) c
.newInstance(new Object[] { getClass().getClassLoader() });
} catch (final Exception e) {
throw new ServletException(
"Could not find specified class loader: "
+ classLoaderName, e);
}
}
this.classLoader = classLoader;
// Loads the application class using the same class loader
// as the servlet itself
if (!isApplicationRunnerServlet) {
// Gets the application class name
final String applicationClassName = servletConfig
.getInitParameter("application");
if (applicationClassName == null) {
throw new ServletException(
"Application not specified in servlet parameters");
}
try {
applicationClass = classLoader.loadClass(applicationClassName);
} catch (final ClassNotFoundException e) {
throw new ServletException("Failed to load application class: "
+ applicationClassName);
}
} else {
// This servlet is in application runner mode, it uses classloader
// later to create Applications based on URL
}
}
/**
* Gets an application or system property value.
*
* @param parameterName
* the Name or the parameter.
* @param defaultValue
* the Default to be used.
* @return String value or default if not found
*/
private String getApplicationOrSystemProperty(String parameterName,
String defaultValue) {
// Try application properties
String val = applicationProperties.getProperty(parameterName);
if (val != null) {
return val;
}
// Try lowercased application properties for backward compability with
// 3.0.2 and earlier
val = applicationProperties.getProperty(parameterName.toLowerCase());
if (val != null) {
return val;
}
// Try system properties
String pkgName;
final Package pkg = getClass().getPackage();
if (pkg != null) {
pkgName = pkg.getName();
} else {
final String className = getClass().getName();
pkgName = new String(className.toCharArray(), 0, className
.lastIndexOf('.'));
}
val = System.getProperty(pkgName + "." + parameterName);
if (val != null) {
return val;
}
// Try lowercased system properties
val = System.getProperty(pkgName + "." + parameterName.toLowerCase());
if (val != null) {
return val;
}
return defaultValue;
}
/**
* Receives standard HTTP requests from the public service method and
* dispatches them.
*
* @param request
* the object that contains the request the client made of the
* servlet.
* @param response
* the object that contains the response the servlet returns to
* the client.
* @throws ServletException
* if an input or output error occurs while the servlet is
* handling the TRACE request.
* @throws IOException
* if the request for the TRACE cannot be handled.
*/
protected void service(HttpServletRequest request,
HttpServletResponse response) throws ServletException, IOException {
// check if we should serve static files (widgetsets, themes)
if ((request.getPathInfo() != null)
&& (request.getPathInfo().length() > 10)) {
if ((request.getContextPath() != null)
&& (request.getRequestURI().startsWith("/ITMILL/"))) {
serveStaticResourcesInITMILL(request.getRequestURI(), response);
return;
} else if (request.getRequestURI().startsWith(
request.getContextPath() + "/ITMILL/")) {
serveStaticResourcesInITMILL(request.getRequestURI().substring(
request.getContextPath().length()), response);
return;
}
}
Application application = null;
boolean UIDLrequest = false;
try {
// handle file upload if multipart request
if (ServletFileUpload.isMultipartContent(request)) {
application = getExistingApplication(request, response);
if (application == null) {
throw new SessionExpired();
}
// Invokes context transaction listeners
// note: endTransaction is called on finalize below
((WebApplicationContext) application.getContext())
.startTransaction(application, request);
getApplicationManager(application).handleFileUpload(request,
response);
return;
}
// Update browser details
final WebBrowser browser = WebApplicationContext
.getApplicationContext(request.getSession()).getBrowser();
browser.updateBrowserProperties(request);
// TODO Add screen height and width to the GWT client
// Handles AJAX UIDL requests
if (request.getPathInfo() != null) {
String compare = AJAX_UIDL_URI;
if (isApplicationRunnerServlet) {
final String[] URIparts = getApplicationRunnerURIs(request);
applicationRunnerClassname = URIparts[4];
compare = "/" + applicationRunnerClassname + AJAX_UIDL_URI;
}
if (request.getPathInfo().startsWith(compare + "/")
|| request.getPathInfo().endsWith(compare)) {
UIDLrequest = true;
application = getExistingApplication(request, response);
if (application == null) {
// No existing applications found
final String repaintAll = request
.getParameter("repaintAll");
if ((repaintAll != null) && (repaintAll.equals("1"))) {
// UIDL request contains valid repaintAll=1 event,
// probably user wants to initiate new application
// through custom index.html without writeAjaxPage
application = getNewApplication(request, response);
} else {
// UIDL request refers to non-existing application
throw new SessionExpired();
}
}
// Invokes context transaction listeners
// note: endTransaction is called on finalize below
((WebApplicationContext) application.getContext())
.startTransaction(application, request);
// Handle UIDL request
getApplicationManager(application).handleUidlRequest(
request, response, this);
return;
}
}
// Get existing application
application = getExistingApplication(request, response);
if (application == null
|| request.getParameter("restartApplication") != null
|| request.getParameter("closeApplication") != null) {
if (application != null) {
application.close();
final HttpSession session = request.getSession(false);
if (session != null) {
ApplicationServlet.applicationToAjaxAppMgrMap
.remove(application);
WebApplicationContext.getApplicationContext(session)
.removeApplication(application);
}
}
if (request.getParameter("closeApplication") != null) {
return;
}
// Not found, creating new application
application = getNewApplication(request, response);
}
// Invokes context transaction listeners
// note: endTransaction is called on finalize below
((WebApplicationContext) application.getContext())
.startTransaction(application, request);
// Removes application if it has stopped
if (!application.isRunning()) {
endApplication(request, response, application);
return;
}
// Finds the window within the application
Window window = null;
window = getApplicationWindow(request, application);
if (window == null) {
throw new ServletException(
"Application did not give any window, did you remember to setMainWindow()?");
}
// Handle parameters
final Map parameters = request.getParameterMap();
if (window != null && parameters != null) {
window.handleParameters(parameters);
}
// Is this a download request from application
DownloadStream download = null;
// Handles the URI if the application is still running
download = handleURI(application, request, response);
// If this is not a download request
if (download == null) {
// Sets terminal type for the window, if not already set
if (window.getTerminal() == null) {
window.setTerminal(browser);
}
// Finds theme name
String themeName = window.getTheme();
if (request.getParameter("theme") != null) {
themeName = request.getParameter("theme");
}
if (themeName == null) {
themeName = "default";
}
// Handles resource requests
if (handleResourceRequest(request, response, themeName)) {
return;
}
// Send initial AJAX page that kickstarts Toolkit application
writeAjaxPage(request, response, window, themeName, application);
} else {
// Client downloads an resource
handleDownload(download, request, response);
}
} catch (final SessionExpired e) {
// Session has expired, notify user
try {
Application.SystemMessages ci = getSystemMessages();
if (!UIDLrequest) {
// 'plain' http req - e.g. browser reload;
// just go ahead redirect the browser
response.sendRedirect(ci.getSessionExpiredURL());
} else {
// send uidl redirect
criticalNotification(request, response, ci
.getSessionExpiredCaption(), ci
.getSessionExpiredMessage(), ci
.getSessionExpiredURL());
}
} catch (SystemMessageException ee) {
throw new ServletException(ee);
}
} catch (final Throwable e) {
// if this was an UIDL request, response UIDL back to client
if (UIDLrequest) {
Application.SystemMessages ci = getSystemMessages();
criticalNotification(request, response, ci
.getInternalErrorCaption(), ci
.getInternalErrorMessage(), ci.getInternalErrorURL());
} else {
// Re-throw other exceptions
throw new ServletException(e);
}
} finally {
// Notifies transaction end
if (application != null) {
((WebApplicationContext) application.getContext())
.endTransaction(application, request);
}
}
}
/** Get system messages from the current application class */
private SystemMessages getSystemMessages() {
try {
Class appCls = applicationClass;
if (isApplicationRunnerServlet) {
appCls = getClass().getClassLoader().loadClass(
applicationRunnerClassname);
}
Method m = appCls.getMethod("getSystemMessages", (Class[]) null);
return (Application.SystemMessages) m.invoke(null, (Object[]) null);
} catch (ClassNotFoundException e) {
// This should never happen
throw new SystemMessageException(e);
} catch (SecurityException e) {
throw new SystemMessageException(
"Application.getSystemMessage() should be static public", e);
} catch (NoSuchMethodException e) {
// This is completely ok and should be silently ignored
} catch (IllegalArgumentException e) {
// This should never happen
throw new SystemMessageException(e);
} catch (IllegalAccessException e) {
throw new SystemMessageException(
"Application.getSystemMessage() should be static public", e);
} catch (InvocationTargetException e) {
// This should never happen
throw new SystemMessageException(e);
}
return Application.getSystemMessages();
}
/**
* Serve resources in ITMILL directory if requested.
*
* @param request
* @param response
* @throws IOException
*/
private void serveStaticResourcesInITMILL(String filename,
HttpServletResponse response) throws IOException {
final ServletContext sc = getServletContext();
InputStream is = sc.getResourceAsStream(filename);
if (is == null) {
// try if requested file is found from classloader
// strip leading "/" otherwise stream from JAR wont work
filename = filename.substring(1);
is = classLoader.getResourceAsStream(filename);
if (is == null) {
// cannot serve requested file
System.err
.println("Requested resource ["
+ filename
+ "] not found from filesystem or through class loader."
+ " Add widgetset and/or theme JAR to your classpath or add files to WebContent/ITMILL folder.");
response.setStatus(404);
return;
}
}
final String mimetype = sc.getMimeType(filename);
if (mimetype != null) {
response.setContentType(mimetype);
}
final OutputStream os = response.getOutputStream();
final byte buffer[] = new byte[20000];
int bytes;
while ((bytes = is.read(buffer)) >= 0) {
os.write(buffer, 0, bytes);
}
}
/**
* Send notification to client's application. Used to notify client of
* critical errors and session expiration due to long inactivity. Server has
* no knowledge of what application client refers to.
*
* @param request
* the HTTP request instance.
* @param response
* the HTTP response to write to.
* @param caption
* for the notification
* @param message
* for the notification
* @param url
* url to load after message, null for current page
* @throws IOException
* if the writing failed due to input/output error.
*/
void criticalNotification(HttpServletRequest request,
HttpServletResponse response, String caption, String message,
String url) throws IOException {
// clients JS app is still running, but server application either
// no longer exists or it might fail to perform reasonably.
// send a notification to client's application and link how
// to "restart" application.
if (caption != null) {
caption = "\"" + caption + "\"";
}
if (message != null) {
message = "\"" + message + "\"";
}
if (url != null) {
url = "\"" + url + "\"";
}
// Set the response type
response.setContentType("application/json; charset=UTF-8");
final ServletOutputStream out = response.getOutputStream();
final PrintWriter outWriter = new PrintWriter(new BufferedWriter(
new OutputStreamWriter(out, "UTF-8")));
outWriter.print("for(;;);[{\"changes\":[], \"meta\" : {"
+ "\"appError\": {" + "\"caption\":" + caption + ","
+ "\"message\" : " + message + "," + "\"url\" : " + url
+ "}}, \"resources\": {}, \"locales\":[]}]");
outWriter.flush();
outWriter.close();
out.flush();
}
/**
* Resolve application URL and widgetset URL. Widgetset is not application
* specific.
*
* @param request
* @return string array consisting of application url first and then
* widgetset url.
* @throws MalformedURLException
*/
private String[] getAppAndWidgetUrl(HttpServletRequest request)
throws MalformedURLException {
// don't use server and port in uri. It may cause problems with some
// virtual server configurations which lose the server name
String appUrl = null;
String widgetsetUrl = null;
if (isApplicationRunnerServlet) {
final String[] URIparts = getApplicationRunnerURIs(request);
widgetsetUrl = URIparts[0];
if (widgetsetUrl.equals("/")) {
widgetsetUrl = "";
}
appUrl = URIparts[1];
} else {
String[] urlParts;
urlParts = getApplicationUrl(request).toString().split("\\/");
appUrl = "";
widgetsetUrl = "";
// if context is specified add it to widgetsetUrl
String ctxPath = request.getContextPath();
if (ctxPath.length() == 0
&& request
.getAttribute("javax.servlet.include.context_path") != null) {
// include request (e.g portlet), get contex path from
// attribute
ctxPath = (String) request
.getAttribute("javax.servlet.include.context_path");
}
if (urlParts.length > 3
&& urlParts[3].equals(ctxPath.replaceAll("\\/", ""))) {
widgetsetUrl += "/" + urlParts[3];
}
for (int i = 3; i < urlParts.length; i++) {
appUrl += "/" + urlParts[i];
}
if (appUrl.endsWith("/")) {
appUrl = appUrl.substring(0, appUrl.length() - 1);
}
}
return new String[] { appUrl, widgetsetUrl };
}
/**
*
* @param request
* the HTTP request.
* @param response
* the HTTP response to write to.
* @param out
* @param unhandledParameters
* @param window
* @param terminalType
* @param theme
* @throws IOException
* if the writing failed due to input/output error.
* @throws MalformedURLException
* if the application is denied access the persistent data store
* represented by the given URL.
*/
private void writeAjaxPage(HttpServletRequest request,
HttpServletResponse response, Window window, String themeName,
Application application) throws IOException, MalformedURLException {
// e.g portlets only want a html fragment
boolean fragment = (request.getAttribute(REQUEST_FRAGMENT) != null);
if (fragment) {
request.setAttribute(Application.class.getName(), application);
}
final BufferedWriter page = new BufferedWriter(new OutputStreamWriter(
response.getOutputStream()));
String pathInfo = request.getPathInfo() == null ? "/" : request
.getPathInfo();
if (isApplicationRunnerServlet) {
pathInfo = pathInfo
.substring(applicationRunnerClassname.length() + 1);
}
String title = ((window == null || window.getCaption() == null) ? "IT Mill Toolkit 5"
: window.getCaption());
String widgetset = null;
// request widgetset takes precedence (e.g portlet include)
Object reqParam = request.getAttribute(REQUEST_WIDGETSET);
try {
widgetset = (String) reqParam;
} catch (Exception e) {
// FIXME: Handle exception
System.err.println("Warning: request param '" + REQUEST_WIDGETSET
+ "' could not be used (is not a String)" + e);
}
if (widgetset == null) {
widgetset = applicationProperties.getProperty(PARAMETER_WIDGETSET);
}
if (widgetset == null) {
widgetset = DEFAULT_WIDGETSET;
}
final String[] urls = getAppAndWidgetUrl(request);
final String appUrl = urls[0];
final String widgetsetUrl = urls[1];
final String staticFilePath = getApplicationOrSystemProperty(
PARAMETER_ITMILL_RESOURCES, widgetsetUrl);
// Default theme does not use theme URI
String themeUri = null;
if (themeName != null) {
// Using custom theme
themeUri = staticFilePath + "/" + THEME_DIRECTORY_PATH + themeName;
}
boolean testingApplication = testingToolsActive
&& request.getParameter("TT") != null;
if (!fragment) {
// Window renders are not cacheable
response.setCharacterEncoding("utf-8");
response.setHeader("Cache-Control", "no-cache");
response.setHeader("Pragma", "no-cache");
response.setDateHeader("Expires", 0);
response.setContentType("text/html");
// write html header
page.write("<!DOCTYPE html PUBLIC \"-//W3C//DTD "
+ "XHTML 1.0 Transitional//EN\" "
+ "\"http://www.w3.org/TR/xhtml1/"
+ "DTD/xhtml1-transitional.dtd\">\n");
page.write("<html xmlns=\"http://www.w3.org/1999/xhtml\""
+ ">\n<head>\n");
page
.write("<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"/>\n");
page.write("<style type=\"text/css\">"
+ "html, body {height:100%;}</style>");
page.write("<title>" + title + "</title>");
if (testingApplication) {
// TT script needs to be in head as it needs to be the first
// to hook capturing event listeners
writeTestingToolsScripts(page, request);
}
page
.write("\n</head>\n<body scroll=\"auto\" class=\"i-generated-body\">\n");
}
String appId = appUrl;
if ("".equals(appUrl)) {
appId = "ROOT";
}
appId = appId.replaceAll("[^a-zA-Z0-9]", "");
if (isGecko17(request)) {
// special start page for gecko 1.7 versions. Firefox 1.0 is not
// supported, but the hack is make it possible to use linux and
// hosted mode browser for debugging. Note that due this hack,
// debugging gwt code in portals with linux will be problematic if
// there are multiple toolkit portlets visible at the same time.
// TODO remove this when hosted mode on linux gets newer gecko
page.write("<iframe id=\"__gwt_historyFrame\" "
+ "style=\"width:0;height:0;border:0;overflow:"
+ "hidden\" src=\"javascript:false\"></iframe>\n");
page.write("<script language='javascript' src='" + staticFilePath
+ "/" + WIDGETSET_DIRECTORY_PATH + widgetset + "/"
+ widgetset + ".nocache.js'></script>\n");
page.write("<script type=\"text/javascript\">\n");
page.write("//<![CDATA[\n");
page.write("if(!itmill || !itmill.toolkitConfigurations) {\n "
+ "if(!itmill) { var itmill = {}} \n"
+ "itmill.toolkitConfigurations = {};\n"
+ "itmill.themesLoaded = {}};\n");
page.write("itmill.toolkitConfigurations[\"" + appId + "\"] = {");
page.write("appUri:'" + appUrl + "', ");
page.write("pathInfo: '" + pathInfo + "', ");
page.write("themeUri:");
page.write(themeUri != null ? "'" + themeUri + "'" : "null");
page.write(", versionInfo : {toolkitVersion:\"");
page.write(VERSION);
page.write("\",applicationVersion:\"");
page.write(application.getVersion());
page.write("\"}");
page.write("};\n//]]>\n</script>\n");
if (themeName != null) {
// Custom theme's stylesheet, load only once, in different
// script
// tag to be dominate styles injected by widget
// set
page.write("<script type=\"text/javascript\">\n");
page.write("//<![CDATA[\n");
page.write("if(!itmill.themesLoaded['" + themeName + "']) {\n");
page
.write("var stylesheet = document.createElement('link');\n");
page.write("stylesheet.setAttribute('rel', 'stylesheet');\n");
page.write("stylesheet.setAttribute('type', 'text/css');\n");
page.write("stylesheet.setAttribute('href', '" + themeUri
+ "/styles.css');\n");
page
.write("document.getElementsByTagName('head')[0].appendChild(stylesheet);\n");
page.write("itmill.themesLoaded['" + themeName
+ "'] = true;\n}\n");
page.write("//]]>\n</script>\n");
}
} else {
page.write("<script type=\"text/javascript\">\n");
page.write("//<![CDATA[\n");
page.write("if(!itmill || !itmill.toolkitConfigurations) {\n "
+ "if(!itmill) { var itmill = {}} \n"
+ "itmill.toolkitConfigurations = {};\n"
+ "itmill.themesLoaded = {};\n");
page.write("document.write('<iframe id=\"__gwt_historyFrame\" "
+ "style=\"width:0;height:0;border:0;overflow:"
+ "hidden\" src=\"javascript:false\"></iframe>');\n");
page.write("document.write(\"<script language='javascript' src='"
+ staticFilePath + "/" + WIDGETSET_DIRECTORY_PATH
+ widgetset + "/" + widgetset
+ ".nocache.js'><\\/script>\");\n}\n");
page.write("itmill.toolkitConfigurations[\"" + appId + "\"] = {");
page.write("appUri:'" + appUrl + "', ");
page.write("pathInfo: '" + pathInfo + "', ");
page.write("themeUri:");
page.write(themeUri != null ? "'" + themeUri + "'" : "null");
page.write(", versionInfo : {toolkitVersion:\"");
page.write(VERSION);
page.write("\",applicationVersion:\"");
page.write(application.getVersion());
page.write("\"}");
page.write("};\n//]]>\n</script>\n");
if (themeName != null) {
// Custom theme's stylesheet, load only once, in different
// script
// tag to be dominate styles injected by widget
// set
page.write("<script type=\"text/javascript\">\n");
page.write("//<![CDATA[\n");
page.write("if(!itmill.themesLoaded['" + themeName + "']) {\n");
page
.write("var stylesheet = document.createElement('link');\n");
page.write("stylesheet.setAttribute('rel', 'stylesheet');\n");
page.write("stylesheet.setAttribute('type', 'text/css');\n");
page.write("stylesheet.setAttribute('href', '" + themeUri
+ "/styles.css');\n");
page
.write("document.getElementsByTagName('head')[0].appendChild(stylesheet);\n");
page.write("itmill.themesLoaded['" + themeName
+ "'] = true;\n}\n");
page.write("//]]>\n</script>\n");
}
}
String style = null;
reqParam = request.getAttribute(REQUEST_APPSTYLE);
if (reqParam != null) {
style = "style=\"" + reqParam + "\"";
}
page.write("<div id=\"" + appId + "\" class=\"i-app\" "
+ (style != null ? style : "") + "></div>\n");
if (!fragment) {
page.write("<noscript>" + getNoScriptMessage() + "</noscript>");
page.write("</body>\n</html>\n");
}
page.close();
}
/**
* Returns a message printed for browsers without scripting support or if
* browsers scripting support is disabled.
*/
protected String getNoScriptMessage() {
return "You have to enable javascript in your browser to use an application built with IT Mill Toolkit.";
}
private boolean isGecko17(HttpServletRequest request) {
final WebBrowser browser = WebApplicationContext.getApplicationContext(
request.getSession()).getBrowser();
if (browser != null && browser.getBrowserApplication() != null) {
if (browser.getBrowserApplication().indexOf("rv:1.7.") > 0
&& browser.getBrowserApplication().indexOf("Gecko") > 0) {
return true;
}
}
return false;
}
private void writeTestingToolsScripts(Writer page,
HttpServletRequest request) throws IOException {
// Testing Tools script and CSS files are served from Testing Tools
// Server
String ext = getTestingToolsUri(request);
ext = ext.substring(0, ext.lastIndexOf('/'));
page.write("<script src=\"" + ext + "/ext/TT.js"
+ "\" type=\"text/javascript\"></script>\n");
page.write("<link rel=\"stylesheet\" href=\"" + ext + "/ext/TT.css"
+ "\" type=\"text/css\" />\n");
}
private String getTestingToolsUri(HttpServletRequest request) {
if (testingToolsServerUri == null) {
// Default behavior is that Testing Tools Server application exists
// on same host as current application does in port 8099.
testingToolsServerUri = "http" + "://" + request.getServerName()
+ ":8099" + "/TestingToolsServer";
}
return testingToolsServerUri;
}
/**
* Handles the requested URI. An application can add handlers to do special
* processing, when a certain URI is requested. The handlers are invoked
* before any windows URIs are processed and if a DownloadStream is returned
* it is sent to the client.
*
* @param application
* the Application owning the URI.
* @param request
* the HTTP request instance.
* @param response
* the HTTP response to write to.
* @return boolean <code>true</code> if the request was handled and further
* processing should be suppressed, <code>false</code> otherwise.
* @see com.itmill.toolkit.terminal.URIHandler
*/
private DownloadStream handleURI(Application application,
HttpServletRequest request, HttpServletResponse response) {
String uri = request.getPathInfo();
// If no URI is available
if (uri == null) {
uri = "";
}
// Removes the leading /
while (uri.startsWith("/") && uri.length() > 0) {
uri = uri.substring(1);
}
// If using application runner, remove package and class name
if (isApplicationRunnerServlet) {
uri = uri.replaceFirst(applicationRunnerClassname + "/", "");
}
// Handles the uri
DownloadStream stream = null;
try {
stream = application.handleURI(application.getURL(), uri);
} catch (final Throwable t) {
application.terminalError(new URIHandlerErrorImpl(application, t));
}
return stream;
}
/**
* Handles the requested URI. An application can add handlers to do special
* processing, when a certain URI is requested. The handlers are invoked
* before any windows URIs are processed and if a DownloadStream is returned
* it is sent to the client.
*
* @param stream
* the download stream.
*
* @param request
* the HTTP request instance.
* @param response
* the HTTP response to write to.
* @throws IOException
*
* @see com.itmill.toolkit.terminal.URIHandler
*/
private void handleDownload(DownloadStream stream,
HttpServletRequest request, HttpServletResponse response)
throws IOException {
if (stream.getParameter("Location") != null) {
response.setStatus(HttpServletResponse.SC_FOUND);
response.addHeader("Location", stream.getParameter("Location"));
return;
}
// Download from given stream
final InputStream data = stream.getStream();
if (data != null) {
// Sets content type
response.setContentType(stream.getContentType());
// Sets cache headers
final long cacheTime = stream.getCacheTime();
if (cacheTime <= 0) {
response.setHeader("Cache-Control", "no-cache");
response.setHeader("Pragma", "no-cache");
response.setDateHeader("Expires", 0);
} else {
response.setHeader("Cache-Control", "max-age=" + cacheTime
/ 1000);
response.setDateHeader("Expires", System.currentTimeMillis()
+ cacheTime);
response.setHeader("Pragma", "cache"); // Required to apply
// caching in some
// Tomcats
}
// Copy download stream parameters directly
// to HTTP headers.
final Iterator i = stream.getParameterNames();
if (i != null) {
while (i.hasNext()) {
final String param = (String) i.next();
response.setHeader(param, stream.getParameter(param));
}
}
int bufferSize = stream.getBufferSize();
if (bufferSize <= 0 || bufferSize > MAX_BUFFER_SIZE) {
bufferSize = DEFAULT_BUFFER_SIZE;
}
final byte[] buffer = new byte[bufferSize];
int bytesRead = 0;
final OutputStream out = response.getOutputStream();
while ((bytesRead = data.read(buffer)) > 0) {
out.write(buffer, 0, bytesRead);
out.flush();
}
out.close();
}
}
/**
* Handles theme resource file requests. Resources supplied with the themes
* are provided by the WebAdapterServlet.
*
* @param request
* the HTTP request.
* @param response
* the HTTP response.
* @return boolean <code>true</code> if the request was handled and further
* processing should be suppressed, <code>false</code> otherwise.
* @throws ServletException
* if an exception has occurred that interferes with the
* servlet's normal operation.
*/
private boolean handleResourceRequest(HttpServletRequest request,
HttpServletResponse response, String themeName)
throws ServletException {
// If the resource path is unassigned, initialize it
if (resourcePath == null) {
resourcePath = request.getContextPath() + request.getServletPath()
+ RESOURCE_URI;
// WebSphere Application Server related fix
resourcePath = resourcePath.replaceAll("//", "/");
}
String resourceId = request.getPathInfo();
// Checks if this really is a resource request
if (resourceId == null || !resourceId.startsWith(RESOURCE_URI)) {
return false;
}
// Checks the resource type
resourceId = resourceId.substring(RESOURCE_URI.length());
InputStream data = null;
// Gets theme resources
try {
data = getServletContext().getResourceAsStream(
THEME_DIRECTORY_PATH + themeName + "/" + resourceId);
} catch (final Exception e) {
// FIXME: Handle exception
e.printStackTrace();
data = null;
}
// Writes the response
try {
if (data != null) {
response.setContentType(FileTypeResolver
.getMIMEType(resourceId));
// Use default cache time for theme resources
response.setHeader("Cache-Control", "max-age="
+ DEFAULT_THEME_CACHETIME / 1000);
response.setDateHeader("Expires", System.currentTimeMillis()
+ DEFAULT_THEME_CACHETIME);
response.setHeader("Pragma", "cache"); // Required to apply
// caching in some
// Tomcats
// Writes the data to client
final byte[] buffer = new byte[DEFAULT_BUFFER_SIZE];
int bytesRead = 0;
final OutputStream out = response.getOutputStream();
while ((bytesRead = data.read(buffer)) > 0) {
out.write(buffer, 0, bytesRead);
}
out.close();
data.close();
} else {
response.sendError(HttpServletResponse.SC_NOT_FOUND);
}
} catch (final java.io.IOException e) {
// FIXME: Handle exception
System.err.println("Resource transfer failed: "
+ request.getRequestURI() + ". (" + e.getMessage() + ")");
}
return true;
}
/**
* Gets the current application URL from request.
*
* @param request
* the HTTP request.
* @throws MalformedURLException
* if the application is denied access to the persistent data
* store represented by the given URL.
*/
private URL getApplicationUrl(HttpServletRequest request)
throws MalformedURLException {
URL applicationUrl;
final URL reqURL = new URL(
(request.isSecure() ? "https://" : "http://")
+ request.getServerName()
+ ((request.isSecure() && request.getServerPort() == 443)
|| (!request.isSecure() && request
.getServerPort() == 80) ? "" : ":"
+ request.getServerPort())
+ request.getRequestURI());
String servletPath = "";
if (request.getAttribute("javax.servlet.include.servlet_path") != null) {
// this is an include request
servletPath = request.getAttribute(
"javax.servlet.include.context_path").toString()
+ request
.getAttribute("javax.servlet.include.servlet_path");
} else {
servletPath = request.getContextPath() + request.getServletPath();
}
if (servletPath.length() == 0
|| servletPath.charAt(servletPath.length() - 1) != '/') {
servletPath = servletPath + "/";
}
applicationUrl = new URL(reqURL, servletPath);
return applicationUrl;
}
/**
* Parses application runner URIs.
*
* If request URL is e.g.
* http://localhost:8080/itmill/run/com.itmill.toolkit.demo.Calc then
* <ul>
* <li>context=itmill</li>
* <li>Runner servlet=run</li>
* <li>Toolkit application=com.itmill.toolkit.demo.Calc</li>
* </ul>
*
* @param request
* @return string array containing widgetset URI, application URI and
* context, runner, application classname
*/
private String[] getApplicationRunnerURIs(HttpServletRequest request) {
final String[] urlParts = request.getRequestURI().toString().split(
"\\/");
String context = null;
String runner = null;
String applicationClassname = null;
if (urlParts[1].equals(request.getContextPath().replaceAll("\\/", ""))) {
// class name comes after web context and runner application
context = urlParts[1];
runner = urlParts[2];
applicationClassname = urlParts[3];
return new String[] { "/" + context,
"/" + context + "/" + runner + "/" + applicationClassname,
context, runner, applicationClassname };
} else {
// no context
context = "";
runner = urlParts[1];
applicationClassname = urlParts[2];
return new String[] { "/",
"/" + runner + "/" + applicationClassname, context, runner,
applicationClassname };
}
}
/**
* Gets the existing application for given request. Looks for application
* instance for given request based on the requested URL.
*
* @param request
* the HTTP request.
* @param response
* @return Application instance, or null if the URL does not map to valid
* application.
* @throws MalformedURLException
* if the application is denied access to the persistent data
* store represented by the given URL.
* @throws SAXException
* @throws IllegalAccessException
* @throws InstantiationException
*/
private Application getExistingApplication(HttpServletRequest request,
HttpServletResponse response) throws MalformedURLException,
SAXException, IllegalAccessException, InstantiationException {
// Ensures that the session is still valid
final HttpSession session = request.getSession(true);
// Gets application list for the session.
final Collection applications = WebApplicationContext
.getApplicationContext(session).getApplications();
// Search for the application (using the application URI) from the list
for (final Iterator i = applications.iterator(); i.hasNext();) {
final Application a = (Application) i.next();
final String aPath = a.getURL().getPath();
String servletPath = "";
if (isApplicationRunnerServlet) {
final String[] URIparts = getApplicationRunnerURIs(request);
servletPath = URIparts[1] + "/";
} else {
servletPath = request.getContextPath()
+ request.getServletPath();
if (servletPath.length() < aPath.length()) {
servletPath += "/";
}
}
if (servletPath.equals(aPath)) {
// Found a running application
if (a.isRunning()) {
return a;
}
// Application has stopped, so remove it before creating a new
// application
WebApplicationContext.getApplicationContext(session)
.removeApplication(a);
break;
}
}
// Existing application not found
return null;
}
/**
* Creates new application for given request.
*
* @param request
* the HTTP request.
* @param response
* @return Application instance, or null if the URL does not map to valid
* application.
* @throws MalformedURLException
* if the application is denied access to the persistent data
* store represented by the given URL.
* @throws SAXException
* @throws IllegalAccessException
* @throws InstantiationException
*/
private Application getNewApplication(HttpServletRequest request,
HttpServletResponse response) throws MalformedURLException,
SAXException, IllegalAccessException, InstantiationException {
// Create application
final WebApplicationContext context = WebApplicationContext
.getApplicationContext(request.getSession());
final URL applicationUrl;
if (isApplicationRunnerServlet) {
final String[] URIparts = getApplicationRunnerURIs(request);
final String applicationClassname = URIparts[4];
applicationUrl = new URL(getApplicationUrl(request).toString()
+ applicationClassname + "/");
try {
applicationClass = classLoader.loadClass(applicationClassname);
} catch (final ClassNotFoundException e) {
throw new InstantiationException(
"Failed to load application class: "
+ applicationClassname);
}
} else {
applicationUrl = getApplicationUrl(request);
}
// Creates new application and start it
try {
final Application application = (Application) applicationClass
.newInstance();
context.addApplication(application);
// Sets initial locale from the request
application.setLocale(request.getLocale());
// Starts application
application.start(applicationUrl, applicationProperties, context);
return application;
} catch (final IllegalAccessException e) {
throw e;
} catch (final InstantiationException e) {
throw e;
}
}
/**
* Ends the application.
*
* @param request
* the HTTP request.
* @param response
* the HTTP response to write to.
* @param application
* the application to end.
* @throws IOException
* if the writing failed due to input/output error.
*/
private void endApplication(HttpServletRequest request,
HttpServletResponse response, Application application)
throws IOException {
String logoutUrl = application.getLogoutURL();
if (logoutUrl == null) {
logoutUrl = application.getURL().toString();
}
final HttpSession session = request.getSession();
if (session != null) {
WebApplicationContext.getApplicationContext(session)
.removeApplication(application);
}
response.sendRedirect(response.encodeRedirectURL(logoutUrl));
}
/**
* Gets the existing application or create a new one. Get a window within an
* application based on the requested URI.
*
* @param request
* the HTTP Request.
* @param application
* the Application to query for window.
* @return Window matching the given URI or null if not found.
* @throws ServletException
* if an exception has occurred that interferes with the
* servlet's normal operation.
*/
private Window getApplicationWindow(HttpServletRequest request,
Application application) throws ServletException {
Window window = null;
// Finds the window where the request is handled
String path = request.getPathInfo();
// Main window as the URI is empty
if (path == null || path.length() == 0 || path.equals("/")) {
window = application.getMainWindow();
} else {
String windowName = null;
if (path.charAt(0) == '/') {
path = path.substring(1);
}
final int index = path.indexOf('/');
if (index < 0) {
windowName = path;
path = "";
} else {
windowName = path.substring(0, index);
path = path.substring(index + 1);
}
window = application.getWindow(windowName);
if (window == null) {
// By default, we use main window
window = application.getMainWindow();
} else if (!window.isVisible()) {
// Implicitly painting without actually invoking paint()
window.requestRepaintRequests();
// If the window is invisible send a blank page
return null;
}
}
return window;
}
/**
* Gets relative location of a theme resource.
*
* @param theme
* the Theme name.
* @param resource
* the Theme resource.
* @return External URI specifying the resource
*/
public String getResourceLocation(String theme, ThemeResource resource) {
if (resourcePath == null) {
return resource.getResourceId();
}
return resourcePath + theme + "/" + resource.getResourceId();
}
/**
* Checks if web adapter is in debug mode. Extra output is generated to log
* when debug mode is enabled.
*
* @param parameters
* @return <code>true</code> if the web adapter is in debug mode. otherwise
* <code>false</code>.
*/
public boolean isDebugMode(Map parameters) {
if (parameters != null) {
final Object[] debug = (Object[]) parameters.get("debug");
if (debug != null && !"false".equals(debug[0].toString())
&& !"false".equals(debugMode)) {
return true;
}
}
return "true".equals(debugMode);
}
/**
* Implementation of ParameterHandler.ErrorEvent interface.
*/
public class ParameterHandlerErrorImpl implements
ParameterHandler.ErrorEvent {
private ParameterHandler owner;
private Throwable throwable;
/**
* Gets the contained throwable.
*
* @see com.itmill.toolkit.terminal.Terminal.ErrorEvent#getThrowable()
*/
public Throwable getThrowable() {
return throwable;
}
/**
* Gets the source ParameterHandler.
*
* @see com.itmill.toolkit.terminal.ParameterHandler.ErrorEvent#getParameterHandler()
*/
public ParameterHandler getParameterHandler() {
return owner;
}
}
/**
* Implementation of URIHandler.ErrorEvent interface.
*/
public class URIHandlerErrorImpl implements URIHandler.ErrorEvent {
private final URIHandler owner;
private final Throwable throwable;
/**
*
* @param owner
* @param throwable
*/
private URIHandlerErrorImpl(URIHandler owner, Throwable throwable) {
this.owner = owner;
this.throwable = throwable;
}
/**
* Gets the contained throwable.
*
* @see com.itmill.toolkit.terminal.Terminal.ErrorEvent#getThrowable()
*/
public Throwable getThrowable() {
return throwable;
}
/**
* Gets the source URIHandler.
*
* @see com.itmill.toolkit.terminal.URIHandler.ErrorEvent#getURIHandler()
*/
public URIHandler getURIHandler() {
return owner;
}
}
/**
* Gets communication manager for an application.
*
* If this application has not been running before, new manager is created.
*
* @param application
* @return CommunicationManager
*/
private CommunicationManager getApplicationManager(Application application) {
CommunicationManager mgr = (CommunicationManager) applicationToAjaxAppMgrMap
.get(application);
if (mgr == null) {
// Creates new manager
mgr = new CommunicationManager(application, this);
applicationToAjaxAppMgrMap.put(application, mgr);
}
return mgr;
}
/**
* Gets resource path using different implementations. Required to
* supporting different servlet container implementations (application
* servers).
*
* @param servletContext
* @param path
* the resource path.
* @return the resource path.
*/
protected static String getResourcePath(ServletContext servletContext,
String path) {
String resultPath = null;
resultPath = servletContext.getRealPath(path);
if (resultPath != null) {
return resultPath;
} else {
try {
final URL url = servletContext.getResource(path);
resultPath = url.getFile();
} catch (final Exception e) {
// FIXME: Handle exception
e.printStackTrace();
}
}
return resultPath;
}
}
|