blob: cdb77707c629b90d83a2f1515f41fcd4ab53b4db [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007, 2009 Borland Software Corporation and others.
*
* 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:
* Borland Software Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.m2m.internal.qvt.oml.runtime.launch;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.core.runtime.Status;
import org.eclipse.debug.core.DebugException;
import org.eclipse.debug.core.DebugPlugin;
import org.eclipse.debug.core.ILaunch;
import org.eclipse.debug.core.ILaunchConfiguration;
import org.eclipse.debug.core.IStatusHandler;
import org.eclipse.m2m.internal.qvt.oml.QvtPlugin;
import org.eclipse.m2m.internal.qvt.oml.common.launch.ShallowProcess;
import org.eclipse.m2m.internal.qvt.oml.common.launch.StreamsProxy;
import org.eclipse.m2m.internal.qvt.oml.evaluator.QvtRuntimeException;
import org.eclipse.m2m.internal.qvt.oml.library.Context;
import org.eclipse.m2m.internal.qvt.oml.runtime.QvtRuntimePlugin;
import org.eclipse.m2m.internal.qvt.oml.runtime.project.QvtInterpretedTransformation;
import org.eclipse.m2m.internal.qvt.oml.runtime.project.QvtTransformation;
import org.eclipse.m2m.qvt.oml.util.EvaluationMonitor;
import org.eclipse.m2m.qvt.oml.util.WriterLog;
public class QvtLaunchConfigurationDelegate extends QvtLaunchConfigurationDelegateBase {
public static final String LAUNCH_CONFIGURATION_TYPE_ID = "org.eclipse.m2m.qvt.oml.QvtTransformation"; //$NON-NLS-1$
private static final int LAUNCH_ERROR_CODE = 210;
private static final IStatus fgLaunchErrorStatus = new Status(IStatus.ERROR, QvtRuntimePlugin.ID, LAUNCH_ERROR_CODE, "Launch configuration error", null); //$NON-NLS-1$
public QvtLaunchConfigurationDelegate() {
}
// FIXME - do refactoring of this area
public void launch(final ILaunchConfiguration configuration, String mode, final ILaunch launch, IProgressMonitor monitor) throws CoreException {
try {
final QvtTransformation qvtTransformation = new QvtInterpretedTransformation(getQvtModule(configuration));
final EvaluationMonitor execMonitor = createMonitor();
final StreamsProxy streamsProxy = new StreamsProxy();
ShallowProcess.IRunnable r = new ShallowProcess.IRunnable() {
public void run() throws Exception {
IStatus status = QvtLaunchConfigurationDelegateBase.validate(qvtTransformation, configuration);
if(status.getSeverity() > IStatus.WARNING) {
throw new CoreException(status);
}
Context context = QvtLaunchUtil.createContext(configuration);
context.setLog(new WriterLog(streamsProxy.getOutputWriter()));
context.setMonitor(execMonitor);
QvtLaunchConfigurationDelegateBase.doLaunch(qvtTransformation, configuration, context);
qvtTransformation.cleanup();
}
};
r = getSafeRunnable(qvtTransformation, r);
final ShallowProcess process = new ShallowProcess(launch, r) {
boolean isTerminated = false;
@Override
public void terminate() throws DebugException {
execMonitor.cancel();
isTerminated = true;
super.terminate();
}
@Override
public boolean isTerminated() {
return isTerminated || super.isTerminated();
}
@Override
public boolean canTerminate() {
return !isTerminated();
}
};
process.setStreamsProxy(streamsProxy);
Thread processThread = new Thread(new Runnable() {
public void run() {
try {
process.run();
} catch (Exception e) {
if(e instanceof QvtRuntimeException == false) {
// QVT runtime exception are legal QVT transformation level errors
IStatusHandler statusHandler = DebugPlugin.getDefault().getStatusHandler(fgLaunchErrorStatus);
if(statusHandler != null) {
IStatus actualStatus = new Status(IStatus.ERROR, QvtRuntimePlugin.ID, LAUNCH_ERROR_CODE,
e.getMessage(), e.getMessage() == null ? e : null);
try {
statusHandler.handleStatus(actualStatus, configuration);
} catch (CoreException coreExc) {
QvtPlugin.getDefault().log(coreExc.getStatus());
}
}
QvtPlugin.error(e);
}
}
try {
launch.terminate();
} catch (DebugException e) {
QvtPlugin.getDefault().log(e.getStatus());
}
}
}, "QVT Run"); //$NON-NLS-1$
processThread.start();
}
catch(Exception e) {
throw new CoreException(org.eclipse.m2m.internal.qvt.oml.runtime.util.MiscUtil.makeErrorStatus(e));
}
}
private EvaluationMonitor createMonitor() {
return new EvaluationMonitor() {
boolean fIsCanceled = false;
public void cancel() {
fIsCanceled = true;
}
public boolean isCanceled() {
return fIsCanceled;
}
};
}
// FIXME - do we need such an annoying generic check ?
// Useless anyway without overriding
// org.eclipse.debug.core.model.LaunchConfigurationDelegate.getProjectsForProblemSearch(ILaunchConfiguration, String)
// @Override
// protected boolean existsProblems(IProject proj) throws CoreException {
// IMarker[] markers = proj.findMarkers(QVTOProjectPlugin.PROBLEM_MARKER, true, IResource.DEPTH_INFINITE);
// for (int i = 0; i < markers.length; i++) {
// if (isLaunchProblem(markers[i])) {
// return true;
// }
// }
//
// return false;
// }
}