blob: 0187ba02d724a10d84ac9b10357df30d2e5c7528 [file] [log] [blame]
/********************************************************************************
* Copyright (c) 2015-2020 Contributors to the Eclipse Foundation
*
* See the NOTICE file(s) distributed with this work for additional
* information regarding copyright ownership.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
*
********************************************************************************/
package org.eclipse.mdm.api.atfxadapter;
import java.io.File;
import java.io.IOException;
import java.nio.file.Files;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import org.asam.ods.AoException;
import org.asam.ods.AoSession;
import org.eclipse.mdm.api.base.ConnectionException;
import org.eclipse.mdm.api.dflt.ApplicationContext;
import org.eclipse.mdm.api.dflt.ApplicationContextFactory;
import org.eclipse.mdm.api.dflt.EntityManager;
import org.eclipse.mdm.api.dflt.model.ExtSystem;
import org.eclipse.mdm.api.dflt.model.ExtSystemAttribute;
import org.omg.CORBA.ORB;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import com.google.common.base.Strings;
import de.rechner.openatfx.AoServiceFactory;
public class ATFXContextFactory implements ApplicationContextFactory {
private static final Logger LOG = LoggerFactory.getLogger(ATFXContextFactory.class);
private static final ORB orb = ORB.init(new String[] {}, System.getProperties());
private static final String PROP_EXTSYSTEMNAME = "extSystemName";
@Override
public ApplicationContext connect(Map<String, String> parameters) throws ConnectionException {
return initApplicationContext(parameters, null);
}
public ApplicationContext connect(Map<String, String> parameters, ApplicationContext targetContext)
throws ConnectionException {
EntityManager entityManager = targetContext.getEntityManager()
.orElseThrow(() -> new ConnectionException("TargetEntity manager not present!"));
String extSystemName = parameters.get(PROP_EXTSYSTEMNAME);
List<ExtSystemAttribute> extSystemAttrList = new ArrayList<>();
if (!Strings.isNullOrEmpty(extSystemName)) {
List<ExtSystem> extSystemList = entityManager.loadAll(ExtSystem.class, extSystemName);
if (extSystemList == null || extSystemList.isEmpty()) {
LOG.warn("External system with name '{}' nor found! Try to import file without mapping!",
extSystemName);
} else if (extSystemList.size() > 1) {
throw new ConnectionException(
String.format("More than one external system with name '%s' found!", extSystemName));
} else {
extSystemAttrList = entityManager.loadChildren(extSystemList.get(0), ExtSystemAttribute.class);
}
}
return initApplicationContext(parameters, extSystemAttrList);
}
private ApplicationContext initApplicationContext(Map<String, String> parameters,
List<ExtSystemAttribute> extSystemAttrList) throws ConnectionException {
File atfxFile = new File(parameters.get("atfxfile"));
try {
AoSession aoSession;
if (atfxFile.exists() && Files.size(atfxFile.toPath()) > 0L) {
aoSession = AoServiceFactory.getInstance().newAoSession(orb, atfxFile);
} else {
throw new ConnectionException(
"Cannot open session on a not existing or empty ATFX file: " + atfxFile.getAbsolutePath());
}
return new ATFXContext(orb, aoSession, parameters, extSystemAttrList, atfxFile);
} catch (AoException e) {
throw new ConnectionException("Error " + e.reason, e);
} catch (IOException e) {
throw new ConnectionException("Error reading ATFX file " + atfxFile.getAbsolutePath(), e);
}
}
}