blob: 43a665bf705d9b5fd9fd812596d844ac8d6fa28b [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2003, 2007 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
*******************************************************************************/
package org.eclipse.ui.internal.navigator;
import org.eclipse.core.runtime.ILog;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.core.runtime.ListenerList;
import org.eclipse.core.runtime.Status;
import org.eclipse.core.runtime.jobs.Job;
import org.eclipse.jface.resource.ImageDescriptor;
import org.eclipse.swt.graphics.Image;
import org.eclipse.ui.plugin.AbstractUIPlugin;
import org.osgi.framework.BundleContext;
import org.osgi.framework.BundleEvent;
import org.osgi.framework.BundleListener;
/**
* The main plugin class for the Navigator.
*
* @since 3.2
*/
public class NavigatorPlugin extends AbstractUIPlugin {
// The shared instance.
private static NavigatorPlugin plugin;
private static final int LOG_DELAY = 100;
private static class LogJob extends Job {
private ListenerList messages = new ListenerList() {
public synchronized Object[] getListeners() {
Object[] mesgs = super.getListeners();
clear();
return mesgs;
}
};
/**
* Creates a Job which offloads the logging work into a non-UI thread.
*
*/
public LogJob() {
super(""); //$NON-NLS-1$
setSystem(true);
}
/* (non-Javadoc)
* @see org.eclipse.core.runtime.jobs.Job#run(org.eclipse.core.runtime.IProgressMonitor)
*/
protected IStatus run(IProgressMonitor monitor) {
Object[] mesgs = messages.getListeners();
ILog pluginLog = getDefault().getLog();
for (int i = 0; i < mesgs.length; i++) {
pluginLog.log((IStatus)mesgs[i]);
}
return Status.OK_STATUS;
}
/**
* @param mesg The message to add to the Plugin's log.
*/
public void log(IStatus mesg) {
messages.add(mesg);
}
}
private static final LogJob logJob = new LogJob();
/** The id of the orge.eclipse.ui.navigator plugin. */
public static String PLUGIN_ID = "org.eclipse.ui.navigator"; //$NON-NLS-1$
private BundleListener bundleListener = new BundleListener() {
public void bundleChanged(BundleEvent event) {
NavigatorSaveablesService.bundleChanged(event);
}
};
/**
* Creates a new instance of the receiver
*/
public NavigatorPlugin() {
super();
plugin = this;
}
/**
* @return the shared instance.
*/
public static NavigatorPlugin getDefault() {
return plugin;
}
/**
* Returns an image descriptor for the image file at the given plug-in
* relative path.
*
* @param path
* the path
* @return the image descriptor
*/
public static ImageDescriptor getImageDescriptor(String path) {
return AbstractUIPlugin.imageDescriptorFromPlugin(PLUGIN_ID, path);
}
/**
* Returns an image descriptor for the image file at the given plug-in
* relative path.
*
* @param path
* the path
* @return the image
*/
public Image getImage(String path) {
Image image = getImageRegistry().get(path);
if(image == null) {
ImageDescriptor descriptor = getImageDescriptor(path);
if(descriptor != null) {
getImageRegistry().put(path, image = descriptor.createImage());
}
}
return image;
}
/**
* Record an error against this plugin's log.
*
* @param aCode
* @param aMessage
* @param anException
*/
public static void logError(int aCode, String aMessage,
Throwable anException) {
getDefault().getLog().log(
createErrorStatus(aCode, aMessage, anException));
}
/**
*
* Record a message against this plugin's log.
*
* @param severity
* @param aCode
* @param aMessage
* @param exception
*/
public static void log(int severity, int aCode, String aMessage,
Throwable exception) {
log(createStatus(severity, aCode, aMessage, exception));
}
/**
*
* Record a status against this plugin's log.
*
* @param aStatus
*/
public static void log(IStatus aStatus) {
//getDefault().getLog().log(aStatus);
logJob.log(aStatus);
logJob.schedule(LOG_DELAY);
}
/**
* Create a status associated with this plugin.
*
* @param severity
* @param aCode
* @param aMessage
* @param exception
* @return A status configured with this plugin's id and the given parameters.
*/
public static IStatus createStatus(int severity, int aCode,
String aMessage, Throwable exception) {
return new Status(severity, PLUGIN_ID, aCode,
aMessage != null ? aMessage : "No message.", exception); //$NON-NLS-1$
}
/**
*
* @param aCode
* @param aMessage
* @param exception
* @return A status configured with this plugin's id and the given parameters.
*/
public static IStatus createErrorStatus(int aCode, String aMessage,
Throwable exception) {
return createStatus(IStatus.ERROR, aCode, aMessage, exception);
}
public void start(BundleContext context) throws Exception {
// System.out.println("Navigator plugin starting"); //$NON-NLS-1$
super.start(context);
context.addBundleListener(bundleListener);
}
public void stop(BundleContext context) throws Exception {
context.removeBundleListener(bundleListener);
super.stop(context);
// System.out.println("Navigator plugin stopped"); //$NON-NLS-1$
}
}