blob: 111b9bdc7012c7f564524db308a9f5c0cb52b9a0 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006, 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
*******************************************************************************/
package org.eclipse.debug.internal.ui.model.elements;
import java.util.LinkedList;
import java.util.NoSuchElementException;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.core.runtime.Status;
import org.eclipse.core.runtime.jobs.ISchedulingRule;
import org.eclipse.core.runtime.jobs.Job;
import org.eclipse.debug.internal.ui.viewers.model.provisional.IElementLabelProvider;
import org.eclipse.debug.internal.ui.viewers.model.provisional.ILabelUpdate;
import org.eclipse.debug.internal.ui.viewers.model.provisional.IPresentationContext;
import org.eclipse.jface.resource.ImageDescriptor;
import org.eclipse.jface.viewers.TreePath;
import org.eclipse.swt.graphics.FontData;
import org.eclipse.swt.graphics.RGB;
import org.eclipse.ui.progress.UIJob;
/**
* Implementation of a context sensitive label provider, which provides
* base functionality for subclasses such as label jobs and a basic label updater.
*
* @since 3.3.0.qualifier
*/
public abstract class ElementLabelProvider implements IElementLabelProvider {
private Job fLabelJob = null;
/**
* Describes a label job
*/
interface ILabelJob {
/**
* Returns whether the updates were queued.
*
* @param updates updates
* @return whether the updates were queued
*/
public boolean queue(ILabelUpdate[] updates);
}
/**
* A <code>Job</code> to update labels. This <code>Job</code> can run
* in a non-UI thread.
*/
class LabelJob extends Job implements ILabelJob {
private LabelUpdater fUpdater = new LabelUpdater();
public LabelJob() {
super("Label Job"); //$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) {
fUpdater.run();
return Status.OK_STATUS;
}
/* (non-Javadoc)
* @see org.eclipse.debug.internal.ui.viewers.model.provisional.elements.ElementContentProvider.ILabelJob#queue(org.eclipse.debug.internal.ui.viewers.model.provisional.ILabelUpdate)
*/
public boolean queue(ILabelUpdate[] updates) {
return fUpdater.queue(updates);
}
/* (non-Javadoc)
* @see org.eclipse.core.runtime.jobs.Job#shouldRun()
*/
public boolean shouldRun() {
return fUpdater.shouldRun();
}
}
/**
* A <code>Job</code> to update labels. This <code>Job</code> runs
* only in the UI thread.
*/
class UILabelJob extends UIJob implements ILabelJob {
private LabelUpdater fUpdater = new LabelUpdater();
public UILabelJob() {
super("Label Job"); //$NON-NLS-1$
setSystem(true);
}
/* (non-Javadoc)
* @see org.eclipse.ui.progress.UIJob#runInUIThread(org.eclipse.core.runtime.IProgressMonitor)
*/
public IStatus runInUIThread(IProgressMonitor monitor) {
fUpdater.run();
return Status.OK_STATUS;
}
/* (non-Javadoc)
* @see org.eclipse.debug.internal.ui.viewers.model.provisional.elements.ElementContentProvider.ILabelJob#queue(org.eclipse.debug.internal.ui.viewers.model.provisional.ILabelUpdate)
*/
public boolean queue(ILabelUpdate[] updates) {
return fUpdater.queue(updates);
}
/* (non-Javadoc)
* @see org.eclipse.core.runtime.jobs.Job#shouldRun()
*/
public boolean shouldRun() {
return fUpdater.shouldRun();
}
}
/**
* Queue of label updates
*/
class LabelUpdater implements Runnable {
LinkedList fQueue = new LinkedList();
public synchronized boolean queue(ILabelUpdate[] updates) {
if (fQueue == null) {
return false;
} else {
for (int i = 0; i < updates.length; i++) {
fQueue.addLast(updates[i]);
}
return true;
}
}
/* (non-Javadoc)
* @see java.lang.Runnable#run()
*/
public void run() {
ILabelUpdate update = getNextUpdate();
while (update != null) {
ISchedulingRule rule = getRule(update);
if (!update.isCanceled()) {
try {
if (rule != null) {
Job.getJobManager().beginRule(rule, null);
}
retrieveLabel(update);
} catch (CoreException e) {
update.setStatus(e.getStatus());
} finally {
if (rule != null) {
Job.getJobManager().endRule(rule);
}
}
}
update.done();
update = getNextUpdate();
}
}
/**
* Returns the next update to process, if there is one in the
* queue. If there are no queued items <code>null</code> is returned
* @return the next queued item or <code>null</code> if the queue is empty.
*/
public synchronized ILabelUpdate getNextUpdate() {
if (fQueue == null) {
return null;
}
ILabelUpdate update = null;
try {
update = (ILabelUpdate) fQueue.removeFirst();
} catch (NoSuchElementException e) {
fQueue = null;
}
return update;
}
public boolean shouldRun() {
return fQueue != null;
}
}
/**
* Retrieves label attributes for the specified update.
*
* @param update
*/
protected void retrieveLabel(ILabelUpdate update) throws CoreException {
String[] columnIds = update.getColumnIds();
IPresentationContext presentationContext = update.getPresentationContext();
TreePath elementPath = update.getElementPath();
int numColumns = 1;
if (columnIds != null) {
numColumns = columnIds.length;
}
for (int i = 0; i < numColumns; i++) {
String columnId = null;
if (columnIds != null) {
columnId = columnIds[i];
}
update.setLabel(getLabel(elementPath, presentationContext, columnId), i);
update.setImageDescriptor(getImageDescriptor(elementPath, presentationContext, columnId), i);
update.setBackground(getBackground(elementPath, presentationContext, columnId), i);
update.setForeground(getForeground(elementPath, presentationContext, columnId), i);
update.setFontData(getFontData(elementPath, presentationContext, columnId), i);
}
}
/**
* Returns the <code>FontData</code> for the path in the given column with the current presentation
* @param element
* @param presentationContext
* @param columnId
* @return font information or <code>null</code>
*/
protected FontData getFontData(TreePath elementPath, IPresentationContext presentationContext, String columnId) throws CoreException {
return null;
}
/**
* Returns the <code>RGB</code> foreground colour for the path in the given column with the current presentation
* @param element
* @param presentationContext
* @param columnId
* @return color or <code>null</code>
*/
protected RGB getForeground(TreePath elementPath, IPresentationContext presentationContext, String columnId) throws CoreException {
return null;
}
/**
* Returns the <code>RGB</code> background colour for the path in the given column with the current presentation
* @param element
* @param presentationContext
* @param columnId
* @return color or <code>null</code>
*/
protected RGB getBackground(TreePath elementPath, IPresentationContext presentationContext, String columnId) throws CoreException {
return null;
}
/**
* Returns the <code>ImageDescriptor</code> for the path in the given column with the current presentation
* @param element
* @param presentationContext
* @param columnId
* @return image descriptor or <code>null</code>
*/
protected ImageDescriptor getImageDescriptor(TreePath elementPath, IPresentationContext presentationContext, String columnId) throws CoreException {
return null;
}
/**
* Returns the label for the path in the given column with the current presentation
* @param element
* @param presentationContext
* @param columnId
* @return label
*/
protected abstract String getLabel(TreePath elementPath, IPresentationContext presentationContext, String columnId) throws CoreException;
/* (non-Javadoc)
* @see org.eclipse.debug.internal.ui.viewers.model.provisional.IElementLabelProvider#update(org.eclipse.debug.internal.ui.viewers.model.provisional.ILabelUpdate[])
*/
public synchronized void update(ILabelUpdate[] updates) {
if (fLabelJob == null) {
fLabelJob = newLabelJob(updates);
}
if (!((ILabelJob)fLabelJob).queue(updates)) {
fLabelJob = newLabelJob(updates);
((ILabelJob)fLabelJob).queue(updates);
}
// TODO: rule
fLabelJob.schedule();
}
/**
* Returns a new <code>Job</code> to update the specified labels. This method
* is used to determine if a UI job is needed or not, in the event the request for an update
* job has come from a non-UI thread.
* @param updates an array of pending label updates
* @return a new <code>Job</code> to update labels with.
*/
private Job newLabelJob(ILabelUpdate[] updates) {
if (requiresUIJob(updates)) {
return new UILabelJob();
} else {
return new LabelJob();
}
}
/**
* Returns whether a UI job should be used for updates versus a non-UI job.
* @param updates
* @return true if the array of updates requires a UI job to update the labels, false otherwise
*/
protected boolean requiresUIJob(ILabelUpdate[] updates) {
return false;
}
/**
* Returns the scheduling rule for the given update or <code>null</code>
* it none.
*
* @param update label update
* @return associated scheduling rule, or <code>null</code>
*/
protected ISchedulingRule getRule(ILabelUpdate update) {
return null;
}
}