Re: polling IRQs in a thread's code
On 3/24/2013 4:14 PM, markspace wrote:
void run()
{
if( irq() ) {
cleanup();
return;
}
I posted this, and I didn't much like it when I posted, and now I'm
pretty sure it's rubbish, as they say on the other side of the Atlantic.
SwingWorker got me thinking about better ways to do this.
void run() {
try {
// tons o' stuff
} catch( InterruptedException ex ) {
// clean up
}
}
The trick now is to check for an interrupt often enough. If you're
publishing data periodically with the SwingWorker#publish method, that
might be a good place to check. However you might want to check more
often as well. Either way, throwing an exception seems much easier and
cleaner at the top level than manually breaking your code into discreet
sections.
If you have very complicated clean-up code, you might have to package
the clean-up into discreet chunks so it can be executed by the top level
clean-up code.
class MyTask implements Runnable { // or SwingWorker
private Runnable cleanup;
public void run() {
try {
a();
b();
c();
} catch( InterruptedException ex ) {
if( cleanup != null )
cleanup.run();
}
}
private void a() {
cleanup = new CleanupA();
//... do stuff, then when done, reset cleanup
cleanup = null;
}
private class CleanupA implements Runnable {
public void run() {
// vacuum and dust
}
}
private void b() {
// etc.
}
private void c() {
// etc.
}
}
That seems cleaner to look at, at least for what's written there.
If you do use Runnable, don't overlook this simple transform to get a
more modern version.
Future<X> future = new FutureTask( myTask, x );