blob: 8cd6db92d2648d64277f0063b5a5fef0d0acf3e3 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2007 Boeing.
* 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:
* Boeing - initial API and implementation
*******************************************************************************/
package org.eclipse.osee.ote.ui.test.manager.jobs;
import java.io.File;
import java.util.LinkedList;
import java.util.List;
import java.util.logging.Level;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.core.runtime.Status;
import org.eclipse.core.runtime.jobs.Job;
import org.eclipse.jface.dialogs.ErrorDialog;
import org.eclipse.osee.framework.logging.OseeLog;
import org.eclipse.osee.framework.ui.swt.Displays;
import org.eclipse.osee.ote.ui.test.manager.core.TestManagerEditor;
import org.eclipse.osee.ote.ui.test.manager.internal.TestManagerPlugin;
import org.eclipse.osee.ote.ui.test.manager.pages.ScriptPage;
import org.eclipse.osee.ote.ui.test.manager.pages.scriptTable.ScriptTask;
/**
* @author Roberto E. Escobar
*/
public class ScriptRunJob extends Job {
private static final String JOB_NAME = "Script Run Job";
private final TestManagerEditor testManagerEditor;
private final List<ScriptTask> runTasks;
public ScriptRunJob(TestManagerEditor testManagerEditor) {
super(JOB_NAME);
this.testManagerEditor = testManagerEditor;
this.testManagerEditor.doSave();
ScriptPage scriptPage = getScriptPage();
scriptPage.getScriptTableViewer().refresh();
this.runTasks = scriptPage.getScriptTableViewer().getRunTasks();
}
public IStatus verifyOutfileLocations() {
final LinkedList<IStatus> failedLocations = new LinkedList<>();
for (ScriptTask task : runTasks) {
final String fileName = task.getScriptModel().getOutputModel().getRawFilename();
final File file = new File(fileName);
if (file.exists() && (!file.canWrite() || !file.canRead())) {
failedLocations.add(new Status(IStatus.ERROR, TestManagerPlugin.PLUGIN_ID, "could not access " + fileName));
} else if (!file.getParentFile().canWrite()) {
failedLocations.add(new Status(IStatus.ERROR, TestManagerPlugin.PLUGIN_ID, "could not access " + fileName));
}
}
if (failedLocations.isEmpty()) {
return Status.OK_STATUS;
} else {
return new Status(IStatus.ERROR, TestManagerPlugin.PLUGIN_ID, "unable to access out files") {
@Override
public boolean isMultiStatus() {
return true;
}
@Override
public IStatus[] getChildren() {
return failedLocations.toArray(new IStatus[failedLocations.size()]);
}
};
}
}
@Override
public IStatus run(IProgressMonitor monitor) {
IStatus toReturn = Status.CANCEL_STATUS;
final IStatus status = verifyOutfileLocations();
if (status != Status.OK_STATUS) {
Displays.pendInDisplayThread(new Runnable() {
@Override
public void run() {
ErrorDialog.openError(
Displays.getActiveShell(),
"Script Run Error",
"Could not access some out file locations. Check access permissions. Click Details to see a list of failed locations",
status, -1);
}
});
return Status.OK_STATUS;
}
long time = System.currentTimeMillis();
clearMarkers();
getScriptPage().onScriptRunning(true);
long elapsed = System.currentTimeMillis() - time;
OseeLog.logf(TestManagerPlugin.class, Level.FINE,
"%d milliseconds to initialize the running of scripts.", elapsed);
OseeLog.logf(TestManagerPlugin.class, Level.INFO, "%d scripts have been batched.", runTasks.size());
Displays.pendInDisplayThread(new Runnable() {
@Override
public void run() {
getScriptPage().getScriptManager().addTestsToQueue(runTasks);
}
});
toReturn = Status.OK_STATUS;
return toReturn;
}
private ScriptPage getScriptPage() {
return this.testManagerEditor.getPageManager().getScriptPage();
}
public boolean isRunAllowed() {
return this.testManagerEditor.getPageManager().areSettingsValidForRun();
}
public String getErrorMessage() {
return this.testManagerEditor.getPageManager().getErrorMessage();
}
private void clearMarkers() {
// TODO can we somehow wait until the script is actually run to remove
// the markers? Otherwise if the run is aborted before the script
// runs...
// Remove markers from scripts to be run
// for (ScriptTask task : runTasks) {
// try {
// MarkerSupport.deleteMarkersFromInputFile(task.getScriptModel().getIFile());
// }
// catch (Exception ex) {
// OseeLog.log(Activator.class, Level.SEVERE, "Unable to clear the tests markers before
// running the test.", ex);
// }
// }
}
}