Package com.sun.ejb.containers.builder

Source Code of com.sun.ejb.containers.builder.CachePassivatorTask

/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
*
* Copyright 1997-2007 Sun Microsystems, Inc. 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.html
* or glassfish/bootstrap/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 glassfish/bootstrap/legal/LICENSE.txt.
* Sun designates this particular file as subject to the "Classpath" exception
* as provided by Sun in the GPL Version 2 section of the License file that
* accompanied this code.  If applicable, add the following below the License
* Header, with the fields enclosed by brackets [] replaced by your own
* identifying information: "Portions Copyrighted [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.
*/

package com.sun.ejb.containers.builder;

import java.lang.reflect.Method;

import java.util.logging.Logger;
import java.util.logging.Level;

import com.sun.appserv.util.cache.CacheListener;

import com.sun.ejb.base.container.util.CacheProperties;

import com.sun.ejb.base.sfsb.initialization.PersistenceStrategyBuilderFactory;

import com.sun.ejb.base.sfsb.util.CheckpointPolicyImpl;
import com.sun.ejb.base.sfsb.util.ScrambledKeyGenerator;
import com.sun.ejb.base.sfsb.util.SimpleKeyGenerator;
import com.sun.ejb.base.sfsb.util.EJBServerConfigLookup;

import com.sun.ejb.containers.StatefulSessionContainer;

import com.sun.ejb.containers.BaseContainer;

import com.sun.ejb.containers.util.cache.BaseCache;
import com.sun.ejb.containers.util.cache.FIFOSessionCache;
import com.sun.ejb.containers.util.cache.LruSessionCache;
import com.sun.ejb.containers.util.cache.NRUSessionCache;
import com.sun.ejb.containers.util.cache.UnBoundedSessionCache;

import com.sun.enterprise.deployment.EjbDescriptor;
import com.sun.enterprise.deployment.EjbSessionDescriptor;
import com.sun.enterprise.util.Utility;

import com.sun.ejb.spi.sfsb.initialization.PersistenceStrategyBuilder;
import com.sun.ejb.spi.sfsb.initialization.SFSBContainerInitialization;
import com.sun.ejb.spi.sfsb.util.CheckpointPolicy;

import com.sun.ejb.spi.sfsb.store.SFSBStoreManager;

import com.sun.enterprise.config.ConfigContext;

import com.sun.logging.LogDomains;

