blob: 229d02174217a9271b143ffcefa4b4d7fa974e78 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009, 2019 Xored Software Inc and others.
* All rights reserved. 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-v20.html
*
* Contributors:
* Xored Software Inc - initial API and implementation and/or initial documentation
*******************************************************************************/
package org.eclipse.rcptt.core.internal.ecl.core;
import static org.eclipse.rcptt.reporting.core.ReportHelper.setResult;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.emf.ecore.util.EcoreUtil;
import org.eclipse.rcptt.ecl.core.ProcessStatus;
import org.eclipse.rcptt.internal.core.RcpttPlugin;
import org.eclipse.rcptt.reporting.Q7Info;
import org.eclipse.rcptt.reporting.core.ReportHelper;
import org.eclipse.rcptt.reporting.core.RunnableWithStatus;
import org.eclipse.rcptt.sherlock.core.INodeBuilder;
public class Utils {
public static void reportExecution(INodeBuilder parentNode, RunnableWithStatus runnable, String title,
Q7Info infoPrototype) throws CoreException, InterruptedException {
INodeBuilder nde = parentNode.beginTask(title);
Q7Info info = EcoreUtil.copy(infoPrototype);
ReportHelper.setInfo(nde, info);
try {
runnable.run();
ReportHelper.setResult(nde, createStatus(IStatus.OK, " "));
} catch (CoreException e) {
IStatus status = e.getStatus();
setResult(nde, status);
ReportHelper.takeSnapshot(nde);
throw new CoreException(status);
} catch (Throwable e) {
IStatus status = RcpttPlugin.createStatus(e);
setResult(nde, status);
ReportHelper.takeSnapshot(nde);
throw new CoreException(status);
} finally {
nde.endTask();
}
}
public static ProcessStatus createStatus(int severity, String message) {
return RcpttPlugin.createProcessStatus(severity, message);
}
}