blob: c00bf5808f6dab0a5f79fe5464b6d3f49329bd14 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006, 2007 IBM 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.ui.tests.statushandlers.jobs;
import org.eclipse.core.resources.ResourcesPlugin;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.core.runtime.MultiStatus;
import org.eclipse.core.runtime.Status;
import org.eclipse.ui.progress.UIJob;
/**
* Base class for a simple test UI job with configurable parameters
*/
public class UITestJob extends UIJob {
private long duration;
private boolean returnError;
private Throwable toBeThrown;
private long throwAfter;
/**
* @param duration
* @param lock
* @param throwAfter
* @param toBeThrown
* @param returnError
*/
public UITestJob(long duration, boolean lock, long throwAfter,
Throwable toBeThrown, boolean returnError) {
super("Test job"); //$NON-NLS-1$
this.duration = duration;
this.throwAfter = throwAfter;
this.toBeThrown = toBeThrown;
this.returnError = returnError;
if (lock)
setRule(ResourcesPlugin.getWorkspace().getRoot());
}
public IStatus runInUIThread(IProgressMonitor monitor) {
final long sleep = 10;
int ticks = (int) (duration / sleep);
int ticksToThrow = (int) (throwAfter / sleep);
monitor.beginTask("Task", ticks);
monitor.setTaskName("Task");
try {
for (int i = 0; i < ticks; i++) {
if (monitor.isCanceled())
return Status.CANCEL_STATUS;
monitor.subTask("Processing tick #" + i); //$NON-NLS-1$
try {
Thread.sleep(sleep);
} catch (InterruptedException e) {
return Status.CANCEL_STATUS;
}
if (i == ticksToThrow) {
if (returnError) {
MultiStatus result = new MultiStatus(
"org.eclipse.ui.examples.statushandling.jobs", 1, "This is the MultiStatus message", new RuntimeException("This is the MultiStatus exception")); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
result
.add(new Status(
IStatus.ERROR,
"org.eclipse.ui.examples.statushandling.jobs", 1, "This is the child status message", toBeThrown)); //$NON-NLS-1$ //$NON-NLS-2$
return result;
}
throwException(toBeThrown);
// toBeThrown is neither a runtime exception nor an
// error
return Status.CANCEL_STATUS;
}
monitor.worked(1);
}
} finally {
monitor.done();
}
return Status.OK_STATUS;
}
private void throwException(Throwable th) {
if (th == null)
return;
if (th instanceof RuntimeException)
throw (RuntimeException) th;
if (th instanceof Error) {
throw (Error) th;
}
// TODO do something !! the exception cannot be thrown - it's neither a
// RuntimeException nor an Error
}
}