[RFC]: implement codebase_lookup for applets
Denis Lila
dlila at redhat.com
Fri Mar 25 15:02:00 PDT 2011
> Either the "|| file.getResources().getJARs().length == 0" condition
> should be
> kept, or a proper error should be thrown when codebase_lookup == false
> and jar length is 0. I am in favor of the latter.
Good point. I've updated the patch.
Thank you,
Denis.
----- Original Message -----
> * Denis Lila <dlila at redhat.com> [2011-03-25 17:13]:
> > Hi.
> >
> >
> <snip>
> > - if (enableCodeBase || file.getResources().getJARs().length == 0)
> > + if (enableCodeBase)
> <snip>
> > JNLPClassLoader loader =
> > JNLPClassLoader.getInstance(file, updatePolicy);
> >
> > - if (enableCodeBase || file.getResources().getJARs().length == 0)
> > + if (enableCodeBase)
>
>
> Without that, if there is no jar and codebase_lookup is false, it will
> fail with an NPE when loadClass fails to get the main class.
>
> Cheers,
> Deepak
>
> > loader.enableCodeBase();
> >
> > String appletName = file.getApplet().getMainClass();
> > @@ -742,7 +742,7 @@
> > if (isPlugin) {
> > // Do not display download indicators if we're
> > using gcjwebplugin.
> > JNLPRuntime.setDefaultDownloadIndicator(null);
> > - application = getApplet(file, true, cont);
> > + application = getApplet(file,
> > ((PluginBridge)file).codeBaseLookup(), cont);
> > } else {
> > if (file.isApplication())
> > application = launchApplication(file);
> > diff -r 92486f15be36 netx/net/sourceforge/jnlp/PluginBridge.java
> > --- a/netx/net/sourceforge/jnlp/PluginBridge.java Thu Mar 24
> > 09:34:51 2011 -0400
> > +++ b/netx/net/sourceforge/jnlp/PluginBridge.java Fri Mar 25
> > 13:11:02 2011 -0400
> > @@ -42,6 +42,7 @@
> > Hashtable<String, String> atts;
> > private boolean usePack;
> > private boolean useVersion;
> > + private boolean codeBaseLookup;
> >
> > public PluginBridge(URL codebase, URL documentBase, String jar,
> > String main,
> > int width, int height, Hashtable<String,
> > String> atts)
> > @@ -152,6 +153,12 @@
> > }
> > }
> > }
> > + String cbl = atts.get("codebase_lookup");
> > + codeBaseLookup = cbl == null || (Boolean.valueOf(cbl));
> > + }
> > +
> > + public boolean codeBaseLookup() {
> > + return codeBaseLookup;
> > }
> >
> > /**
-------------- next part --------------
A non-text attachment was scrubbed...
Name: hg.diff
Type: text/x-patch
Size: 4003 bytes
Desc: not available
Url : http://mail.openjdk.java.net/pipermail/distro-pkg-dev/attachments/20110325/6fda2515/hg.diff
More information about the distro-pkg-dev
mailing list