blob: e95d173501b3cdc30e3b0c00725644fc1de55c42 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004 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 - Initial API and implementation
*******************************************************************************/
package org.eclipse.ui.tests.concurrency;
import java.lang.reflect.InvocationTargetException;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.core.runtime.Platform;
import org.eclipse.core.runtime.jobs.ISchedulingRule;
import org.eclipse.jface.dialogs.ProgressMonitorDialog;
import org.eclipse.jface.operation.IRunnableWithProgress;
import org.eclipse.jface.operation.IThreadListener;
import org.eclipse.ui.PlatformUI;
import org.eclipse.ui.tests.harness.util.UITestCase;
/**
* Tests IJobManger#transferRule in conjunction with ModalContext.run.
* This also exercises the IThreadListener API to allow the runnable to transfer
* and obtain the rule owned by the calling thread.
*/
public class TransferRuleTest extends UITestCase {
class TestRule implements ISchedulingRule {
public boolean contains(ISchedulingRule rule) {
return rule == this;
}
public boolean isConflicting(ISchedulingRule rule) {
return rule == this;
}
}
/**
* A simple runnable that uses the IThreadListener interface to transfer
* a scheduling rule.
*/
class TestRunnable implements IRunnableWithProgress, IThreadListener {
Throwable error;
private final ISchedulingRule rule;
public TestRunnable(ISchedulingRule aRule) {
this.rule = aRule;
}
public void run(IProgressMonitor monitor) {
//if we already have an error don't run the rest of the test
if (error != null)
return;
try {
try {
//acquire the rule that was transferred (will hang if the rule transfer failed)
Platform.getJobManager().beginRule(rule, monitor);
} finally {
Platform.getJobManager().endRule(rule);
}
} catch (Throwable t) {
//remember any error so we can fail the test
error = t;
}
}
public void threadChange(Thread thread) {
try {
Platform.getJobManager().transferRule(rule, thread);
} catch (Throwable t) {
//remember any error so we can fail the test
error = t;
}
}
}
public TransferRuleTest(String name) {
super(name);
}
public void testModalContextTransfer() {
ISchedulingRule rule = new TestRule();
TestRunnable runnable = new TestRunnable(rule);
try {
//first get the rule in the test thread
Platform.getJobManager().beginRule(rule, null);
//now execute the runnable using ModalContext - the rule should transfer correctly
new ProgressMonitorDialog(PlatformUI.getWorkbench().getActiveWorkbenchWindow().getShell()).run(true, true, runnable);
} catch (InvocationTargetException e) {
e.printStackTrace();
fail("1.0");
} catch (InterruptedException e) {
e.printStackTrace();
fail("1.1");
} finally {
//must release the rule when finished
Platform.getJobManager().endRule(rule);
}
//check the runnable for errors
if (runnable.error != null) {
runnable.error.printStackTrace();
fail("1.2");
}
}
}