
org.ameba.mapping.DozerMapperImpl Maven / Gradle / Ivy
/*
* Copyright 2015-2024 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.ameba.mapping;
import com.github.dozermapper.core.DozerBeanMapperBuilder;
import com.github.dozermapper.core.Mapper;
import java.util.ArrayList;
import java.util.List;
import static java.util.Arrays.asList;
/**
* A DozerMapperImpl uses the Open Source Dozer project to automatically map between bean classes.
*
* @author Heiko Scherrer
*/
public class DozerMapperImpl implements BeanMapper {
private final Mapper mapper;
/**
* Constructor of this Bean must have a {@code Mapper Mapper} instance of the SF Dozer library.
*
* @param mapper A SF Dozer mapper instance
*/
public DozerMapperImpl(Mapper mapper) {
this.mapper = mapper;
}
/**
* Constructor of this Bean takes a couple of Dozer mapping files that are used to instantiate the underlying Dozer mapper. The first
* one ({@literal mappingFile}) in the essential mapping file that is required to have and that is added to the front of the list of all
* mapping files when the {@link Mapper} is created.
*
* @param mappingFile The essential to have Dozer mapping file
* @param additionalMappingFiles Dozer mapping files
*/
public DozerMapperImpl(String mappingFile, String... additionalMappingFiles) {
var list = new ArrayList();
list.add(mappingFile);
list.addAll(asList(additionalMappingFiles));
this.mapper = DozerBeanMapperBuilder.create().withMappingFiles(list).build();
}
/**
* {@inheritDoc}
*
* Garbage in - garbage out principle. In case a caller uses a repository implementation that may return {@code null} in times of
* Java 8, a {@code null} value will simply be returned. It is not the job of this library to decide on {@code null} values.
*/
@Override
public T map(S entity, Class clazz) {
if (entity == null) {
return null;
}
return mapper.map(entity, clazz);
}
/**
* {@inheritDoc}
*
* Garbage in - garbage out principle. In case a caller uses a repository implementation that may return {@code null} in times of
* Java 8, a {@code null} value will simply be returned. It is not the job of this library to decide on {@code null} values.
*/
@Override
public T mapFromTo(S source, T target) {
T result = target;
if (source == null) {
result = null;
} else {
mapper.map(source, result);
}
return result;
}
/**
* {@inheritDoc}
*
* The caller gets at least an empty {@code java.util.List List} implementation when {@code entities} is {@code null} or empty.
*/
@Override
public List map(List entities, Class clazz) {
if (entities == null || entities.isEmpty()) {
return new ArrayList<>(0);
}
var result = new ArrayList(entities.size());
for (S entity : entities) {
result.add(mapper.map(entity, clazz));
}
return result;
}
}