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

org.rapidoid.commons.Deep Maven / Gradle / Ivy

The newest version!
/*-
 * #%L
 * rapidoid-commons
 * %%
 * Copyright (C) 2014 - 2018 Nikolche Mihajlovski and contributors
 * %%
 * 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.
 * #L%
 */

package org.rapidoid.commons;

import org.rapidoid.RapidoidThing;
import org.rapidoid.annotation.Authors;
import org.rapidoid.annotation.Since;
import org.rapidoid.cls.Cls;
import org.rapidoid.collection.AutoExpandingMap;
import org.rapidoid.collection.Coll;
import org.rapidoid.lambda.Mapper;

import java.util.Collection;
import java.util.Map;


@Authors("Nikolche Mihajlovski")
@Since("5.1.0")
public class Deep extends RapidoidThing {

	@SuppressWarnings("unchecked")
	public static Object copyOf(Object source, Mapper transformation) {
		Err.argMust(source != null, "source cannot be null!");

		if (Coll.isCollection(source)) {
			return copyOf((Collection) source, transformation);

		} else if (Coll.isMap(source)) {
			return copyOf((Map) source, transformation);

		} else if (source instanceof Object[]) {
			// FIXME support primitive arrays
			return copyOf((Object[]) source, transformation);

		} else {
			try {
				return transformation != null ? transformation.map(source) : source;
			} catch (Exception e) {
				throw new RuntimeException("Transformation error!", e);
			}
		}
	}

	@SuppressWarnings("unchecked")
	public static  Collection copyOf(Collection source, Mapper transformation) {
		Err.argMust(source != null, "source cannot be null!");

		Collection destination = newInstance(source);
		copy(destination, source, transformation);

		return destination;
	}

	@SuppressWarnings("unchecked")
	public static  void copy(Collection destination, Collection source, Mapper transformation) {
		Err.argMust(source != null, "source cannot be null!");
		Err.argMust(destination != null, "destination cannot be null!");

		destination.clear();
		for (Object el : source) {
			destination.add((T) copyOf(el, transformation));
		}
	}

	@SuppressWarnings("unchecked")
	public static  T[] copyOf(T[] source, Mapper transformation) {
		Err.argMust(source != null, "source cannot be null!");

		T[] destination = (T[]) newInstance(source);
		copy(destination, source, transformation);

		return destination;
	}

	@SuppressWarnings("unchecked")
	public static  void copy(T[] destination, T[] source, Mapper transformation) {
		Err.argMust(source != null, "source cannot be null!");
		Err.argMust(destination != null, "destination cannot be null!");
		Err.argMust(source.length == destination.length, "source and destination arrays must have the same length!");

		for (int i = 0; i < destination.length; i++) {
			destination[i] = (T) copyOf(source[i], transformation);
		}
	}

	@SuppressWarnings("unchecked")
	public static  Map copyOf(Map source, Mapper transformation) {
		Err.argMust(source != null, "source cannot be null!");

		Map destination = newInstance(source);
		copy(destination, source, transformation);

		return destination;
	}

	@SuppressWarnings("unchecked")
	public static  void copy(Map destination, Map source, Mapper transformation) {
		Err.argMust(source != null, "source cannot be null!");
		Err.argMust(destination != null, "destination cannot be null!");

		destination.clear();
		for (Map.Entry e : source.entrySet()) {
			K key = (K) copyOf(e.getKey(), transformation);
			V value = (V) copyOf(e.getValue(), transformation);
			destination.put(key, value);
		}
	}

	@SuppressWarnings("unchecked")
	private static  T newInstance(Object source) {
		if (source instanceof AutoExpandingMap) {
			AutoExpandingMap autoExpandingMap = (AutoExpandingMap) source;
			return (T) autoExpandingMap.copy();
		}

		return (T) Cls.newInstance(source.getClass());
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy