Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* Copyright (c) 2008-2017 akquinet tech@spree GmbH
*
* This file is part of Hibersap.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this software 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.hibersap.execution;
import java.util.HashMap;
import java.util.Map;
import java.util.Set;
import org.hibersap.bapi.BapiConstants;
import org.hibersap.conversion.ConverterCache;
import org.hibersap.mapping.ReflectionHelper;
import org.hibersap.mapping.model.BapiMapping;
import org.hibersap.mapping.model.ParameterMapping;
import org.hibersap.mapping.model.TableMapping;
/**
* @author Carsten Erker
*/
public class PojoMapper {
private final ConverterCache converterCache;
public PojoMapper(final ConverterCache converterCache) {
this.converterCache = converterCache;
}
public void mapFunctionMapToPojo(final Object bapi, final Map functionMap, final BapiMapping bapiMapping) {
Map map = getMapForAllParamTypes(functionMap);
Set paramMappings = bapiMapping.getAllParameters();
functionMapToPojo(bapi, map, paramMappings);
}
public Map mapPojoToFunctionMap(final Object bapi, final BapiMapping bapiMapping) {
Map functionMap = new HashMap();
Set imports = bapiMapping.getImportParameters();
functionMap.put("IMPORT", pojoToMap(bapi, imports));
Set exports = bapiMapping.getExportParameters();
functionMap.put("EXPORT", pojoToMap(bapi, exports));
Set changing = bapiMapping.getChangingParameters();
functionMap.put("CHANGING", pojoToMap(bapi, changing));
Set tables = bapiMapping.getTableParameters();
functionMap.put("TABLE", pojoToMap(bapi, tables));
return functionMap;
}
private void functionMapToPojo(final Object bapi,
final Map functionMap,
final Set paramMappings) {
for (ParameterMapping paramMapping : paramMappings) {
String fieldNameSap = paramMapping.getSapName();
Object value = functionMap.get(fieldNameSap);
if (value != null) {
Object mappedValue = paramMapping.mapToJava(value, converterCache);
ReflectionHelper.setFieldValue(bapi, paramMapping.getJavaName(), mappedValue);
}
}
}
private Map pojoToMap(final Object bapi, final Set extends ParameterMapping> paramMappings) {
Map functionMap = new HashMap();
for (ParameterMapping paramMapping : paramMappings) {
String fieldNameJava = paramMapping.getJavaName();
Object value = ReflectionHelper.getFieldValue(bapi, fieldNameJava);
if (value != null) {
Object subMap = paramMapping.mapToSap(value, converterCache);
functionMap.put(paramMapping.getSapName(), subMap);
}
}
return functionMap;
}
private Map getMapForAllParamTypes(final Map functionMap) {
HashMap map = new HashMap();
map.putAll(getMapNullSafe(functionMap, BapiConstants.IMPORT));
map.putAll(getMapNullSafe(functionMap, BapiConstants.EXPORT));
map.putAll(getMapNullSafe(functionMap, BapiConstants.CHANGING));
map.putAll(getMapNullSafe(functionMap, BapiConstants.TABLE));
return map;
}
private Map getMapNullSafe(final Map functionMap, final String paramName) {
Map map = UnsafeCastHelper.castToMap(functionMap.get(paramName));
return map == null ? new HashMap() : map;
}
}