org.dbunit.util.concurrent.Slot Maven / Gradle / Ivy
/*
File: Slot.java
Originally written by Doug Lea and released into the public domain.
This may be used for any purposes whatsoever without acknowledgment.
Thanks for the assistance and support of Sun Microsystems Labs,
and everyone contributing, testing, and using this code.
History:
Date Who What
11Jun1998 dl Create public version
25aug1998 dl added peek
*/
package org.dbunit.util.concurrent;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.lang.reflect.InvocationTargetException;
/**
* A one-slot buffer, using semaphores to control access.
* Slots are usually more efficient and controllable than using other
* bounded buffers implementations with capacity of 1.
*
* Among other applications, Slots can be convenient in token-passing
* designs: Here. the Slot holds a some object serving as a token,
* that can be obtained
* and returned by various threads.
*
*
[ Introduction to this package. ]
*
* @author Doug Lea
* @author Last changed by: $Author$
* @version $Revision$ $Date$
* @since ? (pre 2.1)
*/
public class Slot extends SemaphoreControlledChannel {
/**
* Logger for this class
*/
private static final Logger logger = LoggerFactory.getLogger(Slot.class);
/**
* Create a buffer with the given capacity, using
* the supplied Semaphore class for semaphores.
* @exception NoSuchMethodException If class does not have constructor
* that intializes permits
* @exception SecurityException if constructor information
* not accessible
* @exception InstantiationException if semaphore class is abstract
* @exception IllegalAccessException if constructor cannot be called
* @exception InvocationTargetException if semaphore constructor throws an
* exception
**/
public Slot(Class semaphoreClass)
throws NoSuchMethodException,
SecurityException,
InstantiationException,
IllegalAccessException,
InvocationTargetException {
super(1, semaphoreClass);
}
/**
* Create a new Slot using default Semaphore implementations
**/
public Slot() {
super(1);
}
/** The slot **/
protected Object item_ = null;
/** Set the item in preparation for a take **/
protected synchronized void insert(Object x) {
item_ = x;
}
/** Take item known to exist **/
protected synchronized Object extract() {
logger.debug("extract() - start");
Object x = item_;
item_ = null;
return x;
}
public synchronized Object peek() {
return item_;
}
}