Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrey Loskutov2016-05-30 17:16:08 +0000
committerDani Megert2016-09-23 13:58:17 +0000
commit938ab5d592348f65249ed9cc454013850d035d32 (patch)
tree2ed483ef5cd015baa5f12d3414a59db2a0319ec6 /org.eclipse.ui.editors.tests
parentd0224e9edbcfc9358268121c5fba4b3aca59f4a1 (diff)
downloadeclipse.platform.text-938ab5d592348f65249ed9cc454013850d035d32.tar.gz
eclipse.platform.text-938ab5d592348f65249ed9cc454013850d035d32.tar.xz
eclipse.platform.text-938ab5d592348f65249ed9cc454013850d035d32.zip
Bug 482354 - SVN checkout deadlocks Eclipse
FileDocumentProvider.refreshFile(IFile) is called from UI thread but in worst case (if the IFile is out-of-sync with file system state) it acquires workspace lock for refreshing the resource state. If at same time any workspace job holding a lock on a parent project will try to use IOConsoleOutputStream.write(String) to report lot of data (> 160000 characters) to the console, the IOConsolePartitioner.streamAppended() call will block forever waiting for queue processed by the (locked) UI thread. Proposed solution: FileDocumentProvider.refreshFile(IFile) should run DocumentProviderOperation in providers runnable context to avoid such deadlocks. In the case the resource tree is locked, a "User Operation is Waiting" progress dialog will be shown, giving the user a chance to resolve the deadlock situation by canceling one of the affected tasks. To be consistent with existing API and to allow clients override the supplied refresh rule, new API is introduced in FileDocumentProvider: protected ISchedulingRule.getRefreshRule(Object element). Default implementation in FileDocumentProvider uses ResourceRuleFactory.refreshRule for given file. Change-Id: Id742d98403cc546fad4a21d25eb18ab7bef48776 Signed-off-by: Andrey Loskutov <loskutov@gmx.de>
Diffstat (limited to 'org.eclipse.ui.editors.tests')
-rw-r--r--org.eclipse.ui.editors.tests/META-INF/MANIFEST.MF2
-rw-r--r--org.eclipse.ui.editors.tests/pom.xml2
-rw-r--r--org.eclipse.ui.editors.tests/src/org/eclipse/ui/editors/tests/EditorsTestSuite.java3
-rw-r--r--org.eclipse.ui.editors.tests/src/org/eclipse/ui/editors/tests/FileDocumentProviderTest.java395
4 files changed, 399 insertions, 3 deletions
diff --git a/org.eclipse.ui.editors.tests/META-INF/MANIFEST.MF b/org.eclipse.ui.editors.tests/META-INF/MANIFEST.MF
index 91a8ef8e6ff..95423a228df 100644
--- a/org.eclipse.ui.editors.tests/META-INF/MANIFEST.MF
+++ b/org.eclipse.ui.editors.tests/META-INF/MANIFEST.MF
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %Plugin.name
Bundle-SymbolicName: org.eclipse.ui.editors.tests;singleton:=true
-Bundle-Version: 3.9.100.qualifier
+Bundle-Version: 3.10.0.qualifier
Bundle-Vendor: %Plugin.providerName
Bundle-Localization: plugin
Export-Package: org.eclipse.ui.editors.tests
diff --git a/org.eclipse.ui.editors.tests/pom.xml b/org.eclipse.ui.editors.tests/pom.xml
index c8d0f998fb3..62bb4434a6c 100644
--- a/org.eclipse.ui.editors.tests/pom.xml
+++ b/org.eclipse.ui.editors.tests/pom.xml
@@ -19,7 +19,7 @@
</parent>
<groupId>org.eclipse.ui</groupId>
<artifactId>org.eclipse.ui.editors.tests</artifactId>
- <version>3.9.100-SNAPSHOT</version>
+ <version>3.10.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
<testSuite>${project.artifactId}</testSuite>
diff --git a/org.eclipse.ui.editors.tests/src/org/eclipse/ui/editors/tests/EditorsTestSuite.java b/org.eclipse.ui.editors.tests/src/org/eclipse/ui/editors/tests/EditorsTestSuite.java
index d552f89d86c..6b1e4b01150 100644
--- a/org.eclipse.ui.editors.tests/src/org/eclipse/ui/editors/tests/EditorsTestSuite.java
+++ b/org.eclipse.ui.editors.tests/src/org/eclipse/ui/editors/tests/EditorsTestSuite.java
@@ -27,7 +27,8 @@ import org.junit.runners.Suite.SuiteClasses;
GotoLineTest.class,
SegmentedModeTest.class,
MarkerAnnotationOrderTest.class,
- ZoomTest.class
+ ZoomTest.class,
+ FileDocumentProviderTest.class
})
public class EditorsTestSuite {
// see @SuiteClasses
diff --git a/org.eclipse.ui.editors.tests/src/org/eclipse/ui/editors/tests/FileDocumentProviderTest.java b/org.eclipse.ui.editors.tests/src/org/eclipse/ui/editors/tests/FileDocumentProviderTest.java
new file mode 100644
index 00000000000..e5adfd63d1c
--- /dev/null
+++ b/org.eclipse.ui.editors.tests/src/org/eclipse/ui/editors/tests/FileDocumentProviderTest.java
@@ -0,0 +1,395 @@
+/*******************************************************************************
+ * Copyright (c) 2016 Andrey Loskutov.
+ * 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:
+ * Andrey Loskutov <loskutov@gmx.de> - initial API and implementation
+ *******************************************************************************/
+package org.eclipse.ui.editors.tests;
+
+import static org.junit.Assert.assertFalse;
+import static org.junit.Assert.assertNotNull;
+import static org.junit.Assert.assertTrue;
+
+import java.nio.file.Files;
+import java.nio.file.attribute.FileTime;
+import java.util.Arrays;
+import java.util.concurrent.atomic.AtomicBoolean;
+
+import org.junit.After;
+import org.junit.Before;
+import org.junit.Test;
+
+import org.eclipse.swt.widgets.Display;
+
+import org.eclipse.core.internal.localstore.FileSystemResourceManager;
+import org.eclipse.core.internal.resources.File;
+
+import org.eclipse.core.runtime.CoreException;
+import org.eclipse.core.runtime.ILog;
+import org.eclipse.core.runtime.IProgressMonitor;
+import org.eclipse.core.runtime.IProgressMonitorWithBlocking;
+import org.eclipse.core.runtime.IStatus;
+import org.eclipse.core.runtime.NullProgressMonitor;
+import org.eclipse.core.runtime.OperationCanceledException;
+import org.eclipse.core.runtime.Platform;
+import org.eclipse.core.runtime.Status;
+import org.eclipse.core.runtime.jobs.Job;
+
+import org.eclipse.core.resources.IFile;
+import org.eclipse.core.resources.IFolder;
+import org.eclipse.core.resources.IResource;
+import org.eclipse.core.resources.IWorkspaceRunnable;
+import org.eclipse.core.resources.ResourcesPlugin;
+import org.eclipse.core.resources.WorkspaceJob;
+
+import org.eclipse.core.filebuffers.tests.ResourceHelper;
+
+import org.eclipse.jface.action.IStatusLineManager;
+
+import org.eclipse.ui.IEditorPart;
+import org.eclipse.ui.IWorkbench;
+import org.eclipse.ui.IWorkbenchPage;
+import org.eclipse.ui.PlatformUI;
+import org.eclipse.ui.ide.IDE;
+import org.eclipse.ui.internal.dialogs.EventLoopProgressMonitor;
+
+import org.eclipse.ui.editors.text.FileDocumentProvider;
+
+/**
+ * Test checking UI deadlock on modifying the FileDocumentProvider's underlined
+ * file.
+ *
+ * @since 3.10
+ */
+public class FileDocumentProviderTest {
+
+ private File file;
+ private AtomicBoolean stoppedByTest;
+ private AtomicBoolean stopLockingFlag;
+ private LockJob lockJob;
+ private FileDocumentProviderMock fileProvider;
+ private FileSystemResourceManager fsManager;
+ private IEditorPart editor;
+ private IWorkbenchPage page;
+
+ @Before
+ public void setUp() throws Exception {
+ IFolder folder = ResourceHelper.createFolder("FileDocumentProviderTestProject/test");
+ file = (File) ResourceHelper.createFile(folder, "file.txt", "");
+ assertTrue(file.exists());
+ fsManager = file.getLocalManager();
+ assertTrue(fsManager.fastIsSynchronized(file));
+ stopLockingFlag = new AtomicBoolean(false);
+ stoppedByTest = new AtomicBoolean(false);
+ fileProvider = new FileDocumentProviderMock();
+ lockJob = new LockJob("Locking workspace", file, stopLockingFlag, stoppedByTest);
+
+ // We need the editor only to get the default editor status line manager
+ IWorkbench workbench = PlatformUI.getWorkbench();
+ page = workbench.getActiveWorkbenchWindow().getActivePage();
+ editor = IDE.openEditor(page, file);
+ processUIEvents();
+
+ IStatusLineManager statusLineManager = editor.getEditorSite().getActionBars().getStatusLineManager();
+ // This is default monitor which almost all editors are using
+ IProgressMonitor progressMonitor = statusLineManager.getProgressMonitor();
+ assertNotNull(progressMonitor);
+ assertFalse(progressMonitor instanceof NullProgressMonitor);
+ assertFalse(progressMonitor instanceof EventLoopProgressMonitor);
+ assertTrue(progressMonitor instanceof IProgressMonitorWithBlocking);
+
+ // Because this monitor is not EventLoopProgressMonitor, it will not
+ // process UI events while waiting on workspace lock
+ fileProvider.setProgressMonitor(progressMonitor);
+
+ waitForJobs(500, 5000);
+ Job[] jobs = Job.getJobManager().find(null);
+ String jobsList = Arrays.toString(jobs);
+ System.out.println("Still running jobs: " + jobsList);
+ if (!Job.getJobManager().isIdle()) {
+ jobs = Job.getJobManager().find(null);
+ for (Job job : jobs) {
+ System.out.println("Going to cancel: " + job.getName() + " / " + job);
+ job.cancel();
+ }
+ }
+ }
+
+ @After
+ public void tearDown() throws Exception {
+ stopLockingFlag.set(true);
+ lockJob.cancel();
+ if (editor != null) {
+ page.closeEditor(editor, false);
+ }
+ ResourceHelper.deleteProject(file.getProject().getName());
+ processUIEvents();
+ }
+
+ @Test
+ public void testRefreshFileWhileWorkspaceIsLocked1() throws Exception {
+ // See https://bugs.eclipse.org/bugs/show_bug.cgi?id=482354
+ assertNotNull("Test must run in UI thread", Display.getCurrent());
+
+ // Start workspace job which will lock workspace operations on file via
+ // rule
+ lockJob.schedule();
+
+ // touch the file of the editor
+ makeSureResourceIsOutOfDate();
+
+ // Put an UI event in the queue which will stop the workspace lock job
+ // after a delay so that we can verify the UI events are still
+ // dispatched after the call to refreshFile() below
+ Display.getCurrent().timerExec(500, new Runnable() {
+ @Override
+ public void run() {
+ stopLockingFlag.set(true);
+ System.out.println("UI event dispatched, lock removed");
+ }
+ });
+
+ // Original code will lock UI thread here because it will try to acquire
+ // resource lock and no one will process UI events anymore
+ fileProvider.refreshFile(file);
+
+ System.out.println("Busy wait terminated, UI thread is operable again!");
+ assertFalse("Test deadlocked while waiting on resource lock", stoppedByTest.get());
+ assertTrue(stopLockingFlag.get());
+ }
+
+ @Test
+ public void testRefreshFileWhileWorkspaceIsLocked2() throws Exception {
+ // See https://bugs.eclipse.org/bugs/show_bug.cgi?id=482354
+ assertNotNull("Test must run in UI thread", Display.getCurrent());
+
+ // Start workspace job which will lock workspace operations on file via
+ // rule
+ lockJob.schedule();
+
+ // touch the file of the editor
+ makeSureResourceIsOutOfDate();
+
+ // Put an UI event in the queue which will stop the workspace lock job
+ // after a delay so that we can verify the UI events are still
+ // dispatched after the call to refreshFile() below
+ Display.getCurrent().timerExec(500, new Runnable() {
+ @Override
+ public void run() {
+ stopLockingFlag.set(true);
+ System.out.println("UI event dispatched, lock removed");
+ }
+ });
+
+ // Original code will lock UI thread here because it will try to acquire
+ // resource lock and no one will process UI events anymore
+ fileProvider.refreshFile(file, fileProvider.getProgressMonitor());
+
+ System.out.println("Busy wait terminated, UI thread is operable again!");
+
+ assertFalse("Test deadlocked while waiting on resource lock", stoppedByTest.get());
+ assertTrue(stopLockingFlag.get());
+ }
+
+ /*
+ * Set current time stamp via java.nio to make sure
+ * org.eclipse.core.internal.resources.File.refreshLocal(int,
+ * IProgressMonitor) will call super.refreshLocal(IResource.DEPTH_ZERO,
+ * monitor) and so lock the UI by trying to access resource locked by the
+ * job
+ */
+ private void makeSureResourceIsOutOfDate() throws Exception {
+ int count = 0;
+ Files.setLastModifiedTime(file.getLocation().toFile().toPath(),
+ FileTime.fromMillis(System.currentTimeMillis()));
+ // Give the file system a chance to have a *different* timestamp
+ Thread.sleep(100);
+ while (fsManager.fastIsSynchronized(file) && count < 1000) {
+ Files.setLastModifiedTime(file.getLocation().toFile().toPath(),
+ FileTime.fromMillis(System.currentTimeMillis()));
+ Thread.sleep(10);
+ count++;
+ }
+ System.out.println("Managed to update file after " + count + " attempts");
+ assertFalse(fsManager.fastIsSynchronized(file));
+ }
+
+ /**
+ * Utility for waiting until the execution of jobs of any family has
+ * finished or timeout is reached. If no jobs are running, the method waits
+ * given minimum wait time. While this method is waiting for jobs, UI events
+ * are processed.
+ *
+ * @param minTimeMs
+ * minimum wait time in milliseconds
+ * @param maxTimeMs
+ * maximum wait time in milliseconds
+ */
+ public static void waitForJobs(long minTimeMs, long maxTimeMs) {
+ if (maxTimeMs < minTimeMs) {
+ throw new IllegalArgumentException("Max time is smaller as min time!");
+ }
+ final long start = System.currentTimeMillis();
+ while (System.currentTimeMillis() - start < minTimeMs) {
+ processUIEvents();
+ }
+ while (!Job.getJobManager().isIdle() && System.currentTimeMillis() - start < maxTimeMs) {
+ processUIEvents();
+ }
+ }
+
+ /**
+ * Process all queued UI events. If called from background thread, blocks
+ * until all pending events are processed in UI thread.
+ */
+ public static void processUIEvents() {
+ processUIEvents(0);
+ }
+
+ /**
+ * Process all queued UI events. If called from background thread, blocks
+ * until all pending events are processed in UI thread.
+ *
+ * @param timeInMillis
+ * time to wait. During this time all UI events are processed but
+ * the current thread is blocked
+ */
+ public static void processUIEvents(final long timeInMillis) {
+ if (Display.getCurrent() != null) {
+ if (timeInMillis <= 0) {
+ while (Display.getCurrent().readAndDispatch()) {
+ // process queued ui events at least once
+ }
+ } else {
+ long start = System.currentTimeMillis();
+ while (System.currentTimeMillis() - start <= timeInMillis) {
+ while (Display.getCurrent().readAndDispatch()) {
+ try {
+ Thread.sleep(10);
+ } catch (InterruptedException e) {
+ break;
+ }
+ }
+ }
+ }
+ } else {
+ // synchronously refresh UI
+ PlatformUI.getWorkbench().getDisplay().syncExec(new Runnable() {
+ @Override
+ public void run() {
+ processUIEvents();
+ }
+ });
+ }
+ }
+
+ static void logError(String message, Exception ex) {
+ String PLUGIN_ID = "org.eclipse.jface.text"; //$NON-NLS-1$
+ ILog log = Platform.getLog(Platform.getBundle(PLUGIN_ID));
+ log.log(new Status(IStatus.ERROR, PLUGIN_ID, IStatus.OK, message, ex));
+ }
+}
+
+class FileDocumentProviderMock extends FileDocumentProvider {
+
+ /**
+ * Overridden to make public accessible for the test
+ */
+ @Override
+ public void refreshFile(IFile file) throws CoreException {
+ System.out.println("Will try to refresh file now: " + file);
+ super.refreshFile(file);
+ }
+
+ /**
+ * Overridden to make public accessible for the test
+ */
+ @Override
+ public void refreshFile(IFile file, IProgressMonitor m) throws CoreException {
+ System.out.println("Will try to refresh file (with monitor: " + m + " ) now: " + file);
+ super.refreshFile(file, m);
+ }
+}
+
+/** Emulates what SVN plugin jobs are doing */
+class LockJob extends WorkspaceJob {
+
+ private final IResource resource;
+ private AtomicBoolean stopFlag;
+ private AtomicBoolean stoppedByTest;
+
+ public LockJob(String name, IResource resource, AtomicBoolean stopFlag, AtomicBoolean stoppedByTest) {
+ super(name);
+ this.stopFlag = stopFlag;
+ this.stoppedByTest = stoppedByTest;
+ setUser(true);
+ setSystem(true);
+ this.resource = resource;
+ }
+
+ public IStatus run2(IProgressMonitor monitor) {
+ long startTime = System.currentTimeMillis();
+ // Wait maximum 5 minutes
+ int maxWaitTime = 5 * 60 * 1000;
+ long stopTime = startTime + maxWaitTime;
+
+ System.out.println("Starting the busy wait while holding lock on: " + resource.getFullPath());
+ try {
+ while (!stopFlag.get()) {
+ try {
+ if (System.currentTimeMillis() > stopTime) {
+ FileDocumentProviderTest.logError("Tiemout occured while waiting on test to finish",
+ new IllegalStateException());
+ stoppedByTest.set(true);
+ return Status.CANCEL_STATUS;
+ }
+ Thread.sleep(100);
+ } catch (InterruptedException e) {
+ stoppedByTest.set(true);
+ FileDocumentProviderTest.logError("Lock job was interrupted while waiting on test to finish", e);
+ e.printStackTrace();
+ return Status.CANCEL_STATUS;
+ }
+ }
+ } finally {
+ System.out.println("Lock task terminated");
+ }
+ return Status.OK_STATUS;
+ }
+
+ @Override
+ public boolean belongsTo(Object family) {
+ return super.belongsTo(family) || LockJob.class == family;
+ }
+
+ @Override
+ public String toString() {
+ return super.toString() + " on " + resource;
+ }
+
+ @Override
+ public IStatus runInWorkspace(IProgressMonitor monitor) throws CoreException {
+ IWorkspaceRunnable workspaceRunnable = new IWorkspaceRunnable() {
+ @Override
+ public void run(IProgressMonitor pm) throws CoreException {
+ try {
+ run2(pm);
+ } catch (Exception e) {
+ // Re-throw as OperationCanceledException, which will be
+ // caught and re-thrown as InterruptedException below.
+ throw new OperationCanceledException(e.getMessage());
+ }
+ // CoreException and OperationCanceledException are propagated
+ }
+ };
+ ResourcesPlugin.getWorkspace().run(workspaceRunnable,
+ resource, IResource.NONE, monitor);
+
+ return monitor.isCanceled() ? Status.CANCEL_STATUS : Status.OK_STATUS;
+ }
+
+}

Back to the top