blob: 3e29cd0ada2755c52bfd0a0f1902f095c3aa4657 [file] [log] [blame]
/**
* <copyright>
*
* Copyright (c) 2009-2010 Thales Corporate Services S.A.S.
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-v2.0.
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Thales Corporate Services S.A.S - initial API and implementation
*
* </copyright>
*/
package org.eclipse.egf.portfolio.task.ant.engine;
import java.util.Map;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.core.runtime.SubMonitor;
import org.eclipse.egf.core.l10n.EGFCoreMessages;
import org.eclipse.egf.core.producer.InvocationException;
import org.eclipse.egf.ftask.producer.context.ITaskProductionContext;
import org.eclipse.egf.model.fcore.Contract;
import org.eclipse.egf.model.ftask.Task;
import org.eclipse.egf.model.ftask.task.ITaskNature;
import org.eclipse.egf.portfolio.task.ant.Activator;
import org.eclipse.egf.portfolio.task.ant.Messages;
import org.eclipse.osgi.util.NLS;
import org.osgi.framework.Bundle;
/**
* @author Thomas Guiu
*
*/
public class TaskNatureAnt implements ITaskNature {
public void invoke(Bundle bundle, ITaskProductionContext context, Task task, IProgressMonitor monitor) throws InvocationException {
if (task == null || task.getImplementationValue() == null) {
return;
}
String taskName = task.getName();
AntScriptEngine engine = new AntScriptEngine();
try {
SubMonitor subMonitor = SubMonitor.convert(monitor, NLS.bind(Messages.Production_TaskAnt_Invoke, taskName), 300);
engine.executeAntTask(task, context, subMonitor);
} catch (Exception e) {
throw new InvocationException(new CoreException(Activator.getDefault().newStatus(IStatus.ERROR, NLS.bind(EGFCoreMessages.ProjectBundleSession_BundleClassInstantiationFailure, taskName, bundle.getSymbolicName()), e)));
}
}
public boolean isLoadableImplementation(Task task, Map<Object, Object> context) {
return true;
}
public boolean isValidImplementation(Task task, Map<Object, Object> context) {
return true;
}
}