Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a multi-threaded Java program with a bunch of rules around threading: For example, code in class A should only be called from the UI thread; 3 methods in class B must be called only from the network thread, etc.

Any suggestions on how to do assertions or other code checks that these rules are being followed? I'd like to do the equivalent of testing for "invariants" to prevent coding errors on thread usage.

share|improve this question

5 Answers

up vote 10 down vote accepted

In addition to adamfisk's excellent suggestion, there is also a convenience method for specifically testing whether the current thread is the EDT thread:

EventQueue.isDispatchThread()
share|improve this answer
1  
+1 - when writing Swing, the UI/not-UI question is usually the only one that's important. – kdgregory Jan 13 '11 at 19:39
thanks, I'm not using swing but I suppose many people reading this will be. – 17 Grams Jan 14 '11 at 5:58

Thread.currentThread().getName()

share|improve this answer
+1 Care to round out your answer with rd01's answer for the swing case? – 17 Grams Jan 14 '11 at 6:08

Consider inverting the question. Consider prevention instead of enforcement.

If class Mangalor can only be run in a UI thread, limit the visibility of the Mangalor class to UI classes. If methods talk() and listen() of class CanOnString must only be run in a networking thread, limit the visibility of those methods to classes that you run in your networking thread.

share|improve this answer

You can try

assert Thread.currentThread() == expectedThread;

The problem with using the name is that any number of threads can use that name e.g. if you are particularly paranoid you might worry about code like this.

Thread.t = Thread.currentThread();
String name = t.getName();
t.setName("UI thread");
callUIThreadOnlyMethod();
t.setName(name);
share|improve this answer
Are there scenarios besides a malicious coder where this kind of aliasing would occur? – 17 Grams Jan 14 '11 at 5:56
Poor thread naming standards and copy-paste errors. Most programs are not written to ensure thread names are unique and you see duplicate names often. – Peter Lawrey Jan 14 '11 at 8:46

I would do like this in my code in class A:

if(!"UI thread".equals(Thread.currentThread().getName())){
    throw new IllegalStateException("wrong thread running this class, thread name:"+Thread.currentThread().getName());
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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