All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.eclipse.jface.util.SafeRunnable Maven / Gradle / Ivy

There is a newer version: 3.29.0
Show newest version
/*******************************************************************************
 * Copyright (c) 2000, 2008 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
 *     Chris Gross ([email protected]) - support for ISafeRunnableRunner added
 *       (bug 49497 [RCP] JFace dependency on org.eclipse.core.runtime enlarges standalone JFace applications)
 *******************************************************************************/
package org.eclipse.jface.util;

import java.io.Serializable;

import org.eclipse.core.runtime.ISafeRunnable;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.core.runtime.OperationCanceledException;
import org.eclipse.core.runtime.Status;
import org.eclipse.jface.resource.JFaceResources;

/**
 * Implements a default implementation of ISafeRunnable. The default
 * implementation of handleException opens a dialog to show any
 * errors as they accumulate.
 * 

* This may be executed on any thread. */ public abstract class SafeRunnable implements ISafeRunnable, Serializable { private static boolean ignoreErrors = false; private static ISafeRunnableRunner runner; private String message; /** * Creates a new instance of SafeRunnable with a default error message. */ public SafeRunnable() { // do nothing } /** * Creates a new instance of SafeRunnable with the given error message. * * @param message * the error message to use */ public SafeRunnable(String message) { this.message = message; } /* * (non-Javadoc) * * @see org.eclipse.core.runtime.ISafeRunnable#handleException(java.lang.Throwable) */ public void handleException(Throwable e) { // Workaround to avoid interactive error dialogs during // automated testing if (ignoreErrors) return; if (message == null) message = JFaceResources.getString("SafeRunnable.errorMessage"); //$NON-NLS-1$ Policy.getStatusHandler().show( new Status(IStatus.ERROR, Policy.JFACE, message, e), JFaceResources.getString("SafeRunnable.errorMessage")); //$NON-NLS-1$ } /** * Flag to avoid interactive error dialogs during automated testing. * * @param flag * @return true if errors should be ignored * @deprecated use getIgnoreErrors() */ public static boolean getIgnoreErrors(boolean flag) { return ignoreErrors; } /** * Flag to avoid interactive error dialogs during automated testing. * * @return true if errors should be ignored * * @since 1.0 */ public static boolean getIgnoreErrors() { return ignoreErrors; } /** * Flag to avoid interactive error dialogs during automated testing. * * @param flag * set to true if errors should be ignored */ public static void setIgnoreErrors(boolean flag) { ignoreErrors = flag; } /** * Returns the safe runnable runner. * * @return the safe runnable runner * * @since 1.0 */ public static ISafeRunnableRunner getRunner() { if (runner == null) { runner = createDefaultRunner(); } return runner; } /** * Creates the default safe runnable runner. * * @return the default safe runnable runner * @since 1.0 */ private static ISafeRunnableRunner createDefaultRunner() { return new ISafeRunnableRunner() { public void run(ISafeRunnable code) { try { code.run(); } catch (Exception e) { handleException(code, e); } catch (LinkageError e) { handleException(code, e); } } private void handleException(ISafeRunnable code, Throwable e) { if (!(e instanceof OperationCanceledException)) { try { Policy.getLog() .log( new Status(IStatus.ERROR, Policy.JFACE, IStatus.ERROR, "Exception occurred", e)); //$NON-NLS-1$ } catch (Exception ex) { e.printStackTrace(); } } code.handleException(e); } }; } /** * Sets the safe runnable runner. * * @param runner * the runner to set, or null to reset to the * default runner * @since 1.0 */ public static void setRunner(ISafeRunnableRunner runner) { SafeRunnable.runner = runner; } /** * Runs the given safe runnable using the safe runnable runner. This is a * convenience method, equivalent to: * SafeRunnable.getRunner().run(runnable). * * @param runnable * the runnable to run * @since 1.0 */ public static void run(ISafeRunnable runnable) { getRunner().run(runnable); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy