We need to realize that items is a synchronized list, and that a synchronized list uses itself as its primitive mutex. This means that all of the individual list operations AND ALSO the synchronized block are synchronizing on items.
Therefore, the only point at where stuff could happen in an unsynchronized fashion is in the gap between the get call completing and the start of the synchronized block. So is that a problem?
Well lets consider what could happen:
If some other thread moves the position of the Item, it doesn't matter. We'll find simply move it to the end anyway.
If some other thread removes the Item, it doesn't matter. Our call to remove will return false, but we'll still add the Item back.
Problems only arise if it is possible for a given Item to appear at more than one place in the items list. If that occurs, then it is possible that the code will move the items element at the wrong position to the end of the list; e.g.
- Thread A calls get(42) to fetch Item I.
- Thread B inserts Item I at position 1.
- Thread A completes the check, and removes and readds Item I ... but since I now appears at position 1 as well, it actually removes and adds that copy, not the copy at position 42.
In short, the code is thread-safe if we can assume that the a given Item object can appear at most one time in the list. If we can't assume that, then there is a risk that we will move the object at the wrong position.
It should also be noted that the code won't work properly in the case where a given Item can appear more than once. The problem is that remove(item) removes the first reference to the item instance it finds, not necessarily the one at position index. There are two ways to look at this. If this behaviour is unintended, it is a bug. If it is intended, then the thread-safety concern is a probably non-issue.
Either way, the code is safe with respect to the memory model, assuming that the check method is thread-safe.
item.check()do? – Jeffrey Aug 17 '12 at 2:25