You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@avalon.apache.org by cz...@apache.org on 2004/02/24 15:29:31 UTC

cvs commit: avalon-excalibur/event/src/test/org/apache/excalibur/event/command/test TPCThreadManagerTestCase.java

cziegeler    2004/02/24 06:29:31

  Added:       event/impl/src/test/org/apache/excalibur/mpool/test
                        SingleThreadedPoolComparisonProfile.java
                        MultiThreadedPoolComparisonProfile.java
                        ClassInstanceObjectFactory.java
                        PoolComparisonProfileAbstract.java
  Removed:     event/src/test/org/apache/excalibur/mpool/test
                        PoolComparisonProfileAbstract.java
                        MultiThreadedPoolComparisonProfile.java
                        ClassInstanceObjectFactory.java
                        SingleThreadedPoolComparisonProfile.java
               event/src/java/org/apache/excalibur/event/command
                        RepeatedCommand.java EventPipeline.java
                        TPCThreadManager.xinfo DefaultThreadManager.java
                        TPCThreadManager.java Command.java
                        CommandManager.java DelayedCommand.java
                        NullCommandFailureHandler.java
                        AbstractThreadManager.java ThreadManager.java
                        TPSPThreadManager.java CommandFailureHandler.java
               event/src/java/org/apache/excalibur/mpool ManagablePool.java
                        DefaultPoolManager.java Resettable.java Pool.java
                        VariableSizePool.java PoolManager.java
                        PoolUtil.java BlockingFixedSizePool.java
                        FixedSizePool.java ObjectFactory.java
               event/src/java/org/apache/excalibur/event/impl
                        ThresholdEnqueuePredicate.java
                        NullEnqueuePredicate.java FixedSizeQueue.java
                        NullDequeueInterceptor.java AbstractQueue.java
                        LossyMultiCastSink.java RateLimitingPredicate.java
                        MultiCastSink.java DefaultQueue.java
               event/src/java/org/apache/excalibur/util CPUParser.java
                        SystemUtil.java
               event/src/java/org/apache/excalibur/event Queue.java
                        Message.java SinkClosedException.java
                        PreparedEnqueue.java EnqueuePredicate.java
                        Source.java Sink.java EventHandler.java
                        SinkFullException.java SinkException.java
                        DequeueInterceptor.java Signal.java
               event/src/java/org/apache/excalibur/util/system Linux.java
                        Windows2000.java Windows98.java Windows95.java
                        WindowsNT.java WindowsXP.java
               event/src/test/org/apache/excalibur/event/test
                        FixedSizeQueuePerformanceTestCase.java
                        QueueTestCase.java FixedSizeQueueTestCase.java
                        ThreadedQueueTestCase.java
                        DefaultQueuePerformanceTestCase.java
                        AbstractQueueTestCase.java
               event/src/test/org/apache/excalibur/util/test
                        SystemUtilTestCase.java
               event/src/test/org/apache/excalibur/event/command/test
                        TPCThreadManagerTestCase.java
  Log:
  Remove duplicate code
  
  Revision  Changes    Path
  1.1                  avalon-excalibur/event/impl/src/test/org/apache/excalibur/mpool/test/SingleThreadedPoolComparisonProfile.java
  
  Index: SingleThreadedPoolComparisonProfile.java
  ===================================================================
  /*
  
   ============================================================================
                     The Apache Software License, Version 1.1
   ============================================================================
  
   Copyright (C) 1999-2003 The Apache Software Foundation. All rights reserved.
  
   Redistribution and use in source and binary forms, with or without modifica-
   tion, are permitted provided that the following conditions are met:
  
   1. Redistributions of  source code must  retain the above copyright  notice,
      this list of conditions and the following disclaimer.
  
   2. Redistributions in binary form must reproduce the above copyright notice,
      this list of conditions and the following disclaimer in the documentation
      and/or other materials provided with the distribution.
  
   3. The end-user documentation included with the redistribution, if any, must
      include  the following  acknowledgment:  "This product includes  software
      developed  by the  Apache Software Foundation  (http://www.apache.org/)."
      Alternately, this  acknowledgment may  appear in the software itself,  if
      and wherever such third-party acknowledgments normally appear.
  
   4. The names "Jakarta", "Avalon", "Excalibur" and "Apache Software Foundation"
      must not be used to endorse or promote products derived from this  software
      without  prior written permission. For written permission, please contact
      apache@apache.org.
  
   5. Products  derived from this software may not  be called "Apache", nor may
      "Apache" appear  in their name,  without prior written permission  of the
      Apache Software Foundation.
  
   THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES,
   INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
   FITNESS  FOR A PARTICULAR  PURPOSE ARE  DISCLAIMED.  IN NO  EVENT SHALL  THE
   APACHE SOFTWARE  FOUNDATION  OR ITS CONTRIBUTORS  BE LIABLE FOR  ANY DIRECT,
   INDIRECT, INCIDENTAL, SPECIAL,  EXEMPLARY, OR CONSEQUENTIAL  DAMAGES (INCLU-
   DING, BUT NOT LIMITED TO, PROCUREMENT  OF SUBSTITUTE GOODS OR SERVICES; LOSS
   OF USE, DATA, OR  PROFITS; OR BUSINESS  INTERRUPTION)  HOWEVER CAUSED AND ON
   ANY  THEORY OF LIABILITY,  WHETHER  IN CONTRACT,  STRICT LIABILITY,  OR TORT
   (INCLUDING  NEGLIGENCE OR  OTHERWISE) ARISING IN  ANY WAY OUT OF THE  USE OF
   THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  
   This software  consists of voluntary contributions made  by many individuals
   on  behalf of the Apache Software  Foundation. For more  information on the
   Apache Software Foundation, please see <http://www.apache.org/>.
  
  */
  package org.apache.excalibur.mpool.test;
  
  import org.apache.avalon.excalibur.pool.Poolable;
  import org.apache.avalon.framework.activity.Disposable;
  import org.apache.excalibur.mpool.Pool;
  
  /**
   * This is used to profile and compare various pool implementations
   *  given a single access thread.
   *
   * @author <a href="mailto:leif@tanukisoftware.com">Leif Mortenson</a>
   * @version $Id: SingleThreadedPoolComparisonProfile.java,v 1.1 2004/02/24 14:29:30 cziegeler Exp $
   */
  public class SingleThreadedPoolComparisonProfile
      extends PoolComparisonProfileAbstract
  {
      /*---------------------------------------------------------------
       * Constructors
       *-------------------------------------------------------------*/
      public SingleThreadedPoolComparisonProfile( String name )
      {
          super( name );
      }
  
      /*---------------------------------------------------------------
       * PoolComparisonProfileAbstract Methods
       *-------------------------------------------------------------*/
      protected long getPoolRunTime( Pool pool, int gets )
          throws Exception
      {
          // Start clean
          resetMemory();
  
          final long startTime = System.currentTimeMillis();
          final Object[] poolTmp = new Object[ gets ];
          final int loops = TEST_SIZE / gets;
          for( int i = 0; i < loops; i++ )
          {
              // Get some Poolables
              for( int j = 0; j < gets; j++ )
              {
                  poolTmp[ j ] = pool.acquire();
              }
  
              // Put the Poolables back
              for( int j = 0; j < gets; j++ )
              {
                  pool.release( poolTmp[ j ] );
                  poolTmp[ j ] = null;
              }
          }
          final long duration = System.currentTimeMillis() - startTime;
  
          // Dispose if necessary
          if( pool instanceof Disposable )
          {
              ( (Disposable)pool ).dispose();
          }
  
          return duration;
      }
  
      /*---------------------------------------------------------------
       * PoolComparisonProfileAbstract Methods
       *-------------------------------------------------------------*/
      protected long getPoolRunTime( org.apache.avalon.excalibur.pool.Pool pool, int gets )
          throws Exception
      {
          // Start clean
          resetMemory();
  
          final long startTime = System.currentTimeMillis();
          final Poolable[] poolTmp = new Poolable[ gets ];
          final int loops = TEST_SIZE / gets;
          for( int i = 0; i < loops; i++ )
          {
              // Get some Poolables
              for( int j = 0; j < gets; j++ )
              {
                  poolTmp[ j ] = pool.get();
              }
  
              // Put the Poolables back
              for( int j = 0; j < gets; j++ )
              {
                  pool.put( poolTmp[ j ] );
                  poolTmp[ j ] = null;
              }
          }
          final long duration = System.currentTimeMillis() - startTime;
  
          // Dispose if necessary
          if( pool instanceof Disposable )
          {
              ( (Disposable)pool ).dispose();
          }
  
          return duration;
      }
  }
  
  
  
  1.1                  avalon-excalibur/event/impl/src/test/org/apache/excalibur/mpool/test/MultiThreadedPoolComparisonProfile.java
  
  Index: MultiThreadedPoolComparisonProfile.java
  ===================================================================
  /*
  
   ============================================================================
                     The Apache Software License, Version 1.1
   ============================================================================
  
   Copyright (C) 1999-2003 The Apache Software Foundation. All rights reserved.
  
   Redistribution and use in source and binary forms, with or without modifica-
   tion, are permitted provided that the following conditions are met:
  
   1. Redistributions of  source code must  retain the above copyright  notice,
      this list of conditions and the following disclaimer.
  
   2. Redistributions in binary form must reproduce the above copyright notice,
      this list of conditions and the following disclaimer in the documentation
      and/or other materials provided with the distribution.
  
   3. The end-user documentation included with the redistribution, if any, must
      include  the following  acknowledgment:  "This product includes  software
      developed  by the  Apache Software Foundation  (http://www.apache.org/)."
      Alternately, this  acknowledgment may  appear in the software itself,  if
      and wherever such third-party acknowledgments normally appear.
  
   4. The names "Jakarta", "Avalon", "Excalibur" and "Apache Software Foundation"
      must not be used to endorse or promote products derived from this  software
      without  prior written permission. For written permission, please contact
      apache@apache.org.
  
   5. Products  derived from this software may not  be called "Apache", nor may
      "Apache" appear  in their name,  without prior written permission  of the
      Apache Software Foundation.
  
   THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES,
   INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
   FITNESS  FOR A PARTICULAR  PURPOSE ARE  DISCLAIMED.  IN NO  EVENT SHALL  THE
   APACHE SOFTWARE  FOUNDATION  OR ITS CONTRIBUTORS  BE LIABLE FOR  ANY DIRECT,
   INDIRECT, INCIDENTAL, SPECIAL,  EXEMPLARY, OR CONSEQUENTIAL  DAMAGES (INCLU-
   DING, BUT NOT LIMITED TO, PROCUREMENT  OF SUBSTITUTE GOODS OR SERVICES; LOSS
   OF USE, DATA, OR  PROFITS; OR BUSINESS  INTERRUPTION)  HOWEVER CAUSED AND ON
   ANY  THEORY OF LIABILITY,  WHETHER  IN CONTRACT,  STRICT LIABILITY,  OR TORT
   (INCLUDING  NEGLIGENCE OR  OTHERWISE) ARISING IN  ANY WAY OUT OF THE  USE OF
   THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  
   This software  consists of voluntary contributions made  by many individuals
   on  behalf of the Apache Software  Foundation. For more  information on the
   Apache Software Foundation, please see <http://www.apache.org/>.
  
  */
  package org.apache.excalibur.mpool.test;
  
  import org.apache.avalon.excalibur.pool.Poolable;
  import org.apache.avalon.excalibur.testcase.CascadingAssertionFailedError;
  import org.apache.avalon.excalibur.testcase.LatchedThreadGroup;
  import org.apache.avalon.framework.activity.Disposable;
  import org.apache.avalon.framework.logger.Logger;
  import org.apache.excalibur.mpool.Pool;
  
  /**
   * This is used to profile and compare various pool implementations
   *  given a single access thread.
   *
   * @author <a href="mailto:leif@tanukisoftware.com">Leif Mortenson</a>
   * @version $Id: MultiThreadedPoolComparisonProfile.java,v 1.1 2004/02/24 14:29:30 cziegeler Exp $
   */
  public class MultiThreadedPoolComparisonProfile
      extends PoolComparisonProfileAbstract
  {
      protected static final int THREADS = 100;
  
      private int m_getCount;
      private Throwable m_throwable;
  
      /*---------------------------------------------------------------
       * Constructors
       *-------------------------------------------------------------*/
      public MultiThreadedPoolComparisonProfile( String name )
      {
          super( name );
      }
  
      /*---------------------------------------------------------------
       * PoolComparisonProfileAbstract Methods
       *-------------------------------------------------------------*/
      protected long getPoolRunTime( final Pool pool, final int gets )
          throws Exception
      {
          if( gets % THREADS != 0 )
          {
              m_logger.info( "Invalid: " + gets % THREADS + " gets(" + gets + ") threads(" + THREADS + ")" );
              fail( "gets must be evenly divisible by THREADS" );
          }
  
          m_getCount = 0;
          m_throwable = null;
  
          // Create the runnable
          MPoolRunner runnable = new MPoolRunner( pool, gets, m_logger );
  
          LatchedThreadGroup group = new LatchedThreadGroup( runnable, THREADS );
          group.enableLogging( m_logger );
  
          long duration;
          try
          {
              duration = group.go();
          }
          catch( Throwable t )
          {
              // Throwable could have been thrown by one of the tests.
              if( m_throwable == null )
              {
                  m_throwable = t;
              }
              duration = 0;
          }
  
          if( m_throwable != null )
          {
              throw new CascadingAssertionFailedError( "Exception in test thread.", m_throwable );
          }
  
          assertTrue( "m_getCount == 0 (" + m_getCount + ")", m_getCount == 0 );
  
          // Dispose if necessary
          if( pool instanceof Disposable )
          {
              ( (Disposable)pool ).dispose();
          }
  
          return duration;
      }
  
      /*---------------------------------------------------------------
       * PoolComparisonProfileAbstract Methods
       *-------------------------------------------------------------*/
      protected long getPoolRunTime( final org.apache.avalon.excalibur.pool.Pool pool, final int gets )
          throws Exception
      {
          if( gets % THREADS != 0 )
          {
              m_logger.info( "Invalid: " + gets % THREADS + " gets(" + gets + ") threads(" + THREADS + ")" );
              fail( "gets must be evenly divisible by THREADS" );
          }
  
          m_getCount = 0;
          m_throwable = null;
  
          // Create the runnable
          PoolRunner runnable = new PoolRunner( pool, gets, m_logger );
  
          LatchedThreadGroup group = new LatchedThreadGroup( runnable, THREADS );
          group.enableLogging( m_logger );
  
          long duration;
          try
          {
              duration = group.go();
          }
          catch( Throwable t )
          {
              // Throwable could have been thrown by one of the tests.
              if( m_throwable == null )
              {
                  m_throwable = t;
              }
              duration = 0;
          }
  
          if( m_throwable != null )
          {
              throw new CascadingAssertionFailedError( "Exception in test thread.", m_throwable );
          }
  
          assertTrue( "m_getCount == 0 (" + m_getCount + ")", m_getCount == 0 );
  
          // Dispose if necessary
          if( pool instanceof Disposable )
          {
              ( (Disposable)pool ).dispose();
          }
  
          return duration;
      }
  
      private static class PoolRunner implements Runnable
      {
          private Logger m_logger;
          private org.apache.avalon.excalibur.pool.Pool m_pool;
          private int m_getCount = 0;
          private Throwable m_throwable = null;
          private int m_gets;
  
          public PoolRunner( org.apache.avalon.excalibur.pool.Pool pool, int gets, Logger logger )
          {
              m_pool = pool;
              m_logger = logger;
              m_gets = gets;
          }
  
          public int getCount()
          {
              return m_getCount;
          }
  
          public Throwable getThrowable()
          {
              return m_throwable;
          }
  
          public void run()
          {
              // Perform this threads part of the test.
              final int cnt = m_gets / THREADS;
              final Poolable[] poolTmp = new Poolable[ cnt ];
              final int loops = ( TEST_SIZE / THREADS ) / cnt;
              for( int i = 0; i < loops; i++ )
              {
                  // Get some Poolables
                  for( int j = 0; j < cnt; j++ )
                  {
                      try
                      {
                          poolTmp[ j ] = m_pool.get();
                          m_getCount++;
                      }
                      catch( Throwable t )
                      {
                          m_logger.error( "Unexpected error", t );
  
                          if( m_throwable == null )
                          {
                              m_throwable = t;
                          }
  
                          return;
                      }
                  }
  
                  // Make the loops hold the poolables longer than they are released, but only slightly.
                  Thread.yield();
  
                  // Put the Poolables back
                  for( int j = 0; j < cnt; j++ )
                  {
                      m_pool.put( poolTmp[ j ] );
                      m_getCount--;
                      poolTmp[ j ] = null;
                  }
              }
          }
      }
  
      private static class MPoolRunner implements Runnable
      {
          private Logger m_logger;
          private Pool m_pool;
          private int m_getCount = 0;
          private Throwable m_throwable = null;
          private final int m_gets;
  
          public MPoolRunner( Pool pool, int gets, Logger logger )
          {
              m_pool = pool;
              m_logger = logger;
              m_gets = gets;
          }
  
          public int getCount()
          {
              return m_getCount;
          }
  
          public Throwable getThrowable()
          {
              return m_throwable;
          }
  
          public void run()
          {
              // Perform this threads part of the test.
              final int cnt = m_gets / THREADS;
              final Object[] poolTmp = new Poolable[ cnt ];
              final int loops = ( TEST_SIZE / THREADS ) / cnt;
              for( int i = 0; i < loops; i++ )
              {
                  // Get some Poolables
                  for( int j = 0; j < cnt; j++ )
                  {
                      try
                      {
                          poolTmp[ j ] = m_pool.acquire();
                          m_getCount++;
                      }
                      catch( Throwable t )
                      {
                          m_logger.error( "Unexpected error after " + m_getCount +
                                          " items retrieved and " + m_gets + " requested", t );
  
                          if( m_throwable == null )
                          {
                              m_throwable = t;
                          }
                          return;
                      }
                  }
  
                  // Make the loops hold the poolables longer than they are released, but only slightly.
                  Thread.yield();
  
                  // Put the Poolables back
                  for( int j = 0; j < cnt; j++ )
                  {
                      m_pool.release( poolTmp[ j ] );
                      m_getCount--;
                      poolTmp[ j ] = null;
                  }
              }
          }
      }
  }
  
  
  
  1.1                  avalon-excalibur/event/impl/src/test/org/apache/excalibur/mpool/test/ClassInstanceObjectFactory.java
  
  Index: ClassInstanceObjectFactory.java
  ===================================================================
  /*
  
   ============================================================================
                     The Apache Software License, Version 1.1
   ============================================================================
  
   Copyright (C) 1999-2003 The Apache Software Foundation. All rights reserved.
  
   Redistribution and use in source and binary forms, with or without modifica-
   tion, are permitted provided that the following conditions are met:
  
   1. Redistributions of  source code must  retain the above copyright  notice,
      this list of conditions and the following disclaimer.
  
   2. Redistributions in binary form must reproduce the above copyright notice,
      this list of conditions and the following disclaimer in the documentation
      and/or other materials provided with the distribution.
  
   3. The end-user documentation included with the redistribution, if any, must
      include  the following  acknowledgment:  "This product includes  software
      developed  by the  Apache Software Foundation  (http://www.apache.org/)."
      Alternately, this  acknowledgment may  appear in the software itself,  if
      and wherever such third-party acknowledgments normally appear.
  
   4. The names "Jakarta", "Avalon", "Excalibur" and "Apache Software Foundation"
      must not be used to endorse or promote products derived from this  software
      without  prior written permission. For written permission, please contact
      apache@apache.org.
  
   5. Products  derived from this software may not  be called "Apache", nor may
      "Apache" appear  in their name,  without prior written permission  of the
      Apache Software Foundation.
  
   THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES,
   INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
   FITNESS  FOR A PARTICULAR  PURPOSE ARE  DISCLAIMED.  IN NO  EVENT SHALL  THE
   APACHE SOFTWARE  FOUNDATION  OR ITS CONTRIBUTORS  BE LIABLE FOR  ANY DIRECT,
   INDIRECT, INCIDENTAL, SPECIAL,  EXEMPLARY, OR CONSEQUENTIAL  DAMAGES (INCLU-
   DING, BUT NOT LIMITED TO, PROCUREMENT  OF SUBSTITUTE GOODS OR SERVICES; LOSS
   OF USE, DATA, OR  PROFITS; OR BUSINESS  INTERRUPTION)  HOWEVER CAUSED AND ON
   ANY  THEORY OF LIABILITY,  WHETHER  IN CONTRACT,  STRICT LIABILITY,  OR TORT
   (INCLUDING  NEGLIGENCE OR  OTHERWISE) ARISING IN  ANY WAY OUT OF THE  USE OF
   THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  
   This software  consists of voluntary contributions made  by many individuals
   on  behalf of the Apache Software  Foundation. For more  information on the
   Apache Software Foundation, please see <http://www.apache.org/>.
  
  */
  package org.apache.excalibur.mpool.test;
  
  import java.util.HashMap;
  
  import org.apache.avalon.framework.activity.Disposable;
  import org.apache.avalon.framework.logger.Logger;
  import org.apache.excalibur.mpool.ObjectFactory;
  
  /**
   * @author <a href="mailto:leif@tanukisoftware.com">Leif Mortenson</a>
   * @version CVS $Revision: 1.1 $ $Date: 2004/02/24 14:29:30 $
   * @since 4.1
   */
  public class ClassInstanceObjectFactory
      implements ObjectFactory, org.apache.avalon.excalibur.pool.ObjectFactory
  {
      private HashMap m_instances = new HashMap();
      private Logger m_logger;
      private Class m_clazz;
      private int m_id;
  
      /*---------------------------------------------------------------
       * Constructors
       *-------------------------------------------------------------*/
      /**
       * Creates a reproducable log of activity in the provided StringBuffer
       */
      public ClassInstanceObjectFactory( Class clazz, Logger logger )
      {
          m_clazz = clazz;
          m_logger = logger;
          m_id = 1;
      }
  
      /*---------------------------------------------------------------
       * ObjectFactory Methods
       *-------------------------------------------------------------*/
      public Object newInstance() throws Exception
      {
          Object object = m_clazz.newInstance();
          Integer id = new Integer( m_id++ );
  
          m_instances.put( object, id );
  
          if( m_logger.isDebugEnabled() )
          {
              m_logger.debug( "ClassInstanceObjectFactory.newInstance()  id:" + id );
          }
  
          return object;
      }
  
      public Class getCreatedClass()
      {
          return m_clazz;
      }
  
      public void dispose( Object object ) throws Exception
      {
          if( object instanceof Disposable )
          {
              ( (Disposable)object ).dispose();
          }
          Integer id = (Integer)m_instances.remove( object );
  
          if( m_logger.isDebugEnabled() )
          {
              m_logger.debug( "ClassInstanceObjectFactory.decommission(a "
                              + object.getClass().getName() + ")  id:" + id );
          }
      }
  
      public void decommission( Object object ) throws Exception
      {
          dispose( object );
      }
  }
  
  
  
  
  1.1                  avalon-excalibur/event/impl/src/test/org/apache/excalibur/mpool/test/PoolComparisonProfileAbstract.java
  
  Index: PoolComparisonProfileAbstract.java
  ===================================================================
  /*
  
   ============================================================================
                     The Apache Software License, Version 1.1
   ============================================================================
  
   Copyright (C) 1999-2003 The Apache Software Foundation. All rights reserved.
  
   Redistribution and use in source and binary forms, with or without modifica-
   tion, are permitted provided that the following conditions are met:
  
   1. Redistributions of  source code must  retain the above copyright  notice,
      this list of conditions and the following disclaimer.
  
   2. Redistributions in binary form must reproduce the above copyright notice,
      this list of conditions and the following disclaimer in the documentation
      and/or other materials provided with the distribution.
  
   3. The end-user documentation included with the redistribution, if any, must
      include  the following  acknowledgment:  "This product includes  software
      developed  by the  Apache Software Foundation  (http://www.apache.org/)."
      Alternately, this  acknowledgment may  appear in the software itself,  if
      and wherever such third-party acknowledgments normally appear.
  
   4. The names "Jakarta", "Avalon", "Excalibur" and "Apache Software Foundation"
      must not be used to endorse or promote products derived from this  software
      without  prior written permission. For written permission, please contact
      apache@apache.org.
  
   5. Products  derived from this software may not  be called "Apache", nor may
      "Apache" appear  in their name,  without prior written permission  of the
      Apache Software Foundation.
  
   THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES,
   INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
   FITNESS  FOR A PARTICULAR  PURPOSE ARE  DISCLAIMED.  IN NO  EVENT SHALL  THE
   APACHE SOFTWARE  FOUNDATION  OR ITS CONTRIBUTORS  BE LIABLE FOR  ANY DIRECT,
   INDIRECT, INCIDENTAL, SPECIAL,  EXEMPLARY, OR CONSEQUENTIAL  DAMAGES (INCLU-
   DING, BUT NOT LIMITED TO, PROCUREMENT  OF SUBSTITUTE GOODS OR SERVICES; LOSS
   OF USE, DATA, OR  PROFITS; OR BUSINESS  INTERRUPTION)  HOWEVER CAUSED AND ON
   ANY  THEORY OF LIABILITY,  WHETHER  IN CONTRACT,  STRICT LIABILITY,  OR TORT
   (INCLUDING  NEGLIGENCE OR  OTHERWISE) ARISING IN  ANY WAY OUT OF THE  USE OF
   THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  
   This software  consists of voluntary contributions made  by many individuals
   on  behalf of the Apache Software  Foundation. For more  information on the
   Apache Software Foundation, please see <http://www.apache.org/>.
  
  */
  package org.apache.excalibur.mpool.test;
  
  import junit.framework.TestCase;
  
  import org.apache.avalon.excalibur.pool.ResourceLimitingPool;
  import org.apache.avalon.framework.logger.LogEnabled;
  import org.apache.avalon.framework.logger.LogKitLogger;
  import org.apache.avalon.framework.logger.Logger;
  import org.apache.excalibur.mpool.BlockingFixedSizePool;
  import org.apache.excalibur.mpool.FixedSizePool;
  import org.apache.excalibur.mpool.ObjectFactory;
  import org.apache.excalibur.mpool.Pool;
  import org.apache.excalibur.mpool.VariableSizePool;
  
  /**
   * Used as a basis for the PoolComparisonProfile Tests
   *
   * @author <a href="mailto:leif@tanukisoftware.com">Leif Mortenson</a>
   * @version $Id: PoolComparisonProfileAbstract.java,v 1.1 2004/02/24 14:29:30 cziegeler Exp $
   */
  public abstract class PoolComparisonProfileAbstract
      extends TestCase
  {
      /**
       * The TEST_SIZE defines the overall size of the tests.  Decreasing this will
       *  decrease the time the test takes to run, but also decrease its efficiency.
       */
      protected static final int TEST_SIZE = 50000;
  
      protected Logger m_logger;
      protected Logger m_poolLogger;
  
      /*---------------------------------------------------------------
       * Constructors
       *-------------------------------------------------------------*/
      public PoolComparisonProfileAbstract( String name )
      {
          super( name );
  
          // Set to debug to see more useful information.
          org.apache.log.Logger logger =
              org.apache.log.Hierarchy.getDefaultHierarchy().getLoggerFor( "test" );
          logger.setPriority( org.apache.log.Priority.INFO );
          m_logger = new LogKitLogger( logger );
  
          // The output from the pools is too much data to be useful, so use a different logger.
          org.apache.log.Logger poolLogger =
              org.apache.log.Hierarchy.getDefaultHierarchy().getLoggerFor( "pool" );
          poolLogger.setPriority( org.apache.log.Priority.INFO );
          m_poolLogger = new LogKitLogger( poolLogger );
      }
  
      /*---------------------------------------------------------------
       * FixedSizePool vs ResourceLimitingPool TestCases
       *-------------------------------------------------------------*/
      /**
       * Compare the FixedSizePool and ResourceLimitingPool when the
       *  ResourceLimitingPool is configured to act like a FixedSizePool.
       * <p>
       * Test will use pools with a max size of 100, while getting up to 100 at a time,
       *  Poolables are small objects.
       */
      public void testCompare_FixedSizePool_And_ResourceLimitingPool_Max100_Gets100_SmallPoolables()
          throws Exception
      {
          String name = "FixedSizePool_And_ResourceLimitingPool_Max100_Gets100_SmallPoolables";
  
          Class poolableClass = SmallPoolable.class;
          ClassInstanceObjectFactory factory = new ClassInstanceObjectFactory( poolableClass, m_poolLogger );
          int max = 100;
          boolean maxStrict = true;
          boolean blocking = false;
          long blockTimeout = 0;
          long trimInterval = 0;
  
          FixedSizePool poolA = new FixedSizePool( factory, max );
  
          ResourceLimitingPool poolB = new ResourceLimitingPool( factory, max, maxStrict, blocking, blockTimeout, trimInterval );
          poolB.enableLogging( m_poolLogger );
  
          generalTest( name, poolA, poolB, 100, factory );
      }
  
      /**
       * Compare the FixedSizePool and BlockingFixedSizePool when the
       *  BlockingFixedSizePool is configured to act like a FixedSizePool.
       * <p>
       * Test will use pools with a max size of 100, while getting up to 100 at a time,
       *  Poolables are medium objects.
       */
      public void testCompare_FixedSizePool_And_BlockingFixedSizePool_Max100_Gets100_SmallPoolables()
          throws Exception
      {
          String name = "FixedSizePool_And_BlockingFixedSizePool_Max100_Gets100_SmallPoolables";
  
          Class poolableClass = SmallPoolable.class;
          ClassInstanceObjectFactory factory = new ClassInstanceObjectFactory( poolableClass, m_poolLogger );
          int max = 100;
          long blockTimeout = 1;
  
          FixedSizePool poolA = new FixedSizePool( factory, max );
          BlockingFixedSizePool poolB = new BlockingFixedSizePool( factory, max, blockTimeout );
          poolB.initialize();
  
          generalTest( name, poolA, poolB, 100, factory );
      }
  
      /**
       * Compare the FixedSizePool and BlockingFixedSizePool when the
       *  BlockingFixedSizePool is configured to act like a FixedSizePool.
       * <p>
       * Test will use pools with a max size of 100, while getting up to 100 at a time,
       *  Poolables are medium objects.
       */
      public void testCompare_FixedSizePool_And_BlockingFixedSizePool_Max100_Gets100_MediumPoolables()
          throws Exception
      {
          String name = "FixedSizePool_And_BlockingFixedSizePool_Max100_Gets100_MediumPoolables";
  
          Class poolableClass = MediumPoolable.class;
          ClassInstanceObjectFactory factory = new ClassInstanceObjectFactory( poolableClass, m_poolLogger );
          int max = 100;
          long blockTimeout = 1;
  
          FixedSizePool poolA = new FixedSizePool( factory, max );
          BlockingFixedSizePool poolB = new BlockingFixedSizePool( factory, max, blockTimeout );
          poolB.initialize();
  
          generalTest( name, poolA, poolB, 100, factory );
      }
  
      /**
       * Compare the FixedSizePool and BlockingFixedSizePool when the
       *  BlockingFixedSizePool is configured to act like a FixedSizePool.
       * <p>
       * Test will use pools with a max size of 100, while getting up to 100 at a time,
       *  Poolables are medium objects.
       */
      public void testCompare_FixedSizePool_And_BlockingFixedSizePool_Max100_Gets100_LargePoolables()
          throws Exception
      {
          String name = "FixedSizePool_And_BlockingFixedSizePool_Max100_Gets100_LargePoolables";
  
          Class poolableClass = LargePoolable.class;
          ClassInstanceObjectFactory factory = new ClassInstanceObjectFactory( poolableClass, m_poolLogger );
          int max = 100;
          long blockTimeout = 1;
  
          FixedSizePool poolA = new FixedSizePool( factory, max );
          BlockingFixedSizePool poolB = new BlockingFixedSizePool( factory, max, blockTimeout );
          poolB.initialize();
  
          generalTest( name, poolA, poolB, 100, factory );
      }
  
      /**
       * Compare the FixedSizePool and ResourceLimitingPool when the
       *  ResourceLimitingPool is configured to act like a FixedSizePool.
       * <p>
       * Test will use pools with a max size of 100, while getting up to 100 at a time,
       *  Poolables are large objects.
       */
      public void testCompare_FixedSizePool_And_ResourceLimitingPool_Max100_Gets100_LargePoolables()
          throws Exception
      {
          String name = "FixedSizePool_And_ResourceLimitingPool_Max100_Gets100_LargePoolables";
  
          Class poolableClass = LargePoolable.class;
          ClassInstanceObjectFactory factory = new ClassInstanceObjectFactory( poolableClass, m_poolLogger );
          int max = 100;
          boolean maxStrict = true;
          boolean blocking = false;
          long blockTimeout = 0;
          long trimInterval = 0;
  
          FixedSizePool poolA = new FixedSizePool( factory, max );
  
          ResourceLimitingPool poolB = new ResourceLimitingPool( factory, max, maxStrict, blocking, blockTimeout, trimInterval );
          poolB.enableLogging( m_poolLogger );
  
          generalTest( name, poolA, poolB, 100, factory );
      }
  
      /*---------------------------------------------------------------
       * FixedSizePool vs VariableSizePool TestCases
       *-------------------------------------------------------------*/
      /**
       * Compare the FixedSizePool and VariableSizePool when the
       *  VariableSizePool is configured to act like a FixedSizePool.
       * <p>
       * Test will use pools with a max size of 100, while getting up to 100 at a time,
       *  Poolables are small objects.
       */
      public void testCompare_FixedSizePool_And_VariableSizePool_Max100_Gets100_SmallPoolables()
          throws Exception
      {
          String name = "FixedSizePool_And_VariableSizePool_Max100_Gets100_SmallPoolables";
  
          Class poolableClass = SmallPoolable.class;
          ClassInstanceObjectFactory factory = new ClassInstanceObjectFactory( poolableClass, m_poolLogger );
          int max = 100;
  
          FixedSizePool poolA = new FixedSizePool( factory, max );
  
          VariableSizePool poolB = new VariableSizePool( factory, max );
  
          generalTest( name, poolA, poolB, 100, factory );
      }
  
      /**
       * Compare the FixedSizePool and VariableSizePool when the
       *  VariableSizePool is configured to act like a FixedSizePool.
       * <p>
       * Test will use pools with a max size of 100, while getting up to 100 at a time,
       *  Poolables are medium objects.
       */
      public void testCompare_FixedSizePool_And_VariableSizePool_Max100_Gets100_MediumPoolables()
          throws Exception
      {
          String name = "FixedSizePool_And_VariableSizePool_Max100_Gets100_MediumPoolables";
  
          Class poolableClass = MediumPoolable.class;
          ClassInstanceObjectFactory factory = new ClassInstanceObjectFactory( poolableClass, m_poolLogger );
          int max = 100;
  
          FixedSizePool poolA = new FixedSizePool( factory, max );
  
          VariableSizePool poolB = new VariableSizePool( factory, max );
  
          generalTest( name, poolA, poolB, 100, factory );
      }
  
      /**
       * Compare the FixedSizePool and VariableSizePool when the
       *  VariableSizePool is configured to act like a FixedSizePool.
       * <p>
       * Test will use pools with a max size of 100, while getting up to 100 at a time,
       *  Poolables are large objects.
       */
      public void testCompare_FixedSizePool_And_VariableSizePool_Max100_Gets100_LargePoolables()
          throws Exception
      {
          String name = "FixedSizePool_And_VariableSizePool_Max100_Gets100_LargePoolables";
  
          Class poolableClass = LargePoolable.class;
          ClassInstanceObjectFactory factory = new ClassInstanceObjectFactory( poolableClass, m_poolLogger );
          int max = 100;
  
          FixedSizePool poolA = new FixedSizePool( factory, max );
  
          VariableSizePool poolB = new VariableSizePool( factory, max );
  
          generalTest( name, poolA, poolB, 100, factory );
      }
  
      /*---------------------------------------------------------------
       * Test Classes
       *-------------------------------------------------------------*/
      public static class SmallPoolable
          implements org.apache.avalon.excalibur.pool.Poolable
      {
          int a;
      }
  
      public static class MediumPoolable
          implements org.apache.avalon.excalibur.pool.Poolable
      {
          int[] a = new int[ 100 ];
      }
  
      public static class LargePoolable
          implements org.apache.avalon.excalibur.pool.Poolable
      {
          int[][] a = new int[ 10 ][ 100 ];
      }
  
      /**
       * Dummy class used for timing test cases where no pooling is done.
       */
      public static class NoPoolingPool
          implements Pool, LogEnabled
      {
          private ObjectFactory m_factory;
          private Logger m_logger;
  
          public NoPoolingPool( ObjectFactory factory )
          {
              m_factory = factory;
          }
  
          public void enableLogging( Logger logger )
          {
              m_logger = logger;
          }
  
          public Object acquire() throws Exception
          {
              return newInstance();
          }
  
          public void release( Object poolable )
          {
              try
              {
                  m_factory.dispose( poolable );
              }
              catch( Exception e )
              {
                  m_logger.debug( "Error decommissioning object", e );
              }
          }
  
          public Object newInstance() throws Exception
          {
              return m_factory.newInstance();
          }
      }
  
      /*---------------------------------------------------------------
       * VariableSizePool vs ResourceLimitingPool TestCases
       *-------------------------------------------------------------*/
      /**
       * Compare the VariableSizePool and ResourceLimitingPool when the
       *  ResourceLimitingPool is configured to act like a VariableSizePool.
       * <p>
       * Test will use pools with a max size of 100, while getting up to 100 at a time,
       *  Poolables are small objects.
       */
      public void testCompare_VariableSizePool_And_ResourceLimitingPool_Max100_Gets100_SmallPoolables()
          throws Exception
      {
          String name = "VariableSizePool_And_ResourceLimitingPool_Max100_Gets100_SmallPoolables";
  
          Class poolableClass = SmallPoolable.class;
          ClassInstanceObjectFactory factory = new ClassInstanceObjectFactory( poolableClass, m_poolLogger );
          int max = 100;
          boolean maxStrict = false;
          boolean blocking = false;
          long blockTimeout = 0;
          long trimInterval = 0;
  
          VariableSizePool poolA = new VariableSizePool( factory, max );
  
          ResourceLimitingPool poolB = new ResourceLimitingPool( factory, max, maxStrict, blocking, blockTimeout, trimInterval );
          poolB.enableLogging( m_poolLogger );
  
          generalTest( name, poolA, poolB, 100, factory );
      }
  
      /**
       * Compare the VariableSizePool and ResourceLimitingPool when the
       *  ResourceLimitingPool is configured to act like a VariableSizePool.
       * <p>
       * Test will use pools with a max size of 100, while getting up to 200 at a time,
       *  Poolables are small objects.
       */
      public void testCompare_VariableSizePool_And_ResourceLimitingPool_Max100_Gets200_SmallPoolables()
          throws Exception
      {
          String name = "VariableSizePool_And_ResourceLimitingPool_Max100_Gets200_SmallPoolables";
  
          Class poolableClass = SmallPoolable.class;
          ClassInstanceObjectFactory factory = new ClassInstanceObjectFactory( poolableClass, m_poolLogger );
          int max = 100;
          boolean maxStrict = false;
          boolean blocking = false;
          long blockTimeout = 0;
          long trimInterval = 0;
  
          VariableSizePool poolA = new VariableSizePool( factory, max );
  
          ResourceLimitingPool poolB = new ResourceLimitingPool( factory, max, maxStrict, blocking, blockTimeout, trimInterval );
          poolB.enableLogging( m_poolLogger );
  
          generalTest( name, poolA, poolB, 200, factory );
      }
  
      /**
       * Compare the VariableSizePool and ResourceLimitingPool when the
       *  ResourceLimitingPool is configured to act like a VariableSizePool.
       * <p>
       * Test will use pools with a max size of 100, while getting up to 100 at a time,
       *  Poolables are medium objects.
       */
      public void testCompare_VariableSizePool_And_ResourceLimitingPool_Max100_Gets100_MediumPoolables()
          throws Exception
      {
          String name = "VariableSizePool_And_ResourceLimitingPool_Max10_Gets100_MediumPoolables";
  
          Class poolableClass = MediumPoolable.class;
          ClassInstanceObjectFactory factory = new ClassInstanceObjectFactory( poolableClass, m_poolLogger );
          int max = 100;
          boolean maxStrict = false;
          boolean blocking = false;
          long blockTimeout = 0;
          long trimInterval = 0;
  
          VariableSizePool poolA = new VariableSizePool( factory, max );
  
          ResourceLimitingPool poolB = new ResourceLimitingPool( factory, max, maxStrict, blocking, blockTimeout, trimInterval );
          poolB.enableLogging( m_poolLogger );
  
          generalTest( name, poolA, poolB, 100, factory );
      }
  
      /**
       * Compare the VariableSizePool and ResourceLimitingPool when the
       *  ResourceLimitingPool is configured to act like a VariableSizePool.
       * <p>
       * Test will use pools with a max size of 100, while getting up to 200 at a time,
       *  Poolables are medium objects.
       */
      public void testCompare_VariableSizePool_And_ResourceLimitingPool_Max100_Gets200_MediumPoolables()
          throws Exception
      {
          String name = "VariableSizePool_And_ResourceLimitingPool_Max100_Gets200_MediumPoolables";
  
          Class poolableClass = MediumPoolable.class;
          ClassInstanceObjectFactory factory = new ClassInstanceObjectFactory( poolableClass, m_poolLogger );
          int max = 100;
          boolean maxStrict = false;
          boolean blocking = false;
          long blockTimeout = 0;
          long trimInterval = 0;
  
          VariableSizePool poolA = new VariableSizePool( factory, max );
  
          ResourceLimitingPool poolB = new ResourceLimitingPool( factory, max, maxStrict, blocking, blockTimeout, trimInterval );
          poolB.enableLogging( m_poolLogger );
  
          generalTest( name, poolA, poolB, 200, factory );
      }
  
      /**
       * Compare the VariableSizePool and ResourceLimitingPool when the
       *  ResourceLimitingPool is configured to act like a VariableSizePool.
       * <p>
       * Test will use pools with a max size of 100, while getting up to 100 at a time,
       *  Poolables are large objects.
       */
      public void testCompare_VariableSizePool_And_ResourceLimitingPool_Max100_Gets100_LargePoolables()
          throws Exception
      {
          String name = "VariableSizePool_And_ResourceLimitingPool_Max100_Gets100_LargePoolables";
  
          Class poolableClass = LargePoolable.class;
          ClassInstanceObjectFactory factory = new ClassInstanceObjectFactory( poolableClass, m_poolLogger );
          int max = 100;
          boolean maxStrict = false;
          boolean blocking = false;
          long blockTimeout = 0;
          long trimInterval = 0;
  
          VariableSizePool poolA = new VariableSizePool( factory, max );
  
          ResourceLimitingPool poolB = new ResourceLimitingPool( factory, max, maxStrict, blocking, blockTimeout, trimInterval );
          poolB.enableLogging( m_poolLogger );
  
          generalTest( name, poolA, poolB, 100, factory );
      }
  
      /**
       * Compare the VariableSizePool and ResourceLimitingPool when the
       *  ResourceLimitingPool is configured to act like a VariableSizePool.
       * <p>
       * Test will use pools with a max size of 100, while getting up to 200 at a time,
       *  Poolables are large objects.
       */
      public void testCompare_VariableSizePool_And_ResourceLimitingPool_Max100_Gets200_LargePoolables()
          throws Exception
      {
          String name = "VariableSizePool_And_ResourceLimitingPool_Max100_Gets200_LargePoolables";
  
          Class poolableClass = LargePoolable.class;
          ClassInstanceObjectFactory factory = new ClassInstanceObjectFactory( poolableClass, m_poolLogger );
          int max = 100;
          boolean maxStrict = false;
          boolean blocking = false;
          long blockTimeout = 0;
          long trimInterval = 0;
  
          VariableSizePool poolA = new VariableSizePool( factory, max );
  
          ResourceLimitingPool poolB = new ResourceLimitingPool( factory, max, maxStrict, blocking, blockTimeout, trimInterval );
          poolB.enableLogging( m_poolLogger );
  
          generalTest( name, poolA, poolB, 200, factory );
      }
  
      /*---------------------------------------------------------------
       * Utility Methods
       *-------------------------------------------------------------*/
      protected void resetMemory()
      {
          System.gc();
          System.gc();
  
          // Let the system settle down.
          try
          {
              Thread.sleep( 50 );
          }
          catch( InterruptedException e )
          {
          }
          Runtime runtime = Runtime.getRuntime();
          m_logger.debug( "Memory: " + ( runtime.totalMemory() - runtime.freeMemory() ) );
      }
  
      protected String getShortClassName( Object o )
      {
          String name = o.getClass().getName();
          int pos = name.lastIndexOf( '.' );
          if( pos > 0 )
          {
              name = name.substring( pos + 1 );
          }
          return name;
      }
  
      protected abstract long getPoolRunTime( Pool pool, int gets )
          throws Exception;
  
      protected abstract long getPoolRunTime( org.apache.avalon.excalibur.pool.Pool pool, int gets )
          throws Exception;
  
      /**
       * The guts of the various test cases.  Will dispose the pools
       */
      protected void generalTest( String name, Pool poolA, Pool poolB, int gets, ClassInstanceObjectFactory factory )
          throws Exception
      {
          m_logger.info( "Test Case: " + name );
  
          // Get the short class names
          final String poolAName = getShortClassName( poolA );
          final String poolBName = getShortClassName( poolB );
  
          // Start clean
          resetMemory();
  
          // Get a baseline speed for object creation
          NoPoolingPool poolBase = new NoPoolingPool( factory );
          poolBase.enableLogging( m_poolLogger );
          final long noPoolDuration = getPoolRunTime( poolBase, gets );
          m_logger.info( "     Unpooled time = " + noPoolDuration + "ms. to use " + TEST_SIZE + " objects." );
          resetMemory();
  
  
          // Get the time for poolA
          final long poolADuration = getPoolRunTime( poolA, gets );
          m_logger.info( "     " + poolAName + " time = " + poolADuration + "ms. to use " + TEST_SIZE + " objects, " + gets + " at a time." );
          resetMemory();
  
  
          // Get the time for poolB
          final long poolBDuration = getPoolRunTime( poolB, gets );
          m_logger.info( "     " + poolBName + " time = " + poolBDuration + "ms. to use " + TEST_SIZE + " objects, " + gets + " at a time." );
          resetMemory();
  
          // Show a summary
          if( m_logger.isInfoEnabled() )
          {
              double mult;
              mult = ( poolADuration > 0 ? ( noPoolDuration * 100 / poolADuration ) / 100.0 : Float.POSITIVE_INFINITY );
              m_logger.info( "  => " + poolAName + " is " + mult + " X as fast as not pooling." );
  
              mult = ( poolBDuration > 0 ? ( noPoolDuration * 100 / poolBDuration ) / 100.0 : Float.POSITIVE_INFINITY );
              m_logger.info( "  => " + poolBName + " is " + mult + " X as fast as not pooling." );
  
              mult = ( poolBDuration > 0 ? ( poolADuration * 100 / poolBDuration ) / 100.0 : Float.POSITIVE_INFINITY );
              m_logger.info( "  => " + poolBName + " is " + mult + " X as fast as " + poolAName + "." );
  
              mult = ( poolADuration > 0 ? ( poolBDuration * 100 / poolADuration ) / 100.0 : Float.POSITIVE_INFINITY );
              m_logger.info( "  => " + poolAName + " is " + mult + " X as fast as " + poolBName + "." );
          }
      }
  
      /**
       * The guts of the various test cases.  Will dispose the pools
       */
      protected void generalTest( String name, Pool poolA, org.apache.avalon.excalibur.pool.Pool poolB, int gets, ClassInstanceObjectFactory factory )
          throws Exception
      {
          m_logger.info( "Test Case: " + name );
  
          // Get the short class names
          final String poolAName = getShortClassName( poolA );
          final String poolBName = getShortClassName( poolB );
  
          // Start clean
          resetMemory();
  
          // Get a baseline speed for object creation
          NoPoolingPool poolBase = new NoPoolingPool( factory );
          poolBase.enableLogging( m_poolLogger );
          final long noPoolDuration = getPoolRunTime( poolBase, gets );
          m_logger.info( "     Unpooled time = " + noPoolDuration + "ms. to use " + TEST_SIZE + " objects." );
          resetMemory();
  
  
          // Get the time for poolA
          final long poolADuration = getPoolRunTime( poolA, gets );
          m_logger.info( "     " + poolAName + " time = " + poolADuration + "ms. to use " + TEST_SIZE + " objects, " + gets + " at a time." );
          resetMemory();
  
  
          // Get the time for poolB
          final long poolBDuration = getPoolRunTime( poolB, gets );
          m_logger.info( "     " + poolBName + " time = " + poolBDuration + "ms. to use " + TEST_SIZE + " objects, " + gets + " at a time." );
          resetMemory();
  
          // Show a summary
          if( m_logger.isInfoEnabled() )
          {
              double mult;
              mult = ( poolADuration > 0 ? ( noPoolDuration * 100 / poolADuration ) / 100.0 : Float.POSITIVE_INFINITY );
              m_logger.info( "  => " + poolAName + " is " + mult + " X as fast as not pooling." );
  
              mult = ( poolBDuration > 0 ? ( noPoolDuration * 100 / poolBDuration ) / 100.0 : Float.POSITIVE_INFINITY );
              m_logger.info( "  => " + poolBName + " is " + mult + " X as fast as not pooling." );
  
              mult = ( poolBDuration > 0 ? ( poolADuration * 100 / poolBDuration ) / 100.0 : Float.POSITIVE_INFINITY );
              m_logger.info( "  => " + poolBName + " is " + mult + " X as fast as " + poolAName + "." );
  
              mult = ( poolADuration > 0 ? ( poolBDuration * 100 / poolADuration ) / 100.0 : Float.POSITIVE_INFINITY );
              m_logger.info( "  => " + poolAName + " is " + mult + " X as fast as " + poolBName + "." );
          }
      }
  }
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: cvs-unsubscribe@avalon.apache.org
For additional commands, e-mail: cvs-help@avalon.apache.org