Help reviewing the following code, is it thread safe? - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T04:40:10Zhttp://stackoverflow.com/feeds/question/934130http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/934130/help-reviewing-the-following-code-is-it-thread-safe1Help reviewing the following code, is it thread safe?unknown (yahoo)2009-06-01T09:31:12Z2009-06-02T07:49:54Z
<pre><code>private static Callback callback;
public Foo()
{
super(getCallback());
}
private static Callback getCallback()
{
callback = new Callback();
return callback;
}
</code></pre>
<p>Constructor Foo() can potentially be called from multiple threads. My concern is with the private static field 'callback' and the static method 'getCallback()'.</p>
<p>As can be seen, every time 'getCallback()' is called, it assigns a new value to static field 'callback'. </p>
<p>My <em>guess</em> is that it is not thread safe because the keyword <em>static</em> is always attached to the class not the instance, so that means, the static field 'callback' of a Foo can potentially be overwritten by other thread that is constructing another Foo(). Is this correct?</p>
<p>Please correct me if I am wrong. Thanks!</p>
<p>EDIT: My intention is to keep 'callback' somewhere in the class, so I can reuse it later on. But this is not easy because Foo extends from a class that has constructor mandating 'callback' to be passed on.</p>
http://stackoverflow.com/questions/934130/help-reviewing-the-following-code-is-it-thread-safe/934158#9341585Answer by Michael Borgwardt for Help reviewing the following code, is it thread safe?Michael Borgwardt2009-06-01T09:41:57Z2009-06-01T09:41:57Z<p>Yes, you are correct. It's possible for two instances of <code>Foo</code> to end up with the same <code>CallBack</code> instance when two threads enter the <code>getCallback()</code> method simultaneously and one assigns a new <code>CallBack</code> to the static field while the other has already done this but not yet returned. In this case, the best fix is not to have the static field, since it serves no purpose. Alternatively, make <code>getCallback()</code> synchronized.</p>
<p>But note that it's <em>not</em> true that only the <code>static</code> keyword results in code that is not threadsafe.</p>
http://stackoverflow.com/questions/934130/help-reviewing-the-following-code-is-it-thread-safe/934163#9341633Answer by __roland__ for Help reviewing the following code, is it thread safe?__roland__2009-06-01T09:43:03Z2009-06-01T09:43:03Z<p>Callback will get a new value every single time Foo() is called (even from the same thread). I'm not quite sure what your code should be doing (if you want to initialize the static variable only once (singleton), you should check if it is still null in getCallback() - and what is actionCallback?). For making it thread-safe, use synchronized.</p>
http://stackoverflow.com/questions/934130/help-reviewing-the-following-code-is-it-thread-safe/934167#9341672Answer by jerryjvl for Help reviewing the following code, is it thread safe?jerryjvl2009-06-01T09:44:01Z2009-06-01T09:44:01Z<p>I think you summed it up perfectly yourself, but without more detail about what you are trying to achieve it will be tricky to make suggestions to fix your problem.</p>
<p>One obvious question is, does <code>callback</code> have to be static? Or could you safely make it an instance field without breaking the functionality of your class?</p>
http://stackoverflow.com/questions/934130/help-reviewing-the-following-code-is-it-thread-safe/934189#9341895Answer by Steve McLeod for Help reviewing the following code, is it thread safe?Steve McLeod2009-06-01T09:52:12Z2009-06-02T07:13:45Z<p>It's not thread-safe. Try these alternatives:</p>
<p>Option 1: here all instances share the same callback</p>
<pre><code>private static final Callback callback = new Callback();
public Foo() {
super(callback);
}
</code></pre>
<p>Option 2: here each instance has its own callback</p>
<pre><code>public Foo() {
super(new Callback());
}
</code></pre>
<p>Note that in both cases, although the constructor is thread-safe, the thread-safety of the entire class depends on the implementation of Callback. If it has mutable state, then you'll have potential problems. If Callback is immutable, then you have thread-safety.</p>
http://stackoverflow.com/questions/934130/help-reviewing-the-following-code-is-it-thread-safe/935719#9357192Answer by Mr Jacques for Help reviewing the following code, is it thread safe?Mr Jacques2009-06-01T16:58:15Z2009-06-01T16:58:15Z<p>I know it has been answered but the why has not really been detailed.</p>
<p>It two threads are calling the getCallback() method, they could execute the lines as follows:</p>
<ol>
<li>Thread 1 - callback = new Callback();</li>
<li>Thread 2 - callback = new Callback();</li>
<li>Thread 1 - return actionCallback;</li>
<li>Thread 2 - return actionCallback;</li>
</ol>
<p>In this case, the callback generated at (2.) would be returned in both (3.) and (4.)</p>
<p>The solution would seem to be to ask why callback defined staticly if it is specific to the instance not class.</p>
<p>I hope that helps.</p>
http://stackoverflow.com/questions/934130/help-reviewing-the-following-code-is-it-thread-safe/938133#9381331Answer by Peter Lawrey for Help reviewing the following code, is it thread safe?Peter Lawrey2009-06-02T06:22:57Z2009-06-02T06:22:57Z<p>What you are trying to do is called a Singleton pattern, if you do a search you can find out why its generally a good idea to avoid this pattern if you can, however if you need it you can do the following.</p>
<pre><code>private static final Callback CALLBACK= new Callback();
</code></pre>
<p>Or if you need a lazy Singleton you can do</p>
<pre><code>public class Foo {
class CallbackHolder {
static final Callback CALLBACK= new Callback();
}
public static Callback getCallback() {
return CallbackHolder.CALLBACK;
}
public Foo() {
super(getCallback());
}
</code></pre>
<p>Both implementations are thread safe.</p>
http://stackoverflow.com/questions/934130/help-reviewing-the-following-code-is-it-thread-safe/938353#9383531Answer by christoffer for Help reviewing the following code, is it thread safe?christoffer2009-06-02T07:42:02Z2009-06-02T07:49:54Z<p>Do you want one callback per thread, one per object, or a true Singleton?</p>
<p>Some sketches on how to do the different variants - just from the top of my head, don't take these too literally :)</p>
<p>Please note that I've assumed that the Callback has a nontrivial constructor that might throw exception that needs to be handled, if it's a trivial constructor you can simplify all of these a lot.</p>
<p>One per thread:</p>
<pre><code> private static ThreadLocal<Callback> callback;
public Foo()
{
super(getCallback());
}
private static Callback getCallback()
{
if ( callback.get() == null )
callback.set(new Callback());
return callback.get();
}
</code></pre>
<p>Single callback for all threads:</p>
<pre><code> private final static Callback callback;
static {
callback = new Callback();
}
public Foo()
{
super(getCallback());
}
private static Callback getCallback()
{
return callback;
}
</code></pre>
<p>And, for completness, one callback per object:</p>
<pre><code> private Callback callback;
public Foo()
{
super(getCallback());
}
private Callback getCallback()
{
callback = new Callback();
return callback;
}
</code></pre>