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
|
/*
* Copyright 2012 Red Hat, Inc.
* This file is part of IcedTea, http://icedtea.classpath.org
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Sun designates this
* particular file as subject to the "Classpath" exception as provided
* by Sun in the LICENSE file that accompanied this code.
*
* This code 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 General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*/
package net.sourceforge.jnlp;
import java.net.URL;
import java.net.MalformedURLException;
import java.util.HashSet;
import java.util.Hashtable;
import java.util.Iterator;
import java.util.Locale;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import net.sourceforge.jnlp.runtime.JNLPRuntime;
/**
* Allows reuse of code that expects a JNLPFile object,
* while overriding behaviour specific to applets.
*/
public class PluginBridge extends JNLPFile {
String name;
HashSet<String> jars = new HashSet<String>();
String[] cacheJars = new String[0];
String[] cacheExJars = new String[0];
Hashtable<String, String> atts;
private boolean usePack;
private boolean useVersion;
private boolean codeBaseLookup;
private boolean useJNLPHref;
/**
* Creates a new PluginBridge using a default JNLPCreator.
*/
public PluginBridge(URL codebase, URL documentBase, String jar, String main,
int width, int height, Hashtable<String, String> atts,
String uKey)
throws Exception {
this(codebase, documentBase, jar, main, width, height, atts, uKey, new JNLPCreator());
}
public PluginBridge(URL codebase, URL documentBase, String jar, String main,
int width, int height, Hashtable<String, String> atts,
String uKey, JNLPCreator jnlpCreator)
throws Exception {
specVersion = new Version("1.0");
fileVersion = new Version("1.1");
this.codeBase = codebase;
this.sourceLocation = documentBase;
this.atts = atts;
if (atts.containsKey("jnlp_href")) {
useJNLPHref = true;
try {
// Use codeBase as the context for the URL. If jnlp_href's
// value is a complete URL, it will replace codeBase's context.
URL jnlp = new URL(codeBase, atts.get("jnlp_href"));
JNLPFile jnlpFile = jnlpCreator.create(jnlp, null, false, JNLPRuntime.getDefaultUpdatePolicy(), codeBase);
Map<String, String> jnlpParams = jnlpFile.getApplet().getParameters();
info = jnlpFile.info;
// Change the parameter name to lowercase to follow conventions.
for (Map.Entry<String, String> entry : jnlpParams.entrySet()) {
this.atts.put(entry.getKey().toLowerCase(), entry.getValue());
}
JARDesc[] jarDescs = jnlpFile.getResources().getJARs();
for (JARDesc jarDesc : jarDescs) {
String fileName = jarDesc.getLocation().toExternalForm();
this.jars.add(fileName);
}
} catch (MalformedURLException e) {
// Don't fail because we cannot get the jnlp file. Parameters are optional not required.
// it is the site developer who should ensure that file exist.
System.err.println("Unable to get JNLP file at: " + atts.get("jnlp_href")
+ " with context of URL as: " + codeBase.toExternalForm());
}
} else {
// Should we populate this list with applet attribute tags?
info = new ArrayList<InformationDesc>();
useJNLPHref = false;
}
// also, see if cache_archive is specified
String cacheArchive = atts.get("cache_archive");
if (cacheArchive != null && cacheArchive.length() > 0) {
String[] versions = new String[0];
// are there accompanying versions?
String cacheVersion = atts.get("cache_version");
if (cacheVersion != null) {
versions = cacheVersion.split(",");
}
String[] jars = cacheArchive.split(",");
cacheJars = new String[jars.length];
for (int i = 0; i < jars.length; i++) {
cacheJars[i] = jars[i].trim();
if (versions.length > 0) {
cacheJars[i] += ";" + versions[i].trim();
}
}
}
String cacheArchiveEx = atts.get("cache_archive_ex");
if (cacheArchiveEx != null && cacheArchiveEx.length() > 0) {
cacheExJars = cacheArchiveEx.split(",");
}
if (jar != null && jar.length() > 0) {
String[] jars = jar.split(",");
// trim white spaces
for (int i = 0; i < jars.length; i++) {
String jarName = jars[i].trim();
if (jarName.length() > 0)
this.jars.add(jarName);
}
if (JNLPRuntime.isDebug()) {
System.err.println("Jar string: " + jar);
System.err.println("jars length: " + jars.length);
}
}
name = atts.get("name");
if (name == null)
name = "Applet";
else
name = name + " applet";
if (main.endsWith(".class"))
main = main.substring(0, main.length() - 6);
// the class name should be of the form foo.bar.Baz not foo/bar/Baz
String mainClass = main.replace('/', '.');
launchType = new AppletDesc(name, mainClass, documentBase, width,
height, atts);
if (main.endsWith(".class")) //single class file only
security = new SecurityDesc(this, SecurityDesc.SANDBOX_PERMISSIONS,
codebase.getHost());
else
security = null;
this.uniqueKey = uKey;
usePack = false;
useVersion = false;
String jargs = atts.get("java_arguments");
if (jargs != null) {
for (String s : jargs.split(" ")) {
String[] parts = s.trim().split("=");
if (parts.length == 2 && Boolean.valueOf(parts[1])) {
if ("-Djnlp.packEnabled".equals(parts[0])) {
usePack = true;
} else if ("-Djnlp.versionEnabled".equals(parts[0])) {
useVersion = true;
}
}
}
}
String cbl = atts.get("codebase_lookup");
codeBaseLookup = cbl == null || (Boolean.valueOf(cbl));
}
public boolean codeBaseLookup() {
return codeBaseLookup;
}
public boolean useJNLPHref() {
return useJNLPHref;
}
/**
* {@inheritdoc }
*/
@Override
public DownloadOptions getDownloadOptionsForJar(JARDesc jar) {
return new DownloadOptions(usePack, useVersion);
}
public String getTitle() {
return name;
}
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) {
// Need to add the JAR manually...
//should this be done to sharedResources on init?
if (launchType.equals(JARDesc.class)) {
try {
List<JARDesc> jarDescs = new ArrayList<JARDesc>();
jarDescs.addAll(sharedResources.getResources(JARDesc.class));
for (String name : jars) {
if (name.length() > 0)
jarDescs.add(new JARDesc(new URL(codeBase, name),
null, null, false, true, false, true));
}
boolean cacheable = true;
String cacheOption = atts.get("cache_option");
if (cacheOption != null && cacheOption.equalsIgnoreCase("no"))
cacheable = false;
for (int i = 0; i < cacheJars.length; i++) {
String[] jarAndVer = cacheJars[i].split(";");
String jar = jarAndVer[0];
Version version = null;
if (jar.length() == 0)
continue;
if (jarAndVer.length > 1) {
version = new Version(jarAndVer[1]);
}
jarDescs.add(new JARDesc(new URL(codeBase, jar),
version, null, false, true, false, cacheable));
}
for (int i = 0; i < cacheExJars.length; i++) {
if (cacheExJars[i].length() == 0)
continue;
String[] jarInfo = cacheExJars[i].split(";");
String jar = jarInfo[0].trim();
Version version = null;
boolean lazy = true;
if (jarInfo.length > 1) {
// format is name[[;preload];version]
if (jarInfo[1].equals("preload")) {
lazy = false;
} else {
version = new Version(jarInfo[1].trim());
}
if (jarInfo.length > 2) {
lazy = false;
version = new Version(jarInfo[2].trim());
}
}
jarDescs.add(new JARDesc(new URL(codeBase, jar),
version, null, lazy, true, false, false));
}
// We know this is a safe list of JarDesc objects
@SuppressWarnings("unchecked")
List<T> result = (List<T>) jarDescs;
return result;
} catch (MalformedURLException ex) { /* Ignored */
}
}
return sharedResources.getResources(launchType);
}
@Override
public JARDesc[] getJARs() {
List<JARDesc> jarDescs = getResources(JARDesc.class);
return jarDescs.toArray(new JARDesc[jarDescs.size()]);
}
public void addResource(Object resource) {
// todo: honor the current locale, os, arch values
sharedResources.addResource(resource);
}
};
}
/**
* 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) {
return new ResourcesDesc[] { getResources(locale, os, arch) };
}
public boolean isApplet() {
return true;
}
public boolean isApplication() {
return false;
}
public boolean isComponent() {
return false;
}
public boolean isInstaller() {
return false;
}
}
|