All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.powermock.utils.ArrayUtil Maven / Gradle / Ivy

There is a newer version: 2.0.9
Show newest version
/*
 *   Copyright 2016 the original author or authors.
 *
 *   Licensed under the Apache License, Version 2.0 (the "License");
 *   you may not use this file except in compliance with the License.
 *   You may obtain a copy of the License at
 *
 *        http://www.apache.org/licenses/LICENSE-2.0
 *
 *   Unless required by applicable law or agreed to in writing, software
 *   distributed under the License is distributed on an "AS IS" BASIS,
 *   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *   See the License for the specific language governing permissions and
 *   limitations under the License.
 *
 */

package org.powermock.utils;

import java.lang.reflect.Array;
import java.util.HashSet;
import java.util.Set;

import static java.util.Arrays.asList;

public class ArrayUtil {

    public static  T[] addAll(T[] array1, T[] array2) {
        if (isEmpty(array1)) {
            return clone(array2);
        } else if (isEmpty(array2)) {
            return clone(array1);
        }
        int newLength = array1.length + array2.length;
        T[] joinedArray = createNewArrayWithSameType(array1, newLength);
        System.arraycopy(array1, 0, joinedArray, 0, array1.length);
        System.arraycopy(array2, 0, joinedArray, array1.length, array2.length);
        return joinedArray;
    }

    private static  boolean isEmpty(T[] a) {
        return a == null || a.length == 0;
    }

    private static  T[] clone(T[] array) {
        if (array == null) {
            return null;
        }
        return array.clone();
    }

    @SuppressWarnings("unchecked")
    private static  T[] createNewArrayWithSameType(T[] arrayPrototype, int newLength) {
        return (T[]) Array.newInstance(arrayPrototype[0].getClass(), newLength);
    }
    
    public static String[] mergeArrays(final String[] firstArray, final String[] secondArray) {
        
        if (firstArray == null && secondArray == null){
            return null;
        }
        
        if (firstArray == null){
            return secondArray;
        }
    
        if (secondArray == null){
            return firstArray;
        }
        
        Set globalIgnore = new HashSet();
        
        globalIgnore.addAll(asList(firstArray));
        globalIgnore.addAll(asList(secondArray));
        
        return globalIgnore.toArray(new String[globalIgnore.size()]);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy