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

com.googlecode.jmapper.operations.analyzer.MapAnalyzer 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.analyzer;

import static com.googlecode.jmapper.conversions.implicit.ConversionAnalyzer.getConversionType;
import static com.googlecode.jmapper.enums.ConversionType.ABSENT;
import static com.googlecode.jmapper.enums.ConversionType.DEFINED;
import static com.googlecode.jmapper.enums.ConversionType.UNDEFINED;
import static com.googlecode.jmapper.enums.OperationType.BASIC_INSTRUCTION;
import static com.googlecode.jmapper.enums.OperationType.MAP;
import static com.googlecode.jmapper.enums.OperationType.MAP_WITH_MAPPED_ITEMS;
import static com.googlecode.jmapper.enums.OperationType.OBJECT;
import static com.googlecode.jmapper.util.ClassesManager.areMappedObjects;
import static com.googlecode.jmapper.util.ClassesManager.configChosen;
import static com.googlecode.jmapper.util.ClassesManager.getGenericMapKeyItem;
import static com.googlecode.jmapper.util.ClassesManager.getGenericMapValueItem;
import static com.googlecode.jmapper.util.ClassesManager.isAssignableFrom;
import static com.googlecode.jmapper.util.ClassesManager.isPutAllPermitted;
import static com.googlecode.jmapper.util.GeneralUtility.areBasic;
import static com.googlecode.jmapper.util.GeneralUtility.mapIsAssignableFrom;

import java.lang.reflect.Field;

import com.googlecode.jmapper.enums.ConversionType;
import com.googlecode.jmapper.operations.IOperationAnalyzer;
import com.googlecode.jmapper.operations.info.InfoMapOperation;
import com.googlecode.jmapper.operations.info.InfoOperation;
import com.googlecode.jmapper.xml.XML;

/**
 * This Class analyzes operations between Maps.
 * @author Alessandro Vurro
 *
 */
public final class MapAnalyzer implements IOperationAnalyzer{

	/** xml object */
	private final XML xml;
	
	/**
	 * Takes as input an xml object that represents the xml configuration.
	 * @param aXml xml object
	 */
	public MapAnalyzer(XML aXml) {
		xml = aXml;
	}

	public InfoOperation getInfoOperation(final Field destination,final Field source) {
		
		InfoMapOperation operation = (InfoMapOperation) new InfoMapOperation()
										.setInstructionType(MAP)
										.setConversionType(UNDEFINED);
		
		// if basic mapping is possible
		if(isPutAllPermitted(destination, source))
				return operation.setConversionType(ABSENT);
		
		// from this point we know that the map items are different
		operation.setConversionType(DEFINED);
		
		Class dKItem = getGenericMapKeyItem(destination);
		Class sKItem = getGenericMapKeyItem(source);
		Class dVItem = getGenericMapValueItem(destination);
		Class sVItem = getGenericMapValueItem(source);
		
		operation.keyValueUndefined();
				
		// if keys and/or values are mapped
		if(areMappedObjects(dKItem,sKItem,xml) || areMappedObjects(dVItem,sVItem,xml))
			operation.setInstructionType(MAP_WITH_MAPPED_ITEMS);

		// if destination is assignable from source apply basic mapping
		if(isAssignableFrom(dKItem,sKItem)) operation.setKeyInstructionType(BASIC_INSTRUCTION)
												.setKeyConversionType(ABSENT);
		
		// if destination is assignable from source apply basic mapping
		if(isAssignableFrom(dVItem,sVItem))	operation.setValueInstructionType(BASIC_INSTRUCTION)
												.setValueConversionType(ABSENT);
		
		// if key items are of basic type but different, apply conversion
		if(areBasic(dKItem,sKItem))			operation.setKeyInstructionType(BASIC_INSTRUCTION)
												.setKeyConversionType(getConversion(dKItem,sKItem));
		
		// if key items are of basic type but different, apply conversion
		if(areBasic(dVItem,sVItem))			operation.setValueInstructionType(BASIC_INSTRUCTION)
												.setValueConversionType(getConversion(dVItem,sVItem));
			
		// If key items are mapped objects
		if(areMappedObjects(dKItem,sKItem,xml)) operation.setKeyInstructionType(OBJECT)
				        								.setKeyConfigChosen(configChosen(dKItem,sKItem,xml));
						
		// If value items are mapped objects
		if(areMappedObjects(dVItem,sVItem,xml)) operation.setValueInstructionType(OBJECT)
					    								.setValueConfigChosen(configChosen(dVItem,sVItem,xml));
		
		return operation;
	}

	private static ConversionType getConversion(Class dClass,Class sClass){
		return dClass.isAssignableFrom(sClass)?UNDEFINED:getConversionType(dClass, sClass);
	}
	
	public boolean verifyConditions(Field destination, Field source) {
		return mapIsAssignableFrom(destination.getType()) &&  mapIsAssignableFrom(source.getType());
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy