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

com.googlecode.jmapper.JMapper 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

The 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;

import static com.googlecode.jmapper.generation.MapperBuilder.from;
import static com.googlecode.jmapper.util.GeneralUtility.isNull;

import com.googlecode.jmapper.DestinationFactory;
import com.googlecode.jmapper.api.IJMapper;
import com.googlecode.jmapper.api.JMapperAPI;
import com.googlecode.jmapper.api.enums.MappingType;
import com.googlecode.jmapper.api.enums.NullPointerControl;
import com.googlecode.jmapper.config.Error;
import com.googlecode.jmapper.config.JmapperLog;
import com.googlecode.jmapper.enums.ChooseConfig;
import com.googlecode.jmapper.generation.MapperBuilder;

/**
 * JMapper takes as input two classes, Destination and Source.
* For Destination, we mean the instance that will be created or enhanced.
* For Source, we mean the instance containing the data.
* To execute the mapping, we must before configure one class between Destination and Source.

* for example: *

 * class Destination {
 * 
 *  @JMap
 *  String id;
 * 
 *  @JMap("sourceField")
 *  String destinationField;
 *  
 *  String other;
 *  
 *  // getter and setter
 * }
 * 
 * class Source {
 * 
 *  String id;
 * 
 *  String sourceField;
 *  
 *  String other;
 *  
 *  // getter and setter
 * }
 * 
* then invoke the method GetDestination.

* For example: *
	
 * Source source = new Source("id", "sourceField", "other");
 * JMapper<Destination,Source> jmapper = new JMapper<Destination,Source>(Destination.class, Source.class);
 * // new instance
 * Destination destination = jmapper.getDestination(source); 
 * // enrichment
 * jmapper.getDestination(destination, source);
* @author Alessandro Vurro * @param Destination class * @param Source Class */ public final class JMapper implements IJMapper{ /** mapper that contains all mapping combination */ private IMapper mapper; /** * This method returns a new instance of Destination Class with this setting: * * * * * * * * *
NullPointerControlSOURCE
MappingType of DestinationALL_FIELDS
MappingType of SourceALL_FIELDS
* @param source instance that contains the data * @return new instance of destination * @see NullPointerControl * @see MappingType */ public D getDestination(final S source){ try { return mapper.nullVSouAllAll(source); } catch (Exception e) { JmapperLog.error(e); } return null; } /** * This method returns a new instance of Destination Class with this setting: * * * * * * * * *
NullPointerControlNOT_ANY
MappingType of DestinationALL_FIELDS
MappingType of SourceALL_FIELDS
* @param source instance that contains the data * @return new instance of destination * @see NullPointerControl * @see MappingType */ public D getDestinationWithoutControl(final S source){ try { return mapper.nullVNotAllAll(source); } catch (Exception e) { JmapperLog.error(e); } return null; } /** * This Method returns the destination given in input enriched with data contained in source given in input
* with this setting: * * * * * * * * *
NullPointerControlALL
MappingType of DestinationALL_FIELDS
MappingType of SourceALL_FIELDS
* @param destination instance to enrich * @param source instance that contains the data * @return destination enriched * @see NullPointerControl * @see MappingType */ public D getDestination(D destination,final S source){ try { return mapper.vVAllAllAll(destination, source); }catch (Exception e) { JmapperLog.error(e); } return null; } /** * This Method returns the destination given in input enriched with data contained in source given in input
* with this setting: * * * * * * * * *
NullPointerControlNOT_ANY
MappingType of DestinationALL_FIELDS
MappingType of SourceALL_FIELDS
* @param destination instance to enrich * @param source instance that contains the data * @return destination enriched * @see NullPointerControl * @see MappingType */ public D getDestinationWithoutControl(D destination,final S source){ try { return mapper.vVNotAllAll(destination, source); } catch (Exception e) { JmapperLog.error(e); } return null; } /** * This method returns a new instance of Destination Class with this setting: * * * * * * * * *
NullPointerControlSOURCE
MappingType of DestinationALL_FIELDS
MappingType of SourcemtSource
* @param source instance that contains the data * @param mtSource type of mapping * @return new instance of destination * @see NullPointerControl * @see MappingType */ public D getDestination(final S source,final MappingType mtSource){ return getDestination(source,NullPointerControl.SOURCE,mtSource); } /** * This method returns a new instance of Destination Class with this setting: * * * * * * * * *
NullPointerControlnullPointerControl
MappingType of DestinationALL_FIELDS
MappingType of SourcemtSource
* @param source instance that contains the data * @param nullPointerControl type of control * @param mtSource type of mapping * @return new instance of destination * @see NullPointerControl * @see MappingType */ public D getDestination(final S source,final NullPointerControl nullPointerControl,final MappingType mtSource){ try{ switch(nullPointerControl){ case ALL: case DESTINATION: case SOURCE: switch(mtSource){ case ALL_FIELDS: return mapper.nullVSouAllAll(source); case ONLY_VALUED_FIELDS: return mapper.nullVSouAllValued(source); case ONLY_NULL_FIELDS: return mapper.get(source);} case NOT_ANY: switch(mtSource){ case ALL_FIELDS: return mapper.nullVNotAllAll(source); case ONLY_VALUED_FIELDS: return mapper.nullVNotAllValued(source); case ONLY_NULL_FIELDS: return mapper.get(source);}} }catch (Exception e) { JmapperLog.error(e); } return null; } /** * This Method returns the destination given in input enriched with data contained in source given in input
* with this setting: * * * * * * * * *
NullPointerControlALL
MappingType of DestinationmtDestination
MappingType of SourcemtSource
* @param destination instance to enrich * @param source instance that contains the data * @param mtDestination type of mapping of destination instance * @param mtSource type of mapping of source instance * @return destination enriched * @see NullPointerControl * @see MappingType */ public D getDestination(D destination,final S source,final MappingType mtDestination,final MappingType mtSource){ return getDestination(destination,source,NullPointerControl.ALL,mtDestination,mtSource); } /** * This Method returns the destination given in input enriched with data contained in source given in input
* with this setting: * * * * * * * * *
NullPointerControlnullPointerControl
MappingType of DestinationmtDestination
MappingType of SourcemtSource
* @param destination instance to enrich * @param source instance that contains the data * @param nullPointerControl type of control * @param mtDestination type of mapping of destination instance * @param mtSource type of mapping of source instance * @return destination enriched * @see NullPointerControl * @see MappingType */ public D getDestination(D destination,final S source,final NullPointerControl nullPointerControl,final MappingType mtDestination,final MappingType mtSource){ try{ switch(nullPointerControl){ case ALL: switch(mtDestination){ case ALL_FIELDS: switch(mtSource){ case ALL_FIELDS: return mapper.vVAllAllAll(destination,source); case ONLY_VALUED_FIELDS: return mapper.vVAllAllValued(destination,source); case ONLY_NULL_FIELDS: return mapper.vVAllValuedNull(destination,source); } case ONLY_VALUED_FIELDS: switch(mtSource){ case ALL_FIELDS: return mapper.vVAllValuedAll(destination,source); case ONLY_VALUED_FIELDS: return mapper.vVAllValuedValued(destination,source); case ONLY_NULL_FIELDS: return mapper.vVAllValuedNull(destination,source); } case ONLY_NULL_FIELDS: switch(mtSource){ case ALL_FIELDS: case ONLY_VALUED_FIELDS: return mapper.vVAllNullValued(destination,source); case ONLY_NULL_FIELDS: return destination;}} case DESTINATION: switch(mtDestination){ case ALL_FIELDS: switch(mtSource){ case ALL_FIELDS: return mapper.vVDesAllAll(destination,source); case ONLY_VALUED_FIELDS: return mapper.vVDesAllValued(destination,source); case ONLY_NULL_FIELDS: return mapper.vVDesValuedNull(destination,source); } case ONLY_VALUED_FIELDS: switch(mtSource){ case ALL_FIELDS: return mapper.vVDesValuedAll(destination,source); case ONLY_VALUED_FIELDS: return mapper.vVDesValuedValued(destination,source); case ONLY_NULL_FIELDS: return mapper.vVDesValuedNull(destination,source); } case ONLY_NULL_FIELDS: switch(mtSource){ case ALL_FIELDS: case ONLY_VALUED_FIELDS: return mapper.vVDesNullValued(destination,source); case ONLY_NULL_FIELDS: return destination;}} case SOURCE: switch(mtDestination){ case ALL_FIELDS: switch(mtSource){ case ALL_FIELDS: return mapper.vVSouAllAll(destination,source); case ONLY_VALUED_FIELDS: return mapper.vVSouAllValued(destination,source); case ONLY_NULL_FIELDS: return mapper.vVSouValuedNull(destination,source); } case ONLY_VALUED_FIELDS: switch(mtSource){ case ALL_FIELDS: return mapper.vVSouValuedAll(destination,source); case ONLY_VALUED_FIELDS: return mapper.vVSouValuedValued(destination,source); case ONLY_NULL_FIELDS: return mapper.vVSouValuedNull(destination,source); } case ONLY_NULL_FIELDS: switch(mtSource){ case ALL_FIELDS: case ONLY_VALUED_FIELDS: return mapper.vVSouNullValued(destination,source); case ONLY_NULL_FIELDS: return destination;}} case NOT_ANY: switch(mtDestination){ case ALL_FIELDS: switch(mtSource){ case ALL_FIELDS: return mapper.vVNotAllAll(destination,source); case ONLY_VALUED_FIELDS: return mapper.vVNotAllValued(destination,source); case ONLY_NULL_FIELDS: return mapper.vVNotValuedNull(destination,source); } case ONLY_VALUED_FIELDS: switch(mtSource){ case ALL_FIELDS: return mapper.vVNotValuedAll(destination,source); case ONLY_VALUED_FIELDS: return mapper.vVNotValuedValued(destination,source); case ONLY_NULL_FIELDS: return mapper.vVNotValuedNull(destination,source); } case ONLY_NULL_FIELDS: switch(mtSource){ case ALL_FIELDS: case ONLY_VALUED_FIELDS: return mapper.vVNotNullValued(destination,source); case ONLY_NULL_FIELDS: return destination;}} } }catch (Exception e) { JmapperLog.error(e); } return null; } /** * Constructs a JMapper that handles two classes: the class of destination and the class of source. *
Configuration will be searched automatically. * * @param destination the Destination Class * @param source the Source Class */ public JMapper(final Class destination,final Class source) { this(destination,source, undefinedConfig()); } /** * Constructs a JMapper that handles two classes: the class of destination and the class of source. *
The configuration evaluated is the one received in input. * * @param destination the Destination Class * @param source the Source Class * @param chooseConfig the configuration to load * @see ChooseConfig */ public JMapper(final Class destination,final Class source,final ChooseConfig chooseConfig) { this(destination,source,chooseConfig,undefinedXML()); } /** * Constructs a JMapper that handles two classes: the class of destination and the class of source. *
Taking configuration by API. * * @param destination the Destination Class * @param source the Source Class * @param api JMapperAPI configuration * @see ChooseConfig */ public JMapper(final Class destination,final Class source,final JMapperAPI api) { this(destination,source,api.toXStream().toString()); } /** * Constructs a JMapper that handles two classes: the class of destination and the class of source. *
Taking configuration by API. * * @param destination the Destination Class * @param source the Source Class * @param config the configuration to load * @param api JMapperAPI configuration * @see ChooseConfig */ public JMapper(final Class destination,final Class source, final ChooseConfig config, final JMapperAPI api) { this(destination, source, config, api.toXStream().toString()); } /** * Constructs a JMapper that handles two classes: the class of destination and the class of source. *
Taking as input the path to the xml file. * * @param destination the Destination Class * @param source the Source Class * @param xml xml configuration as content or path format * @see ChooseConfig */ public JMapper(final Class destination,final Class source,final String xml) { this(destination,source,null,xml); } /** * Constructs a JMapper that handles two classes: the class of destination and the class of source. *
The configuration evaluated is the one received in input present in the xml configuration file. * * @param destination the Destination Class * @param source the Source Class * @param config the configuration to load * @param xml xml configuration as content or path format * @see ChooseConfig */ public JMapper(final Class destination,final Class source,final ChooseConfig config,final String xml) { try{ if(isNull(destination)) Error.nullMappedClass("Destination"); if(isNull(source)) Error.nullMappedClass("Source"); if(destination.isInterface()) Error.interfaceClass("Destination"); if(source.isInterface()) Error.interfaceClass("Source"); this.mapper = createMapper(from(source).to(destination) .analyzing(config) .presentIn(xml)); }catch (Throwable e) { JmapperLog.error(e); } } /** * This method is synchornized to avoid creations of the same instance * @param mapper mapper generator * @return mapper instance * @throws Throwable */ private static synchronized IMapper createMapper(MapperBuilder mapper) throws Throwable{ Class> mapperClass = mapper.exist()?mapper.get() :mapper.generate(); return mapperClass.newInstance(); } /** * This method is used to call a signature passing a null ChooseConfig instance. * @return */ private static ChooseConfig undefinedConfig(){ return null; } /** * This method is used to call a signature passing a null String instance. * @return */ private static String undefinedXML(){ return null; } /** * Permits to define a destination factory, this is usefull in case of immutable objects. * @param factory destination factory * @return this instance of JMapper */ public JMapper destinationFactory(DestinationFactory factory){ this.mapper.setDestinationFactory(factory); return this; } }