/**
* A builder for StatefulSessionContainer. Takes care of
*  building / initializing the StatefulSessionContainer
*  with the following classes:
*  a) Cache (LRU / NRU / FIFO / UnBounded)
*  b) SFSBStoreManager (Using PersistenceStrategyBuilder)
*  c) Cache passivation task (if idle-timeout is greater than 0)
*  d) Passivated sessions removal task (if removal-timeout is greater than 0)
*  e) CheckpointPolicy (if ha enabled)
*  f) SFSBUUIDUtil
*  g) BeanLifecycleManager
*
* @author Mahesh Kannan
*/
public class StatefulContainerBuilder
    extends BaseContainerBuilder
{
    private static final Level          TRACE_LEVEL = Level.FINE;

    private StatefulSessionContainer    sfsbContainer;

    private SFSBContainerInitialization containerInitialization;

    private CacheProperties             cacheProps;

    private EJBServerConfigLookup       ejbConfigLookup;

    private LruSessionCache             sessionCache;

    private SFSBStoreManager            sfsbStoreManager;

    private boolean                     HAEnabled   = false;

    public StatefulContainerBuilder() {
  super();
    }

    public BaseContainer createContainer(
      EjbDescriptor ejbDescriptor, ClassLoader loader)
  throws Exception
    {
  sfsbContainer = new StatefulSessionContainer(ejbDescriptor, loader);
  containerInitialization = (SFSBContainerInitialization) sfsbContainer;

  return sfsbContainer;
    }

    public void buildComponents(ConfigContext dynamicConfigContext)
  throws Exception
    {
  this.ejbConfigLookup = new EJBServerConfigLookup(ejbDescriptor,
      dynamicConfigContext);
  this.HAEnabled =
      ejbConfigLookup.calculateEjbAvailabilityEnabledFromConfig();

  cacheProps = new CacheProperties(ejbDescriptor);

  buildCheckpointPolicy(this.HAEnabled);
  buildSFSBUUIDUtil();

  //First build storeManager before Cache is built
  buildStoreManager();

  buildCache();
  scheduleTimerTasks(sfsbContainer);
    }

    /************************* Private Methods *************************/
    /*******************************************************************/

    private final void buildCheckpointPolicy(boolean haEnabled) {
  containerInitialization.setCheckpointPolicy(
      new CheckpointPolicyImpl(haEnabled));
    }

    private void buildSFSBUUIDUtil() {
  //Just for debugging purpose,  we instantiate
  //  two different key generators
  containerInitialization.setSFSBUUIDUtil(HAEnabled
      ? new ScrambledKeyGenerator(getIPAddress(), getPort())
      : new SimpleKeyGenerator(getIPAddress(), getPort()));
    }

    private void buildStoreManager() {
  PersistenceStrategyBuilderFactory builderFactory =
      new PersistenceStrategyBuilderFactory();

  String persistenceStoreType =
      ejbConfigLookup.getPersistenceStoreType();

  PersistenceStrategyBuilder storeBuilder =
      builderFactory.createPersistenceStrategyBuilder(persistenceStoreType);

  if (_logger.isLoggable(TRACE_LEVEL)) {
      _logger.log(TRACE_LEVEL, "++SFSBBuilder:: "
    + "HAEnabled: " + HAEnabled
    + "; specifiedStoreType: " + persistenceStoreType
    + "; builder: " + storeBuilder);
  }

  storeBuilder.initializePersistenceStrategy(
    containerInitialization, ejbDescriptor);

  this.sfsbStoreManager = containerInitialization.getSFSBStoreManager();
    }

    private void buildCache() {
        String cacheName = ejbDescriptor.getEjbClassName();
        String victimPolicy = cacheProps.getVictimSelectionPolicy();
     
        if (cacheProps.getMaxCacheSize() <= 0) {
            sessionCache = new UnBoundedSessionCache(cacheName, sfsbContainer,
                cacheProps.getCacheIdleTimeoutInSeconds(),
                cacheProps.getRemovalTimeoutInSeconds());
        } else if ("lru".equalsIgnoreCase(victimPolicy)) {
            sessionCache = new LruSessionCache(cacheName, sfsbContainer,
                cacheProps.getCacheIdleTimeoutInSeconds(),
                cacheProps.getRemovalTimeoutInSeconds());
        } else if ("fifo".equalsIgnoreCase(victimPolicy)) {
            sessionCache = new FIFOSessionCache(cacheName, sfsbContainer,
                cacheProps.getCacheIdleTimeoutInSeconds(),
                cacheProps.getRemovalTimeoutInSeconds());
        } else {
            sessionCache = new NRUSessionCache(cacheName, sfsbContainer,
                cacheProps.getCacheIdleTimeoutInSeconds(),
                cacheProps.getRemovalTimeoutInSeconds());
        }
       
       
        float ratio = (float) (1.0 * cacheProps.getNumberOfVictimsToSelect()
    / cacheProps.getMaxCacheSize());
        float loadFactor = (float) (1.0 - ratio);
        if (loadFactor < 0 || loadFactor > 1) {
            loadFactor = 0.75f;
        }
       
        if (cacheProps.getMaxCacheSize() <= 0) {
            sessionCache.init(16*1024, loadFactor, null);
        } else {
            sessionCache.init(cacheProps.getMaxCacheSize(), loadFactor, null);
        }
       
        sessionCache.addCacheListener((CacheListener) sfsbContainer);
  sessionCache.setSessionStore(this.sfsbStoreManager);

  sfsbContainer.setSessionCache(sessionCache);
        if (cacheProps.getNumberOfVictimsToSelect() >
            sfsbContainer.MIN_PASSIVATION_BATCH_COUNT)
  {
            sfsbContainer.setPassivationBatchCount(
                cacheProps.getNumberOfVictimsToSelect());
        }

  if (_logger.isLoggable(TRACE_LEVEL)) {
      _logger.log(TRACE_LEVEL, "Created cache [for "
        + ejbDescriptor.getName() + "] "
        + cacheProps + "; loadFactor: "
        + loadFactor
        + "; storeManager: " + this.sfsbStoreManager);
  }
    }
   
    private void scheduleTimerTasks(StatefulSessionContainer container) {
        String ejbName = ejbDescriptor.getEjbClassName();

        if (cacheProps.getCacheIdleTimeoutInSeconds() > 0) {
            long timeout = cacheProps.getCacheIdleTimeoutInSeconds() * 1000;
            try {
                sfsbContainer.invokePeriodically(timeout, timeout,
        new CachePassivatorTask(ejbName, sessionCache, _logger));
                if( _logger.isLoggable(TRACE_LEVEL) ) {
                    _logger.log(TRACE_LEVEL,
                                "[SFSBBuilder]: Added CachePassivator for: "
        + ejbName + ". To run after "
                                + timeout + " millis...");
                }

            } catch (Throwable th) {
                _logger.log(Level.WARNING,
      "ejb.sfsb_helper_add_idle_passivatortask_failed", th);
            }
        }

        if (cacheProps.getRemovalTimeoutInSeconds() > 0) {
            long timeout = cacheProps.getRemovalTimeoutInSeconds() * 1000;
            try {
                sfsbContainer.invokePeriodically(timeout, timeout,
        new ExpiredSessionsRemovalTask(ejbName,
      this.sfsbContainer, _logger));
                if (_logger.isLoggable(TRACE_LEVEL)) {
                    _logger.log(TRACE_LEVEL,
                                "[SFSBBuilder]: Added StorePassivator for: "
        + ejbName + ". To run after "
                                + "after " + timeout + " millis...");
                }
            } catch (Throwable th) {
                _logger.log(Level.WARNING,
      "ejb.sfsb_helper_add_remove_passivatortask_failed", th);
            }
        }

    }
   

class CachePassivatorTask
    implements Runnable
{

    private LruSessionCache     cache;
    private Logger              logger;
    private String              name;

    CachePassivatorTask(String name, LruSessionCache cache, Logger logger) {
        this.name = name;
        this.cache = cache;
        this.logger = logger;
    }

    public void run() {
        try {
            cache.trimTimedoutItems(Integer.MAX_VALUE);
        } catch (Exception ex) {
            if (logger.isLoggable(Level.WARNING)) {
                logger.log(Level.WARNING,
      "ejb.sfsb_helper_remove_idle_beans_failed", ex);
            }
        }
    }
}

class ExpiredSessionsRemovalTask
    implements Runnable
{
    private StatefulSessionContainer  container;
    private Logger      logger;
    private String      name;

    ExpiredSessionsRemovalTask(String name,
      StatefulSessionContainer container, Logger logger)
    {
        this.name = name;
        this.container = container;
        this.logger = logger;
    }

    public void run() {
        try {
            container.removeExpiredSessions();
        } catch (Exception ex) {
            if (logger.isLoggable(Level.WARNING)) {
                logger.log(Level.WARNING,
      "ejb.sfsb_helper_remove_expired_beans_failed", ex);
            }
        }
    }
}











TOP

Related Classes of com.sun.ejb.containers.builder.CachePassivatorTask

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.