You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by rw...@apache.org on 2003/01/07 19:04:52 UTC

cvs commit: jakarta-commons/collections/src/test/org/apache/commons/collections/primitives TestArrayUnsignedShortList.java TestAll.java

rwaldhoff    2003/01/07 10:04:52

  Modified:    collections/src/test/org/apache/commons/collections/primitives
                        TestAll.java
  Added:       collections/src/java/org/apache/commons/collections/primitives
                        ArrayUnsignedShortList.java
               collections/src/test/org/apache/commons/collections/primitives
                        TestArrayUnsignedShortList.java
  Log:
  add ArrayUnsignedShortList, and tests
  
  Revision  Changes    Path
  1.1                  jakarta-commons/collections/src/java/org/apache/commons/collections/primitives/ArrayUnsignedShortList.java
  
  Index: ArrayUnsignedShortList.java
  ===================================================================
  /*
   * $Header: /home/cvs/jakarta-commons/collections/src/java/org/apache/commons/collections/primitives/ArrayUnsignedShortList.java,v 1.1 2003/01/07 18:04:51 rwaldhoff Exp $
   * $Revision: 1.1 $
   * $Date: 2003/01/07 18:04:51 $
   *
   * ====================================================================
   *
   * The Apache Software License, Version 1.1
   *
   * Copyright (c) 2002-2003 The Apache Software Foundation.  All rights
   * reserved.
   *
   * Redistribution and use in source and binary forms, with or without
   * modification, 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 acknowlegement:
   *       "This product includes software developed by the
   *        Apache Software Foundation (http://www.apache.org/)."
   *    Alternately, this acknowlegement may appear in the software itself,
   *    if and wherever such third-party acknowlegements normally appear.
   *
   * 4. The names "The Jakarta Project", "Commons", 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 names without prior written
   *    permission of the Apache Group.
   *
   * 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 (INCLUDING, 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.commons.collections.primitives;
  
  import java.io.IOException;
  import java.io.ObjectInputStream;
  import java.io.ObjectOutputStream;
  import java.io.Serializable;
  
  /**
   * A list of unsigned 16-bit values backed by a <code>short</code> array.
   * Mutators on this class will reject any <code>int</code> that does not
   * express an unsigned 16-bit value.
   *
   * @version $Revision: 1.1 $ $Date: 2003/01/07 18:04:51 $
   * @author Rodney Waldhoff 
   */
  public class ArrayUnsignedShortList extends AbstractRandomAccessIntList implements IntList, Serializable {
  
      // constructors
      //-------------------------------------------------------------------------
  
      protected ArrayUnsignedShortList() {
          this(8);
      }    
  
      protected ArrayUnsignedShortList(int initialCapacity) {
          if(initialCapacity < 0) {
              throw new IllegalArgumentException("capacity " + initialCapacity);
          }
          _data = new short[initialCapacity];
          _size = 0;
      }    
  
      // IntList methods
      //-------------------------------------------------------------------------
  
      public int get(int index) {
          checkRange(index);
          return toInt(_data[index]);
      }
      
      public int size() {
          return _size;
      }
      
      public int removeElementAt(int index) {
          checkRange(index);
          incrModCount();
          int oldval = _data[index];
          int numtomove = _size - index - 1;
          if(numtomove > 0) {
              System.arraycopy(_data,index+1,_data,index,numtomove);
          }
          _size--;
          return oldval;
      }
      
      public int set(int index, int element) {
          assertValidUnsignedShort(element);
          checkRange(index);
          incrModCount();
          int oldval = toInt(_data[index]);
          _data[index] = fromInt(element);
          return oldval;
      }
          
      public void add(int index, int element) {
          assertValidUnsignedShort(element);
          checkRangeIncludingEndpoint(index);
          incrModCount();
          ensureCapacity(_size+1);
          int numtomove = _size-index;
          System.arraycopy(_data,index,_data,index+1,numtomove);
          _data[index] = fromInt(element);
          _size++;
      }
  
      // capacity methods
      //-------------------------------------------------------------------------
  
      public void ensureCapacity(int mincap) {
          incrModCount();
          if(mincap > _data.length) {
              int newcap = (_data.length * 3)/2 + 1;
              short[] olddata = _data;
              _data = new short[newcap < mincap ? mincap : newcap];
              System.arraycopy(olddata,0,_data,0,_size);
          }
      }
  
      public void trimToSize() {
          incrModCount();
          if(_size < _data.length) {
              short[] olddata = _data;
              _data = new short[_size];
              System.arraycopy(olddata,0,_data,0,_size);
          }
      }
  
      // private methods
      //-------------------------------------------------------------------------
  
      private final int toInt(short value) { 
          return ((int)value)&MAX_VALUE;
      }
  
      private final short fromInt(int value) {
          return (short)(value&MAX_VALUE);
      }
  
      private final void assertValidUnsignedShort(int value) throws IllegalArgumentException {
          if(value > MAX_VALUE) {
              throw new IllegalArgumentException(value + " > " + MAX_VALUE);
          }
          if(value < MIN_VALUE) {
              throw new IllegalArgumentException(value + " < " + MIN_VALUE);
          }
      }
  
      private void writeObject(ObjectOutputStream out) throws IOException{
          out.defaultWriteObject();
          out.writeInt(_data.length);
          for(int i=0;i<_size;i++) {
              out.writeShort(_data[i]);
          }
      }
  
      private void readObject(ObjectInputStream in) throws IOException, ClassNotFoundException {
          in.defaultReadObject();
          _data = new short[in.readInt()];
          for(int i=0;i<_size;i++) {
              _data[i] = in.readShort();
          }
      }
      
      private final void checkRange(int index) {
          if(index < 0 || index >= _size) {
              throw new IndexOutOfBoundsException("Should be at least 0 and less than " + _size + ", found " + index);
          }
      }
  
      private final void checkRangeIncludingEndpoint(int index) {
          if(index < 0 || index > _size) {
              throw new IndexOutOfBoundsException("Should be at least 0 and at most " + _size + ", found " + index);
          }
      }
  
      // attributes
      //-------------------------------------------------------------------------
      
      /** The maximum possible unsigned 16-bit value. */
      public static final int MAX_VALUE = 0xFFFF;
  
  
      /** The minimum possible unsigned 16-bit value. */
      public static final int MIN_VALUE = 0;
  
      private transient short[] _data = null;
      private int _size = 0;
  
  }
  
  
  
  1.6       +5 -5      jakarta-commons/collections/src/test/org/apache/commons/collections/primitives/TestAll.java
  
  Index: TestAll.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/collections/src/test/org/apache/commons/collections/primitives/TestAll.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- TestAll.java	7 Jan 2003 13:24:52 -0000	1.5
  +++ TestAll.java	7 Jan 2003 18:04:52 -0000	1.6
  @@ -83,7 +83,7 @@
           TestSuite suite = new TestSuite();
           
           suite.addTest(TestArrayIntList.suite());
  -        //suite.addTest(TestArrayUnsignedShortList.suite());
  +        suite.addTest(TestArrayUnsignedShortList.suite());
           
           suite.addTest(TestUnsignedByteArrayList.suite());
           suite.addTest(TestShortArrayList.suite());
  
  
  
  1.1                  jakarta-commons/collections/src/test/org/apache/commons/collections/primitives/TestArrayUnsignedShortList.java
  
  Index: TestArrayUnsignedShortList.java
  ===================================================================
  /*
   * $Header: /home/cvs/jakarta-commons/collections/src/test/org/apache/commons/collections/primitives/TestArrayUnsignedShortList.java,v 1.1 2003/01/07 18:04:52 rwaldhoff Exp $
   * $Revision: 1.1 $
   * $Date: 2003/01/07 18:04:52 $
   *
   * ====================================================================
   *
   * The Apache Software License, Version 1.1
   *
   * Copyright (c) 2002-2003 The Apache Software Foundation.  All rights
   * reserved.
   *
   * Redistribution and use in source and binary forms, with or without
   * modification, 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 acknowlegement:
   *       "This product includes software developed by the
   *        Apache Software Foundation (http://www.apache.org/)."
   *    Alternately, this acknowlegement may appear in the software itself,
   *    if and wherever such third-party acknowlegements normally appear.
   *
   * 4. The names "The Jakarta Project", "Commons", 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 names without prior written
   *    permission of the Apache Group.
   *
   * 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 (INCLUDING, 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.commons.collections.primitives;
  
  import java.util.List;
  
  import junit.framework.Test;
  import junit.framework.TestSuite;
  
  import org.apache.commons.collections.BulkTest;
  import org.apache.commons.collections.TestList;
  
  /**
   * @version $Revision: 1.1 $ $Date: 2003/01/07 18:04:52 $
   * @author Rodney Waldhoff
   */
  public class TestArrayUnsignedShortList extends TestList {
  
      //------------------------------------------------------------ Conventional
  
      public TestArrayUnsignedShortList(String testName) {
          super(testName);
      }
  
      public static Test suite() {
          TestSuite suite = BulkTest.makeSuite(TestArrayUnsignedShortList.class);
          return suite;
      }
  
  
      //------------------------------------------------------- TestList interface
  
      public List makeEmptyList() {
          return new IntListList(new ArrayUnsignedShortList());
      }
  
      /**
       *  Returns small Integer objects for testing.
       */
      protected Object[] getFullElements() {
          Integer[] result = new Integer[19];
          for (int i = 0; i < result.length; i++) {
              result[i] = new Integer(i + 19);
          }
          return result;
      }
  
      /**
       *  Returns small Integer objects for testing.
       */
      protected Object[] getOtherElements() {
          Integer[] result = new Integer[16];
          for (int i = 0; i < result.length; i++) {
              result[i] = new Integer(i + 48);
          }
          return result;
      }
  
      // TODO:  Create canonical collections in CVS
  
      public void testCanonicalEmptyCollectionExists() {
      }
  
      public void testCanonicalFullCollectionExists() {
      }
  
      public void testEmptyListCompatibility() {
      }
  
      public void testFullListCompatibility() {
      }
  
      //------------------------------------------------------------------- Tests
  
      public void testZeroInitialCapacityIsValid() {
          ArrayUnsignedShortList list = new ArrayUnsignedShortList(0);
      }
  }
  
  
  

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