[RFC] netx: add support for reading and parsing <update> element

Dr Andrew John Hughes ahughes at redhat.com
Tue Aug 24 05:46:45 PDT 2010


On 14:24 Thu 19 Aug     , Deepak Bhole wrote:
> 
> Looks good. Please commit to 1.7, 1.8, 1.9 and HEAD.
> 
> Note: The changes to honour these flags will be going in HEAD only, but
> since attached patch does not affect functionality, we might as well put
> it in all. The lesser differences to deal with, the better.
> 

I don't think we shouldn't be adding chunks of new code to the release
branches just so that patching is easier.

It's simplest to leave this in place now that it's committed and the
new code is not invoked, but please keep release branch changes to bug
fixes only in future.

I know you're eager to get plugin and NetX changes out to users quicker.
Now that HEAD is 1.10, we can look at moving the plugin and NetX into a
separate tree altogether, so they can have a separate release stream.

The biggest stumbling block I can foresee is that we currently patch the
OpenJDK source code in order to build the plugin.  So getting it to build
against a plain OpenJDK6 build (from http://hg.openjdk.java.net/jdk6/jdk6)
first of all would be a good idea.

> Thanks,
> Deepak
> 
> * Omair Majid <omajid at redhat.com> [2010-08-19 14:11]:
> > Hi,
> > 
> > The attached patch adds support for netx to read and parse the
> > contents of the <update> element in JNLP files. This element is used
> > to decide how updates to the application are handled.
> > 
> > Any comments?
> > 
> > Cheers,
> > Omair
> 
> > diff -r c73c4672031a netx/net/sourceforge/jnlp/JNLPFile.java
> > --- a/netx/net/sourceforge/jnlp/JNLPFile.java	Tue Aug 10 14:52:56 2010 -0400
> > +++ b/netx/net/sourceforge/jnlp/JNLPFile.java	Thu Aug 19 14:10:06 2010 -0400
> > @@ -83,6 +83,8 @@
> >      /** information */
> >      protected List info;
> >  
> > +    protected UpdateDesc update;
> > +
> >      /** resources */
> >      protected List resources;
> >  
> > @@ -345,6 +347,13 @@
> >      }
> >  
> >      /**
> > +     * Returns the update section of the JNLP file.
> > +     */
> > +    public UpdateDesc getUpdate() {
> > +        return update;
> > +    }
> > +
> > +    /**
> >       * Returns the security section of the JNLP file.
> >       */
> >      public SecurityDesc getSecurity() {
> > @@ -561,6 +570,7 @@
> >              codeBase = parser.getCodeBase();
> >              sourceLocation = parser.getFileLocation() != null ? parser.getFileLocation() : location;
> >              info = parser.getInfo(root);
> > +            update = parser.getUpdate(root);
> >              resources = parser.getResources(root, false); // false == not a j2se/java resources section
> >              launchType = parser.getLauncher(root);
> >              security = parser.getSecurity(root);
> > diff -r c73c4672031a netx/net/sourceforge/jnlp/Parser.java
> > --- a/netx/net/sourceforge/jnlp/Parser.java	Tue Aug 10 14:52:56 2010 -0400
> > +++ b/netx/net/sourceforge/jnlp/Parser.java	Thu Aug 19 14:10:06 2010 -0400
> > @@ -25,6 +25,8 @@
> >  //import org.w3c.dom.*;       // class for using Tiny XML | NanoXML
> >  //import org.xml.sax.*;
> >  //import gd.xml.tiny.*;
> > +import net.sourceforge.jnlp.UpdateDesc.Check;
> > +import net.sourceforge.jnlp.UpdateDesc.Policy;
> >  import net.sourceforge.jnlp.runtime.JNLPRuntime;
> >  import net.sourceforge.nanoxml.*;
> >  
> > @@ -178,6 +180,53 @@
> >          return spec;
> >      }
> >  
> > +    public UpdateDesc getUpdate(Node parent) throws ParseException {
> > +        UpdateDesc updateDesc = null;
> > +        Node child = parent.getFirstChild();
> > +        while (child != null) {
> > +            if (child.getNodeName().equals("update")) {
> > +                if (strict && updateDesc != null) {
> > +                    throw new ParseException(R("PTwoUpdates"));
> > +                }
> > +
> > +                Node node = child;
> > +
> > +                Check check;
> > +                String checkValue = getAttribute(node, "check", "timeout");
> > +                if (checkValue.equals("always")) {
> > +                   check = Check.ALWAYS;
> > +                } else if (checkValue.equals("timeout")) {
> > +                    check = Check.TIMEOUT;
> > +                } else if (checkValue.equals("background")) {
> > +                    check = Check.BACKGROUND;
> > +                } else {
> > +                    check = Check.TIMEOUT;
> > +                }
> > +
> > +                String policyString = getAttribute(node, "policy", "always");
> > +                Policy policy;
> > +                if (policyString.equals("always")) {
> > +                    policy = Policy.ALWAYS;
> > +                } else if (policyString.equals("prompt-update")) {
> > +                    policy = Policy.PROMPT_UPDATE;
> > +                } else if (policyString.equals("prompt-run")) {
> > +                    policy = Policy.PROMPT_RUN;
> > +                } else {
> > +                    policy = Policy.ALWAYS;
> > +                }
> > +
> > +                updateDesc = new UpdateDesc(check, policy);
> > +            }
> > +
> > +            child = child.getNextSibling();
> > +        }
> > +
> > +        if (updateDesc == null) {
> > +            updateDesc = new UpdateDesc(Check.TIMEOUT, Policy.ALWAYS);
> > +        }
> > +        return updateDesc;
> > +    }
> > +
> >      //
> >      // This section loads the resources elements
> >      //
> > @@ -1267,4 +1316,5 @@
> >  
> >          return encoding;
> >      }
> > +
> >  }
> > diff -r c73c4672031a netx/net/sourceforge/jnlp/UpdateDesc.java
> > --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
> > +++ b/netx/net/sourceforge/jnlp/UpdateDesc.java	Thu Aug 19 14:10:06 2010 -0400
> > @@ -0,0 +1,70 @@
> > +package net.sourceforge.jnlp;
> > +
> > +/**
> > + * Represents an 'update' element in a JNLP file. This element describes when to
> > + * check for updates and what actions to take if updates are available
> > + *
> > + * @see Check
> > + * @see Policy
> > + */
> > +public class UpdateDesc {
> > +
> > +    /**
> > +     * Describes when/how long to check for updates.
> > +     */
> > +    public enum Check {
> > +        /** Always check for updates before launching the application */
> > +        ALWAYS,
> > +
> > +        /**
> > +         * Default. Check for updates until a certain timeout. If the update
> > +         * check is not completed by timeout, launch the cached application and
> > +         * continue updating in the background
> > +         */
> > +        TIMEOUT,
> > +
> > +        /** Check for application updates in the background */
> > +        BACKGROUND
> > +    }
> > +
> > +    /**
> > +     * Describes what to do when the Runtime knows there is an applicatFion
> > +     * update before the application is launched.
> > +     */
> > +    public enum Policy {
> > +        /**
> > +         * Default. Always download updates without any user prompt and then launch the
> > +         * application
> > +         */
> > +        ALWAYS,
> > +
> > +        /**
> > +         * Prompt the user asking whether the user wants to download and run the
> > +         * updated application or run the version in the cache
> > +         */
> > +        PROMPT_UPDATE,
> > +
> > +        /**
> > +         * Prompts the user asking to download and run the latest version of the
> > +         * application or abort running
> > +         */
> > +        PROMPT_RUN,
> > +    }
> > +
> > +    private Check check;
> > +    private Policy policy;
> > +
> > +    public UpdateDesc(Check check, Policy policy) {
> > +        this.check = check;
> > +        this.policy = policy;
> > +    }
> > +
> > +    public Check getCheck() {
> > +        return this.check;
> > +    }
> > +
> > +    public Policy getPolicy() {
> > +        return this.policy;
> > +    }
> > +
> > +}
> > diff -r c73c4672031a netx/net/sourceforge/jnlp/resources/Messages.properties
> > --- a/netx/net/sourceforge/jnlp/resources/Messages.properties	Tue Aug 10 14:52:56 2010 -0400
> > +++ b/netx/net/sourceforge/jnlp/resources/Messages.properties	Thu Aug 19 14:10:06 2010 -0400
> > @@ -88,6 +88,7 @@
> >  PTwoMenus=Only one menu element allowed
> >  PTwoTitles=Only one title element allowed
> >  PTwoIcons=Only one icon element allowed
> > +PTwoUpdates=Only one update element is allowed
> >  PUnknownApplet=Unknown Applet
> >  PBadWidth=Invalid applet width.
> >  PBadHeight=Invalid applet height.
> 

-- 
Andrew :)

Free Java Software Engineer
Red Hat, Inc. (http://www.redhat.com)

Support Free Java!
Contribute to GNU Classpath and the OpenJDK
http://www.gnu.org/software/classpath
http://openjdk.java.net
PGP Key: 94EFD9D8 (http://subkeys.pgp.net)
Fingerprint = F8EF F1EA 401E 2E60 15FA  7927 142C 2591 94EF D9D8



More information about the distro-pkg-dev mailing list