view dwtx/core/runtime/SafeRunner.d @ 3:6518c18a01f7

eclipse.core package without osgi dependencies
author Frank Benoit <benoit@tionex.de>
date Wed, 26 Mar 2008 00:57:19 +0100
parents
children 25461c48a9bd
line wrap: on
line source

/*******************************************************************************
 * Copyright (c) 2005, 2006 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
 * Port to the D programming language:
 *     Frank Benoit <benoit@tionex.de>
 *******************************************************************************/
module dwtx.core.runtime.SafeRunner;

import dwtx.core.runtime.ISafeRunnable;
import dwtx.core.runtime.Assert;

import dwt.dwthelper.utils;

/**
 * Runs the given ISafeRunnable in a protected mode: exceptions
 * thrown in the runnable are logged and passed to the runnable's
 * exception handler.  Such exceptions are not rethrown by this method.
 * <p>
 * This class can be used without OSGi running.
 * </p>
 * @since dwtx.equinox.common 3.2
 */
public final class SafeRunner {

    /**
     * Runs the given runnable in a protected mode.   Exceptions
     * thrown in the runnable are logged and passed to the runnable's
     * exception handler.  Such exceptions are not rethrown by this method.
     *
     * @param code the runnable to run
     */
    public static void run(ISafeRunnable code) {
        Assert.isNotNull(cast(Object)code);
        try {
            code.run();
        } catch (Exception e) {
            handleException(code, e);
//FIXME
//         } catch (LinkageError e) {
//             handleException(code, e);
        }
    }

    private static void handleException(ISafeRunnable code, Exception e) {
//FIXME
//      if (!(e instanceof OperationCanceledException)) {
//          // try to obtain the correct plug-in id for the bundle providing the safe runnable
//          Activator activator = Activator.getDefault();
//          String pluginId = null;
//          if (activator !is null)
//              pluginId = activator.getBundleId(code);
//          if (pluginId is null)
//              pluginId = IRuntimeConstants.PI_COMMON;
//          String message = NLS.bind(CommonMessages.meta_pluginProblems, pluginId);
//          IStatus status;
//          if (e instanceof CoreException) {
//              status = new MultiStatus(pluginId, IRuntimeConstants.PLUGIN_ERROR, message, e);
//              ((MultiStatus) status).merge(((CoreException) e).getStatus());
//          } else {
//              status = new Status(IStatus.ERROR, pluginId, IRuntimeConstants.PLUGIN_ERROR, message, e);
//          }
//          // Make sure user sees the exception: if the log is empty, log the exceptions on stderr
//          if (!RuntimeLog.isEmpty())
//              RuntimeLog.log(status);
//          else
//              e.printStackTrace();
//      }
        code.handleException(e);
    }
}