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
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
|
/*
* $RCSfile: JNLPAppletLauncher.java,v $
*
* Copyright 2007 Sun Microsystems, Inc. All Rights Reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* - Redistribution of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* - Redistribution in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in
* the documentation and/or other materials provided with the
* distribution.
*
* Neither the name of Sun Microsystems, Inc. or the names of
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* This software is provided "AS IS," without a warranty of any
* kind. ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND
* WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT, ARE HEREBY
* EXCLUDED. SUN MICROSYSTEMS, INC. ("SUN") AND ITS LICENSORS SHALL
* NOT BE LIABLE FOR ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF
* USING, MODIFYING OR DISTRIBUTING THIS SOFTWARE OR ITS
* DERIVATIVES. IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR
* ANY LOST REVENUE, PROFIT OR DATA, OR FOR DIRECT, INDIRECT, SPECIAL,
* CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED AND
* REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF THE USE OF OR
* INABILITY TO USE THIS SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGES.
*
* You acknowledge that this software is not designed, licensed or
* intended for use in the design, construction, operation or
* maintenance of any nuclear facility.
*
* $Revision: 1.29 $
* $Date: 2008/10/21 21:33:50 $
* $State: Exp $
*/
package org.jdesktop.applet.util;
import java.applet.Applet;
import java.applet.AppletContext;
import java.applet.AppletStub;
import java.awt.BorderLayout;
import java.awt.event.ActionListener;
import java.awt.event.MouseEvent;
import java.io.BufferedInputStream;
import java.io.BufferedOutputStream;
import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.FileReader;
import java.io.FileWriter;
import java.io.FilenameFilter;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.lang.reflect.Method;
import java.net.URL;
import java.net.URLConnection;
import java.nio.channels.FileChannel;
import java.nio.channels.FileLock;
import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;
import java.security.cert.Certificate;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Enumeration;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import java.util.Map.Entry;
import java.util.Properties;
import java.util.Set;
import java.util.jar.JarEntry;
import java.util.jar.JarFile;
import java.util.logging.Logger;
import javax.swing.ImageIcon;
import javax.swing.JLabel;
import javax.swing.JOptionPane;
import javax.swing.JPanel;
import javax.swing.JProgressBar;
import javax.swing.SwingUtilities;
import javax.xml.parsers.ParserConfigurationException;
import javax.xml.parsers.SAXParser;
import javax.xml.parsers.SAXParserFactory;
import org.xml.sax.Attributes;
import org.xml.sax.SAXException;
import org.xml.sax.helpers.DefaultHandler;
/**
* The JNLPAppletLauncher is a general purpose JNLP-based applet
* launcher class for deploying applets that use extension libraries
* containing native code. It allows applets to use extensions like
* Java 3D, JOGL, and JOAL very easily, with just a few additional
* parameters to the <code><applet></code> tag, on Java SE
* versions as far back as 1.4.2.
*
* <p>
*
* Like Java Web Start, the JNLPAppletLauncher uses an extension's
* .jnlp file to locate the native resources for a given extension.
* The applet developer only needs to specify the platform-independent
* .jar files containing the .class files for the extension. The
* platform-specific "nativelib" .jar files are downloaded
* automatically from the same server that hosts the extension's Java
* Web Start binaries.
*
* <p>
*
* Extensions that support JNLPAppletLauncher include Java 3D, JOGL,
* and JOAL. More can be added without needing to modify the
* JNLPAppletLauncher. See the section below on <a
* href="#MODIFYING">modifying extensions to work with the
* JNLPAppletLauncher</a>.
*
* <h2> How to Deploy Applets Using the JNLPAppletLauncher </h2>
* <p>
*
* The <code>applet-launcher.jar</code> file containing the
* JNLPAppletLauncher class must be signed with the same certificate
* as the extension's native resources, for example "sun microsystems,
* inc.". The user will receive a security dialog and will be prompted
* to accept the certificate for the JLNPAppletLauncher. The applet
* being deployed may be either signed or unsigned; if it is unsigned,
* it runs inside the security sandbox, and if it is signed, the user
* receives a security dialog to accept the certificate for the applet
* (in addition to the applet-launcher jar, if it is signed by a
* different entity).
*
* <p>
*
* The steps for deploying such applets are straightforward. First,
* the <code>archive</code> parameter to the applet tag must contain
* <code>applet-laucher.jar</code>, the extension .jar files, and any
* jar files associated with your applet. See the section on <a
* href="#ORGANIZING">organizing jar files</a> for more details.
*
* <p>
*
* Second, the name of your applet's main class and a textual
* description must be specified via the applet tag parameters
* <code>subapplet.classname</code> and
* <code>subapplet.displayname</code>.
*
* <p>
*
* Finally, the URLs for the extension .jnlp files being used must be
* specified as parameters. The <code>jnlpNumExtensions</code>
* parameter indicates the number of JNLP files that are referenced,
* and for <code>n</code> such files, their URLs are passed in as
* parameters <code>jnlpExtension1</code> ...
* <code>jnlpExtension[n]</code>.
*
* <h2><a name="ORGANIZING">Organizing Jar Files</a></h2>
*
* <p>
*
* Traditionally, applets are specified with a codebase and an archive
* parameter, the latter which is a list of jar files relative to that
* codebase. The codebase is optional and defaults to the directory on
* the web server containing the HTML document which contains the
* applet tag. See the documentation for the <a
* href="http://java.sun.com/j2se/1.4.2/docs/guide/misc/applet.html">applet
* tag</a>.
*
* <p>
*
* It is not well documented, but at least in the Sun JRE at least as
* far back as Java SE 1.4.2, it is possible to use absolute URLs in
* the applet tag's archive parameter. This functionality works on all
* major operating systems: Windows, Mac OS X, Linux, and Solaris.
* This means that you can pull code resources from multiple web
* servers, not just one, in similar fashion to Java Web Start and its
* extension mechanism. (The security implications are that each
* unsigned piece of code downloaded from a separate server receives
* sandboxed permissions to connect back to that server; if there are
* multiple pieces of unsigned code on the stack during execution of
* the program then the permissions will be the intersection of all of
* those on the stack, implying that no programmatic network
* connections back to the web server(s) will be allowed. See the <a
* href="http://java.sun.com/sfaq/">Applet Security FAQ</a> for more
* details.)
*
* <p>
*
* This capability means that your applets can refer directly to
* extensions like Java 3D and JOGL hosted on Sun's web servers
* without having to duplicate their jar files on your web server.
*
* <p>
*
* To use this capability effectively with the JNLPAppletLauncher, you
* need to pull in at least three primary pieces of code: the applet
* launcher itself, your applet's code, and the Java code for the
* extension, or extensions, your applet depends on. (Remember that
* the JNLPAppletLauncher's primary function is to automatically
* download the native code associated with these extensions, and not
* the Java code for these extensions.)
*
* <p>
*
* You might choose to specify the codebase of your applet to point to
* your web server's directory containing the jar files of your
* applet, and specify absolute URLs to the
* <code>applet-launcher.jar</code> and the extension jar files. Or
* you might decide to point the codebase to the server which hosts
* the applet launcher and specify all of the other resources,
* including your applet, with absolute URLs. Or you might decide to
* use all absolute URLs in your archive tag with no codebase. The
* techniques are basically equivalent. We recommend either pointing
* the codebase to the directory containing your applet's jars, using
* relative URLs for your applet, and using absolute URLs for all
* other resources; or using all absolute URLs.
*
* <p>
*
* Alternatively, you can re-host the jar files and/or JNLP files and
* nativelib jars for the extensions you use on your own web
* server. This has the advantage that your applet will connect to
* fewer web servers upon startup, but has the disadvantages of
* requiring additional maintenance on your part and not automatically
* receiving updates to the extensions when they are published.
*
* <p>
*
* <b>Note</b> that if you are planning to call into your applet from
* JavaScript that there are some <a
* href="#SCRIPTING">scripting-related caveats</a> that you need to be
* aware of.
*
* <p>
*
* The <code>jnlpExtension</code> parameters passed to the
* JNLPAppletLauncher must be specified with absolute URLs.
*
* <p>
*
* The <a href="#EXAMPLES">examples</a> show how to use the
* JNLPAppletLauncher in a few different scenarios.
*
* <h2>The codebase_lookup parameter</h2>
*
* <p>
*
* This applet parameter was not well documented until <a
* href="http://java.sun.com/javase/6/docs/technotes/guides/plugin/developer_guide/special_attributes.html#codebase">recently</a>,
* but it disables certain legacy behavior of the Java Plug-In. Before
* the introduction of jar files, applets used to host their class
* files and resources as flat files on the web server. Once jar files
* were introduced, it was possible to improve the efficiency of
* resource loading for applets, but (apparently) not without breaking
* compatibility. An applet can specify the parameter
*
* <pre>
* <param name="codebase_lookup" value="false">
* </pre>
*
* <p>
*
* to improve efficiency of its loading if it does not rely on
* fetching flat files from the web server off the codebase.
* We recommend setting this parameter.
*
* <h2>Applets using the OpenGL(r) 3D API</h2>
*
* <p>
*
* Applets using the OpenGL 3D graphics API, for example through JOGL
* or Java 3D, may encounter robustness issues on the Windows platform
* because Sun's Java 2D implementation on Windows uses Microsoft's
* DirectDraw API. DirectDraw and OpenGL are incompatible at the
* driver level.
*
* <p>
*
* As a workaround for this problem, the JNLPAppletLauncher supports
* disabling the use of DirectDraw. Currently this can only be done on
* a global basis, for all applets, but doing so is unlikely to slow
* down other non-3D applets significantly.
*
* <p>
*
* Specifying the applet parameter
*
* <pre>
* <param name="noddraw.check" value="true">
* </pre>
*
* <p>
*
* will cause the applet launcher, when run on Windows, to check to
* see whether DirectDraw is enabled and, if so, will prompt the user
* with a dialog box asking to disable it. A browser restart is
* required if the setting is changed.
*
* <p>
*
* If the dialog box is undesirable in a given situation, you can
* force the noddraw check to always disable DirectDraw with the two
* applet parameters:
*
* <pre>
* <param name="noddraw.check" value="true">
* <param name="noddraw.check.silent" value="true">
* </pre>
*
* <p>
*
* In this case it will not be obvious to the end user that a browser
* restart might be required for best robustness, but you could
* potentially document the need to try restarting the browser in case
* of instability.
*
* <h2><a name="SCRIPTING">Scripting Support</a></h2>
*
* <p>
*
* The JNLPAppletLauncher supports interaction with the sub-applet via
* the <code>getSubApplet()</code> method. Calling this method from
* JavaScript will return the subordinate applet with which you can
* then interact via JavaScript.
*
* <p>
*
* There are currently some scripting-related caveats associated with
* <a href="#ORGANIZING">pulling jar files from multiple locations</a>
* for a particular applet. In particular, it appears that the
* LiveConnect security model on Mac OS X in the Safari browser
* prohibits JavaScript from one domain from communicating with Java
* code (such as an applet) downloaded from another domain. This is
* correct according to older versions of the LiveConnect
* specification, although some more recent implementations of
* LiveConnect allow this, restricting the privileges of such calls in
* other ways.
*
* <p>
*
* The workaround for this problem seems to be to host the
* <code>applet-launcher.jar</code> on your web site if you need to
* talk to your applet from JavaScript. Your applet's jars will likely
* also need to be hosted from the same web server. If you talk to
* extension APIs in your <code>archive</code> tag directly from
* JavaScript, you may find it necessary to host those jars on your
* web server as well.
*
* <p>
*
* From a practical standpoint, most applet developers using
* JavaScript with the JNLPAppletLauncher will only need to re-host at
* most <code>applet-launcher.jar</code> on their web site.
*
* <h2><a name="EXAMPLES">Examples</a></h2>
*
* <p>
*
* An applet using JOGL as an extension. Note that this example does
* not specify a codebase, instead specifying all of its archive tag
* elements with absolute URLs (split here for readability; in a real
* applet tag they must be all on one line). Note also the use of the
* <code>noddraw.check</code> parameter to disable the use of
* DirectDraw since using JOGL implies the use of OpenGL.
*
* <pre>
* <applet code="org.jdesktop.applet.util.JNLPAppletLauncher"
* width=600
* height=400
* archive="http://download.java.net/media/applet-launcher/applet-launcher.jar,
* http://download.java.net/media/jogl/builds/archive/jsr-231-webstart-current/jogl.jar,
* http://download.java.net/media/gluegen/webstart/gluegen-rt.jar,
* http://download.java.net/media/jogl/builds/archive/jsr-231-webstart-current/jogl-demos.jar">
* <param name="codebase_lookup" value="false">
* <param name="subapplet.classname" value="demos.applets.GearsApplet">
* <param name="subapplet.displayname" value="JOGL Gears Applet">
* <param name="noddraw.check" value="true">
* <param name="progressbar" value="true">
* <param name="jnlpNumExtensions" value="1">
* <param name="jnlpExtension1"
* value="http://download.java.net/media/jogl/builds/archive/jsr-231-webstart-current/jogl.jnlp">
* </applet>
* </pre>
*
* <p>
*
* An applet using both JOGL and JOAL as extensions. Note again that
* all code resources are specified with absolute URLs. In this
* example the unsigned applet pulls in code from both
* <code>jogl-demos.jar</code> and <code>joal-demos.jar</code>. Note
* again the use of the <code>noddraw.check</code> parameter.
*
* <pre>
* <applet code="org.jdesktop.applet.util.JNLPAppletLauncher"
* width=600
* height=400
* archive="http://download.java.net/media/applet-launcher/applet-launcher.jar,
* http://download.java.net/media/jogl/builds/archive/jsr-231-webstart-current/jogl.jar,
* http://download.java.net/media/gluegen/webstart/gluegen-rt.jar,
* http://download.java.net/media/jogl/builds/archive/jsr-231-webstart-current/jogl-demos.jar,
* http://download.java.net/media/joal/webstart/joal.jar,
* http://download.java.net/media/joal/webstart/joal-demos.jar">
* <param name="codebase_lookup" value="false">
* <param name="subapplet.classname" VALUE="demos.applets.GearsJOALApplet">
* <param name="subapplet.displayname" VALUE="JOGL / JOAL Gears Applet">
* <param name="noddraw.check" value="true">
* <param name="progressbar" value="true">
* <param name="jnlpNumExtensions" value="2">
* <param name="jnlpExtension1"
* value="http://download.java.net/media/jogl/builds/archive/jsr-231-webstart-current/jogl.jnlp">
* <param name="jnlpExtension2"
* value="http://download.java.net/media/joal/webstart/joal.jnlp">
* </applet>
* </pre>
*
* <p>
* An applet using Java 3D as an extension:
*
* <pre>
* <applet code="org.jdesktop.applet.util.JNLPAppletLauncher"
* width=400
* height=300
* archive="myapplet.jar,
* http://download.java.net/media/applet-launcher/applet-launcher.jar,
* http://download.java.net/media/java3d/webstart/release/j3d/latest/j3dcore.jar,
* http://download.java.net/media/java3d/webstart/release/j3d/latest/j3dutils.jar,
* http://download.java.net/media/jogl/builds/archive/jsr-231-webstart-current/jogl.jar,
* http://download.java.net/media/gluegen/webstart/gluegen-rt.jar,
* http://download.java.net/media/java3d/webstart/release/vecmath/latest/vecmath.jar">
* <param name="codebase_lookup" value="false">
* <param name="subapplet.classname" value="mypkg.MyApplet">
* <param name="subapplet.displayname" value="My Java 3D Applet">
* <param name="jnlpNumExtensions" value="1">
* <param name="jnlpExtension1" value="http://download.java.net/media/java3d/webstart/release/java3d-latest.jnlp">
* <param name="progressbar" value="true">
* <param name="noddraw.check" value="true">
* </applet>
* </pre>
*
* <p>
* Note that the JOGL jar files are also included in this example. This is
* necessary in order to run on Mac OS X, for which Java 3D always uses
* JOGL to render.
*
* <h2> Locations of Standard Extensions </h2>
*
* <p>
*
* This section describes how to set up the <code>archive</code> and
* <code>jnlpExtension</code> parameters for a few standard
* extensions.
*
* <h4>JNLPAppletLauncher</h4>
*
* <p>
*
* The master jar file for the JNLPAppletLauncher is located at the following URL:
* <pre>
* http://download.java.net/media/applet-launcher/applet-launcher.jar
* </pre>
*
* <p>
*
* This jar needs to be added to your archive parameter.
*
* <h4>Java 3D</h4>
*
* <p>
*
* Java 3D 1.5.1 and later supports the
* JNLPAppletLauncher. You will need to add the following URLs to your
* archive parameter:
*
* <pre>
* http://download.java.net/media/java3d/webstart/release/j3d/latest/j3dcore.jar
* http://download.java.net/media/java3d/webstart/release/j3d/latest/j3dutils.jar
* http://download.java.net/media/java3d/webstart/release/vecmath/latest/vecmath.jar
* </pre>
*
* Then add the following to one of your <code>jnlpExtension</code> parameters:
*
* <pre>
* http://download.java.net/media/java3d/webstart/release/java3d-latest.jnlp
* </pre>
*
* If you want to deploy your applet on Mac OS X, you will also need to
* include JOGL by adding the following URLs to your archive parameter:
*
* <pre>
* http://download.java.net/media/jogl/builds/archive/jsr-231-webstart-current/jogl.jar
* http://download.java.net/media/gluegen/webstart/gluegen-rt.jar
* </pre>
*
* Note that this will only work if Java 3D is not installed into the JRE as an
* extension. Since Apple ships their JRE with Java 3D pre-installed, the
* end-user must uninstall Java 3D in order for Java 3D applets to work on Mac.
* <p>
*
* Note that the Java 3D .jnlp extension will automatically pull in the
* native code associated with JOGL and the GlueGen runtime, so you don't have
* to separately refer to those .jnlp files.
*
* <h4>JOGL</h4>
*
* <p>
*
* JOGL 1.1.1-rc3 and later support the JNLPAppletLauncher. You will
* need to add the following URL to your archive parameter:
*
* <pre>
* http://download.java.net/media/jogl/builds/archive/jsr-231-webstart-current/jogl.jar
* </pre>
*
* <p>
*
* Because JOGL depends on the GlueGen runtime, you will also need to
* add the following URL to your archive parameter:
*
* <pre>
* http://download.java.net/media/gluegen/webstart/gluegen-rt.jar
* </pre>
*
* <p>
*
* Finally, add the following to one of your
* <code>jnlpExtension</code> parameters:
*
* <pre>
* http://download.java.net/media/jogl/builds/archive/jsr-231-webstart-current/jogl.jnlp
* </pre>
*
* <p>
*
* Note that the jogl.jnlp extension will automatically pull in the
* native code associated with the GlueGen runtime, so you don't have
* to separately refer to the gluegen-rt.jnlp file.
*
* <h4>JOAL</h4>
*
* <p>
*
* JOAL 1.1.1 and later support the JNLPAppletLauncher. You will need
* to add the following URL to your archive parameter:
*
* <pre>
* http://download.java.net/media/joal/webstart/joal.jar
* </pre>
*
* <p>
*
* Because JOAL, like JOGL, depends on the GlueGen runtime, you will
* also need to add the following URL to your archive parameter:
*
* <pre>
* http://download.java.net/media/gluegen/webstart/gluegen-rt.jar
* </pre>
*
* <p>
*
* (If you are using both JOGL and JOAL, you only need to refer to
* gluegen-rt.jar once in your archive parameter.)
*
* <p>
*
* Finally, add the following to one of your
* <code>jnlpExtension</code> parameters:
*
* <pre>
* http://download.java.net/media/joal/webstart/joal.jnlp
* </pre>
*
* <p>
*
* Note that the joal.jnlp extension will automatically pull in the
* native code associated with the GlueGen runtime, so you don't have
* to separately refer to the gluegen-rt.jnlp file.
*
* <h2><a name="MODIFYING">Modifying Your Extension To Work With The JNLPAppletLauncher</a></h2>
*
* <p>
*
* If you are the author of an extension like JOGL which requires some
* native code, with only a simple code change you can make your
* extension work with the JNLPAppletLauncher. Simply add the
* following method somewhere in your code:
*
* <pre>
* private static void loadLibraryInternal(String libraryName) {
* String sunAppletLauncher = System.getProperty("sun.jnlp.applet.launcher");
* boolean usingJNLPAppletLauncher =
* Boolean.valueOf(sunAppletLauncher).booleanValue();
*
* boolean loaded = false;
* if (usingJNLPAppletLauncher) {
* try {
* Class jnlpAppletLauncherClass =
* Class.forName("org.jdesktop.applet.util.JNLPAppletLauncher");
* Method jnlpLoadLibraryMethod =
* jnlpAppletLauncherClass.getDeclaredMethod("loadLibrary",
* new Class[] { String.class });
* jnlpLoadLibraryMethod.invoke(null, new Object[] { libraryName });
* loaded = true;
* } catch (ClassNotFoundException ex) {
* System.err.println("loadLibrary(" + libName + ")");
* System.err.println(ex);
* System.err.println("Attempting to use System.loadLibrary instead");
* } catch (Exception e) {
* Throwable t = e;
* if (t instanceof InvocationTargetException) {
* t = ((InvocationTargetException) t).getTargetException();
* }
* if (t instanceof Error)
* throw (Error) t;
* if (t instanceof RuntimeException) {
* throw (RuntimeException) t;
* }
* // Throw UnsatisfiedLinkError for best compatibility with System.loadLibrary()
* throw (UnsatisfiedLinkError) new UnsatisfiedLinkError().initCause(e);
* }
* }
*
* if (!loaded) {
* System.loadLibrary(libraryName);
* }
* }
* </pre>
*
* <p>
*
* and wherever you would call <code>System.loadLibrary()</code> (from
* within an <code>AccessController.doPrivileged()</code> block) to
* load your extension's native code, call the above
* <code>loadLibraryInternal</code> method instead.
*
* <p>
*
* Note again that because the <code>applet-launcher.jar</code> and
* the nativelib jars for all extensions must currently be signed with
* the same certificate, this implies that you must resign both the
* applet launcher as well as any other extensions your applet relies
* on (unless yours is a Sun-standard extension and can be signed with
* Sun's code signing certificate).
*
* <h2>Acknowledgments</h2>
*
* <p>
*
* The JNLPAppletLauncher was developed by Kevin Rushforth, Kenneth
* Russell, and Chien Yang. It is based on the earlier
* JOGLAppletLauncher developed by Lilian Chamontin.
*/
public class JNLPAppletLauncher extends Applet {
private static final boolean VERBOSE = false;
private static final boolean DEBUG = false;
// Indicated that the applet was successfully initialized
private boolean isInitOk = false;
// True the first time start is called, false afterwards
private boolean firstStart = true;
// Indicates that the applet was started successfully
private boolean appletStarted = false;
// The applet we have to start
private Applet subApplet;
// Class name of applet to load (required)
private String subAppletClassName; // from applet PARAM subapplet.classname
// String representing the name of the applet (optional)
private String subAppletDisplayName; // from applet PARAM subapplet.displayname
// URL to an image that we will display while installing (optional)
private URL subAppletImageURL; // from applet PARAM subapplet.image
// Panel that will hold the splash-screen image and progress bar while loading
private JPanel loaderPanel;
// Helpers for updating deployment.properties with -Dsun.java2d.noddraw=true
private static final String JRE_PREFIX = "deployment.javapi.jre.";
private static final String NODDRAW_PROP = "-Dsun.java2d.noddraw=true";
private static final String DONT_ASK = ".dont_ask";
// Optional progress bar
private JProgressBar progressBar = null;
/*
* The following variables are defined per-applet, but we can assert that
* they will not differ for each applet that is loaded by the same
* ClassLoader. This means we can just cache the values from the first
* applet. We will check the values for subsequent applets and throw an
* exception if there are any differences.
*/
// Flag indicating that this is the first applet
private static boolean firstApplet = true;
// List of extension JNLP files. This is saved for the first applet
// and verified for each subsequent applet.
private static List/*<URL>*/ jnlpExtensions = null;
// Code base and archive tag for all applets that use the same ClassLoader
private static URL codeBase;
private static String archive = null;
// Persistent cache directory for storing native libraries and time stamps.
// The directory is of the form:
//
// ${user.home}/.jnlp-applet/cache/<HOSTNAME>/<DIGEST-OF-CODEBASE-ARCHIVE>
//
private static File cacheDir;
// Set of jar files specified in the JNLP files.
// Currently unused.
private static Set/*<URL>*/ jarFiles;
// Set of native jar files to be loaded. We need to download these
// native jars, verify the signatures, verify the security certificates,
// and extract the native libraries from each jar.
private static Set/*<URL>*/ nativeJars;
// Native library prefix (e.g., "lib") and suffix (e.g. ".dll" or ".so")
private static String nativePrefix;
private static String nativeSuffix;
// A HashMap of native libraries that can be loaded with System.load()
// The key is the string name of the library as passed into the loadLibrary
// call; it is the file name without the directory or the platform-dependent
// library prefix and suffix. The value is the absolute path name to the
// unpacked library file in nativeTmpDir.
private static Map/*<String, String>*/ nativeLibMap;
/*
* The following variables are per-ClassLoader static globals.
*/
// Flag indicating that we got a fatal error in the static initializer.
// If this happens we will not attempt to start any applets.
private static boolean staticInitError = false;
// Base temp directory used by JNLPAppletLauncher. This is set to:
//
// ${java.io.tmpdir}/jnlp-applet
//
private static File tmpBaseDir;
// String representing the name of the temp root directory relative to the
// tmpBaseDir. Its value is "jlnNNNNN", which is the unique filename created
// by File.createTempFile() without the ".tmp" extension.
//
private static String tmpRootPropValue;
// Root temp directory for this JVM instance. Used to store the individual,
// per-ClassLoader directories that will be used to load native code. The
// directory name is:
//
// <tmpBaseDir>/<tmpRootPropValue>
//
// Old temp directories are cleaned up the next time a JVM is launched that
// uses JNLPAppletLauncher.
//
private static File tmpRootDir;
// Temporary directory for loading native libraries for this instance of
// the class loader. The directory name is:
//
// <tmpRootDir>/jlnMMMMM
//
// where jlnMMMMM is the unique filename created by File.createTempFile()
// without the ".tmp" extension.
//
private static File nativeTmpDir;
/*
* IMPLEMENTATION NOTES
*
* Assumptions:
*
* A. Multiple applets can be launched from the same class loader, and thus
* share the same set of statics and same set of native library symbols.
* This can only happen if the codebase and set of jar files as specified
* in the archive tag are identical. Applets launched from different code
* bases or whose set of jar files are different will always get a
* different ClassLoader. If this assumption breaks, too many other
* things wouldn't work properly, so we can be assured that it will hold.
* However, we cannot assume that the converse is true; it is possible
* that two applets with the same codebase and archive tag will be loaded
* from a different ClassLoader.
*
* B. Given the above, this means that we must store the native libraries,
* and keep track of which ones have already been loaded statically, that
* is, per-ClassLoader rather than per-Applet. This is a good thing,
* because it turns out to be difficult (at best) to find the instance of
* the Applet at loadLibrary time.
*
* Our solution is as follows:
*
* Use the same criteria for determining the cache dir that JPI
* uses to determine the class loader to use. More precisely, we will
* create a directory based on the codebase and complete set of jar files
* specified by the archive tag. To support the case where each applet is
* in a unique class loader, we will copy the native libraries into a
* unique-per-ClassLoader temp directory and do the System.load() from
* there. For a robust solution, we need to lock the cache directory
* during validation, since multiple threads, or even multiple processes,
* can access it concurrently.
*
* TODO: We need a way to clear the cache.
*
* We also considered, but rejected, the following solutions:
*
* 1. Use a temporary directory for native jars, download, verify, unpack,
* and loadLibrary in this temp dir. No persistent cache.
*
* 2. Cache the native libraries in a directory based on the codebase and
* the extension jars (i.e., the subset of the jars in the archive tag
* that also appear in one of the extension JNLP files). Copy the native
* libraries into a unique-per-ClassLoader temp directory and load from
* there. Note that this has the potential problem of violating the
* assertion that two different applets that share the same ClassLoader
* must map to the same cache directory.
*
* 3. Use the exact criteria for determining the cache dir that JPI
* uses to determine which class loader to use (as in our proposed
* solution above), unpack the native jars into the cache directory and
* load from there. This obviates the need for locking, but it will break
* if the JPI ever isolates each applet into its own ClassLoader.
*/
/**
* Constructs an instance of the JNLPAppletLauncher class. This is called by
* Java Plug-in, and should not be called directly by an application or
* applet.
*/
public JNLPAppletLauncher() {
}
/* @Override */
public void init() {
if (VERBOSE) {
System.err.println();
System.err.println("===========================================================================");
}
if (DEBUG) {
System.err.println("Applet.init");
}
if (staticInitError) {
return;
}
subAppletClassName = getParameter("subapplet.classname");
if (subAppletClassName == null) {
displayError("Init failed : Missing subapplet.classname parameter");
return;
}
subAppletDisplayName = getParameter("subapplet.displayname");
if (subAppletDisplayName == null) {
subAppletDisplayName = "Applet";
}
subAppletImageURL = null;
try {
String subAppletImageStr = getParameter("subapplet.image");
if (subAppletImageStr != null && subAppletImageStr.length() > 0) {
subAppletImageURL = new URL(subAppletImageStr);
}
} catch (IOException ex) {
ex.printStackTrace();
// Continue with a null subAppletImageURL
}
if (DEBUG) {
System.err.println("subapplet.classname = " + subAppletClassName);
System.err.println("subapplet.displayname = " + subAppletDisplayName);
if (subAppletImageURL != null) {
System.err.println("subapplet.image = " + subAppletImageURL.toExternalForm());
}
}
initLoaderLayout();
isInitOk = true;
}
/* @Override */
public void start() {
if (DEBUG) {
System.err.println("Applet.start");
}
if (isInitOk) {
if (firstStart) { // first time
firstStart = false;
Thread startupThread = new Thread() {
public void run() {
initAndStartApplet();
}
};
startupThread.setName("AppletLauncher-Startup");
startupThread.setPriority(Thread.NORM_PRIORITY - 1);
startupThread.start();
} else if (appletStarted) {
checkNoDDrawAndUpdateDeploymentProperties();
// We have to start again the applet (start can be called multiple times,
// e.g once per tabbed browsing
subApplet.start();
}
}
}
/* @Override */
public void stop(){
if (subApplet != null) {
subApplet.stop();
}
}
/* @Override */
public void destroy(){
if (subApplet != null) {
subApplet.destroy();
}
}
/** Helper method to make it easier to call methods on the
sub-applet from JavaScript. */
public Applet getSubApplet() {
return subApplet;
}
//----------------------------------------------------------------------
// Support for forwarding notifications about dragged-out applets
//
public void appletDragStarted() {
try {
Method m = getSubApplet().getClass().getMethod("appletDragStarted", null);
m.invoke(getSubApplet(), null);
} catch (Throwable t) {
}
}
public void appletDragFinished() {
try {
Method m = getSubApplet().getClass().getMethod("appletDragFinished", null);
m.invoke(getSubApplet(), null);
} catch (Throwable t) {
}
}
public void appletRestored() {
try {
Method m = getSubApplet().getClass().getMethod("appletRestored", null);
m.invoke(getSubApplet(), null);
} catch (Throwable t) {
}
}
public boolean isAppletDragStart(MouseEvent e) {
try {
Method m = getSubApplet().getClass().getMethod("isAppletDragStart",
new Class[] { MouseEvent.class });
return ((Boolean) m.invoke(getSubApplet(), new Object[] { e })).booleanValue();
} catch (Throwable t) {
// Throw an exception back to the Java Plug-In to cause it
// to use the default functionality
throw new RuntimeException(t);
}
}
public void setAppletCloseListener(ActionListener l) {
try {
Method m = getSubApplet().getClass().getMethod("setAppletCloseListener",
new Class[] { ActionListener.class });
m.invoke(getSubApplet(), new Object[] { l });
} catch (Throwable t) {
// Throw an exception back to the Java Plug-In to cause it
// to use the default functionality
throw new RuntimeException(t);
}
}
/**
* This method is called by the static initializer to create / initialize
* the temp root directory that will hold the temp directories for this
* instance of the JVM. This is done as follows:
*
* 1. Synchronize on a global lock. Note that for this purpose we will
* use System.out in the absence of a true global lock facility.
* We are careful not to hold this lock too long.
*
* 2. Check for the existence of the "jnlp.applet.launcher.tmproot"
* system property.
*
* a. If set, then some other thread in a different ClassLoader has
* already created the tmprootdir, so we just need to
* use it. The remaining steps are skipped.
*
* b. If not set, then we are the first thread in this JVM to run,
* and we need to create the the tmprootdir.
*
* 3. Create the tmprootdir, along with the appropriate locks.
* Note that we perform the operations in the following order,
* prior to creating tmprootdir itself, to work around the fact that
* the file creation and file lock steps are not atomic, and we need
* to ensure that a newly-created tmprootdir isn't reaped by a
* concurrently running JVM.
*
* create jlnNNNN.tmp using File.createTempFile()
* lock jlnNNNN.tmp
* create jlnNNNN.lck while holding the lock on the .tmp file
* lock jlnNNNN.lck
*
* Since the Reaper thread will enumerate the list of *.lck files
* before starting, we can guarantee that if there exists a *.lck file
* for an active process, then the corresponding *.tmp file is locked
* by that active process. This guarantee lets us avoid reaping an
* active process' files.
*
* 4. Set the "jnlp.applet.launcher.tmproot" system property.
*
* 5. Add a shutdown hook to cleanup jlnNNNN.lck and jlnNNNN.tmp. We
* don't actually expect that this shutdown hook will ever be called,
* but the act of doing this, ensures that the locks never get
* garbage-collected, which is necessary for correct behavior when
* the first ClassLoader is later unloaded, while subsequent Applets
* are still running.
*
* 6. Start the Reaper thread to cleanup old installations.
*/
private static void initTmpRoot() throws IOException {
if (VERBOSE) {
System.err.println("---------------------------------------------------");
}
synchronized (System.out) {
// Get the name of the tmpbase directory.
String tmpBaseName = System.getProperty("java.io.tmpdir") +
File.separator + "jnlp-applet";
tmpBaseDir = new File(tmpBaseName);
// Get the value of the tmproot system property
final String tmpRootPropName = "jnlp.applet.launcher.tmproot";
tmpRootPropValue = System.getProperty(tmpRootPropName);
if (tmpRootPropValue == null) {
// Create the tmpbase directory if it doesn't already exist
tmpBaseDir.mkdir();
if (!tmpBaseDir.isDirectory()) {
throw new IOException("Cannot create directory " + tmpBaseDir);
}
// Create ${tmpbase}/jlnNNNN.tmp then lock the file
File tmpFile = File.createTempFile("jln", ".tmp", tmpBaseDir);
if (VERBOSE) {
System.err.println("tmpFile = " + tmpFile.getAbsolutePath());
}
final FileOutputStream tmpOut = new FileOutputStream(tmpFile);
final FileChannel tmpChannel = tmpOut.getChannel();
final FileLock tmpLock = tmpChannel.lock();
// Strip off the ".tmp" to get the name of the tmprootdir
String tmpFileName = tmpFile.getAbsolutePath();
String tmpRootName = tmpFileName.substring(0, tmpFileName.lastIndexOf(".tmp"));
// create ${tmpbase}/jlnNNNN.lck then lock the file
String lckFileName = tmpRootName + ".lck";
File lckFile = new File(lckFileName);
if (VERBOSE) {
System.err.println("lckFile = " + lckFile.getAbsolutePath());
}
lckFile.createNewFile();
final FileOutputStream lckOut = new FileOutputStream(lckFile);
final FileChannel lckChannel = lckOut.getChannel();
final FileLock lckLock = lckChannel.lock();
// Create tmprootdir
tmpRootDir = new File(tmpRootName);
if (DEBUG) {
System.err.println("tmpRootDir = " + tmpRootDir.getAbsolutePath());
}
if (!tmpRootDir.mkdir()) {
throw new IOException("Cannot create " + tmpRootDir);
}
// Add shutdown hook to cleanup the OutputStream, FileChannel,
// and FileLock for the jlnNNNN.lck and jlnNNNN.lck files.
// We do this so that the locks never get garbage-collected.
Runtime.getRuntime().addShutdownHook(new Thread() {
/* @Override */
public void run() {
// NOTE: we don't really expect that this code will ever
// be called. If it does, we will close the output
// stream, which will in turn close the channel.
// We will then release the lock.
try {
tmpOut.close();
tmpLock.release();
lckOut.close();
lckLock.release();
} catch (IOException ex) {
// Do nothing
}
}
});
// Set the system property...
tmpRootPropValue = tmpRootName.substring(tmpRootName.lastIndexOf(File.separator) + 1);
System.setProperty(tmpRootPropName, tmpRootPropValue);
if (VERBOSE) {
System.err.println("Setting " + tmpRootPropName + "=" + tmpRootPropValue);
}
// Start a new Reaper thread to do stuff...
Thread reaperThread = new Thread() {
/* @Override */
public void run() {
deleteOldTempDirs();
}
};
reaperThread.setName("AppletLauncher-Reaper");
reaperThread.start();
} else {
// Make sure that the property is not set to an illegal value
if (tmpRootPropValue.indexOf('/') >= 0 ||
tmpRootPropValue.indexOf(File.separatorChar) >= 0) {
throw new IOException("Illegal value of: " + tmpRootPropName);
}
// Set tmpRootDir = ${tmpbase}/${jnlp.applet.launcher.tmproot}
if (VERBOSE) {
System.err.println("Using existing value of: " +
tmpRootPropName + "=" + tmpRootPropValue);
}
tmpRootDir = new File(tmpBaseDir, tmpRootPropValue);
if (DEBUG) {
System.err.println("tmpRootDir = " + tmpRootDir.getAbsolutePath());
}
if (!tmpRootDir.isDirectory()) {
throw new IOException("Cannot access " + tmpRootDir);
}
}
}
}
/**
* Called by the Reaper thread to delete old temp directories
* Only one of these threads will run per JVM invocation.
*/
private static void deleteOldTempDirs() {
if (VERBOSE) {
System.err.println("*** Reaper: deleteOldTempDirs in " +
tmpBaseDir.getAbsolutePath());
}
// enumerate list of jnl*.lck files, ignore our own jlnNNNN file
final String ourLockFile = tmpRootPropValue + ".lck";
FilenameFilter lckFilter = new FilenameFilter() {
/* @Override */
public boolean accept(File dir, String name) {
return name.endsWith(".lck") && !name.equals(ourLockFile);
}
};
// For each file <file>.lck in the list we will first try to lock
// <file>.tmp if that succeeds then we will try to lock <file>.lck
// (which should always succeed unless there is a problem). If we can
// get the lock on both files, then it must be an old installation, and
// we will delete it.
String[] fileNames = tmpBaseDir.list(lckFilter);
if (fileNames != null) {
for (int i = 0; i < fileNames.length; i++) {
String lckFileName = fileNames[i];
String tmpDirName = lckFileName.substring(0, lckFileName.lastIndexOf(".lck"));
String tmpFileName = tmpDirName + ".tmp";
File lckFile = new File(tmpBaseDir, lckFileName);
File tmpFile = new File(tmpBaseDir, tmpFileName);
File tmpDir = new File(tmpBaseDir, tmpDirName);
if (lckFile.exists() && tmpFile.exists() && tmpDir.isDirectory()) {
FileOutputStream tmpOut = null;
FileChannel tmpChannel = null;
FileLock tmpLock = null;
try {
tmpOut = new FileOutputStream(tmpFile);
tmpChannel = tmpOut.getChannel();
tmpLock = tmpChannel.tryLock();
} catch (Exception ex) {
// Ignore exceptions
if (DEBUG) {
ex.printStackTrace();
}
}
if (tmpLock != null) {
FileOutputStream lckOut = null;
FileChannel lckChannel = null;
FileLock lckLock = null;
try {
lckOut = new FileOutputStream(lckFile);
lckChannel = lckOut.getChannel();
lckLock = lckChannel.tryLock();
} catch (Exception ex) {
if (DEBUG) {
ex.printStackTrace();
}
}
if (lckLock != null) {
// Recursively remove the old tmpDir and all of
// its contents
removeAll(tmpDir);
// Close the streams and delete the .lck and .tmp
// files. Note that there is a slight race condition
// in that another process could open a stream at
// the same time we are trying to delete it, which will
// prevent deletion, but we won't worry about it, since
// the worst that will happen is we might have an
// occasional 0-byte .lck or .tmp file left around
try {
lckOut.close();
} catch (IOException ex) {
}
lckFile.delete();
try {
tmpOut.close();
} catch (IOException ex) {
}
tmpFile.delete();
} else {
try {
// Close the file and channel for the *.lck file
if (lckOut != null) {
lckOut.close();
}
// Close the file/channel and release the lock
// on the *.tmp file
tmpOut.close();
tmpLock.release();
} catch (IOException ex) {
if (DEBUG) {
ex.printStackTrace();
}
}
}
}
} else {
if (VERBOSE) {
System.err.println(" Skipping: " + tmpDir.getAbsolutePath());
}
}
}
}
}
/**
* Remove the specified file or directory. If "path" is a directory, then
* recursively remove all entries, then remove the directory itself.
*/
private static void removeAll(File path) {
if (VERBOSE) {
System.err.println("removeAll(" + path + ")");
}
if (path.isDirectory()) {
// Recursively remove all files/directories in this directory
File[] list = path.listFiles();
if (list != null) {
for (int i = 0; i < list.length; i++) {
removeAll(list[i]);
}
}
}
path.delete();
}
/**
* This method is executed from outside the Event Dispatch Thread. It
* initializes, downloads, and unpacks the required native libraries into
* the cache, and then starts the applet on the EDT.
*/
private void initAndStartApplet() {
// Parse the extension JNLP files and download the native resources
try {
initResources();
} catch (Exception ex) {
ex.printStackTrace();
displayError(toErrorString(ex));
return;
}
// Indicate that we are starting the applet
displayMessage("Starting applet " + subAppletDisplayName);
setProgress(0);
// Now schedule the starting of the subApplet on the EDT
SwingUtilities.invokeLater(new Runnable() {
public void run() {
// start the subapplet
startSubApplet();
}
});
}
/**
* Initializes, downloads, and extracts the native resources needed by this
* applet.
*/
private void initResources() throws IOException {
synchronized (JNLPAppletLauncher.class) {
if (firstApplet) {
// Save codeBase and archive parameter for assertion checking
codeBase = getCodeBase();
assert codeBase != null;
archive = getParameter("archive");
if (archive == null || archive.length() == 0) {
throw new IllegalArgumentException("Missing archive parameter");
}
// Initialize the collections of resources
jarFiles = new HashSet/*<URL>*/();
nativeJars = new HashSet/*<URL>*/();
nativeLibMap = new HashMap/*<String, String>*/();
} else {
// The following must hold for applets in the same ClassLoader
assert getCodeBase().equals(codeBase);
assert getParameter("archive").equals(archive);
}
int jnlpNumExt = -1;
String numParamString = getParameter("jnlpNumExtensions");
if (numParamString != null) {
try {
jnlpNumExt = Integer.parseInt(numParamString);
} catch (NumberFormatException ex) {
}
if (jnlpNumExt <= 0) {
throw new IllegalArgumentException("Missing or invalid jnlpNumExtensions parameter");
}
}
List/*<URL>*/ urls = new ArrayList/*<URL>*/();
for (int i = 1; i <= jnlpNumExt; i++) {
String paramName = "jnlpExtension" + i;
String urlString = getParameter(paramName);
if (urlString == null || urlString.length() == 0) {
throw new IllegalArgumentException("Missing " + paramName + " parameter");
}
URL url = new URL(urlString);
urls.add(url);
}
// If this is the first time, process the list of extensions and
// save the results. Otherwise, verify that the list of extensions
// is the same as the first applet.
if (firstApplet) {
jnlpExtensions = urls;
parseJNLPExtensions(urls);
if (VERBOSE) {
System.err.println();
System.err.println("All files successfully parsed");
printResources();
}
if (nativeJars.size() > 0) {
// Create the cache directory if not already created.
// Create the temporary directory that will hold a copy of
// the extracted native libraries, then copy each native
// library into the temp dir so we can call System.load().
createCacheDir();
createTmpDir();
// Download and validate the set of native jars, if the
// cache is out of date. Then extract the native DLLs,
// creating a list of native libraries to be loaded.
for (Iterator iter = nativeJars.iterator(); iter.hasNext(); ) {
URL url = (URL) iter.next();
processNativeJar(url);
}
}
// Set a system property that libraries can use to know when to call
// JNLPAppletLauncher.loadLibrary instead of System.loadLibrary
System.setProperty("sun.jnlp.applet.launcher", "true");
} else {
// Verify that the list of jnlpExtensions is the same as the
// first applet
if (!jnlpExtensions.equals(urls)) {
throw new IllegalArgumentException(
"jnlpExtension parameters do not match previously loaded applet");
}
}
firstApplet = false;
}
}
/**
* Detemine the cache directory location based on the codebase and archive
* tag. Create the cache directory if not already created.
*/
private void createCacheDir() throws IOException {
StringBuffer cacheBaseName = new StringBuffer();
cacheBaseName.append(System.getProperty("user.home")).append(File.separator).
append(".jnlp-applet").append(File.separator).
append("cache");
File cacheBaseDir = new File(cacheBaseName.toString());
if (VERBOSE) {
System.err.println("cacheBaseDir = " + cacheBaseDir.getAbsolutePath());
}
cacheDir = new File(cacheBaseDir, getCacheDirName());
if (VERBOSE) {
System.err.println("cacheDir = " + cacheDir.getAbsolutePath());
}
// Create cache directory and load native library
if (!cacheDir.isDirectory()) {
if (!cacheDir.mkdirs()) {
throw new IOException("Cannot create directory " + cacheDir);
}
}
assert cacheBaseDir.isDirectory();
}
/**
* Returns a directory name of the form: hostname/hash(codebase,archive)
*/
private String getCacheDirName() {
final String codeBasePath = getCodeBase().toExternalForm();
// Extract the host name; replace characters in the set ".:\[]" with "_"
int hostIdx1 = -1;
int hostIdx2 = -1;
String hostNameDir = "UNKNOWN";
hostIdx1 = codeBasePath.indexOf("://");
if (hostIdx1 >= 0) {
hostIdx1 += 3; // skip the "://"
// Verify that the character immediately following the "://"
// exists and is not a "/"
if (hostIdx1 < codeBasePath.length() &&
codeBasePath.charAt(hostIdx1) != '/') {
hostIdx2 = codeBasePath.indexOf('/', hostIdx1);
if (hostIdx2 > hostIdx1) {
hostNameDir = codeBasePath.substring(hostIdx1, hostIdx2).
replace('.', '_').
replace(':', '_').
replace('\\', '_').
replace('[', '_').
replace(']', '_');
}
}
}
// Now concatenate the codebase and the list of jar files in the archive
// Separate them by an "out-of-band" character which cannot appear in
// either the codeBasePath or archive list.
StringBuffer key = new StringBuffer();
key.append(codeBasePath).
append("\n").
append(getParameter("archive"));
if (VERBOSE) {
System.err.println("key = " + key);
}
StringBuffer result = new StringBuffer();
result.append(hostNameDir).
append(File.separator).
append(sha1Hash(key.toString()));
if (VERBOSE) {
System.err.println("result = " + result);
}
return result.toString();
}
/**
* Produces a 40-byte SHA-1 hash of the input string.
*/
private static String sha1Hash(String str) {
MessageDigest sha1 = null;
try {
sha1 = MessageDigest.getInstance("SHA-1");
} catch (NoSuchAlgorithmException ex) {
throw new RuntimeException(ex);
}
byte[] digest = sha1.digest(str.getBytes());
if (digest == null || digest.length == 0) {
throw new RuntimeException("Error reading message digest");
}
StringBuffer res = new StringBuffer();
for (int i = 0; i < digest.length; i++) {
int val = (int)digest[i] & 0xFF;
if (val < 0x10) {
res.append("0");
}
res.append(Integer.toHexString(val));
}
return res.toString();
}
/**
* Create the temp directory in tmpRootDir. To do this, we create a temp
* file with a ".tmp" extension, and then create a directory of the
* same name but without the ".tmp". The temp file, directory, and all
* files in the directory will be reaped the next time this is started.
* We avoid deleteOnExit, because it doesn't work reliably.
*/
private void createTmpDir() throws IOException {
if (VERBOSE) {
System.err.println("---------------------------------------------------");
}
File tmpFile = File.createTempFile("jln", ".tmp", tmpRootDir);
String tmpFileName = tmpFile.getAbsolutePath();
String tmpDirName = tmpFileName.substring(0, tmpFileName.lastIndexOf(".tmp"));
nativeTmpDir = new File(tmpDirName);
if (VERBOSE) {
System.err.println("tmpFile = " + tmpFile.getAbsolutePath() +
" tmpDir = " + nativeTmpDir.getAbsolutePath());
}
if (!nativeTmpDir.mkdir()) {
throw new IOException("Cannot create " + nativeTmpDir);
}
}
/**
* Download, cache, verify, and unpack the specified native jar file.
* Before downloading, check the cached time stamp for the jar file
* against the server. If the time stamp is valid and matches that of the
* server, then we will use the locally cached files. This method assumes
* that cacheDir and nativeTmpDir both exist.
*
* An IOException is thrown if the files cannot loaded for some reason.
*/
private void processNativeJar(URL url) throws IOException {
assert cacheDir.isDirectory();
assert nativeTmpDir.isDirectory();
// 6618105: Map '\' to '/' prior to stripping off the path
String urlString = url.toExternalForm().replace('\\', '/');
String nativeFileName = urlString.substring(urlString.lastIndexOf("/") + 1);
File nativeFile = new File(cacheDir, nativeFileName);
// Make sure the file is not "." or ".."
if (nativeFile.isDirectory()) {
throw new IOException(nativeFile + " is a directory");
}
String tmpStr = nativeFileName;
int idx = nativeFileName.lastIndexOf(".");
if (idx > 0) {
tmpStr = nativeFileName.substring(0, idx);
}
String indexFileName = tmpStr + ".idx";
File indexFile = new File(cacheDir, indexFileName);
if (VERBOSE) {
System.err.println("nativeFile = " + nativeFile);
System.err.println("indexFile = " + indexFile);
}
displayMessage("Loading: " + nativeFileName);
setProgress(0);
URLConnection conn = url.openConnection();
conn.connect();
Map/*<String,List<String>>*/ headerFields = conn.getHeaderFields();
if (VERBOSE) {
for (Iterator iter = headerFields.entrySet().iterator(); iter.hasNext(); ) {
Entry/*<String,List<String>>*/ e = (Entry) iter.next();
for (Iterator iter2 = ((List/*<String>*/) e.getValue()).iterator(); iter2.hasNext(); ) {
String s = (String) iter2.next();
if (e.getKey() != null) {
System.err.print(e.getKey() + ": ");
}
System.err.print(s + " ");
}
System.err.println();
}
System.err.println();
}
// Validate the cache, download the jar if needed
// TODO: rather than synchronizing on System.out during cache validation,
// we should use a System property as a lock token (protected by
// System.out) so we don't hold a synchronized lock on System.out during
// a potentially long download operation.
synchronized (System.out) {
validateCache(conn, nativeFile, indexFile);
}
// Unpack the jar file
displayMessage("Unpacking: " + nativeFileName);
setProgress(0);
// Enumerate the jar file looking for native libraries
JarFile jarFile = new JarFile(nativeFile);
Set/*<String>*/ rootEntries = getRootEntries(jarFile);
Set/*<String>*/ nativeLibNames = getNativeLibNames(rootEntries);
// Validate certificates; throws exception upon validation error
validateCertificates(jarFile, rootEntries);
// Extract native libraries from the jar file
extractNativeLibs(jarFile, rootEntries, nativeLibNames);
if (VERBOSE) {
System.err.println();
}
}
// Validate the cached file. If the cached file is out of date or otherwise
// invalid, download the file and store the new time stamp.
// This method must be called with a global lock being held such that
// no other thread -- even in another class loader -- can executed this
// method concurrently.
private void validateCache(URLConnection conn,
File nativeFile,
File indexFile) throws IOException {
// Lock the cache directory
final String lckFileName = "cache.lck";
File lckFile = new File(cacheDir, lckFileName);
lckFile.createNewFile();
final FileOutputStream lckOut = new FileOutputStream(lckFile);
final FileChannel lckChannel = lckOut.getChannel();
final FileLock lckLock = lckChannel.lock();
try {
// Check to see whether the cached jar file exists and is valid
boolean valid = false;
long cachedTimeStamp = readTimeStamp(indexFile);
long urlTimeStamp = conn.getLastModified();
if (nativeFile.exists() &&
urlTimeStamp > 0 &&
urlTimeStamp == readTimeStamp(indexFile)) {
valid = true;
}
// Validate the cache, download the jar if needed
if (!valid) {
if (VERBOSE) {
System.err.println("processNativeJar: downloading " + nativeFile.getAbsolutePath());
}
indexFile.delete();
nativeFile.delete();
// Copy from URL to File
int len = conn.getContentLength();
if (VERBOSE) {
System.err.println("Content length = " + len + " bytes");
}
int totalNumBytes = copyURLToFile(conn, nativeFile);
if (DEBUG) {
System.err.println("processNativeJar: " + conn.getURL().toString() +
" --> " + nativeFile.getAbsolutePath() + " : " +
totalNumBytes + " bytes written");
}
// Write timestamp to index file.
writeTimeStamp(indexFile, urlTimeStamp);
} else {
if (DEBUG) {
System.err.println("processNativeJar: using previously cached: " +
nativeFile.getAbsolutePath());
}
}
} finally {
// Unlock the cache directory
lckLock.release();
}
}
private long readTimeStamp(File indexFile) {
try {
BufferedReader reader = new BufferedReader(new FileReader(indexFile));
try {
String str = reader.readLine();
return Long.parseLong(str);
} finally {
reader.close();
}
} catch (Exception ex) {
}
return -1;
}
private void writeTimeStamp(File indexFile, long timestamp) {
try {
BufferedWriter writer = new BufferedWriter(new FileWriter(indexFile));
try {
writer.write("" + timestamp + "\n");
writer.flush();
} finally {
writer.close();
}
} catch (Exception ex) {
displayError("Error writing time stamp for native libraries");
}
}
// Copy the specified URL to the specified File
private int copyURLToFile(URLConnection inConnection,
File outFile) throws IOException {
int totalNumBytes = 0;
InputStream in = new BufferedInputStream(inConnection.getInputStream());
try {
OutputStream out = new BufferedOutputStream(new FileOutputStream(outFile));
try {
totalNumBytes = copyStream(in, out, inConnection.getContentLength());
} finally {
out.close();
}
} finally {
in.close();
}
return totalNumBytes;
}
/**
* Copy the specified input stream to the specified output stream. The total
* number of bytes written is returned. If the close flag is set, both
* streams are closed upon completeion.
*/
private int copyStream(InputStream in, OutputStream out,
int totalNumBytes) throws IOException {
int numBytes = 0;
final int BUFFER_SIZE = 1000;
final float pctScale = 100.0f / (float)totalNumBytes;
byte[] buf = new byte[BUFFER_SIZE];
setProgress(0);
while (true) {
int count;
if ((count = in.read(buf)) == -1) {
break;
}
out.write(buf, 0, count);
numBytes += count;
if (totalNumBytes > 0) {
setProgress((int)Math.round((float)numBytes * pctScale));
}
}
setProgress(100);
return numBytes;
}
/**
* Enumerate the list of entries in the jar file and return those that are
* the root entries.
*/
private Set/*<String>*/ getRootEntries(JarFile jarFile) {
if (VERBOSE) {
System.err.println("getRootEntries:");
}
Set/*<String>*/ names = new HashSet/*<String>*/();
Enumeration/*<JarEntry>*/ entries = jarFile.entries();
while (entries.hasMoreElements()) {
JarEntry entry = (JarEntry) entries.nextElement();
String entryName = entry.getName();
if (VERBOSE) {
System.err.println("JarEntry : " + entryName);
}
// only look at entries with no "/"
if (entryName.indexOf('/') == -1 &&
entryName.indexOf(File.separatorChar) == -1) {
names.add(entryName);
}
}
return names;
}
/**
* Filter the root entries in the jar file and return those that
* are native library names.
*/
private Set/*<String>*/ getNativeLibNames(Set/*<String>*/ entryNames) {
if (VERBOSE) {
System.err.println("getNativeLibNames:");
}
Set/*<String>*/ names = new HashSet/*<String>*/();
for (Iterator iter = entryNames.iterator(); iter.hasNext(); ) {
String name = (String) iter.next();
String lowerCaseName = name.toLowerCase();
// Match entries with correct prefix and suffix (ignoring case)
if (lowerCaseName.startsWith(nativePrefix) &&
lowerCaseName.endsWith(nativeSuffix)) {
names.add(name);
}
}
return names;
}
/**
* Validate the certificates for each native Lib in the jar file.
* Throws an IOException if any certificate is not valid.
*/
private void validateCertificates(JarFile jarFile,
Set/*<String>*/ nativeLibNames) throws IOException {
if (DEBUG) {
System.err.println("validateCertificates:");
}
byte[] buf = new byte[1000];
Enumeration/*<JarEntry>*/ entries = jarFile.entries();
while (entries.hasMoreElements()) {
JarEntry entry = (JarEntry) entries.nextElement();
String entryName = entry.getName();
if (VERBOSE) {
System.err.println("JarEntry : " + entryName);
}
if (nativeLibNames.contains(entryName)) {
if (DEBUG) {
System.err.println("VALIDATE: " + entryName);
}
if (!checkNativeCertificates(jarFile, entry, buf)) {
throw new IOException("Cannot validate certificate for " + entryName);
}
}
}
}
/**
* Check the native certificates with the ones in the jar file containing the
* certificates for the JNLPAppletLauncher class (all must match).
*/
private boolean checkNativeCertificates(JarFile jar, JarEntry entry,
byte[] buf) throws IOException {
// API states that we must read all of the data from the entry's
// InputStream in order to be able to get its certificates
InputStream is = jar.getInputStream(entry);
int totalLength = (int) entry.getSize();
int len;
while ((len = is.read(buf)) > 0) {
}
is.close();
// locate JNLPAppletLauncher certificates
Certificate[] appletLauncherCerts = JNLPAppletLauncher.class.getProtectionDomain().
getCodeSource().getCertificates();
if (appletLauncherCerts == null || appletLauncherCerts.length == 0) {
throw new IOException("Cannot find certificates for JNLPAppletLauncher class");
}
// Get the certificates for the JAR entry
Certificate[] nativeCerts = entry.getCertificates();
if (nativeCerts == null || nativeCerts.length == 0) {
return false;
}
int checked = 0;
for (int i = 0; i < appletLauncherCerts.length; i++) {
for (int j = 0; j < nativeCerts.length; j++) {
if (nativeCerts[j].equals(appletLauncherCerts[i])){
checked++;
break;
}
}
}
return (checked == appletLauncherCerts.length);
}
/**
* Extract the specified set of native libraries in the given jar file.
*/
private void extractNativeLibs(JarFile jarFile,
Set/*<String>*/ rootEntries,
Set/*<String>*/ nativeLibNames) throws IOException {
if (DEBUG) {
System.err.println("extractNativeLibs:");
}
Enumeration/*<JarEntry>*/ entries = jarFile.entries();
while (entries.hasMoreElements()) {
JarEntry entry = (JarEntry) entries.nextElement();
String entryName = entry.getName();
if (VERBOSE) {
System.err.println("JarEntry : " + entryName);
}
// In order to be compatible with Java Web Start, we need
// to extract all root entries from the jar file. However,
// we only allow direct loading of the previously
// discovered native library names.
if (rootEntries.contains(entryName)) {
// strip prefix & suffix
String libName = entryName.substring(nativePrefix.length(),
entryName.length() - nativeSuffix.length());
if (DEBUG) {
System.err.println("EXTRACT: " + entryName + "(" + libName + ")");
}
File nativeLib = new File(nativeTmpDir, entryName);
InputStream in = new BufferedInputStream(jarFile.getInputStream(entry));
OutputStream out = new BufferedOutputStream(new FileOutputStream(nativeLib));
int numBytesWritten = copyStream(in, out, -1);
in.close();
out.close();
if (nativeLibNames.contains(entryName)) {
nativeLibMap.put(libName, nativeLib.getAbsolutePath());
}
}
}
}
/**
* The true start of the sub applet (invoked in the EDT)
*/
private void startSubApplet() {
try {
subApplet = (Applet)
Class.forName(subAppletClassName,
true,
Thread.currentThread().getContextClassLoader()).newInstance();
subApplet.setStub(new AppletStubProxy());
} catch (ClassNotFoundException ex) {
ex.printStackTrace();
displayError("Class not found: " + subAppletClassName);
return;
} catch (Exception ex) {
ex.printStackTrace();
displayError("Unable to start " + subAppletDisplayName);
return;
}
add(subApplet, BorderLayout.CENTER);
try {
subApplet.init();
remove(loaderPanel);
validate();
checkNoDDrawAndUpdateDeploymentProperties();
subApplet.start();
appletStarted = true;
} catch (Exception ex) {
ex.printStackTrace();
}
}
/**
* Method called by an extension such as JOGL or Java 3D to load the
* specified library. Applications and applets should not call this method.
*
* @param libraryName name of the library to be loaded
*
* @throws SecurityException if the caller does not have permission to
* call System.load
*/
public static void loadLibrary(String libraryName) {
if (VERBOSE) {
System.err.println("-----------");
Thread.dumpStack();
}
if (DEBUG) {
System.err.println("JNLPAppletLauncher.loadLibrary(\"" + libraryName + "\")");
}
String fullLibraryName = (String) nativeLibMap.get(libraryName);
if (fullLibraryName == null) {
// Throw UnsatisfiedLinkError to try to match behavior of System.loadLibrary()
throw new UnsatisfiedLinkError(libraryName);
}
if (DEBUG) {
System.err.println(" loading: " + fullLibraryName + "");
}
System.load(fullLibraryName);
}
public static void removeLibrary(String libraryName) {
String fullLibraryName = (String) nativeLibMap.get(libraryName);
if (fullLibraryName == null) {
return;
}
if (DEBUG) {
System.err.println(" removing: " + fullLibraryName + "");
}
new File(fullLibraryName).delete();
nativeLibMap.remove(libraryName);
}
private static String toErrorString(Throwable throwable) {
StringBuffer errStr = new StringBuffer(throwable.toString());
Throwable cause = throwable.getCause();
while (cause != null) {
errStr.append(": ").append(cause);
cause = cause.getCause();
}
return errStr.toString();
}
private void displayMessage(final String message) {
if (progressBar != null) {
SwingUtilities.invokeLater(new Runnable() {
public void run() {
progressBar.setString(message);
}
});
}
}
private void displayError(final String errorMessage) {
// Log message on Java console and display in applet progress bar
Logger.getLogger("global").severe(errorMessage);
if (progressBar != null) {
SwingUtilities.invokeLater(new Runnable() {
public void run() {
progressBar.setString("Error : " + errorMessage);
}
});
}
}
private void setProgress(final int value) {
if (progressBar != null) {
SwingUtilities.invokeLater(new Runnable() {
public void run() {
progressBar.setValue(value);
}
});
}
}
private void initLoaderLayout() {
setLayout(new BorderLayout());
loaderPanel = new JPanel(new BorderLayout());
if (getBooleanParameter("progressbar")) {
progressBar = new JProgressBar(0, 100);
progressBar.setBorderPainted(true);
progressBar.setStringPainted(true);
progressBar.setString("Loading...");
}
boolean includeImage = false;
ImageIcon image = null;
if (subAppletImageURL != null) {
image = new ImageIcon(subAppletImageURL);
includeImage = true;
}
add(loaderPanel, BorderLayout.SOUTH);
if (includeImage) {
loaderPanel.add(new JLabel(image), BorderLayout.CENTER);
if (progressBar != null) {
loaderPanel.add(progressBar, BorderLayout.SOUTH);
}
} else {
if (progressBar != null) {
loaderPanel.add(progressBar, BorderLayout.CENTER);
}
}
}
private void parseJNLPExtensions(List/*<URL>*/ urls) throws IOException {
for (Iterator iter = urls.iterator(); iter.hasNext(); ) {
URL url = (URL) iter.next();
JNLPParser parser = new JNLPParser(this, url);
parser.parse();
}
}
private void addJarFile(URL jarFile) {
jarFiles.add(jarFile);
}
private void addNativeJar(URL nativeJar) {
nativeJars.add(nativeJar);
}
/*
* Debug method to print out resources from the JNLP file
*/
private static void printResources() {
System.err.println(" Resources:");
System.err.println(" Class Jars:");
doPrint(jarFiles);
System.err.println();
System.err.println(" Native Jars:");
doPrint(nativeJars);
}
/*
* Debug method to print out resources from the JNLP file
*/
private static void doPrint(Collection/*<URL>*/ urls) {
for (Iterator iter = urls.iterator(); iter.hasNext(); ) {
URL url = (URL) iter.next();
String urlString = url.toExternalForm();
System.err.println(" " + urlString);
}
}
// Static initializer for JNLPAppletLauncher
static {
System.err.println("JNLPAppletLauncher: static initializer");
String systemOsName = System.getProperty("os.name").toLowerCase();
if (systemOsName.startsWith("mac")) {
// Mac OS X
nativePrefix = "lib";
nativeSuffix = ".jnilib";
} else if (systemOsName.startsWith("windows")) {
// Microsoft Windows
nativePrefix = "";
nativeSuffix = ".dll";
} else {
// Unix of some variety
nativePrefix = "lib";
nativeSuffix = ".so";
}
if (DEBUG) {
System.err.println("os.name = " + systemOsName);
System.err.println("nativePrefix = " + nativePrefix + " nativeSuffix = " + nativeSuffix);
}
// Create / initialize the temp root directory, starting the Reaper
// thread to reclaim old installations if necessary. If we get an
// exception, set an error code so we don't try to start the applets.
try {
initTmpRoot();
} catch (Exception ex) {
ex.printStackTrace();
staticInitError = true;
}
}
private static final String _javaVersionProperty =
System.getProperty("java.version");
private static final boolean _atLeast13 =
(!_javaVersionProperty.startsWith("1.2"));
private static final boolean _atLeast14 = (_atLeast13 &&
!_javaVersionProperty.startsWith("1.3"));
private static final boolean _atLeast15 = (_atLeast14 &&
!_javaVersionProperty.startsWith("1.4"));
private static final String vendorURL =
System.getProperty("java.vendor.url");
private static final String sunVendorURL = "http://java.sun.com/";
private static boolean isJavaVersionAtLeast15() {
return _atLeast15;
}
private static boolean isJavaVersion142Family() {
return _javaVersionProperty.startsWith("1.4.2");
}
// -----------------------------------------------------------------------
/**
* Proxy implementation class of AppletStub. Delegates to the
* JNLPAppletLauncher class.
*/
private class AppletStubProxy implements AppletStub {
public boolean isActive() {
return JNLPAppletLauncher.this.isActive();
}
public URL getDocumentBase() {
return JNLPAppletLauncher.this.getDocumentBase();
}
public URL getCodeBase() {
return JNLPAppletLauncher.this.getCodeBase();
}
public String getParameter(String name) {
return JNLPAppletLauncher.this.getParameter(name);
}
public AppletContext getAppletContext() {
return JNLPAppletLauncher.this.getAppletContext();
}
public void appletResize(int width, int height) {
JNLPAppletLauncher.this.resize(width, height);
}
}
/**
* Parser class for JNLP files for the applet launcher. For simplicitly, we
* assume that everything of interest is within a single "jnlp" tag and
* that the "resources" tags are not nested.
*/
private static class JNLPParser {
// The following represents the various states we can be in
private static final int INITIAL = 1;
private static final int STARTED = 2;
private static final int IN_JNLP = 3;
private static final int IN_RESOURCES = 4;
private static final int SKIP_ELEMENT = 5;
private static SAXParserFactory factory;
private static String systemOsName;
private static String systemOsArch;
private JNLPAppletLauncher launcher;
private URL url;
private InputStream in;
private JNLPHandler handler;
private String codebase = "";
private int state = INITIAL;
private int prevState = INITIAL;
private int depth = 0;
private int skipDepth = -1;
private JNLPParser(JNLPAppletLauncher launcher, URL url) throws IOException {
this.launcher = launcher;
this.url = url;
this.handler = new JNLPHandler();
}
private void parse() throws IOException {
if (VERBOSE) {
System.err.println("JNLPParser: " + url.toString());
}
try {
URLConnection conn = url.openConnection();
conn.connect();
InputStream in = new BufferedInputStream(conn.getInputStream());
SAXParser parser = factory.newSAXParser();
parser.parse(in, handler);
in.close();
} catch (ParserConfigurationException ex) {
throw (IOException) new IOException().initCause(ex);
} catch (SAXException ex) {
throw (IOException) new IOException().initCause(ex);
}
}
// Static initializer for JNLPParser
static {
if (sunVendorURL.equals(vendorURL)) {
// set the "javax.xml.parsers.SAXParserFactory" to the default
// implementation, so we won't pull down all the JARs listed
// in the archive tag to look for a SAXParserFactory implementation
if (isJavaVersionAtLeast15()) {
System.setProperty("javax.xml.parsers.SAXParserFactory",
"com.sun.org.apache.xerces.internal.jaxp.SAXParserFactoryImpl");
} else if (isJavaVersion142Family()) {
System.setProperty("javax.xml.parsers.SAXParserFactory",
"org.apache.crimson.jaxp.SAXParserFactoryImpl");
}
}
factory = SAXParserFactory.newInstance();
systemOsName = System.getProperty("os.name").toLowerCase();
systemOsArch = System.getProperty("os.arch").toLowerCase();
if (DEBUG) {
System.err.println("os.name = " + systemOsName);
System.err.println("os.arch = " + systemOsArch);
}
}
/**
* Handler class containing callback methods for the parser.
*/
private class JNLPHandler extends DefaultHandler {
JNLPHandler() {
}
/* @Override */
public void startDocument() {
if (VERBOSE) {
System.err.println("START DOCUMENT: " + url);
}
state = STARTED;
if (VERBOSE) {
System.err.println("state = " + state);
}
}
/* @Override */
public void endDocument() {
if (VERBOSE) {
System.err.println("END DOCUMENT");
}
state = INITIAL;
if (VERBOSE) {
System.err.println("state = " + state);
}
}
/* @Override */
public void startElement(String uri,
String localName,
String qName,
Attributes attributes) throws SAXException {
++depth;
if (VERBOSE) {
System.err.println("<" + qName + ">" + " : depth=" + depth);
for (int i = 0; i < attributes.getLength(); i++) {
System.err.println(" [" + i + "] " + attributes.getQName(i) +
" = \"" + attributes.getValue(i) + "\"");
}
}
// Parse qName based on current state
switch (state) {
case STARTED:
if (qName.equals("jnlp")) {
state = IN_JNLP;
codebase = attributes.getValue("codebase");
if (codebase == null) {
throw new SAXException("<jnlp> unable to determine codebase");
}
if (codebase.lastIndexOf('/') != codebase.length()-1) {
codebase = codebase + "/";
}
if (VERBOSE) {
System.err.println("JNLP : codebase=" + codebase);
}
if (VERBOSE) {
System.err.println("state = " + state);
}
} else if (qName.equals("resources")) {
throw new SAXException("<resources> tag not within <jnlp> tag");
}
// Ignore all other tags
break;
case IN_JNLP:
if (qName.equals("jnlp")) {
throw new SAXException("Nested <jnlp> tags");
} else if (qName.equals("resources")) {
String osName = attributes.getValue("os");
String osArch = attributes.getValue("arch");
if ((osName == null || systemOsName.startsWith(osName.toLowerCase())) &&
(osArch == null || systemOsArch.startsWith(osArch.toLowerCase()))) {
if (VERBOSE) {
System.err.println("Loading resources : os=" + osName + " arch=" + osArch);
}
state = IN_RESOURCES;
} else {
prevState = state;
skipDepth = depth - 1;
state = SKIP_ELEMENT;
}
if (VERBOSE) {
System.err.println("Resources : os=" + osName + " arch=" + osArch + " state = " + state);
}
}
break;
case IN_RESOURCES:
try {
if (qName.equals("jnlp")) {
throw new SAXException("Nested <jnlp> tags");
} else if (qName.equals("resources")) {
throw new SAXException("Nested <resources> tags");
} else if (qName.equals("jar")) {
String str = attributes.getValue("href");
if (str == null || str.length() == 0) {
throw new SAXException("<jar> tag missing href attribute");
}
String jarFileStr = codebase + str;
if (VERBOSE) {
System.err.println("Jar: " + jarFileStr);
}
URL jarFile = new URL(jarFileStr);
launcher.addJarFile(jarFile);
} else if (qName.equals("nativelib")) {
String str = attributes.getValue("href");
if (str == null || str.length() == 0) {
throw new SAXException("<nativelib> tag missing href attribute");
}
String nativeLibStr = codebase + str;
if (VERBOSE) {
System.err.println("Native Lib: " + nativeLibStr);
}
URL nativeLib = new URL(nativeLibStr);
launcher.addNativeJar(nativeLib);
} else if (qName.equals("extension")) {
String extensionURLString = attributes.getValue("href");
if (extensionURLString == null || extensionURLString.length() == 0) {
throw new SAXException("<extension> tag missing href attribute");
}
if (VERBOSE) {
System.err.println("Extension: " + extensionURLString);
}
URL extensionURL = new URL(extensionURLString);
JNLPParser parser = new JNLPParser(launcher, extensionURL);
parser.parse();
} else {
prevState = state;
skipDepth = depth - 1;
state = SKIP_ELEMENT;
if (VERBOSE) {
System.err.println("state = " + state);
}
}
} catch (IOException ex) {
throw (SAXException) new SAXException(ex).initCause(ex);
}
break;
case INITIAL:
case SKIP_ELEMENT:
default:
break;
}
}
/* @Override */
public void endElement(String uri,
String localName,
String qName) throws SAXException {
--depth;
if (VERBOSE) {
System.err.println("</" + qName + ">");
}
// Parse qName based on current state
switch (state) {
case IN_JNLP:
if (qName.equals("jnlp")) {
state = STARTED;
if (VERBOSE) {
System.err.println("state = " + state);
}
}
break;
case IN_RESOURCES:
if (qName.equals("resources")) {
state = IN_JNLP;
if (VERBOSE) {
System.err.println("state = " + state);
}
}
break;
case SKIP_ELEMENT:
if (depth == skipDepth) {
state = prevState;
skipDepth = -1;
if (VERBOSE) {
System.err.println("state = " + state);
}
}
break;
case INITIAL:
case STARTED:
default:
break;
}
}
}
}
//----------------------------------------------------------------------
// Helper routines for adding -Dsun.java2d.noddraw=true to deployment.properties
// Get a "boolean" parameter
private boolean getBooleanParameter(String parameterName) {
return Boolean.valueOf(getParameter(parameterName)).booleanValue();
}
private String getDeploymentPropsDir() {
final String osName = System.getProperty("os.name").toLowerCase();
StringBuffer result = new StringBuffer();
result.append(System.getProperty("user.home"));
if (osName.startsWith("windows")) {
if (osName.indexOf("vista") != -1) {
result.append(File.separator).append("AppData").
append(File.separator).append("LocalLow");
} else {
result.append(File.separator).append("Application Data");
}
result.append(File.separator).append("Sun").
append(File.separator).append("Java").
append(File.separator).append("Deployment");
} else if (osName.startsWith("mac")) {
result.append(File.separator).append("Library").
append(File.separator).append("Caches").
append(File.separator).append("Java");
} else {
result.append(File.separator).append(".java").
append(File.separator).append("deployment");
}
return result.toString();
}
private void checkNoDDrawAndUpdateDeploymentProperties() {
if (!getBooleanParameter("noddraw.check"))
return;
if (System.getProperty("os.name").toLowerCase().startsWith("windows") &&
!"true".equalsIgnoreCase(System.getProperty("sun.java2d.noddraw"))) {
if (!SwingUtilities.isEventDispatchThread()) {
try {
SwingUtilities.invokeAndWait(new Runnable() {
public void run() {
updateDeploymentPropertiesImpl();
}
});
} catch (Exception e) {
}
} else {
updateDeploymentPropertiesImpl();
}
}
}
private void updateDeploymentPropertiesImpl() {
String userHome = System.getProperty("user.home");
File dontAskFile = new File(userHome + File.separator + ".jnlp-applet" +
File.separator + DONT_ASK);
if (dontAskFile.exists())
return; // User asked us not to prompt again
int option = 0;
if (!getBooleanParameter("noddraw.check.silent")) {
option = JOptionPane.showOptionDialog(null,
"For best robustness of OpenGL applets on Windows,\n" +
"we recommend disabling Java2D's use of DirectDraw.\n" +
"This setting will affect all applets, but is unlikely\n" +
"to slow other applets down significantly. May we update\n" +
"your deployment.properties to turn off DirectDraw for\n" +
"applets? You can change this back later if necessary\n" +
"using the Java Control Panel, Java tab, under Java\n" +
"Applet Runtime Settings.",
"Update deployment.properties?",
JOptionPane.YES_NO_CANCEL_OPTION,
JOptionPane.QUESTION_MESSAGE,
null,
new Object[] {
"Yes",
"No",
"No, Don't Ask Again"
},
"Yes");
}
if (option < 0 ||
option == 1)
return; // No
if (option == 2) {
try {
dontAskFile.createNewFile();
} catch (IOException e) {
}
return; // No, Don't Ask Again
}
try {
// Must update deployment.properties
File propsDir = new File(getDeploymentPropsDir());
if (!propsDir.exists()) {
// Don't know what's going on or how to set this permanently
return;
}
File propsFile = new File(propsDir, "deployment.properties");
if (!propsFile.exists()) {
// Don't know what's going on or how to set this permanently
return;
}
Properties props = new Properties();
InputStream input = new BufferedInputStream(new FileInputStream(propsFile));
props.load(input);
input.close();
// Search through the keys looking for JRE versions
Set/*<String>*/ jreVersions = new HashSet/*<String>*/();
for (Iterator/*<String>*/ iter = props.keySet().iterator(); iter.hasNext(); ) {
String key = (String) iter.next();
if (key.startsWith(JRE_PREFIX)) {
int idx = key.lastIndexOf(".");
if (idx >= 0 && idx > JRE_PREFIX.length()) {
String jreVersion = key.substring(JRE_PREFIX.length(), idx);
jreVersions.add(jreVersion);
}
}
}
// Make sure the currently-running JRE shows up in this set to
// avoid repeated displays of the dialog. It might not in some
// upgrade scenarios where there was a pre-existing
// deployment.properties and the new Java Control Panel hasn't
// been run yet.
jreVersions.add(System.getProperty("java.version"));
// OK, now that we know all JRE versions covered by the
// deployment.properties, check out the args for each and update
// them
for (Iterator/*<String>*/ iter = jreVersions.iterator(); iter.hasNext(); ) {
String version = (String) iter.next();
String argKey = JRE_PREFIX + version + ".args";
String argVal = props.getProperty(argKey);
if (argVal == null) {
argVal = NODDRAW_PROP;
} else if (argVal.indexOf(NODDRAW_PROP) < 0) {
argVal = argVal + " " + NODDRAW_PROP;
}
props.setProperty(argKey, argVal);
}
OutputStream output = new BufferedOutputStream(new FileOutputStream(propsFile));
props.store(output, null);
output.close();
if (!getBooleanParameter("noddraw.check.silent")) {
// Tell user we're done
JOptionPane.showMessageDialog(null,
"For best robustness, we recommend you now exit and\n" +
"restart your web browser. (Note: clicking \"OK\" will\n" +
"not exit your browser.)",
"Browser Restart Recommended",
JOptionPane.INFORMATION_MESSAGE);
}
} catch (IOException e) {
e.printStackTrace();
}
}
}
|