From 838c1e7d0e75873054579a8dcba9889464ff75a3 Mon Sep 17 00:00:00 2001 From: Henri Yandell Date: Sat, 22 Jan 2005 04:22:12 +0000 Subject: [PATCH] primitive overloads added for add(array, int index, element) git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk@138014 13f79535-47bb-0310-9956-ffa450edef68 --- .../org/apache/commons/lang/ArrayUtils.java | 274 +++++++++++++++++- .../commons/lang/ArrayUtilsAddTest.java | 84 +++++- 2 files changed, 351 insertions(+), 7 deletions(-) diff --git a/src/java/org/apache/commons/lang/ArrayUtils.java b/src/java/org/apache/commons/lang/ArrayUtils.java index 427e164bd..0fd1a590f 100644 --- a/src/java/org/apache/commons/lang/ArrayUtils.java +++ b/src/java/org/apache/commons/lang/ArrayUtils.java @@ -44,7 +44,7 @@ import org.apache.commons.lang.builder.ToStringStyle; * @author Ashwin S * @author Maarten Coene * @since 2.0 - * @version $Id: ArrayUtils.java,v 1.49 2004/10/10 18:56:16 scolebourne Exp $ + * @version $Id: ArrayUtils.java,v 1.50 2005/01/22 04:22:12 bayard Exp $ */ public class ArrayUtils { @@ -3191,25 +3191,287 @@ public class ArrayUtils { * (index < 0 || index > array.length). */ public static Object[] add(Object[] array, int index, Object element) { + Class clss = null; + if(array != null) { + clss = array.getClass().getComponentType(); + } else + if(element != null) { + clss = element.getClass(); + } else { + return new Object[] { null }; + } + return (Object[]) add( (Object) array, index, element, clss ); + } + + /** + *

Inserts the specified element at the specified position in the array. + * Shifts the element currently at that position (if any) and any subsequent + * elements to the right (adds one to their indices).

+ * + *

This method returns a new array with the same elements of the input + * array plus the given element on the specified position. The component + * type of the returned array is always the same as that of the input + * array.

+ * + *

If the input array is null, a new one element array is returned + * whose component type is the same as the element.

+ * + *
+     * ArrayUtils.add(null, 0, true)          = [true]
+     * ArrayUtils.add([true], 0, false)       = [false, true]
+     * ArrayUtils.add([false], 1, true)       = [false, true]
+     * ArrayUtils.add([true, false], 1, true) = [true, true, false]
+     * 
+ * + * @param array the array to add the element to, may be null + * @param index the position of the new object + * @param element the object to add + * @return A new array containing the existing elements and the new element + * @throws IndexOutOfBoundsException if the index is out of range + * (index < 0 || index > array.length). + */ + public static boolean[] add(boolean[] array, int index, boolean element) { + return (boolean[]) add( (Object) array, index, new Boolean(element), Boolean.TYPE ); + } + + /** + *

Inserts the specified element at the specified position in the array. + * Shifts the element currently at that position (if any) and any subsequent + * elements to the right (adds one to their indices).

+ * + *

This method returns a new array with the same elements of the input + * array plus the given element on the specified position. The component + * type of the returned array is always the same as that of the input + * array.

+ * + *

If the input array is null, a new one element array is returned + * whose component type is the same as the element.

+ * + *
+     * ArrayUtils.add(null, 0, 'a')            = ['a']
+     * ArrayUtils.add(['a'], 0, 'b')           = ['b', 'a']
+     * ArrayUtils.add(['a', 'b'], 0, 'c')      = ['c', 'a', 'b']
+     * ArrayUtils.add(['a', 'b'], 1, 'k')      = ['a', 'k', 'b']
+     * ArrayUtils.add(['a', 'b', 'c'], 1, 't') = ['a', 't', 'b', 'c']
+     * 
+ * + * @param array the array to add the element to, may be null + * @param index the position of the new object + * @param element the object to add + * @return A new array containing the existing elements and the new element + * @throws IndexOutOfBoundsException if the index is out of range + * (index < 0 || index > array.length). + */ + public static char[] add(char[] array, int index, char element) { + return (char[]) add( (Object) array, index, new Character(element), Character.TYPE ); + } + + /** + *

Inserts the specified element at the specified position in the array. + * Shifts the element currently at that position (if any) and any subsequent + * elements to the right (adds one to their indices).

+ * + *

This method returns a new array with the same elements of the input + * array plus the given element on the specified position. The component + * type of the returned array is always the same as that of the input + * array.

+ * + *

If the input array is null, a new one element array is returned + * whose component type is the same as the element.

+ * + *
+     * ArrayUtils.add([1], 0, 2)         = [2, 1]
+     * ArrayUtils.add([2, 6], 2, 3)      = [2, 6, 3]
+     * ArrayUtils.add([2, 6], 0, 1)      = [1, 2, 6]
+     * ArrayUtils.add([2, 6, 3], 2, 1)   = [2, 6, 1, 3]
+     * 
+ * + * @param array the array to add the element to, may be null + * @param index the position of the new object + * @param element the object to add + * @return A new array containing the existing elements and the new element + * @throws IndexOutOfBoundsException if the index is out of range + * (index < 0 || index > array.length). + */ + public static byte[] add(byte[] array, int index, byte element) { + return (byte[]) add( (Object) array, index, new Byte(element), Byte.TYPE ); + } + + /** + *

Inserts the specified element at the specified position in the array. + * Shifts the element currently at that position (if any) and any subsequent + * elements to the right (adds one to their indices).

+ * + *

This method returns a new array with the same elements of the input + * array plus the given element on the specified position. The component + * type of the returned array is always the same as that of the input + * array.

+ * + *

If the input array is null, a new one element array is returned + * whose component type is the same as the element.

+ * + *
+     * ArrayUtils.add([1], 0, 2)         = [2, 1]
+     * ArrayUtils.add([2, 6], 2, 10)     = [2, 6, 10]
+     * ArrayUtils.add([2, 6], 0, -4)     = [-4, 2, 6]
+     * ArrayUtils.add([2, 6, 3], 2, 1)   = [2, 6, 1, 3]
+     * 
+ * + * @param array the array to add the element to, may be null + * @param index the position of the new object + * @param element the object to add + * @return A new array containing the existing elements and the new element + * @throws IndexOutOfBoundsException if the index is out of range + * (index < 0 || index > array.length). + */ + public static short[] add(short[] array, int index, short element) { + return (short[]) add( (Object) array, index, new Short(element), Short.TYPE ); + } + + /** + *

Inserts the specified element at the specified position in the array. + * Shifts the element currently at that position (if any) and any subsequent + * elements to the right (adds one to their indices).

+ * + *

This method returns a new array with the same elements of the input + * array plus the given element on the specified position. The component + * type of the returned array is always the same as that of the input + * array.

+ * + *

If the input array is null, a new one element array is returned + * whose component type is the same as the element.

+ * + *
+     * ArrayUtils.add([1], 0, 2)         = [2, 1]
+     * ArrayUtils.add([2, 6], 2, 10)     = [2, 6, 10]
+     * ArrayUtils.add([2, 6], 0, -4)     = [-4, 2, 6]
+     * ArrayUtils.add([2, 6, 3], 2, 1)   = [2, 6, 1, 3]
+     * 
+ * + * @param array the array to add the element to, may be null + * @param index the position of the new object + * @param element the object to add + * @return A new array containing the existing elements and the new element + * @throws IndexOutOfBoundsException if the index is out of range + * (index < 0 || index > array.length). + */ + public static int[] add(int[] array, int index, int element) { + return (int[]) add( (Object) array, index, new Integer(element), Integer.TYPE ); + } + + /** + *

Inserts the specified element at the specified position in the array. + * Shifts the element currently at that position (if any) and any subsequent + * elements to the right (adds one to their indices).

+ * + *

This method returns a new array with the same elements of the input + * array plus the given element on the specified position. The component + * type of the returned array is always the same as that of the input + * array.

+ * + *

If the input array is null, a new one element array is returned + * whose component type is the same as the element.

+ * + *
+     * ArrayUtils.add([1L], 0, 2L)           = [2L, 1L]
+     * ArrayUtils.add([2L, 6L], 2, 10L)      = [2L, 6L, 10L]
+     * ArrayUtils.add([2L, 6L], 0, -4L)      = [-4L, 2L, 6L]
+     * ArrayUtils.add([2L, 6L, 3L], 2, 1L)   = [2L, 6L, 1L, 3L]
+     * 
+ * + * @param array the array to add the element to, may be null + * @param index the position of the new object + * @param element the object to add + * @return A new array containing the existing elements and the new element + * @throws IndexOutOfBoundsException if the index is out of range + * (index < 0 || index > array.length). + */ + public static long[] add(long[] array, int index, long element) { + return (long[]) add( (Object) array, index, new Long(element), Long.TYPE ); + } + + /** + *

Inserts the specified element at the specified position in the array. + * Shifts the element currently at that position (if any) and any subsequent + * elements to the right (adds one to their indices).

+ * + *

This method returns a new array with the same elements of the input + * array plus the given element on the specified position. The component + * type of the returned array is always the same as that of the input + * array.

+ * + *

If the input array is null, a new one element array is returned + * whose component type is the same as the element.

+ * + *
+     * ArrayUtils.add([1.1f], 0, 2.2f)               = [2.2f, 1.1f]
+     * ArrayUtils.add([2.3f, 6.4f], 2, 10.5f)        = [2.3f, 6.4f, 10.5f]
+     * ArrayUtils.add([2.6f, 6.7f], 0, -4.8f)        = [-4.8f, 2.6f, 6.7f]
+     * ArrayUtils.add([2.9f, 6.0f, 0.3f], 2, 1.0f)   = [2.9f, 6.0f, 1.0f, 0.3f]
+     * 
+ * + * @param array the array to add the element to, may be null + * @param index the position of the new object + * @param element the object to add + * @return A new array containing the existing elements and the new element + * @throws IndexOutOfBoundsException if the index is out of range + * (index < 0 || index > array.length). + */ + public static float[] add(float[] array, int index, float element) { + return (float[]) add( (Object) array, index, new Float(element), Float.TYPE ); + } + + /** + *

Inserts the specified element at the specified position in the array. + * Shifts the element currently at that position (if any) and any subsequent + * elements to the right (adds one to their indices).

+ * + *

This method returns a new array with the same elements of the input + * array plus the given element on the specified position. The component + * type of the returned array is always the same as that of the input + * array.

+ * + *

If the input array is null, a new one element array is returned + * whose component type is the same as the element.

+ * + *
+     * ArrayUtils.add([1.1], 0, 2.2)              = [2.2, 1.1]
+     * ArrayUtils.add([2.3, 6.4], 2, 10.5)        = [2.3, 6.4, 10.5]
+     * ArrayUtils.add([2.6, 6.7], 0, -4.8)        = [-4.8, 2.6, 6.7]
+     * ArrayUtils.add([2.9, 6.0, 0.3], 2, 1.0)    = [2.9, 6.0, 1.0, 0.3]
+     * 
+ * + * @param array the array to add the element to, may be null + * @param index the position of the new object + * @param element the object to add + * @return A new array containing the existing elements and the new element + * @throws IndexOutOfBoundsException if the index is out of range + * (index < 0 || index > array.length). + */ + public static double[] add(double[] array, int index, double element) { + return (double[]) add( (Object) array, index, new Double(element), Double.TYPE ); + } + + private static Object add(Object array, int index, Object element, Class clss) { if (array == null) { if (index != 0) { throw new IndexOutOfBoundsException("Index: " + index + ", Length: 0"); } - Object joinedArray = Array.newInstance(element != null ? element.getClass() : Object.class, 1); + Object joinedArray = Array.newInstance(clss, 1); Array.set(joinedArray, 0, element); - return (Object[]) joinedArray; + return joinedArray; } - int length = array.length; + int length = Array.getLength(array); if (index > length || index < 0) { throw new IndexOutOfBoundsException("Index: " + index + ", Length: " + length); } - Object result = Array.newInstance(array.getClass().getComponentType(), length + 1); + Object result = Array.newInstance(clss, length + 1); System.arraycopy(array, 0, result, 0, index); Array.set(result, index, element); if (index < length) { System.arraycopy(array, index, result, index + 1, length - index); } - return (Object[]) result; + return result; } /** diff --git a/src/test/org/apache/commons/lang/ArrayUtilsAddTest.java b/src/test/org/apache/commons/lang/ArrayUtilsAddTest.java index 8785c6a68..803565794 100644 --- a/src/test/org/apache/commons/lang/ArrayUtilsAddTest.java +++ b/src/test/org/apache/commons/lang/ArrayUtilsAddTest.java @@ -27,7 +27,7 @@ import junit.textui.TestRunner; * Tests ArrayUtils add methods. * * @author Gary D. Gregory - * @version $Id: ArrayUtilsAddTest.java,v 1.4 2004/10/09 11:55:51 scolebourne Exp $ + * @version $Id: ArrayUtilsAddTest.java,v 1.5 2005/01/22 04:22:12 bayard Exp $ */ public class ArrayUtilsAddTest extends TestCase { public static void main(String[] args) { @@ -285,6 +285,88 @@ public class ArrayUtilsAddTest extends TestCase { assertEquals("2", result2[1]); assertEquals("4", result2[2]); assertEquals("5", result2[3]); + + // boolean tests + boolean[] booleanArray = ArrayUtils.add( null, 0, true ); + assertTrue( Arrays.equals( new boolean[] { true }, booleanArray ) ); + booleanArray = ArrayUtils.add( new boolean[] { true }, 0, false); + assertTrue( Arrays.equals( new boolean[] { false, true }, booleanArray ) ); + booleanArray = ArrayUtils.add( new boolean[] { false }, 1, true); + assertTrue( Arrays.equals( new boolean[] { false, true }, booleanArray ) ); + booleanArray = ArrayUtils.add( new boolean[] { true, false }, 1, true); + assertTrue( Arrays.equals( new boolean[] { true, true, false }, booleanArray ) ); + + // char tests + char[] charArray = ArrayUtils.add( (char[]) null, 0, 'a' ); + assertTrue( Arrays.equals( new char[] { 'a' }, charArray ) ); + charArray = ArrayUtils.add( new char[] { 'a' }, 0, 'b'); + assertTrue( Arrays.equals( new char[] { 'b', 'a' }, charArray ) ); + charArray = ArrayUtils.add( new char[] { 'a', 'b' }, 0, 'c'); + assertTrue( Arrays.equals( new char[] { 'c', 'a', 'b' }, charArray ) ); + charArray = ArrayUtils.add( new char[] { 'a', 'b' }, 1, 'k'); + assertTrue( Arrays.equals( new char[] { 'a', 'k', 'b' }, charArray ) ); + charArray = ArrayUtils.add( new char[] { 'a', 'b', 'c' }, 1, 't'); + assertTrue( Arrays.equals( new char[] { 'a', 't', 'b', 'c' }, charArray ) ); + + // short tests + short[] shortArray = ArrayUtils.add( new short[] { 1 }, 0, (short) 2); + assertTrue( Arrays.equals( new short[] { 2, 1 }, shortArray ) ); + shortArray = ArrayUtils.add( new short[] { 2, 6 }, 2, (short) 10); + assertTrue( Arrays.equals( new short[] { 2, 6, 10 }, shortArray ) ); + shortArray = ArrayUtils.add( new short[] { 2, 6 }, 0, (short) -4); + assertTrue( Arrays.equals( new short[] { -4, 2, 6 }, shortArray ) ); + shortArray = ArrayUtils.add( new short[] { 2, 6, 3 }, 2, (short) 1); + assertTrue( Arrays.equals( new short[] { 2, 6, 1, 3 }, shortArray ) ); + + // byte tests + byte[] byteArray = ArrayUtils.add( new byte[] { 1 }, 0, (byte) 2); + assertTrue( Arrays.equals( new byte[] { 2, 1 }, byteArray ) ); + byteArray = ArrayUtils.add( new byte[] { 2, 6 }, 2, (byte) 3); + assertTrue( Arrays.equals( new byte[] { 2, 6, 3 }, byteArray ) ); + byteArray = ArrayUtils.add( new byte[] { 2, 6 }, 0, (byte) 1); + assertTrue( Arrays.equals( new byte[] { 1, 2, 6 }, byteArray ) ); + byteArray = ArrayUtils.add( new byte[] { 2, 6, 3 }, 2, (byte) 1); + assertTrue( Arrays.equals( new byte[] { 2, 6, 1, 3 }, byteArray ) ); + + // int tests + int[] intArray = ArrayUtils.add( new int[] { 1 }, 0, 2); + assertTrue( Arrays.equals( new int[] { 2, 1 }, intArray ) ); + intArray = ArrayUtils.add( new int[] { 2, 6 }, 2, 10); + assertTrue( Arrays.equals( new int[] { 2, 6, 10 }, intArray ) ); + intArray = ArrayUtils.add( new int[] { 2, 6 }, 0, -4); + assertTrue( Arrays.equals( new int[] { -4, 2, 6 }, intArray ) ); + intArray = ArrayUtils.add( new int[] { 2, 6, 3 }, 2, 1); + assertTrue( Arrays.equals( new int[] { 2, 6, 1, 3 }, intArray ) ); + + // long tests + long[] longArray = ArrayUtils.add( new long[] { 1L }, 0, 2L); + assertTrue( Arrays.equals( new long[] { 2L, 1L }, longArray ) ); + longArray = ArrayUtils.add( new long[] { 2L, 6L }, 2, 10L); + assertTrue( Arrays.equals( new long[] { 2L, 6L, 10L }, longArray ) ); + longArray = ArrayUtils.add( new long[] { 2L, 6L }, 0, -4L); + assertTrue( Arrays.equals( new long[] { -4L, 2L, 6L }, longArray ) ); + longArray = ArrayUtils.add( new long[] { 2L, 6L, 3L }, 2, 1L); + assertTrue( Arrays.equals( new long[] { 2L, 6L, 1L, 3L }, longArray ) ); + + // float tests + float[] floatArray = ArrayUtils.add( new float[] { 1.1f }, 0, 2.2f); + assertTrue( Arrays.equals( new float[] { 2.2f, 1.1f }, floatArray ) ); + floatArray = ArrayUtils.add( new float[] { 2.3f, 6.4f }, 2, 10.5f); + assertTrue( Arrays.equals( new float[] { 2.3f, 6.4f, 10.5f }, floatArray ) ); + floatArray = ArrayUtils.add( new float[] { 2.6f, 6.7f }, 0, -4.8f); + assertTrue( Arrays.equals( new float[] { -4.8f, 2.6f, 6.7f }, floatArray ) ); + floatArray = ArrayUtils.add( new float[] { 2.9f, 6.0f, 0.3f }, 2, 1.0f); + assertTrue( Arrays.equals( new float[] { 2.9f, 6.0f, 1.0f, 0.3f }, floatArray ) ); + + // double tests + double[] doubleArray = ArrayUtils.add( new double[] { 1.1 }, 0, 2.2); + assertTrue( Arrays.equals( new double[] { 2.2, 1.1 }, doubleArray ) ); + doubleArray = ArrayUtils.add( new double[] { 2.3, 6.4 }, 2, 10.5); + assertTrue( Arrays.equals( new double[] { 2.3, 6.4, 10.5 }, doubleArray ) ); + doubleArray = ArrayUtils.add( new double[] { 2.6, 6.7 }, 0, -4.8); + assertTrue( Arrays.equals( new double[] { -4.8, 2.6, 6.7 }, doubleArray ) ); + doubleArray = ArrayUtils.add( new double[] { 2.9, 6.0, 0.3 }, 2, 1.0); + assertTrue( Arrays.equals( new double[] { 2.9, 6.0, 1.0, 0.3 }, doubleArray ) ); } }