You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@avalon.apache.org by bl...@apache.org on 2002/05/02 21:03:48 UTC

cvs commit: jakarta-avalon-excalibur/fortress/src/test/org/apache/excalibur/mpool/test ClassInstanceObjectFactory.java MultiThreadedPoolComparisonProfile.java PoolComparisonProfileAbstract.java SingleThreadedPoolComparisonProfile.java

bloritsch    02/05/02 12:03:48

  Modified:    fortress/src/java/org/apache/excalibur/mpool
                        DefaultPoolManager.java FixedSizePool.java
                        ManagablePool.java ObjectFactory.java Pool.java
                        PoolManager.java VariableSizePool.java
               fortress/src/test/org/apache/excalibur/mpool/test
                        ClassInstanceObjectFactory.java
                        MultiThreadedPoolComparisonProfile.java
                        PoolComparisonProfileAbstract.java
                        SingleThreadedPoolComparisonProfile.java
  Removed:     all/src/scratchpad/org/apache/avalon/excalibur/mpool
                        DefaultPoolManager.java FixedSizePool.java
                        ManagablePool.java ObjectFactory.java Pool.java
                        PoolManager.java VariableSizePool.java
               all/src/scratchpad/org/apache/avalon/excalibur/mpool/test
                        ClassInstanceObjectFactory.java
                        MultiThreadedPoolComparisonProfile.java
                        PoolComparisonProfileAbstract.java
                        SingleThreadedPoolComparisonProfile.java
  Log:
  move mpool
  
  Revision  Changes    Path
  1.6       +4 -4      jakarta-avalon-excalibur/fortress/src/java/org/apache/excalibur/mpool/DefaultPoolManager.java
  
  Index: DefaultPoolManager.java
  ===================================================================
  RCS file: /home/cvs/jakarta-avalon-excalibur/fortress/src/java/org/apache/excalibur/mpool/DefaultPoolManager.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- DefaultPoolManager.java	13 Apr 2002 01:05:55 -0000	1.5
  +++ DefaultPoolManager.java	2 May 2002 19:03:47 -0000	1.6
  @@ -5,13 +5,13 @@
    * version 1.1, a copy of which has been included with this distribution in
    * the LICENSE.txt file.
    */
  -package org.apache.avalon.excalibur.mpool;
  +package org.apache.excalibur.mpool;
   
   import java.util.Iterator;
   import java.util.Random;
   import org.apache.avalon.excalibur.collections.BucketMap;
  -import org.apache.avalon.excalibur.event.command.RepeatedCommand;
  -import org.apache.avalon.excalibur.event.Queue;
  +import org.apache.excalibur.event.command.RepeatedCommand;
  +import org.apache.excalibur.event.Queue;
   
   /**
    * This interface is for a PoolManager that creates pools that are managed
  @@ -19,7 +19,7 @@
    * the constructor.
    *
    * @author <a href="mailto:bloritsch@apache.org">Berin Loritsch</a>
  - * @version CVS $Revision: 1.5 $ $Date: 2002/04/13 01:05:55 $
  + * @version CVS $Revision: 1.6 $ $Date: 2002/05/02 19:03:47 $
    * @since 4.1
    */
   public class DefaultPoolManager implements PoolManager
  
  
  
  1.3       +2 -2      jakarta-avalon-excalibur/fortress/src/java/org/apache/excalibur/mpool/FixedSizePool.java
  
  Index: FixedSizePool.java
  ===================================================================
  RCS file: /home/cvs/jakarta-avalon-excalibur/fortress/src/java/org/apache/excalibur/mpool/FixedSizePool.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- FixedSizePool.java	16 Mar 2002 00:05:48 -0000	1.2
  +++ FixedSizePool.java	2 May 2002 19:03:47 -0000	1.3
  @@ -5,7 +5,7 @@
    * version 1.1, a copy of which has been included with this distribution in
    * the LICENSE.txt file.
    */
  -package org.apache.avalon.excalibur.mpool;
  +package org.apache.excalibur.mpool;
   
   import org.apache.avalon.excalibur.collections.Buffer;
   import org.apache.avalon.excalibur.collections.FixedSizeBuffer;
  @@ -16,7 +16,7 @@
    * Please note that this pool offers no resource limiting whatsoever.
    *
    * @author <a href="mailto:bloritsch@apache.org">Berin Loritsch</a>
  - * @version CVS $Revision: 1.2 $ $Date: 2002/03/16 00:05:48 $
  + * @version CVS $Revision: 1.3 $ $Date: 2002/05/02 19:03:47 $
    * @since 4.1
    */
   public final class FixedSizePool
  
  
  
  1.2       +2 -2      jakarta-avalon-excalibur/fortress/src/java/org/apache/excalibur/mpool/ManagablePool.java
  
  Index: ManagablePool.java
  ===================================================================
  RCS file: /home/cvs/jakarta-avalon-excalibur/fortress/src/java/org/apache/excalibur/mpool/ManagablePool.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- ManagablePool.java	12 Feb 2002 21:30:42 -0000	1.1
  +++ ManagablePool.java	2 May 2002 19:03:47 -0000	1.2
  @@ -5,7 +5,7 @@
    * version 1.1, a copy of which has been included with this distribution in
    * the LICENSE.txt file.
    */
  -package org.apache.avalon.excalibur.mpool;
  +package org.apache.excalibur.mpool;
   
   /**
    * This is the interface for Pools that are not a fixed size.  This interface
  @@ -24,7 +24,7 @@
    * </p>
    *
    * @author <a href="mailto:bloritsch@apache.org">Berin Loritsch</a>
  - * @version CVS $Revision: 1.1 $ $Date: 2002/02/12 21:30:42 $
  + * @version CVS $Revision: 1.2 $ $Date: 2002/05/02 19:03:47 $
    * @since 4.1
    */
   public interface ManagablePool extends Pool
  
  
  
  1.4       +2 -2      jakarta-avalon-excalibur/fortress/src/java/org/apache/excalibur/mpool/ObjectFactory.java
  
  Index: ObjectFactory.java
  ===================================================================
  RCS file: /home/cvs/jakarta-avalon-excalibur/fortress/src/java/org/apache/excalibur/mpool/ObjectFactory.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- ObjectFactory.java	16 Mar 2002 00:05:48 -0000	1.3
  +++ ObjectFactory.java	2 May 2002 19:03:47 -0000	1.4
  @@ -5,7 +5,7 @@
    * version 1.1, a copy of which has been included with this distribution in
    * the LICENSE.txt file.
    */
  -package org.apache.avalon.excalibur.mpool;
  +package org.apache.excalibur.mpool;
   
   /**
    * This interface is to define how an ObjectFactory is defined.  While this
  @@ -13,7 +13,7 @@
    * object creation to and instance of this interface.
    *
    * @author <a href="mailto:bloritsch@apache.org">Berin Loritsch</a>
  - * @version CVS $Revision: 1.3 $ $Date: 2002/03/16 00:05:48 $
  + * @version CVS $Revision: 1.4 $ $Date: 2002/05/02 19:03:47 $
    * @since 4.1.2
    */
   public interface ObjectFactory
  
  
  
  1.3       +2 -2      jakarta-avalon-excalibur/fortress/src/java/org/apache/excalibur/mpool/Pool.java
  
  Index: Pool.java
  ===================================================================
  RCS file: /home/cvs/jakarta-avalon-excalibur/fortress/src/java/org/apache/excalibur/mpool/Pool.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- Pool.java	26 Feb 2002 02:06:30 -0000	1.2
  +++ Pool.java	2 May 2002 19:03:47 -0000	1.3
  @@ -5,7 +5,7 @@
    * version 1.1, a copy of which has been included with this distribution in
    * the LICENSE.txt file.
    */
  -package org.apache.avalon.excalibur.mpool;
  +package org.apache.excalibur.mpool;
   
   /**
    * This interface is to define how a Pool is used.  We have determined by
  @@ -26,7 +26,7 @@
    * </p>
    *
    * @author <a href="mailto:bloritsch@apache.org">Berin Loritsch</a>
  - * @version CVS $Revision: 1.2 $ $Date: 2002/02/26 02:06:30 $
  + * @version CVS $Revision: 1.3 $ $Date: 2002/05/02 19:03:47 $
    * @since 4.1.2
    */
   public interface Pool
  
  
  
  1.2       +2 -2      jakarta-avalon-excalibur/fortress/src/java/org/apache/excalibur/mpool/PoolManager.java
  
  Index: PoolManager.java
  ===================================================================
  RCS file: /home/cvs/jakarta-avalon-excalibur/fortress/src/java/org/apache/excalibur/mpool/PoolManager.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- PoolManager.java	12 Feb 2002 21:30:42 -0000	1.1
  +++ PoolManager.java	2 May 2002 19:03:47 -0000	1.2
  @@ -5,7 +5,7 @@
    * version 1.1, a copy of which has been included with this distribution in
    * the LICENSE.txt file.
    */
  -package org.apache.avalon.excalibur.mpool;
  +package org.apache.excalibur.mpool;
   
   /**
    * This interface is for a PoolManager that creates pools that are managed
  @@ -13,7 +13,7 @@
    * the constructor.
    *
    * @author <a href="mailto:bloritsch@apache.org">Berin Loritsch</a>
  - * @version CVS $Revision: 1.1 $ $Date: 2002/02/12 21:30:42 $
  + * @version CVS $Revision: 1.2 $ $Date: 2002/05/02 19:03:47 $
    * @since 4.1
    */
   public interface PoolManager
  
  
  
  1.5       +2 -2      jakarta-avalon-excalibur/fortress/src/java/org/apache/excalibur/mpool/VariableSizePool.java
  
  Index: VariableSizePool.java
  ===================================================================
  RCS file: /home/cvs/jakarta-avalon-excalibur/fortress/src/java/org/apache/excalibur/mpool/VariableSizePool.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- VariableSizePool.java	16 Mar 2002 00:05:48 -0000	1.4
  +++ VariableSizePool.java	2 May 2002 19:03:47 -0000	1.5
  @@ -5,7 +5,7 @@
    * version 1.1, a copy of which has been included with this distribution in
    * the LICENSE.txt file.
    */
  -package org.apache.avalon.excalibur.mpool;
  +package org.apache.excalibur.mpool;
   
   import org.apache.avalon.excalibur.collections.Buffer;
   import org.apache.avalon.excalibur.collections.BufferUnderflowException;
  @@ -17,7 +17,7 @@
    * Please note that this pool offers no resource limiting whatsoever.
    *
    * @author <a href="mailto:bloritsch@apache.org">Berin Loritsch</a>
  - * @version CVS $Revision: 1.4 $ $Date: 2002/03/16 00:05:48 $
  + * @version CVS $Revision: 1.5 $ $Date: 2002/05/02 19:03:47 $
    * @since 4.1
    */
   public final class VariableSizePool
  
  
  
  1.4       +3 -3      jakarta-avalon-excalibur/fortress/src/test/org/apache/excalibur/mpool/test/ClassInstanceObjectFactory.java
  
  Index: ClassInstanceObjectFactory.java
  ===================================================================
  RCS file: /home/cvs/jakarta-avalon-excalibur/fortress/src/test/org/apache/excalibur/mpool/test/ClassInstanceObjectFactory.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- ClassInstanceObjectFactory.java	3 Apr 2002 13:46:35 -0000	1.3
  +++ ClassInstanceObjectFactory.java	2 May 2002 19:03:47 -0000	1.4
  @@ -5,16 +5,16 @@
    * version 1.1, a copy of which has been included with this distribution in
    * the LICENSE.txt file.
    */
  -package org.apache.avalon.excalibur.mpool.test;
  +package org.apache.excalibur.mpool.test;
   
   import java.util.HashMap;
  -import org.apache.avalon.excalibur.mpool.ObjectFactory;
  +import org.apache.excalibur.mpool.ObjectFactory;
   import org.apache.avalon.framework.activity.Disposable;
   import org.apache.avalon.framework.logger.Logger;
   
   /**
    * @author <a href="mailto:leif@tanukisoftware.com">Leif Mortenson</a>
  - * @version CVS $Revision: 1.3 $ $Date: 2002/04/03 13:46:35 $
  + * @version CVS $Revision: 1.4 $ $Date: 2002/05/02 19:03:47 $
    * @since 4.1
    */
   public class ClassInstanceObjectFactory
  
  
  
  1.7       +3 -3      jakarta-avalon-excalibur/fortress/src/test/org/apache/excalibur/mpool/test/MultiThreadedPoolComparisonProfile.java
  
  Index: MultiThreadedPoolComparisonProfile.java
  ===================================================================
  RCS file: /home/cvs/jakarta-avalon-excalibur/fortress/src/test/org/apache/excalibur/mpool/test/MultiThreadedPoolComparisonProfile.java,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- MultiThreadedPoolComparisonProfile.java	3 Apr 2002 13:46:35 -0000	1.6
  +++ MultiThreadedPoolComparisonProfile.java	2 May 2002 19:03:47 -0000	1.7
  @@ -5,9 +5,9 @@
    * version 1.1, a copy of which has been included with this distribution in
    * the LICENSE.txt file.
    */
  -package org.apache.avalon.excalibur.mpool.test;
  +package org.apache.excalibur.mpool.test;
   
  -import org.apache.avalon.excalibur.mpool.Pool;
  +import org.apache.excalibur.mpool.Pool;
   import org.apache.avalon.excalibur.pool.Poolable;
   import org.apache.avalon.excalibur.testcase.CascadingAssertionFailedError;
   import org.apache.avalon.excalibur.testcase.LatchedThreadGroup;
  @@ -19,7 +19,7 @@
    *  given a single access thread.
    *
    * @author <a href="mailto:leif@tanukisoftware.com">Leif Mortenson</a>
  - * @version $Id: MultiThreadedPoolComparisonProfile.java,v 1.6 2002/04/03 13:46:35 leif Exp $
  + * @version $Id: MultiThreadedPoolComparisonProfile.java,v 1.7 2002/05/02 19:03:47 bloritsch Exp $
    */
   public class MultiThreadedPoolComparisonProfile
       extends PoolComparisonProfileAbstract
  
  
  
  1.11      +6 -6      jakarta-avalon-excalibur/fortress/src/test/org/apache/excalibur/mpool/test/PoolComparisonProfileAbstract.java
  
  Index: PoolComparisonProfileAbstract.java
  ===================================================================
  RCS file: /home/cvs/jakarta-avalon-excalibur/fortress/src/test/org/apache/excalibur/mpool/test/PoolComparisonProfileAbstract.java,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- PoolComparisonProfileAbstract.java	3 Apr 2002 13:46:35 -0000	1.10
  +++ PoolComparisonProfileAbstract.java	2 May 2002 19:03:47 -0000	1.11
  @@ -5,13 +5,13 @@
    * version 1.1, a copy of which has been included with this distribution in
    * the LICENSE.txt file.
    */
  -package org.apache.avalon.excalibur.mpool.test;
  +package org.apache.excalibur.mpool.test;
   
   import junit.framework.TestCase;
  -import org.apache.avalon.excalibur.mpool.FixedSizePool;
  -import org.apache.avalon.excalibur.mpool.ObjectFactory;
  -import org.apache.avalon.excalibur.mpool.Pool;
  -import org.apache.avalon.excalibur.mpool.VariableSizePool;
  +import org.apache.excalibur.mpool.FixedSizePool;
  +import org.apache.excalibur.mpool.ObjectFactory;
  +import org.apache.excalibur.mpool.Pool;
  +import org.apache.excalibur.mpool.VariableSizePool;
   import org.apache.avalon.excalibur.pool.ResourceLimitingPool;
   import org.apache.avalon.framework.logger.LogEnabled;
   import org.apache.avalon.framework.logger.LogKitLogger;
  @@ -21,7 +21,7 @@
    * Used as a basis for the PoolComparisonProfile Tests
    *
    * @author <a href="mailto:leif@tanukisoftware.com">Leif Mortenson</a>
  - * @version $Id: PoolComparisonProfileAbstract.java,v 1.10 2002/04/03 13:46:35 leif Exp $
  + * @version $Id: PoolComparisonProfileAbstract.java,v 1.11 2002/05/02 19:03:47 bloritsch Exp $
    */
   public abstract class PoolComparisonProfileAbstract
       extends TestCase
  
  
  
  1.7       +3 -3      jakarta-avalon-excalibur/fortress/src/test/org/apache/excalibur/mpool/test/SingleThreadedPoolComparisonProfile.java
  
  Index: SingleThreadedPoolComparisonProfile.java
  ===================================================================
  RCS file: /home/cvs/jakarta-avalon-excalibur/fortress/src/test/org/apache/excalibur/mpool/test/SingleThreadedPoolComparisonProfile.java,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- SingleThreadedPoolComparisonProfile.java	3 Apr 2002 13:46:35 -0000	1.6
  +++ SingleThreadedPoolComparisonProfile.java	2 May 2002 19:03:47 -0000	1.7
  @@ -5,9 +5,9 @@
    * version 1.1, a copy of which has been included with this distribution in
    * the LICENSE.txt file.
    */
  -package org.apache.avalon.excalibur.mpool.test;
  +package org.apache.excalibur.mpool.test;
   
  -import org.apache.avalon.excalibur.mpool.Pool;
  +import org.apache.excalibur.mpool.Pool;
   import org.apache.avalon.excalibur.pool.Poolable;
   import org.apache.avalon.framework.activity.Disposable;
   
  @@ -16,7 +16,7 @@
    *  given a single access thread.
    *
    * @author <a href="mailto:leif@tanukisoftware.com">Leif Mortenson</a>
  - * @version $Id: SingleThreadedPoolComparisonProfile.java,v 1.6 2002/04/03 13:46:35 leif Exp $
  + * @version $Id: SingleThreadedPoolComparisonProfile.java,v 1.7 2002/05/02 19:03:47 bloritsch Exp $
    */
   public class SingleThreadedPoolComparisonProfile
       extends PoolComparisonProfileAbstract
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>