/hg/icedtea-web: Don't interrupt message handling threads
adomurad at icedtea.classpath.org
adomurad at icedtea.classpath.org
Thu Mar 28 09:52:04 PDT 2013
changeset 866020eb16cf in /hg/icedtea-web
details: http://icedtea.classpath.org/hg/icedtea-web?cmd=changeset;node=866020eb16cf
author: Adam Domurad <adomurad at redhat.com>
date: Thu Mar 28 12:38:52 2013 -0400
Don't interrupt message handling threads
diffstat:
ChangeLog | 18 +++++
plugin/icedteanp/java/sun/applet/PluginMessageConsumer.java | 29 ++++++---
plugin/icedteanp/java/sun/applet/PluginMessageHandlerWorker.java | 31 +++++----
3 files changed, 55 insertions(+), 23 deletions(-)
diffs (148 lines):
diff -r b40198000d7c -r 866020eb16cf ChangeLog
--- a/ChangeLog Thu Mar 28 15:51:38 2013 +0100
+++ b/ChangeLog Thu Mar 28 12:38:52 2013 -0400
@@ -13,6 +13,24 @@
* tests/cpp-unit-tests/IcedTeaParsePropertiesTest.cc: tests for library methods
* tests/cpp-unit-tests/IcedTeaPluginUtilsTest.cc: added tests for new methods
+2013-03-28 Adam Domurad <adomurad at redhat.com>
+
+ Don't interrupt worker/consumer threads (can prevent shutdown code from
+ executing); instead use Object wait/notify methods.
+ * plugin/icedteanp/java/sun/applet/PluginMessageConsumer.java
+ (notifyHasWork): Replacement for thread interruption
+ (waitForWork): Replacement for thread sleeping
+ (run): Use waitForWork instead of Thread.sleep
+ (notifyWorkerIsFree): Removed -- misleading method.
+ * netx/net/sourceforge/jnlp/runtime/JNLPClassLoader.java
+ (message): Make volatile, as it should have always been.
+ (notifyHasWork): Replacement for thread interruption
+ (waitForWork): Replacement for thread sleeping
+ (run): Use waitForWork instead of Thread.sleep
+ (getPermissions): avoid potential NPE if code source location is
+ missing
+ (free): Remove reference to notifyWorkerIsFree.
+
2013-03-26 Adam Domurad <adomurad at redhat.com>
Integration of unsigned applet confirmation dialogue.
diff -r b40198000d7c -r 866020eb16cf plugin/icedteanp/java/sun/applet/PluginMessageConsumer.java
--- a/plugin/icedteanp/java/sun/applet/PluginMessageConsumer.java Thu Mar 28 15:51:38 2013 +0100
+++ b/plugin/icedteanp/java/sun/applet/PluginMessageConsumer.java Thu Mar 28 12:38:52 2013 -0400
@@ -116,17 +116,13 @@
return null;
}
- public void notifyWorkerIsFree(PluginMessageHandlerWorker worker) {
- consumerThread.interrupt();
- }
-
public void queue(String message) {
synchronized (readQueue) {
readQueue.addLast(message);
}
// Wake that lazy consumer thread
- consumerThread.interrupt();
+ consumerThread.notifyHasWork();
}
protected class ConsumerThread extends Thread {
@@ -135,6 +131,22 @@
super("PluginMessageConsumer.ConsumerThread");
}
+ // Notify that either work is ready to do, or a worker is available
+ public synchronized void notifyHasWork() {
+ notifyAll();
+ }
+
+ // Wait a bit until either work is ready to do, or a worker is available
+ public synchronized void waitForWork() {
+ try {
+ // Do not wait indefinitely to avoid the potential of deadlock
+ wait(1000);
+ } catch (InterruptedException e) {
+ // Should not typically occur
+ e.printStackTrace();
+ }
+ }
+
/**
* Scans the readQueue for priority messages and brings them to the front
*/
@@ -194,13 +206,10 @@
}
worker.setmessage(message);
- worker.interrupt();
+ worker.notifyHasWork();
} else {
- try {
- Thread.sleep(1000);
- } catch (InterruptedException ie) {
- }
+ waitForWork();
}
}
}
diff -r b40198000d7c -r 866020eb16cf plugin/icedteanp/java/sun/applet/PluginMessageHandlerWorker.java
--- a/plugin/icedteanp/java/sun/applet/PluginMessageHandlerWorker.java Thu Mar 28 15:51:38 2013 +0100
+++ b/plugin/icedteanp/java/sun/applet/PluginMessageHandlerWorker.java Thu Mar 28 12:38:52 2013 -0400
@@ -42,10 +42,24 @@
private boolean free = true;
private final boolean isPriorityWorker;
private final int id;
- private String message;
+ private volatile String message;
private PluginStreamHandler streamHandler;
private PluginMessageConsumer consumer;
+ public synchronized void notifyHasWork() {
+ notifyAll();
+ }
+
+ public synchronized void waitForWork() {
+ try {
+ // Do not wait indefinitely to avoid the potential of deadlock
+ wait(1000);
+ } catch (InterruptedException e) {
+ // Should not typically occur
+ e.printStackTrace();
+ }
+ }
+
public PluginMessageHandlerWorker(
PluginMessageConsumer consumer,
PluginStreamHandler streamHandler, int id,
@@ -93,16 +107,10 @@
free();
} else {
+ waitForWork();
- // Sleep when there is nothing to do
- try {
- Thread.sleep(Integer.MAX_VALUE);
- PluginDebug.debug("Consumer thread ", id, " sleeping...");
- } catch (InterruptedException ie) {
- PluginDebug.debug("Consumer thread ", id, " woken...");
- // nothing.. someone woke us up, see if there
- // is work to do
- }
+ // Someone woke us up, see if there is work to do
+ PluginDebug.debug("Consumer thread ", id, " woken...");
}
}
}
@@ -120,9 +128,6 @@
public void free() {
synchronized (this) {
this.free = true;
-
- // Signal the consumer that we are done in case it was waiting
- consumer.notifyWorkerIsFree(this);
}
}
More information about the distro-pkg-dev
mailing list