/*
* @(#)AtomicReferenceFieldUpdater.java 1.9 05/08/09
*
* Copyright 2005 Sun Microsystems, Inc. All rights reserved.
* SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
*/
package java.util.concurrent.atomic;
import sun.misc.Unsafe;
import java.lang.reflect.*;
/**
* A reflection-based utility that enables atomic updates to
* designated volatile reference fields of designated
* classes. This class is designed for use in atomic data structures
* in which several reference fields of the same node are
* independently subject to atomic updates. For example, a tree node
* might be declared as
*
*
* class Node {
* private volatile Node left, right;
*
* private static final AtomicReferenceFieldUpdater<Node, Node> leftUpdater =
* AtomicReferenceFieldUpdater.newUpdater(Node.class, Node.class, "left");
* private static AtomicReferenceFieldUpdater<Node, Node> rightUpdater =
* AtomicReferenceFieldUpdater.newUpdater(Node.class, Node.class, "right");
*
* Node getLeft() { return left; }
* boolean compareAndSetLeft(Node expect, Node update) {
* return leftUpdater.compareAndSet(this, expect, update);
* }
* // ... and so on
* }
*
*
* Note that the guarantees of the compareAndSet
* method in this class are weaker than in other atomic classes. Because this
* class cannot ensure that all uses of the field are appropriate for
* purposes of atomic access, it can guarantee atomicity and volatile
* semantics only with respect to other invocations of
* compareAndSet and set.
* @since 1.5
* @author Doug Lea
* @param The type of the object holding the updatable field
* @param The type of the field
*/
public abstract class AtomicReferenceFieldUpdater {
/**
* Creates an updater for objects with the given field. The Class
* arguments are needed to check that reflective types and generic
* types match.
* @param tclass the class of the objects holding the field.
* @param vclass the class of the field
* @param fieldName the name of the field to be updated.
* @return the updater
* @throws IllegalArgumentException if the field is not a volatile reference type.
* @throws RuntimeException with a nested reflection-based
* exception if the class does not hold field or is the wrong type.
*/
public static AtomicReferenceFieldUpdater newUpdater(Class tclass, Class vclass, String fieldName) {
// Currently rely on standard intrinsics implementation
return new AtomicReferenceFieldUpdaterImpl(tclass,
vclass,
fieldName);
}
/**
* Protected do-nothing constructor for use by subclasses.
*/
protected AtomicReferenceFieldUpdater() {
}
/**
* Atomically set the value of the field of the given object managed
* by this Updater to the given updated value if the current value
* == the expected value. This method is guaranteed to be
* atomic with respect to other calls to compareAndSet and
* set, but not necessarily with respect to other
* changes in the field.
* @param obj An object whose field to conditionally set
* @param expect the expected value
* @param update the new value
* @return true if successful.
*/
public abstract boolean compareAndSet(T obj, V expect, V update);
/**
* Atomically set the value of the field of the given object managed
* by this Updater to the given updated value if the current value
* == the expected value. This method is guaranteed to be
* atomic with respect to other calls to compareAndSet and
* set, but not necessarily with respect to other
* changes in the field, and may fail spuriously.
* @param obj An object whose field to conditionally set
* @param expect the expected value
* @param update the new value
* @return true if successful.
*/
public abstract boolean weakCompareAndSet(T obj, V expect, V update);
/**
* Set the field of the given object managed by this updater. This
* operation is guaranteed to act as a volatile store with respect
* to subsequent invocations of compareAndSet.
* @param obj An object whose field to set
* @param newValue the new value
*/
public abstract void set(T obj, V newValue);
/**
* Get the current value held in the field by the given object.
* @param obj An object whose field to get
* @return the current value
*/
public abstract V get(T obj);
/**
* Set to the given value and return the old value.
*
* @param obj An object whose field to get and set
* @param newValue the new value
* @return the previous value
*/
public V getAndSet(T obj, V newValue) {
for (;;) {
V current = get(obj);
if (compareAndSet(obj, current, newValue))
return current;
}
}
/**
* Standard hotspot implementation using intrinsics
*/
private static class AtomicReferenceFieldUpdaterImpl extends AtomicReferenceFieldUpdater {
private static final Unsafe unsafe = Unsafe.getUnsafe();
private final long offset;
private final Class tclass;
private final Class vclass;
private final Class cclass;
AtomicReferenceFieldUpdaterImpl(Class tclass, Class vclass, String fieldName) {
Field field = null;
Class fieldClass = null;
Class caller = null;
int modifiers = 0;
try {
field = tclass.getDeclaredField(fieldName);
caller = sun.reflect.Reflection.getCallerClass(3);
modifiers = field.getModifiers();
sun.reflect.misc.ReflectUtil.ensureMemberAccess(
caller, tclass, null, modifiers);
sun.reflect.misc.ReflectUtil.checkPackageAccess(tclass);
fieldClass = field.getType();
} catch(Exception ex) {
throw new RuntimeException(ex);
}
if (vclass != fieldClass)
throw new ClassCastException();
if (!Modifier.isVolatile(modifiers))
throw new IllegalArgumentException("Must be volatile type");
this.cclass = (Modifier.isProtected(modifiers) &&
caller != tclass) ? caller : null;
this.tclass = tclass;
this.vclass = vclass;
offset = unsafe.objectFieldOffset(field);
}
public boolean compareAndSet(T obj, V expect, V update) {
if (!tclass.isInstance(obj) ||
(update != null && !vclass.isInstance(update)))
throw new ClassCastException();
if (cclass != null)
ensureProtectedAccess(obj);
return unsafe.compareAndSwapObject(obj, offset, expect, update);
}
public boolean weakCompareAndSet(T obj, V expect, V update) {
// same implementation as strong form for now
if (!tclass.isInstance(obj) ||
(update != null && !vclass.isInstance(update)))
throw new ClassCastException();
if (cclass != null)
ensureProtectedAccess(obj);
return unsafe.compareAndSwapObject(obj, offset, expect, update);
}
public void set(T obj, V newValue) {
if (!tclass.isInstance(obj) ||
(newValue != null && !vclass.isInstance(newValue)))
throw new ClassCastException();
if (cclass != null)
ensureProtectedAccess(obj);
unsafe.putObjectVolatile(obj, offset, newValue);
}
public V get(T obj) {
if (!tclass.isInstance(obj))
throw new ClassCastException();
if (cclass != null)
ensureProtectedAccess(obj);
return (V)unsafe.getObjectVolatile(obj, offset);
}
private void ensureProtectedAccess(T obj) {
if (cclass.isInstance(obj)) {
return;
}
throw new RuntimeException (
new IllegalAccessException("Class " +
cclass.getName() +
" can not access a protected member of class " +
tclass.getName() +
" using an instance of " +
obj.getClass().getName()
)
);
}
}
}