/******************************************************************************* * Copyright (c) 2013-2016 Jean-Marie Gauthier, University of Franche-Comte, and Samares-Engineering * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Jean-Marie Gauthier, University of Franche-Comte - initial API and implementation * Jean-Marie Gauthier, Samares-Engineering - Neon implementation *******************************************************************************/ package edu.ufc.femtost.disc.sysml4modelica.papyrus.ui.jobs; import java.io.IOException; import org.eclipse.core.resources.IFile; import org.eclipse.core.resources.IMarker; import org.eclipse.core.resources.IResource; import org.eclipse.core.runtime.CoreException; import org.eclipse.core.runtime.IPath; import org.eclipse.core.runtime.IProgressMonitor; import org.eclipse.core.runtime.IStatus; import org.eclipse.core.runtime.Status; import org.eclipse.core.runtime.jobs.IJobChangeEvent; import org.eclipse.core.runtime.jobs.Job; import org.eclipse.core.runtime.jobs.JobChangeAdapter; import org.eclipse.m2m.atl.core.ATLCoreException; import edu.ufc.femtost.disc.sysml4modelica.papyrus.sysml2modelica.files.Omgsysml2modelica; import edu.ufc.femtost.disc.sysml4modelica.papyrus.ui.utils.DisplayUtil; public class ExportJob extends Job { private final IFile inputModelFile; public ExportJob(final IFile inputModelFile) { super("Export model"); this.inputModelFile = inputModelFile; } @Override protected final IStatus run(final IProgressMonitor monitor) { Job checkJob = new CheckJob(inputModelFile); checkJob.addJobChangeListener(new JobChangeAdapter() { @Override public void done(final IJobChangeEvent event) { if (event.getResult().isOK()) { DisplayUtil.updateStatusLine("Checking completed successfully"); try { if (containsErrors(inputModelFile.findMarkers(IMarker.PROBLEM, true, IResource.DEPTH_INFINITE))) { DisplayUtil.updateStatusLine("Could not export since there exists errors"); } else { performExport(inputModelFile, monitor); } } catch (CoreException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } catch (ATLCoreException e) { e.printStackTrace(); } } else { DisplayUtil.updateStatusLine("Could not complete the checking of the model due to error"); } } }); checkJob.setUser(true); checkJob.schedule(); if (monitor.isCanceled()) { return Status.CANCEL_STATUS; } return Status.OK_STATUS; } private boolean containsErrors(final IMarker[] markers) throws CoreException { for (IMarker marker : markers) { if ((Integer) marker.getAttribute(IMarker.SEVERITY) == IMarker.SEVERITY_ERROR) { return true; } } return false; } private void performExport(final IFile workFile, final IProgressMonitor monitor) throws IOException, ATLCoreException, CoreException { monitor.beginTask("Exporting model", 100); // Compute path IPath pathSelected = workFile.getLocation(); IPath pathToOutModel = pathSelected.removeFileExtension() .addFileExtension("modelica"); // USER put the extension of the output meta model of your // transformation monitor.worked(10); // Perform the export Omgsysml2modelica.transform(pathSelected.toFile().toURI().toString(), pathToOutModel.toFile().toURI().toString()); monitor.worked(60); // Refresh workspace workFile.getProject().refreshLocal(IResource.DEPTH_INFINITE, null); } }