org.dozer.loader.CustomMappingsLoader Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dozer Show documentation
Show all versions of dozer Show documentation
Dozer is a powerful Java Bean to Java Bean mapper that recursively copies data from one object to another
/*
* Copyright 2005-2010 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.dozer.loader;
import org.dozer.classmap.ClassMap;
import org.dozer.classmap.ClassMapBuilder;
import org.dozer.classmap.ClassMappings;
import org.dozer.classmap.Configuration;
import org.dozer.classmap.MappingFileData;
import org.dozer.converters.CustomConverterContainer;
import org.dozer.converters.CustomConverterDescription;
import org.dozer.loader.xml.MappingFileReader;
import org.dozer.loader.xml.XMLParserFactory;
import org.dozer.util.MappingUtils;
import org.dozer.util.MappingValidator;
import org.slf4j.LoggerFactory;
import org.slf4j.Logger;
import java.net.URL;
import java.util.ArrayList;
import java.util.LinkedHashSet;
import java.util.List;
import java.util.Map.Entry;
import java.util.Set;
/**
* Internal class that loads and parses custom xml mapping files into ClassMap objects. The ClassMap objects returned
* from the load method are fully decorated and ready to be used by the internal mapping engine. Only intended for
* internal use.
*
* @author tierney.matt
* @author garsombke.franz
*/
public class CustomMappingsLoader {
private static final Logger log = LoggerFactory.getLogger(CustomMappingsLoader.class);
private static final MappingsParser mappingsParser = MappingsParser.getInstance();
private final MappingFileReader mappingFileReader = new MappingFileReader(XMLParserFactory.getInstance());
public LoadMappingsResult load(List mappingFiles, List builderMappings) {
List mappingFileDataList = loadFromFiles(mappingFiles);
mappingFileDataList.addAll(builderMappings);
Configuration globalConfiguration = findConfiguration(mappingFileDataList);
ClassMappings customMappings = new ClassMappings();
// Decorate the raw ClassMap objects and create ClassMap "prime" instances
for (MappingFileData mappingFileData : mappingFileDataList) {
List classMaps = mappingFileData.getClassMaps();
ClassMappings customMappingsPrime = mappingsParser.processMappings(classMaps, globalConfiguration);
customMappings.addAll(customMappingsPrime);
}
// Add default mappings using matching property names if wildcard policy
// is true. The addDefaultFieldMappings will check the wildcard policy of each classmap
ClassMapBuilder.addDefaultFieldMappings(customMappings, globalConfiguration);
Set customConverterDescriptions = new LinkedHashSet();
// build up custom converter description objects
if (globalConfiguration.getCustomConverters() != null && globalConfiguration.getCustomConverters().getConverters() != null) {
for (CustomConverterDescription cc : globalConfiguration.getCustomConverters().getConverters()) {
customConverterDescriptions.add(cc);
}
}
// iterate through the classmaps and set all of the customconverters on them
for (Entry entry : customMappings.getAll().entrySet()) {
ClassMap classMap = entry.getValue();
if (classMap.getCustomConverters() != null) {
classMap.getCustomConverters().setConverters(new ArrayList(customConverterDescriptions));
} else {
classMap.setCustomConverters(new CustomConverterContainer());
classMap.getCustomConverters().setConverters(new ArrayList(customConverterDescriptions));
}
}
return new LoadMappingsResult(customMappings, globalConfiguration);
}
private List loadFromFiles(List mappingFiles) {
List mappingFileDataList = new ArrayList();
if (mappingFiles != null && mappingFiles.size() > 0) {
log.info("Using the following xml files to load custom mappings for the bean mapper instance: {}", mappingFiles);
for (String mappingFileName : mappingFiles) {
log.info("Trying to find xml mapping file: {}", mappingFileName);
URL url = MappingValidator.validateURL(mappingFileName);
log.info("Using URL [" + url + "] to load custom xml mappings");
MappingFileData mappingFileData = mappingFileReader.read(url);
log.info("Successfully loaded custom xml mappings from URL: [{}]", url);
mappingFileDataList.add(mappingFileData);
}
}
return mappingFileDataList;
}
private Configuration findConfiguration(List mappingFileDataList) {
Configuration globalConfiguration = null;
for (MappingFileData mappingFileData : mappingFileDataList) {
if (mappingFileData.getConfiguration() != null) {
//Only allow 1 global configuration
if (globalConfiguration != null) {
MappingUtils
.throwMappingException("More than one global configuration found. "
+ "Only one global configuration block ( ) can be specified across all mapping files. "
+ "You need to consolidate all global configuration blocks into a single one.");
}
globalConfiguration = mappingFileData.getConfiguration();
}
}
//If global configuration was not specified, use defaults
if (globalConfiguration == null) {
globalConfiguration = new Configuration();
}
return globalConfiguration;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy