I have a singleThreadExecutor in order to execute the tasks I submit to it in serial order i.e. one task after another, no parallel execution.

I have runnable which goes something like this

MyRunnable implements Runnable {

@Override
public void run() {
    try {
        Thread.sleep(30000);
    } catch (InterruptedException e1) {
        e1.printStackTrace();
    }

}

When I submit ,for example, three instances of MyRunnable to the afore-mentioned single thread executor, I would expect to have the first task executing and because of the Thread.sleep has Its executing thread in TIMED_WAITING (I may be wrong about the specific state). The other two tasks should not have threads assigned to execute them, at least not until the first task has finished.

So my question is how to get this state via the FutureTask API or somehow get to the thread that is executing the task (if there is no such thread then the task is waiting to be executed or pending) and get Its state or perhaps by some other means?

FutureTask only defines isCanceled() and isDone() methods, but those are not quite enough to describe all the possible execution statuses of the Task.

link|improve this question

1  
the question is: why do you need anything besides isDone()? – bestsss Aug 3 '11 at 21:43
feedback

2 Answers

up vote 1 down vote accepted

You could add a getThread() method to MyRunnable that produces the Thread executing the run() method.

I would suggest adding an instance variable like this (must be volatile to ensure correctness):

 private volatile Thread myThread;

Do this before the try block:

myThread = Thread.currentThread();

And add a finally block with this:

myThread = null;

Then you could call:

final Thread theThread = myRunnable.getThread();
if (theThread != null) {
    System.out.println(theThread.getState());
}

for some MyRunnable.

null is an ambiguous result at this point, meaning either, "hasn't run," or "has completed." Simply add a method that tells whether the operation has completed:

public boolean isDone() {
    return done;
}

Of course, you'll need an instance variable to record this state:

private volatile boolean done;

And set it to true in the finally block (probably before setting the thread to null, there's a bit of a race condition there because there are two values capturing the state of one thing. In particular, with this approach you could observe isDone() == true and getThread() != null. You could mitigate this by having a lock object for state transitions and synchronize on it when changing one or both state variables):

done = true;

Note that there still isn't any guard that prohibits a single MyRunnable from being submitted concurrently to two or more threads. I know you say that you're not doing this... today :) Multiple concurrent executions will lead to corrupted state with high likelihood. You could put some mutual exclusive guard (such as simply writing synchronized on the run() method) at the beginning of the run method to ensure that only a single execution is happening at any given time.

link|improve this answer
I like this approach with the Thread.currentThread holding field. However to cover the complete set of states a combination of this and Mark Peters' solution is necessary imho. Because if there is no currentThread assigned to a given runnable this could mean that either the runnable is still pending execution or it has been already executed, so additional flags would be needed like for example hasFinishedExecution. Anyway I mark this as "accepted answer", because Thread's state reflects the actual execution state of a runnable more natively. – Svilen Aug 4 '11 at 11:37
updated to include this concern. – Greg Mattes Aug 4 '11 at 14:04
Great! Thanks for the comprehensive example. – Svilen Aug 4 '11 at 16:50
feedback

You could wrap anything you submit to this service in a Runnable that records when its run method is entered.

public class RecordingRunnable implements Runnable {
    private final Runnable actualTask;
    private volatile boolean isRunning = false;
    //constructor, etc

    public void run() {
        isRunning = true;
        actualTask.run();
        isRunning = false;
    }

    public boolean isRunning() {
       return isRunning;
    }
}
link|improve this answer
1  
like any concurrent result isRunning() has no real meaning since checking it is an effective data race. java.util.concurrent.Future has isDone() that may not flip-flop false-true-false and once true remains so. – bestsss Aug 3 '11 at 21:40
1  
@best: You could just as easily use a boolean such as hasStarted and only record when the run method is entered, or use an enum that covers all states. This example was just for demonstration of the wrapper concept. – Mark Peters Aug 4 '11 at 1:26
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.