/hg/icedtea-web: 3 new changesets

jvanek at icedtea.classpath.org jvanek at icedtea.classpath.org
Thu May 11 15:50:59 UTC 2017


changeset 4c81c2172cac in /hg/icedtea-web
details: http://icedtea.classpath.org/hg/icedtea-web?cmd=changeset;node=4c81c2172cac
author: Jiri Vanek <jvanek at redhat.com>
date: Thu May 11 17:54:25 2017 +0200

	Makefile: (clean-launchers) added removal of win launchers (if windows)


changeset bdeedbb5a04f in /hg/icedtea-web
details: http://icedtea.classpath.org/hg/icedtea-web?cmd=changeset;node=bdeedbb5a04f
author: Jiri Vanek <jvanek at redhat.com>
date: Thu May 11 17:56:41 2017 +0200

	Boot.java: processing of -about adapted to correct headless check


changeset 8d90bc3f310a in /hg/icedtea-web
details: http://icedtea.classpath.org/hg/icedtea-web?cmd=changeset;node=8d90bc3f310a
author: Jiri Vanek <jvanek at redhat.com>
date: Thu May 11 18:00:34 2017 +0200

	fixed windows headless detection problems

	* netx/net/sourceforge/jnlp/config/DeploymentConfiguration.java: as (mostly) first initialized class on windows, enforced headless check and initialized logging. This is WORKAROUND and shoudl get FIXED.
	There is strange behavior in AWT windows impelmentation, which is causing awt queue to get corrupted when called from "bad" thread.  This hack is enforcing to be called from "correct" thread. This is  likely bug in JDK and have to be investigated. Btw see patch from 2017.04.10 about awt hooks. That is same issue.


diffstat:

 ChangeLog                                                     |  18 +++++++++++
 Makefile.am                                                   |   5 +++
 netx/net/sourceforge/jnlp/config/DeploymentConfiguration.java |   4 ++
 netx/net/sourceforge/jnlp/runtime/Boot.java                   |   2 +-
 4 files changed, 28 insertions(+), 1 deletions(-)

diffs (66 lines):

diff -r 63d4836a377c -r 8d90bc3f310a ChangeLog
--- a/ChangeLog	Thu May 11 13:20:34 2017 +0200
+++ b/ChangeLog	Thu May 11 18:00:34 2017 +0200
@@ -1,3 +1,21 @@
+2017-05-11  Jiri Vanek <jvanek at redhat.com>
+
+	fixed windows headless detection problems
+	* netx/net/sourceforge/jnlp/config/DeploymentConfiguration.java: as (mostly) first initialized class
+	on windows, enforced headless check and initialized logging. This is WORKAROUND and shoudl get FIXED.
+	There is strange behavior in AWT windows impelmentation, which is causing awt queue to get corrupted
+	when called from "bad" thread.  This hack is enforcing to be called from "correct" thread. This is 
+	likely bug in JDK and have to be investigated. Btw see patch from 2017.04.10 about awt hooks. That is 
+	same issue.
+
+2017-05-11  Jiri Vanek <jvanek at redhat.com>
+
+	* netx/net/sourceforge/jnlp/runtime/Boot.java: processing of -about adapted to correct headless check
+
+2017-05-11  Jiri Vanek <jvanek at redhat.com>
+
+	* Makefile: (clean-launchers) added removal of win launchers (if windows)
+
 2017-05-11  Jiri Vanek <jvanek at redhat.com>
 
 	* netx/net/sourceforge/jnlp/util/logging/FileLog.java: on windows, name of logs do not contain colons, path is printed to console
diff -r 63d4836a377c -r 8d90bc3f310a Makefile.am
--- a/Makefile.am	Thu May 11 13:20:34 2017 +0200
+++ b/Makefile.am	Thu May 11 18:00:34 2017 +0200
@@ -847,6 +847,11 @@
 	rm -f launcher.build/$(javaws)
 	rm -f launcher.build/$(itweb_settings)
 	rm -f launcher.build/$(policyeditor)
+if WINDOWS
+	rm -f launcher.build/$(javaws).bat
+	rm -f launcher.build/$(itweb_settings).bat
+	rm -f launcher.build/$(policyeditor).bat
+endif
 	if [ -e launcher.build ] ; then \
 	  rmdir launcher.build ; \
 	fi
diff -r 63d4836a377c -r 8d90bc3f310a netx/net/sourceforge/jnlp/config/DeploymentConfiguration.java
--- a/netx/net/sourceforge/jnlp/config/DeploymentConfiguration.java	Thu May 11 13:20:34 2017 +0200
+++ b/netx/net/sourceforge/jnlp/config/DeploymentConfiguration.java	Thu May 11 18:00:34 2017 +0200
@@ -269,6 +269,10 @@
         userDeploymentFileDescriptor = configFile;
         currentConfiguration = new HashMap<>();
         unchangeableConfiguration = new HashMap<>();
+        if (JNLPRuntime.isWindows()) {
+            boolean wh = JNLPRuntime.isHeadless();
+            OutputController.getLogger().log(OutputController.Level.MESSAGE_ALL, "On windows, answering headless at startup, to prevent race condition later - " + wh);
+         }
          try {
             IcoSpi spi = new IcoSpi();
             IIORegistry.getDefaultInstance().registerServiceProvider(spi);
diff -r 63d4836a377c -r 8d90bc3f310a netx/net/sourceforge/jnlp/runtime/Boot.java
--- a/netx/net/sourceforge/jnlp/runtime/Boot.java	Thu May 11 13:20:34 2017 +0200
+++ b/netx/net/sourceforge/jnlp/runtime/Boot.java	Thu May 11 18:00:34 2017 +0200
@@ -147,7 +147,7 @@
 
         if (optionParser.hasOption(OptionsDefinitions.OPTIONS.ABOUT)) {
             handleAbout();
-            if (optionParser.hasOption(OptionsDefinitions.OPTIONS.HEADLESS)) {
+            if (JNLPRuntime.isHeadless()) {
                 JNLPRuntime.exit(0);
             } else {
                 try {


More information about the distro-pkg-dev mailing list