diff options
author | Sven Gothel <[email protected]> | 2012-07-05 15:04:18 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2012-07-05 15:04:18 +0200 |
commit | 2fbad155b38a32f2fb4f8989ffd3ea3dc71f2915 (patch) | |
tree | a45b31f39a593439280d636bbd2c9049af41000e | |
parent | 834b9e530e652b7ff7c5e222720bce3ad2b11c5f (diff) |
IOUtil: Better resource location debug info; RunnableTask adds 'flush()' method to flush a pending task (lock that is).
-rw-r--r-- | src/java/com/jogamp/common/util/IOUtil.java | 9 | ||||
-rw-r--r-- | src/java/com/jogamp/common/util/RunnableTask.java | 58 |
2 files changed, 49 insertions, 18 deletions
diff --git a/src/java/com/jogamp/common/util/IOUtil.java b/src/java/com/jogamp/common/util/IOUtil.java index ffea7cb..a441c18 100644 --- a/src/java/com/jogamp/common/util/IOUtil.java +++ b/src/java/com/jogamp/common/util/IOUtil.java @@ -423,10 +423,11 @@ public class IOUtil { final String className = context.getName().replace('.', '/'); final int lastSlash = className.lastIndexOf('/'); if (lastSlash >= 0) { - conn = getResource(className.substring(0, lastSlash + 1) + resourcePath, contextCL); - } - if(DEBUG) { - System.err.println("IOUtil: found <"+resourcePath+"> within class package: "+(null!=conn)); + final String pkgName = className.substring(0, lastSlash + 1); + conn = getResource(pkgName + resourcePath, contextCL); + if(DEBUG) { + System.err.println("IOUtil: found <"+resourcePath+"> within class package <"+pkgName+"> of given class <"+context.getName()+">: "+(null!=conn)); + } } } else if(DEBUG) { System.err.println("IOUtil: null context"); diff --git a/src/java/com/jogamp/common/util/RunnableTask.java b/src/java/com/jogamp/common/util/RunnableTask.java index 880bd64..b0ce159 100644 --- a/src/java/com/jogamp/common/util/RunnableTask.java +++ b/src/java/com/jogamp/common/util/RunnableTask.java @@ -39,7 +39,9 @@ public class RunnableTask implements Runnable { Object attachment; Throwable runnableException; - long ts0, ts1, ts2; + long tCreated, tStarted; + volatile long tExecuted; + volatile boolean isFlushed; /** * Create a RunnableTask object w/o synchronization, @@ -75,9 +77,10 @@ public class RunnableTask implements Runnable { this.runnable = runnable ; this.syncObject = syncObject ; this.catchExceptions = catchExceptions ; - ts0 = System.currentTimeMillis(); - ts1 = 0; - ts2 = 0; + tCreated = System.currentTimeMillis(); + tStarted = 0; + tExecuted = 0; + isFlushed = false; } /** Return the user action */ @@ -110,7 +113,7 @@ public class RunnableTask implements Runnable { } public void run() { - ts1 = System.currentTimeMillis(); + tStarted = System.currentTimeMillis(); if(null == syncObject) { try { runnable.run(); @@ -120,7 +123,7 @@ public class RunnableTask implements Runnable { throw new RuntimeException(runnableException); } } finally { - ts2 = System.currentTimeMillis(); + tExecuted = System.currentTimeMillis(); } } else { synchronized (syncObject) { @@ -132,17 +135,44 @@ public class RunnableTask implements Runnable { throw new RuntimeException(runnableException); } } finally { - ts2 = System.currentTimeMillis(); + tExecuted = System.currentTimeMillis(); syncObject.notifyAll(); } } } } + + /** + * Simply flush this task and notify a waiting executor. + * The executor which might have been blocked until notified + * will be unblocked and the task removed from the queue. + * + * @see #isFlushed() + * @see #isInQueue() + */ + public void flush() { + if(!isExecuted() && hasWaiter()) { + synchronized (syncObject) { + isFlushed = true; + syncObject.notifyAll(); + } + } + } /** + * @return !{@link #isExecuted()} && !{@link #isFlushed()} + */ + public boolean isInQueue() { return 0 != tExecuted && !isFlushed; } + + /** * @return True if executed, otherwise false; */ - public boolean isExecuted() { return 0 != ts2 ; } + public boolean isExecuted() { return 0 != tExecuted ; } + + /** + * @return True if flushed, otherwise false; + */ + public boolean isFlushed() { return isFlushed; } /** * @return True if invoking thread waits until done, @@ -156,12 +186,12 @@ public class RunnableTask implements Runnable { */ public Throwable getThrowable() { return runnableException; } - public long getTimestampCreate() { return ts0; } - public long getTimestampBeforeExec() { return ts1; } - public long getTimestampAfterExec() { return ts2; } - public long getDurationInQueue() { return ts1 - ts0; } - public long getDurationInExec() { return ts2 - ts1; } - public long getDurationTotal() { return ts2 - ts0; } + public long getTimestampCreate() { return tCreated; } + public long getTimestampBeforeExec() { return tStarted; } + public long getTimestampAfterExec() { return tExecuted; } + public long getDurationInQueue() { return tStarted - tCreated; } + public long getDurationInExec() { return tExecuted - tStarted; } + public long getDurationTotal() { return tExecuted - tCreated; } @Override public String toString() { |