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
|
// Copyright (C) 2001-2003 Jon A. Maxwell (JAM)
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public
// License as published by the Free Software Foundation; either
// version 2.1 of the License, or (at your option) any later version.
//
// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
package net.sourceforge.jnlp;
import static net.sourceforge.jnlp.runtime.Translator.R;
import java.io.IOException;
import java.io.InputStream;
import java.net.URL;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Calendar;
import java.util.LinkedList;
import java.util.List;
import java.util.Locale;
import java.util.jar.Attributes;
import net.sourceforge.jnlp.cache.ResourceTracker;
import net.sourceforge.jnlp.cache.UpdatePolicy;
import net.sourceforge.jnlp.runtime.JNLPClassLoader;
import net.sourceforge.jnlp.runtime.JNLPRuntime;
import net.sourceforge.jnlp.util.logging.OutputController;
/**
* Provides methods to access the information in a Java Network
* Launching Protocol (JNLP) file. The Java Network Launching
* Protocol specifies in an XML file the information needed to
* load, cache, and run Java code over the network and in a secure
* environment.<p>
*
* This class represents the overall information about a JNLP file
* from the jnlp element. Other information is accessed through
* objects that represent the elements of a JNLP file
* (information, resources, application-desc, etc). References to
* these objects are obtained by calling the getInformation,
* getResources, getSecurity, etc methods.<p>
*
* @author <a href="mailto:jmaxwell@users.sourceforge.net">Jon A. Maxwell (JAM)</a> - initial author
* @version $Revision: 1.21 $
*/
public class JNLPFile {
public static final String APP_NAME = "Application-Name";
public static final String CALLER_ALLOWABLE = "Caller-Allowable-Codebase";
public static final String APP_LIBRARY_ALLOWABLE = "Application-Library-Allowable-Codebase";
// todo: save the update policy, then if file was not updated
// then do not check resources for being updated.
//
// todo: make getLaunchInfo return a superclass that all the
// launch types implement (can get codebase from it).
//
// todo: currently does not filter resources by jvm version.
//
/** the location this JNLP file was created from */
protected URL sourceLocation = null;
/** the network location of this JNLP file */
protected URL fileLocation;
/** the ParserSettings which were used to parse this file */
protected ParserSettings parserSettings = null;
/** A key that uniquely identifies connected instances (main jnlp+ext) */
protected String uniqueKey = null;
/** the URL used to resolve relative URLs in the file */
protected URL codeBase;
/** file version */
protected Version fileVersion;
/** spec version */
protected Version specVersion;
/** information */
protected List<InformationDesc> info;
protected UpdateDesc update;
/** resources */
protected List<ResourcesDesc> resources;
/** additional resources not in JNLP file (from command line) */
protected ResourcesDesc sharedResources = new ResourcesDesc(this, null, null, null);
/** the application description */
protected LaunchDesc launchType;
/** the component description */
protected ComponentDesc component;
/** the security descriptor */
protected SecurityDesc security;
/** the default JVM locale */
protected Locale defaultLocale = null;
/** the default OS */
protected String defaultOS = null;
/** the default arch */
protected String defaultArch = null;
/** A signed JNLP file is missing from the main jar */
private boolean missingSignedJNLP = false;
/** JNLP file contains special properties */
private boolean containsSpecialProperties = false;
/**
* List of acceptable properties (not-special)
*/
private String[] generalProperties = SecurityDesc.getJnlpRIAPermissions();
/** important manifests' attributes */
private final ManifestsAttributes manifestsAttributes = new ManifestsAttributes();
public static final String TITLE_NOT_FOUND = "Application title was not found in manifest. Check with application vendor";
{ // initialize defaults if security allows
try {
defaultLocale = Locale.getDefault();
defaultOS = System.getProperty("os.name");
defaultArch = System.getProperty("os.arch");
} catch (SecurityException ex) {
// null values will still work, and app can set defaults later
}
}
static enum Match { LANG_COUNTRY_VARIANT, LANG_COUNTRY, LANG, GENERALIZED }
/**
* Empty stub, allowing child classes to override the constructor
*/
protected JNLPFile() {
}
/**
* Create a JNLPFile from a URL.
*
* @param location the location of the JNLP file
* @throws IOException if an IO exception occurred
* @throws ParseException if the JNLP file was invalid
*/
public JNLPFile(URL location) throws IOException, ParseException {
this(location, new ParserSettings());
}
/**
* Create a JNLPFile from a URL checking for updates using the
* default policy.
*
* @param location the location of the JNLP file
* @param settings the parser settings to use while parsing the file
* @throws IOException if an IO exception occurred
* @throws ParseException if the JNLP file was invalid
*/
public JNLPFile(URL location, ParserSettings settings) throws IOException, ParseException {
this(location, (Version) null, settings);
}
/**
* Create a JNLPFile from a URL and a Version checking for updates using
* the default policy.
*
* @param location the location of the JNLP file
* @param version the version of the JNLP file
* @param settings the parser settings to use while parsing the file
* @throws IOException if an IO exception occurred
* @throws ParseException if the JNLP file was invalid
*/
public JNLPFile(URL location, Version version, ParserSettings settings) throws IOException, ParseException {
this(location, version, settings, JNLPRuntime.getDefaultUpdatePolicy());
}
/**
* Create a JNLPFile from a URL and a version, checking for updates
* using the specified policy.
*
* @param location the location of the JNLP file
* @param version the version of the JNLP file
* @param settings the {@link ParserSettings} to use when parsing the {@code location}
* @param policy the update policy
* @throws IOException if an IO exception occurred
* @throws ParseException if the JNLP file was invalid
*/
public JNLPFile(URL location, Version version, ParserSettings settings, UpdatePolicy policy) throws IOException, ParseException {
this(location, version, settings, policy, null);
}
/**
* Create a JNLPFile from a URL and a version, checking for updates
* using the specified policy.
*
* @param location the location of the JNLP file
* @param version the version of the JNLP file
* @param settings the parser settings to use while parsing the file
* @param policy the update policy
* @param forceCodebase codebase to use if not specified in JNLP file.
* @throws IOException if an IO exception occurred
* @throws ParseException if the JNLP file was invalid
*/
protected JNLPFile(URL location, Version version, ParserSettings settings, UpdatePolicy policy, URL forceCodebase) throws IOException, ParseException {
InputStream input = openURL(location, version, policy);
this.parserSettings = settings;
parse(input, location, forceCodebase);
//Downloads the original jnlp file into the cache if possible
//(i.e. If the jnlp file being launched exist locally, but it
//originated from a website, then download the one from the website
//into the cache).
if (sourceLocation != null && "file".equals(location.getProtocol())) {
openURL(sourceLocation, version, policy);
}
this.fileLocation = location;
this.uniqueKey = Calendar.getInstance().getTimeInMillis() + "-" +
((int)(Math.random()*Integer.MAX_VALUE)) + "-" +
location;
OutputController.getLogger().log(OutputController.Level.ERROR_DEBUG, "UNIQUEKEY=" + this.uniqueKey);
}
/**
* Create a JNLPFile from a URL, parent URLm a version and checking for
* updates using the specified policy.
*
* @param location the location of the JNLP file
* @param uniqueKey A string that uniquely identifies connected instances
* @param version the version of the JNLP file
* @param settings the parser settings to use while parsing the file
* @param policy the update policy
* @throws IOException if an IO exception occurred
* @throws ParseException if the JNLP file was invalid
*/
public JNLPFile(URL location, String uniqueKey, Version version, ParserSettings settings, UpdatePolicy policy) throws IOException, ParseException {
this(location, version, settings, policy);
this.uniqueKey = uniqueKey;
OutputController.getLogger().log(OutputController.Level.ERROR_DEBUG, "UNIQUEKEY (override) =" + this.uniqueKey);
}
/**
* Create a JNLPFile from an input stream.
*
* @throws ParseException if the JNLP file was invalid
*/
public JNLPFile(InputStream input, ParserSettings settings) throws ParseException {
this.parserSettings = settings;
parse(input, null, null);
}
/**
* Create a JNLPFile from an input stream.
*
* @param input input stream of JNLP file.
* @param codebase codebase to use if not specified in JNLP file..
* @param settings the {@link ParserSettings} to use when parsing
* @throws ParseException if the JNLP file was invalid
*/
public JNLPFile(InputStream input, URL codebase, ParserSettings settings) throws ParseException {
this.parserSettings = settings;
parse(input, null, codebase);
}
/**
* Open the jnlp file URL from the cache if there, otherwise
* download to the cache. Called from constructor.
*/
private static InputStream openURL(URL location, Version version, UpdatePolicy policy) throws IOException {
if (location == null || policy == null)
throw new IllegalArgumentException(R("NullParameter"));
try {
ResourceTracker tracker = new ResourceTracker(false); // no prefetch
tracker.addResource(location, version, null, policy);
return tracker.getInputStream(location);
} catch (Exception ex) {
throw new IOException(ex.getMessage());
}
}
/**
* Returns the JNLP file's best localized title. This method returns the same
* value as InformationDesc.getTitle().
*
* Since jdk7 u45, also manifest title, and mainclass are taken to consideration;
* See PluginBridge
*/
public String getTitle() {
String jnlpTitle = getTitleFromJnlp();
String manifestTitle = getTitleFromManifest();
if (jnlpTitle != null && manifestTitle != null) {
if (jnlpTitle.equals(manifestTitle)) {
return jnlpTitle;
}
return jnlpTitle+" ("+manifestTitle+")";
}
if (jnlpTitle != null && manifestTitle == null) {
return jnlpTitle;
}
if (jnlpTitle == null && manifestTitle != null) {
return manifestTitle;
}
String mainClass = getManifestsAttributes().getMainClass();
return mainClass;
}
/**
* Returns the JNLP file's best localized title. This method returns the same
* value as InformationDesc.getTitle().
*/
public String getTitleFromJnlp() {
return getInformation().getTitle();
}
public String getTitleFromManifest() {
String inManifestTitle = getManifestsAttributes().getApplicationName();
if (inManifestTitle == null && getManifestsAttributes().isLoader()){
OutputController.getLogger().log(OutputController.Level.WARNING_ALL, TITLE_NOT_FOUND);
}
return inManifestTitle;
}
/**
* Returns the JNLP file's best localized vendor. This method returns the same
* value as InformationDesc.getVendor().
*/
public String getVendor() {
return getInformation().getVendor();
}
/**
* Returns the JNLP file's network location as specified in the
* JNLP file.
*/
public URL getSourceLocation() {
return sourceLocation;
}
/**
* Returns the location of the file parsed to create the JNLP
* file, or null if it was not created from a URL.
*/
public URL getFileLocation() {
return fileLocation;
}
/**
* Returns the location of the parent file if it exists, null otherwise
*/
public String getUniqueKey() {
return uniqueKey;
}
/**
* Returns the ParserSettings that was used to parse this file
*/
public ParserSettings getParserSettings() {
return parserSettings;
}
/**
* Returns the JNLP file's version.
*/
public Version getFileVersion() {
return fileVersion;
}
/**
* Returns the specification version required by the file.
*/
public Version getSpecVersion() {
return specVersion;
}
/**
* Returns the codebase URL for the JNLP file.
*/
public URL getCodeBase() {
return codeBase;
}
/**
* Returns the information section of the JNLP file as viewed
* through the default locale.
*/
public InformationDesc getInformation() {
return getInformation(defaultLocale);
}
/**
* Returns the information section of the JNLP file as viewed
* through the specified locale.
*/
public InformationDesc getInformation(final Locale locale) {
return new InformationDesc(new Locale[] { locale }) {
@Override
protected List<Object> getItems(Object key) {
List<Object> result = new ArrayList<Object>();
for (Match precision : Match.values()) {
for (InformationDesc infoDesc : JNLPFile.this.info) {
if (localeMatches(locale, infoDesc.getLocales(), precision)) {
result.addAll(infoDesc.getItems(key));
}
}
if (result.size() > 0) {
return result;
}
}
return result;
}
@Override
public String getTitle() {
for (Match precision : Match.values()) {
for (InformationDesc infoDesc : JNLPFile.this.info) {
String title = infoDesc.getTitle();
if (localeMatches(locale, infoDesc.getLocales(), precision)
&& title != null && !"".equals(title)) {
return title;
}
}
}
return null;
}
@Override
public String getVendor() {
for (Match precision : Match.values()) {
for (InformationDesc infoDesc : JNLPFile.this.info) {
String vendor = infoDesc.getVendor();
if (localeMatches(locale, infoDesc.getLocales(), precision)
&& vendor != null && !"".equals(vendor)) {
return vendor;
}
}
}
return null;
}
};
}
/**
* Returns the update section of the JNLP file.
*/
public UpdateDesc getUpdate() {
return update;
}
/**
* Returns the security section of the JNLP file.
*/
public SecurityDesc getSecurity() {
return security;
}
/**
* Returns the resources section of the JNLP file as viewed
* through the default locale and the os.name and os.arch
* properties.
*/
public ResourcesDesc getResources() {
return getResources(defaultLocale, defaultOS, defaultArch);
}
/**
* Returns the resources section of the JNLP file for the
* specified locale, os, and arch.
*/
public ResourcesDesc getResources(final Locale locale, final String os, final String arch) {
return new ResourcesDesc(this, new Locale[] { locale }, new String[] { os }, new String[] { arch }) {
@Override
public <T> List<T> getResources(Class<T> launchType) {
List<T> result = new ArrayList<T>();
for (ResourcesDesc rescDesc : resources) {
boolean hasUsableLocale = false;
for (Match match : Match.values()) {
hasUsableLocale |= localeMatches(locale, rescDesc.getLocales(), match);
}
if (hasUsableLocale
&& stringMatches(os, rescDesc.getOS())
&& stringMatches(arch, rescDesc.getArch()))
result.addAll(rescDesc.getResources(launchType));
}
result.addAll(sharedResources.getResources(launchType));
return result;
}
@Override
public void addResource(Object resource) {
// todo: honor the current locale, os, arch values
sharedResources.addResource(resource);
}
};
}
/**
* Returns the resources section of the JNLP file as viewed
* through the default locale and the os.name and os.arch
* properties.
* XXX: Before overriding this method or changing its implementation,
* read the comment in JNLPFile.getDownloadOptionsForJar(JARDesc).
*/
public ResourcesDesc[] getResourcesDescs() {
return getResourcesDescs(defaultLocale, defaultOS, defaultArch);
}
/**
* Returns the resources section of the JNLP file for the
* specified locale, os, and arch.
*/
public ResourcesDesc[] getResourcesDescs(final Locale locale, final String os, final String arch) {
List<ResourcesDesc> matchingResources = new ArrayList<ResourcesDesc>();
for (ResourcesDesc rescDesc: resources) {
boolean hasUsableLocale = false;
for (Match match : Match.values()) {
hasUsableLocale |= localeMatches(locale, rescDesc.getLocales(), match);
}
if (hasUsableLocale
&& stringMatches(os, rescDesc.getOS())
&& stringMatches(arch, rescDesc.getArch())) {
matchingResources.add(rescDesc);
}
}
return matchingResources.toArray(new ResourcesDesc[0]);
}
/**
* Returns an object of one of the following types: AppletDesc,
* ApplicationDesc and InstallerDesc
*/
public LaunchDesc getLaunchInfo() {
return launchType;
}
/**
* Returns the launch information for an applet.
*
* @throws UnsupportedOperationException if there is no applet information
*/
public AppletDesc getApplet() {
if (!isApplet())
throw new UnsupportedOperationException(R("JNotApplet"));
return (AppletDesc) launchType;
}
/**
* Returns the launch information for an application.
*
* @throws UnsupportedOperationException if there is no application information
*/
public ApplicationDesc getApplication() {
if (!isApplication())
throw new UnsupportedOperationException(R("JNotApplication"));
return (ApplicationDesc) launchType;
}
/**
* Returns the launch information for a component.
*
* @throws UnsupportedOperationException if there is no component information
*/
public ComponentDesc getComponent() {
if (!isComponent())
throw new UnsupportedOperationException(R("JNotComponent"));
return component;
}
/**
* Returns the launch information for an installer.
*
* @throws UnsupportedOperationException if there is no installer information
*/
public InstallerDesc getInstaller() {
if (!isInstaller())
throw new UnsupportedOperationException(R("NotInstaller"));
return (InstallerDesc) launchType;
}
/**
* Returns whether the lauch descriptor describes an Applet.
*/
public boolean isApplet() {
return launchType instanceof AppletDesc;
}
/**
* Returns whether the lauch descriptor describes an Application.
*/
public boolean isApplication() {
return launchType instanceof ApplicationDesc;
}
/**
* Returns whether the lauch descriptor describes a Component.
*/
public boolean isComponent() {
return component != null;
}
/**
* Returns whether the lauch descriptor describes an Installer.
*/
public boolean isInstaller() {
return launchType instanceof InstallerDesc;
}
/**
* Sets the default view of the JNLP file returned by
* getInformation, getResources, etc. If unset, the defaults
* are the properties os.name, os.arch, and the locale returned
* by Locale.getDefault().
*/
public void setDefaults(String os, String arch, Locale locale) {
defaultOS = os;
defaultArch = arch;
defaultLocale = locale;
}
/**
* Returns whether a locale is matched by one of more other
* locales. Only the non-empty language, country, and variant
* codes are compared; for example, a requested locale of
* Locale("","","") would always return true.
*
* @param requested the local
* @param available the available locales
* @param matchLevel the detail with which to match locales.
* @return true if requested matches any of available, or if
* available is empty or null.
*/
public boolean localeMatches(Locale requested, Locale available[], Match matchLevel) {
if (matchLevel == Match.GENERALIZED)
return available == null || available.length == 0;
String language = requested.getLanguage(); // "" but never null
String country = requested.getCountry();
String variant = requested.getVariant();
for (Locale locale : available) {
switch (matchLevel) {
case LANG:
if (!language.isEmpty()
&& language.equals(locale.getLanguage())
&& locale.getCountry().isEmpty()
&& locale.getVariant().isEmpty())
return true;
break;
case LANG_COUNTRY:
if (!language.isEmpty()
&& language.equals(locale.getLanguage())
&& !country.isEmpty()
&& country.equals(locale.getCountry())
&& locale.getVariant().isEmpty())
return true;
break;
case LANG_COUNTRY_VARIANT:
if (language.equals(locale.getLanguage())
&& country.equals(locale.getCountry())
&& variant.equals(locale.getVariant()))
return true;
break;
default:
break;
}
}
return false;
}
/**
* Returns whether the string is a prefix for any of the strings
* in the specified array.
*
* @param prefixStr the prefix string
* @param available the strings to test
* @return true if prefixStr is a prefix of any strings in
* available, or if available is empty or null.
*/
private boolean stringMatches(String prefixStr, String available[]) {
if (available == null || available.length == 0)
return true;
for (int i = 0; i < available.length; i++)
if (available[i] != null && available[i].startsWith(prefixStr))
return true;
return false;
}
/**
* Initialize the JNLPFile fields. Private because it's called
* from the constructor.
*
* @param root the root node
* @param settings the parser settings to use while parsing the file
* @param location the file location or null
*/
private void parse(InputStream input, URL location, URL forceCodebase) throws ParseException {
try {
//if (location != null)
// location = new URL(location, "."); // remove filename
Node root = Parser.getRootNode(input, parserSettings);
Parser parser = new Parser(this, location, root, parserSettings, forceCodebase); // true == allow extensions
// JNLP tag information
specVersion = parser.getSpecVersion();
fileVersion = parser.getFileVersion();
codeBase = parser.getCodeBase();
sourceLocation = parser.getFileLocation() != null ? parser.getFileLocation() : location;
info = parser.getInfo(root);
parser.checkForInformation();
update = parser.getUpdate(root);
resources = parser.getResources(root, false); // false == not a j2se/java resources section
launchType = parser.getLauncher(root);
component = parser.getComponent(root);
security = parser.getSecurity(root);
checkForSpecialProperties();
} catch (ParseException ex) {
throw ex;
} catch (Exception ex) {
OutputController.getLogger().log(ex);
throw new RuntimeException(ex.toString());
}
}
/**
* Inspects the JNLP file to check if it contains any special properties
*/
private void checkForSpecialProperties() {
for (ResourcesDesc res : resources) {
for (PropertyDesc propertyDesc : res.getProperties()) {
for (int i = 0; i < generalProperties.length; i++) {
String property = propertyDesc.getKey();
if (property.equals(generalProperties[i])) {
break;
} else if (!property.equals(generalProperties[i])
&& i == generalProperties.length - 1) {
containsSpecialProperties = true;
return;
}
}
}
}
}
/**
*
* @return true if the JNLP file specifies things that can only be
* applied on a new vm (eg: different max heap memory)
*/
public boolean needsNewVM() {
if (getNewVMArgs().size() == 0) {
return false;
} else {
return true;
}
}
/**
* @return a list of args to pass to the new
* JVM based on this JNLP file
*/
public List<String> getNewVMArgs() {
List<String> newVMArgs = new LinkedList<String>();
JREDesc[] jres = getResources().getJREs();
for (int jreIndex = 0; jreIndex < jres.length; jreIndex++) {
String initialHeapSize = jres[jreIndex].getInitialHeapSize();
if (initialHeapSize != null) {
newVMArgs.add("-Xms" + initialHeapSize);
}
String maxHeapSize = jres[jreIndex].getMaximumHeapSize();
if (maxHeapSize != null) {
newVMArgs.add("-Xmx" + maxHeapSize);
}
String vmArgsFromJre = jres[jreIndex].getVMArgs();
if (vmArgsFromJre != null) {
String[] args = vmArgsFromJre.split(" ");
newVMArgs.addAll(Arrays.asList(args));
}
}
return newVMArgs;
}
/**
* @return the download options to use for downloading jars listed in this jnlp file.
*/
public DownloadOptions getDownloadOptions() {
boolean usePack = false;
boolean useVersion = false;
ResourcesDesc desc = getResources();
if (Boolean.valueOf(desc.getPropertiesMap().get("jnlp.packEnabled"))) {
usePack = true;
}
if (Boolean.valueOf(desc.getPropertiesMap().get("jnlp.versionEnabled"))) {
useVersion = true;
}
return new DownloadOptions(usePack, useVersion);
}
/**
* Returns a boolean after determining if a signed JNLP warning should be
* displayed in the 'More Information' panel.
*
* @return true if a warning should be displayed; otherwise false
*/
public boolean requiresSignedJNLPWarning() {
return (missingSignedJNLP && containsSpecialProperties);
}
/**
* Informs that a signed JNLP file is missing in the main jar
*/
public void setSignedJNLPAsMissing() {
missingSignedJNLP = true;
}
public ManifestsAttributes getManifestsAttributes() {
return manifestsAttributes;
}
public class ManifestsAttributes{
private JNLPClassLoader loader;
public void setLoader(JNLPClassLoader loader) {
this.loader = loader;
}
public boolean isLoader() {
return loader != null;
}
/**
* main class can be defined outside of manifest.
* This method is mostly for completeness
*/
public String getMainClass(){
if (loader == null) {
OutputController.getLogger().log(OutputController.Level.ERROR_DEBUG, "Jars not ready to provide main class");
return null;
}
return loader.getMainClass();
}
/**
* http://docs.oracle.com/javase/7/docs/technotes/guides/jweb/manifest.html#app_name
*/
public String getApplicationName(){
return getAttribute(APP_NAME);
}
/**
* http://docs.oracle.com/javase/7/docs/technotes/guides/jweb/manifest.html#caller_allowable
*/
public String getCallerAllowableCodebase(){
return getAttribute(CALLER_ALLOWABLE);
}
/**
* http://docs.oracle.com/javase/7/docs/technotes/guides/jweb/manifest.html#app_library
*/
public String getApplicationLibraryAllowableCodebase(){
return getAttribute(APP_LIBRARY_ALLOWABLE);
}
/**
* get custom attribute.
*/
public String getAttribute(String name){
return getAttribute(new Attributes.Name(name));
}
/**
* get standard attribute
*/
public String getAttribute(Attributes.Name name){
if (loader == null) {
OutputController.getLogger().log(OutputController.Level.ERROR_DEBUG, "Jars not ready to provide attribute "+ name);
return null;
}
return loader.checkForAttributeInJars(Arrays.asList(getResources().getJARs()), name);
}
}
}
|