/******************************************************************************* * Copyright (c) 2014, 2017 Red Hat Inc. * 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: * Red Hat Inc. - Initial Contribution *******************************************************************************/ package org.eclipse.linuxtools.docker.ui; import java.lang.reflect.InvocationTargetException; import org.eclipse.core.runtime.CoreException; import org.eclipse.core.runtime.IStatus; import org.eclipse.core.runtime.Status; import org.eclipse.swt.widgets.Shell; import org.eclipse.ui.IWorkbenchWindow; import org.eclipse.ui.plugin.AbstractUIPlugin; import org.osgi.framework.BundleContext; /** * The activator class controls the plug-in life cycle */ public class Activator extends AbstractUIPlugin { // The plug-in ID public static final String PLUGIN_ID = "org.eclipse.linuxtools.docker.ui"; //$NON-NLS-1$ // The shared instance private static Activator plugin; @Override public void start(BundleContext context) throws Exception { super.start(context); plugin = this; } @Override public void stop(BundleContext context) throws Exception { plugin = null; super.stop(context); } /** * Returns the shared instance * * @return the shared instance */ public static Activator getDefault() { return plugin; } public static void log(IStatus status) { Activator.getDefault().getLog().log(status); } public static void logWarningMessage(final String message) { log(new Status(IStatus.WARNING, PLUGIN_ID, IStatus.WARNING, message, null)); } public static void logErrorMessage(final String message, final Throwable e) { log(new Status(IStatus.ERROR, PLUGIN_ID, IStatus.ERROR, message, e)); } public static void log(Throwable e) { if (e instanceof InvocationTargetException) e = ((InvocationTargetException) e).getTargetException(); IStatus status = null; if (e instanceof CoreException) status = ((CoreException) e).getStatus(); else status = new Status(IStatus.ERROR, PLUGIN_ID, IStatus.OK, e.getMessage(), e); log(status); } public static Shell getActiveWorkbenchShell() { IWorkbenchWindow window = getDefault().getWorkbench() .getActiveWorkbenchWindow(); if (window != null) { return window.getShell(); } return null; } }