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

com.googlecode.jmapper.operations.complex.ArrayOperation Maven / Gradle / Ivy

Go to download

JMapper Framework is a java bean mapper based on javassist. JMapper exposes interesting features as relational mapping, dynamic conversions and more

There is a newer version: 1.6.4
Show newest version
/**
 * Copyright (C) 2012 - 2016 Alessandro Vurro.
 *
 * 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 com.googlecode.jmapper.operations.complex;

import static com.googlecode.jmapper.util.ClassesManager.getArrayItemClass;
import static com.googlecode.jmapper.util.GeneralUtility.newLine;
import static com.googlecode.jmapper.util.GeneralUtility.replace$;

import java.util.HashMap;
import java.util.Map;

/**
 * This Class represents the mappings between Arrays.
 * @author Alessandro Vurro
 *
 */
public class ArrayOperation extends AComplexOperation {
	
	/** the count is used to differentiate local variables in case of recursive mappings.
	 *  Count is shared between all operation of this type, 
	 *  it's static for ensure the uniqueness
	 */ 
	private static int count = 0;
	
	/** @return Returns the name of the object shared between existingField and fieldToCreate methods.*/
	@Override
	protected String getSourceConvertedName(){
		return c("arrayOfDestination");
	}
	
	@Override
	protected StringBuilder existingField() {

		Map vars = new HashMap();
		
		vars.put("dClass"                ,getArrayItemClass(destinationField).getName());
		vars.put("source"                ,s(getSourceTreated()));
		vars.put("result"                ,c("newDestination"));
		vars.put("setDestination(result)",s(setDestination(c("newDestination"))));
		vars.put("destination"           ,c("dep"));
		vars.put("getDestination()"      ,s(getDestination()));
		
		return write(replace$("   $dClass[] $destination = $getDestination();"
				  + newLine + "   $dClass[] $result = ($dClass[]) java.util.Arrays.copyOf($destination, $destination.length + $source.length);"
				  + newLine + "   System.arraycopy($source, 0, $result, $destination.length, $source.length);"
				  + newLine + "$setDestination(result)",vars));
	}

	@Override
	protected StringBuilder fieldToCreate() {
		return setDestination(getSourceTreated());
	}

	@Override
	protected StringBuilder sharedCode(StringBuilder content) {

		Class itemDClass = getArrayItemClass(destinationField);
		Class itemSClass = getArrayItemClass(sourceField);
		Object sItem = "objectOfSoure"+count;
		Object conversion = applyImplicitConversion(info.getConversionType(), itemDClass, itemSClass, sItem);
		Map vars = new HashMap();
		
		vars.put("dClass"                ,itemDClass.getName());
		vars.put("sClass"                ,itemSClass.getName());
		vars.put("dItem"				 ,c("objectOfDestination"));
		vars.put("sItem"                 ,s(sItem));
		vars.put("source"                ,c("arrayOfSource"));
		vars.put("destination"           ,s(getSourceConverted()));
		vars.put("i"                     ,c("index"));
		vars.put("getSource()"           ,s(getSource()));
		vars.put("conversion"            ,s(conversion));
		
		count++;
		
		if(conversion.equals(sItem))return content;

		return write(replace$("   $sClass[] $source = $getSource();"
				  + newLine + "   $dClass[] $destination = new $dClass[$source.length];"
				  + newLine + "   for(int $i = $source.length-1;$i >=0;$i--){"
				  + newLine + "   $sClass $sItem = ($sClass) $source[$i];"
				  + newLine + "   $dClass $dItem = $conversion;"
				  + newLine + "   $destination[$i] = $dItem;"
				  + newLine + "   }"
				  + newLine + 	content + newLine,vars));
	}

	/**
	 * Appends the count to string.
	 * @param str
	 * @return str + count;
	 */
	private String c(String str){
		return str + count;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy