blob: 6e500e128555f200f781cc356bb35629891053f2 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2005 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.examples.jobs;
import org.eclipse.core.resources.ResourcesPlugin;
import org.eclipse.core.runtime.*;
import org.eclipse.core.runtime.jobs.Job;
import org.eclipse.ui.progress.IProgressConstants;
/**
* Base class for a simple test job with configurable parameters
*/
public class TestJob extends Job {
/**
* A family identifier for all test jobs
*/
public static final Object FAMILY_TEST_JOB = new Object();
/**
* Total duration that the test job should sleep, in milliseconds.
*/
private long duration;
/**
* Whether the test job should fail.
*/
private boolean failure;
/**
* Whether the job should report unknown progress.
*/
private boolean unknown;
private boolean reschedule;
private long rescheduleWait;
/**
* Creates a new test job
*
* @param duration
* Total time that the test job should sleep, in milliseconds.
* @param lock
* Whether the job should use a workspace scheduling rule
* @param failure
* Whether the job should fail
* @param indeterminate
* Whether the job should report indeterminate progress
* @param rescheduleWait
* @param reschedule
*/
public TestJob(long duration, boolean lock, boolean failure,
boolean indeterminate, boolean reschedule, long rescheduleWait) {
super("Test job"); //$NON-NLS-1$
this.duration = duration;
this.failure = failure;
this.unknown = indeterminate;
this.reschedule = reschedule;
this.rescheduleWait = rescheduleWait;
setProperty(IProgressConstants.ICON_PROPERTY, ProgressExamplesPlugin
.imageDescriptorFromPlugin(ProgressExamplesPlugin.ID,
"icons/sample.gif"));
if (lock)
setRule(ResourcesPlugin.getWorkspace().getRoot());
}
/*
* (non-Javadoc)
*
* @see org.eclipse.core.internal.jobs.InternalJob#belongsTo(java.lang.Object)
*/
public boolean belongsTo(Object family) {
if (family instanceof TestJob) {
return true;
}
return family == FAMILY_TEST_JOB;
}
/*
* (non-Javadoc)
*
* @see org.eclipse.core.internal.jobs.InternalJob#run(org.eclipse.core.runtime.IProgressMonitor)
*/
public IStatus run(IProgressMonitor monitor) {
if (failure) {
MultiStatus result = new MultiStatus(
"org.eclipse.ui.examples.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.jobs", 1, "This is the child status message", new RuntimeException("This is the child exception"))); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
return result;
}
final long sleep = 10;
int ticks = (int) (duration / sleep);
if (this.unknown)
monitor.beginTask(toString(), IProgressMonitor.UNKNOWN);
else
monitor.beginTask(toString(), ticks);
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;
}
monitor.worked(1);
}
} finally {
if (reschedule)
schedule(rescheduleWait);
monitor.done();
}
return Status.OK_STATUS;
}
}