blob: e1e19552af796e7b00d5ec551fac25717b186371 [file] [log] [blame]
/**
********************************************************************************
* Copyright (c) 2019, 2020 Robert Bosch GmbH and others.
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Robert Bosch GmbH - initial API and implementation
********************************************************************************
*/
package org.eclipse.app4mc.amalthea.converters094.impl;
import java.io.File;
import java.util.List;
import java.util.Map;
import org.eclipse.app4mc.amalthea.converters.common.ServiceConstants;
import org.eclipse.app4mc.amalthea.converters.common.base.ICache;
import org.eclipse.app4mc.amalthea.converters.common.base.IConverter;
import org.eclipse.app4mc.amalthea.converters.common.converter.AbstractConverter;
import org.eclipse.app4mc.amalthea.converters.common.utils.AmaltheaNamespaceRegistry;
import org.eclipse.app4mc.amalthea.converters.common.utils.HelperUtil;
import org.eclipse.app4mc.amalthea.converters.common.utils.ModelVersion;
import org.jdom2.Attribute;
import org.jdom2.Document;
import org.jdom2.Element;
import org.osgi.service.component.annotations.Activate;
import org.osgi.service.component.annotations.Component;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
@Component(
property = {
ServiceConstants.INPUT_MODEL_VERSION_PROPERTY + "=0.9.3",
ServiceConstants.OUTPUT_MODEL_VERSION_PROPERTY + "=0.9.4"
},
service = IConverter.class)
public class HwConverter extends AbstractConverter {
private static final Logger LOGGER = LoggerFactory.getLogger(HwConverter.class);
@Override
@Activate
protected void activate(Map<String, Object> properties) {
super.activate(properties);
}
@Override
public void convert(File targetFile, Map<File, Document> fileName_documentsMap, List<ICache> caches) {
LOGGER.info("Migration from 0.9.3 to 0.9.4 : Executing Hw converter for model file : {}", targetFile.getName());
final Document document = fileName_documentsMap.get(targetFile);
if (document == null) {
return;
}
final Element rootElement = document.getRootElement();
update_portInterface(rootElement);
}
private void update_portInterface(final Element rootElement) {
final String xpath = "./hwModel/structures//ports[@portInterface=\"ABH\"]";
final List<Element> portInterfaceElements = HelperUtil.getXpathResult(
rootElement,
xpath,
Element.class,
AmaltheaNamespaceRegistry.getNamespace(ModelVersion._094, "am"),
AmaltheaNamespaceRegistry.getGenericNamespace("xsi"));
for (Element portInterfaceElement : portInterfaceElements) {
Attribute portInterfaceAttribute = portInterfaceElement.getAttribute("portInterface");
portInterfaceAttribute.setValue("AHB");
}
}
}