blob: 971f74b5ef2d493689a24548f5d4d0a30291ed93 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006, 2013 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
* Wind River Systems - added support for columns (bug 235646)
*******************************************************************************/
package org.eclipse.debug.internal.ui.model.elements;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.LinkedHashSet;
import java.util.List;
import java.util.Map;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.debug.core.model.IErrorReportingExpression;
import org.eclipse.debug.core.model.IExpression;
import org.eclipse.debug.core.model.IValue;
import org.eclipse.debug.internal.core.IInternalDebugCoreConstants;
import org.eclipse.debug.internal.ui.viewers.model.ViewerAdapterService;
import org.eclipse.debug.internal.ui.viewers.model.ViewerUpdateMonitor;
import org.eclipse.debug.internal.ui.viewers.model.provisional.IChildrenCountUpdate;
import org.eclipse.debug.internal.ui.viewers.model.provisional.IChildrenUpdate;
import org.eclipse.debug.internal.ui.viewers.model.provisional.IElementContentProvider;
import org.eclipse.debug.internal.ui.viewers.model.provisional.IElementLabelProvider;
import org.eclipse.debug.internal.ui.viewers.model.provisional.IHasChildrenUpdate;
import org.eclipse.debug.internal.ui.viewers.model.provisional.ILabelUpdate;
import org.eclipse.debug.internal.ui.viewers.model.provisional.IPresentationContext;
import org.eclipse.debug.internal.ui.viewers.model.provisional.IViewerUpdate;
import org.eclipse.debug.ui.IDebugUIConstants;
import org.eclipse.jface.resource.JFaceResources;
import org.eclipse.swt.SWT;
import org.eclipse.swt.graphics.FontData;
/**
* @since 3.3
*/
public class ExpressionContentProvider extends VariableContentProvider {
/**
* @since 3.6
* Element object used to wrap the expression error message. It displays
* the error message only in the first column if columns are visible.
*/
private static class ErrorMessageElement implements IElementLabelProvider {
public ErrorMessageElement(String message) {
fMessage = message;
}
private final String fMessage;
@Override
public void update(ILabelUpdate[] updates) {
for (int i = 0; i < updates.length; i++) {
String[] columnIds = updates[i].getColumnIds();
if (columnIds == null) {
updateLabel(updates[i], 0);
} else {
for (int j = 0; j < columnIds.length; j++) {
if (IDebugUIConstants.COLUMN_ID_VARIABLE_NAME.equals(columnIds[j])) {
updateLabel(updates[i], j);
} else {
updates[i].setLabel(IInternalDebugCoreConstants.EMPTY_STRING, j);
}
}
}
updates[i].done();
}
}
private void updateLabel(ILabelUpdate update, int columnIndex) {
update.setLabel(fMessage, columnIndex);
FontData fontData = JFaceResources.getFontDescriptor(IDebugUIConstants.PREF_VARIABLE_TEXT_FONT).getFontData()[0];
fontData.setStyle(SWT.ITALIC);
}
}
/* (non-Javadoc)
* @see org.eclipse.debug.internal.ui.model.elements.ElementContentProvider#update(org.eclipse.debug.internal.ui.viewers.model.provisional.IChildrenCountUpdate[])
*/
@Override
public void update(IChildrenCountUpdate[] updates) {
// See if we can delegate to a model specific content provider
Map<IElementContentProvider, List<IViewerUpdate>> delegateMap = new HashMap<>();
List<IViewerUpdate> notDelegated = new ArrayList<>();
findDelegates(delegateMap, notDelegated, updates);
// Batch the updates and send them to the delegates
for (IElementContentProvider delegate : delegateMap.keySet()) {
List<IViewerUpdate> updateList = delegateMap.get(delegate);
delegate.update(updateList.toArray(new IChildrenCountUpdate[updateList.size()]));
}
if (notDelegated.size() > 0){
super.update(notDelegated.toArray(new IChildrenCountUpdate[notDelegated.size()]));
}
}
/* (non-Javadoc)
* @see org.eclipse.debug.internal.ui.model.elements.ElementContentProvider#update(org.eclipse.debug.internal.ui.viewers.model.provisional.IHasChildrenUpdate[])
*/
@Override
public void update(IHasChildrenUpdate[] updates) {
// See if we can delegate to a model specific content provider
Map<IElementContentProvider, List<IViewerUpdate>> delegateMap = new HashMap<>();
List<IViewerUpdate> notDelegated = new ArrayList<>();
findDelegates(delegateMap, notDelegated, updates);
// Batch the updates and send them to the delegates
for (IElementContentProvider delegate : delegateMap.keySet()) {
List<IViewerUpdate> updateList = delegateMap.get(delegate);
delegate.update(updateList.toArray(new IHasChildrenUpdate[updateList.size()]));
}
if (notDelegated.size() > 0){
super.update(notDelegated.toArray(new IHasChildrenUpdate[notDelegated.size()]));
}
}
/* (non-Javadoc)
* @see org.eclipse.debug.internal.ui.model.elements.ElementContentProvider#update(org.eclipse.debug.internal.ui.viewers.model.provisional.IChildrenUpdate[])
*/
@Override
public void update(IChildrenUpdate[] updates) {
// See if we can delegate to a model specific content provider
Map<IElementContentProvider, List<IViewerUpdate>> delegateMap = new HashMap<>();
List<IViewerUpdate> notDelegated = new ArrayList<>();
findDelegates(delegateMap, notDelegated, updates);
// Batch the updates and send them to the delegates
for (IElementContentProvider delegate : delegateMap.keySet()) {
List<IViewerUpdate> updateList = delegateMap.get(delegate);
delegate.update(updateList.toArray(new IChildrenUpdate[updateList.size()]));
}
if (notDelegated.size() > 0){
super.update(notDelegated.toArray(new IChildrenUpdate[notDelegated.size()]));
}
}
/**
* Finds all possibly delegate content providers for the given set of updates. Found delegates are added
* to the given map as the key while the list of updates to be sent to that delegate are set as the value.
* Any updates that are not to be delegated are put in the notDelegated list.
*
* @param delegateMap map to add delegates to
* @param notDelegated list of updates that should not be delegated
* @param updates array of updates that can be handled by delegates
* @since 3.4
*/
private void findDelegates(Map<IElementContentProvider, List<IViewerUpdate>> delegateMap, List<IViewerUpdate> notDelegated, IViewerUpdate[] updates) {
for (int i = 0; i < updates.length; i++) {
if (updates[i] instanceof ViewerUpdateMonitor && !((ViewerUpdateMonitor)updates[i]).isDelegated() && updates[i].getElement() instanceof IExpression){
IElementContentProvider delegate = ViewerAdapterService.getContentProvider(((IExpression)updates[i].getElement()).getValue());
if (delegate != null){
List<IViewerUpdate> updateList = delegateMap.get(delegate);
if (updateList == null){
updateList = new ArrayList<>();
delegateMap.put(delegate, updateList);
}
((ViewerUpdateMonitor)updates[i]).setDelegated(true);
updateList.add(updates[i]);
continue;
}
}
notDelegated.add(updates[i]);
}
}
@Override
protected Object[] getAllChildren(Object parent, IPresentationContext context) throws CoreException {
if (parent instanceof IErrorReportingExpression) {
IErrorReportingExpression expression = (IErrorReportingExpression) parent;
if (expression.hasErrors()) {
String[] messages = expression.getErrorMessages();
LinkedHashSet<ErrorMessageElement> set = new LinkedHashSet<>(messages.length);
for (int i = 0; i < messages.length; i++) {
set.add(new ErrorMessageElement(messages[i]));
}
return set.toArray();
}
}
if (parent instanceof IExpression) {
IExpression expression = (IExpression) parent;
IValue value = expression.getValue();
if (value != null) {
return getValueChildren(expression, value, context);
}
}
return EMPTY;
}
@Override
protected boolean hasChildren(Object element, IPresentationContext context, IViewerUpdate monitor) throws CoreException {
if (element instanceof IErrorReportingExpression) {
IErrorReportingExpression expression = (IErrorReportingExpression) element;
if (expression.hasErrors()) {
return true;
}
}
if (element instanceof IExpression){
IValue value = ((IExpression)element).getValue();
if (value == null) {
return false;
}
return value.hasVariables();
}
return false;
}
}