com.sun.ejb.containers.util.pool.NonBlockingPool Maven / Gradle / Ivy
Show all versions of payara-embedded-all Show documentation
/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
*
* Copyright (c) 1997-2012 Oracle and/or its affiliates. All rights reserved.
*
* The contents of this file are subject to the terms of either the GNU
* General Public License Version 2 only ("GPL") or the Common Development
* and Distribution License("CDDL") (collectively, the "License"). You
* may not use this file except in compliance with the License. You can
* obtain a copy of the License at
* https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html
* or packager/legal/LICENSE.txt. See the License for the specific
* language governing permissions and limitations under the License.
*
* When distributing the software, include this License Header Notice in each
* file and include the License file at packager/legal/LICENSE.txt.
*
* GPL Classpath Exception:
* Oracle designates this particular file as subject to the "Classpath"
* exception as provided by Oracle in the GPL Version 2 section of the License
* file that accompanied this code.
*
* Modifications:
* If applicable, add the following below the License Header, with the fields
* enclosed by brackets [] replaced by your own identifying information:
* "Portions Copyright [year] [name of copyright owner]"
*
* Contributor(s):
* If you wish your version of this file to be governed by only the CDDL or
* only the GPL Version 2, indicate your decision by adding "[Contributor]
* elects to include this software in this distribution under the [CDDL or GPL
* Version 2] license." If you don't indicate a single choice of license, a
* recipient has the option to distribute your version of this file under
* either the CDDL, the GPL Version 2 or to extend the choice of license to
* its licensees as provided above. However, if you add GPL Version 2 code
* and therefore, elected the GPL Version 2 license, then the option applies
* only if the new code is made subject to such option by the copyright
* holder.
*/
// Portions Copyright [2016] [Payara Foundation and/or its affiliates]
/**
*
$Source: /cvs/glassfish/appserv-core/src/java/com/sun/ejb/containers/util/pool/NonBlockingPool.java,v $
* @author $Author: cf126330 $
* @version $Revision: 1.4 $ $Date: 2007/03/30 19:10:26 $
*/
package com.sun.ejb.containers.util.pool;
import com.sun.ejb.containers.EJBContextImpl;
import com.sun.ejb.containers.EjbContainerUtilImpl;
import com.sun.enterprise.util.Utility;
import java.util.ArrayList;
import java.util.TimerTask;
import java.util.logging.Level;
/**
* NonBlockingPool pool provides the basic implementation of an object
* pool. The implementation uses a linked list to maintain a list of
* (available) objects. If the pool is empty it simply creates one using the
* ObjectFactory instance. Subclasses can change this behaviour by overriding
* getObject(...) and returnObject(....) methods. This class provides basic
* support for synchronization, event notification, pool shutdown
* and pool object recycling. It also does some very basic bookkeeping like the
* number of objects created, number of threads waiting for object.
*
Subclasses can make use of these book-keeping data to provide complex
* pooling mechanism like LRU / MRU / Random. Also, note that AbstractPool
* does not have a notion of pool limit. It is upto to the derived classes
* to implement these features.
*
*/
public class NonBlockingPool
extends AbstractPool
{
private TimerTask poolTimerTask;
protected boolean addedResizeTask = false;
volatile protected boolean addedIdleBeanWork = false;
protected boolean inResizing = false;
private boolean maintainSteadySize = false;
/**
* If glassfish-ejb-jar.xml singleton-bean-pool is
* true, steadyPoolSize is 1, and maxPoolSize is 1, then this field is set
* to true, and only 1 bean instance is created. The pool size at any given
* time may be 0 or 1. Both PoolResizeTimerTask and ReSizeWork are skipped.
*/
protected boolean singletonBeanPool;
// Set to true after close(). Prevents race condition
// of async resize task kicking in after close().
private boolean poolClosed = false;
private int resizeTaskCount;
protected NonBlockingPool() {
}
public NonBlockingPool(long beanId, String poolName, ObjectFactory factory,
int steadyPoolSize, int resizeQuantity,
int maxPoolSize, int idleTimeoutInSeconds,
ClassLoader loader)
{
this(beanId, poolName, factory,
steadyPoolSize, resizeQuantity,
maxPoolSize, idleTimeoutInSeconds,
loader, false);
}
public NonBlockingPool(long beanId, String poolName, ObjectFactory factory,
int steadyPoolSize, int resizeQuantity,
int maxPoolSize, int idleTimeoutInSeconds,
ClassLoader loader, boolean singletonBeanPool)
{
this.poolName = poolName;
this.beanId = beanId;
this.singletonBeanPool = singletonBeanPool && (steadyPoolSize == 1) &&
(maxPoolSize == 1);
initializePool(factory, steadyPoolSize, resizeQuantity, maxPoolSize,
idleTimeoutInSeconds, loader);
}
private void initializePool(ObjectFactory factory, int steadyPoolSize,
int resizeQuantity, int maxPoolSize, int idleTimeoutInSeconds,
ClassLoader loader)
{
this.factory = factory;
this.steadyPoolSize = (steadyPoolSize <= 0) ? 0 : steadyPoolSize;
this.resizeQuantity = (resizeQuantity <= 0) ? 0 : resizeQuantity;
this.maxPoolSize = (maxPoolSize <= 0)
? Integer.MAX_VALUE : maxPoolSize;
this.steadyPoolSize = (this.steadyPoolSize > this.maxPoolSize)
? this.maxPoolSize : this.steadyPoolSize;
this.idleTimeoutInSeconds =
(idleTimeoutInSeconds <= 0 || this.singletonBeanPool) ? 0 : idleTimeoutInSeconds;
this.containerClassLoader = loader;
this.maintainSteadySize = this.singletonBeanPool ? false : (this.steadyPoolSize > 0);
if ((this.idleTimeoutInSeconds > 0) && (this.resizeQuantity > 0)) {
try {
this.poolTimerTask = new PoolResizeTimerTask();
EjbContainerUtilImpl.getInstance().getTimer().scheduleAtFixedRate
(poolTimerTask, idleTimeoutInSeconds*1000L,
idleTimeoutInSeconds*1000L);
if(_logger.isLoggable(Level.FINE)) {
_logger.log(Level.FINE, "[Pool-{0}]: Added PoolResizeTimerTask...", poolName);
}
} catch (Throwable th) {
_logger.log(Level.WARNING,"[Pool-" +
poolName + "]: Could not add"
+ " PoolTimerTask. Continuing anyway...", th);
}
}
}
@Override
public Object getObject(Object param)
{
boolean toAddResizeTask = false;
Object obj = null;
synchronized (list) {
int size = list.size();
if (size > steadyPoolSize) {
poolSuccess++;
return list.remove(size-1);
} else if (size > 0) {
poolSuccess++;
if ((maintainSteadySize) && (addedResizeTask == false)) {
toAddResizeTask = addedResizeTask = true;
obj = list.remove(size-1);
} else {
return list.remove(size-1);
}
} else if(!singletonBeanPool){
if ((maintainSteadySize) && (addedResizeTask == false)) {
toAddResizeTask = addedResizeTask = true;
}
poolProbeNotifier.ejbObjectAddedEvent(beanId, appName, modName, ejbName);
createdCount++; //hope that everything will be OK.
}
}
if (toAddResizeTask) {
addResizeTaskForImmediateExecution();
}
if (obj != null) {
return obj;
}
if (singletonBeanPool) {
synchronized (list) {
while (list.isEmpty() && (createdCount - destroyedCount) > 0) {
try {
list.wait();
} catch (InterruptedException ex) { //ignore
}
}
if (!list.isEmpty()) {
obj = list.remove(0);
return obj;
}
try {
obj = factory.create(param);
createdCount++;
return obj;
} catch (RuntimeException th) {
poolProbeNotifier.ejbObjectAddFailedEvent(beanId, appName, modName, ejbName);
throw th;
}
}
} else {
try {
return factory.create(param);
} catch (RuntimeException th) {
synchronized (list) {
poolProbeNotifier.ejbObjectAddFailedEvent(beanId, appName, modName, ejbName);
createdCount--;
}
throw th;
}
}
}
private void addResizeTaskForImmediateExecution() {
try {
ReSizeWork work = new ReSizeWork();
EjbContainerUtilImpl.getInstance().addWork(work);
if(_logger.isLoggable(Level.FINE)) {
_logger.log(Level.FINE, "[Pool-{0}]: Added PoolResizeTimerTask...", poolName);
}
resizeTaskCount++;
} catch (Exception ex) {
synchronized (list) {
addedResizeTask = false;
}
if(_logger.isLoggable(Level.WARNING)) {
_logger.log(Level.WARNING,
"[Pool-"+poolName+"]: Cannot perform "
+ " pool resize task", ex);
}
}
}
/**
* Return an object back to the pool. An object that is obtained through
* getObject() must always be returned back to the pool using either
* returnObject(obj) or through destroyObject(obj).
* @param object
*/
@Override
public void returnObject(Object object) {
synchronized (list) {
if (list.size() < maxPoolSize) {
list.add(object);
if(this.singletonBeanPool) {
list.notify();
}
return;
} else {
poolProbeNotifier.ejbObjectDestroyedEvent(beanId, appName, modName, ejbName);
destroyedCount++;
}
}
try {
factory.destroy(object);
} catch (Exception ex) {
_logger.log(Level.FINE, "exception in returnObj", ex);
}
}
/**
* Destroys an Object. Note that applications should not ignore
* the reference to the object that they got from getObject(). An object
* that is obtained through getObject() must always be returned back to
* the pool using either returnObject(obj) or through destroyObject(obj).
* This method tells that the object should be destroyed and cannot
* be reused.
* @param object
*/
@Override
public void destroyObject(Object object) {
synchronized (list) {
poolProbeNotifier.ejbObjectDestroyedEvent(beanId, appName, modName, ejbName);
destroyedCount++;
if (this.singletonBeanPool) {
list.notify();
}
}
try {
factory.destroy(object);
} catch (Exception ex) {
_logger.log(Level.FINE, "exception in destroyObject", ex);
}
}
/**
* Preload the pool with objects.
* @param count the number of objects to be added.
*/
protected void preload(int count) {
ArrayList