/* * Copyright 2000-2009 JetBrains s.r.o. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.intellij.debugger.ui.impl.watch; import com.intellij.debugger.DebuggerBundle; import com.intellij.debugger.engine.DebugProcess; import com.intellij.debugger.engine.evaluation.EvaluateException; import com.intellij.debugger.engine.evaluation.EvaluateExceptionUtil; import com.intellij.debugger.engine.evaluation.EvaluationContextImpl; import com.intellij.debugger.ui.tree.NodeDescriptor; import com.intellij.debugger.ui.tree.render.DescriptorLabelListener; import com.intellij.openapi.diagnostic.Logger; import com.intellij.openapi.util.Key; import com.intellij.util.containers.HashMap; import com.intellij.xdebugger.impl.ui.tree.ValueMarkup; import com.sun.jdi.InconsistentDebugInfoException; import com.sun.jdi.InvalidStackFrameException; import com.sun.jdi.ObjectReference; import org.jetbrains.annotations.Nullable; import java.util.ArrayList; import java.util.List; import java.util.Map; public abstract class NodeDescriptorImpl implements NodeDescriptor { protected static final Logger LOG = Logger.getInstance("#com.intellij.debugger.ui.impl.watch.NodeDescriptorImpl"); public static final String UNKNOWN_VALUE_MESSAGE = ""; public boolean myIsExpanded = false; public boolean myIsSelected = false; public boolean myIsVisible = false; public boolean myIsSynthetic = false; private EvaluateException myEvaluateException; private String myLabel = UNKNOWN_VALUE_MESSAGE; private HashMap myUserData; private final List myChildren = new ArrayList(); private static final Key> MARKUP_MAP_KEY = new Key>("ValueMarkupMap"); @Override public String getName() { return null; } @Override public T getUserData(Key key) { if (myUserData == null) { return null; } //noinspection unchecked return (T)myUserData.get(key); } @Override public void putUserData(Key key, T value) { if(myUserData == null) { myUserData = new HashMap(); } myUserData.put(key, value); } public void updateRepresentation(EvaluationContextImpl context, DescriptorLabelListener labelListener){ updateRepresentationNoNotify(context, labelListener); labelListener.labelChanged(); } protected void updateRepresentationNoNotify(EvaluationContextImpl context, DescriptorLabelListener labelListener) { try { try { myEvaluateException = null; myLabel = calcRepresentation(context, labelListener); } catch (RuntimeException e) { LOG.debug(e); throw processException(e); } } catch (EvaluateException e) { setFailed(e); } } protected abstract String calcRepresentation(EvaluationContextImpl context, DescriptorLabelListener labelListener) throws EvaluateException; private static EvaluateException processException(Exception e) { if (e instanceof InconsistentDebugInfoException) { return new EvaluateException(DebuggerBundle.message("error.inconsistent.debug.info"), null); } else if (e instanceof InvalidStackFrameException) { return new EvaluateException(DebuggerBundle.message("error.invalid.stackframe"), null); } else { return EvaluateExceptionUtil.DEBUG_INFO_UNAVAILABLE; } } @Override public void displayAs(NodeDescriptor descriptor) { if (descriptor instanceof NodeDescriptorImpl) { final NodeDescriptorImpl that = (NodeDescriptorImpl)descriptor; myIsExpanded = that.myIsExpanded; myIsSelected = that.myIsSelected; myIsVisible = that.myIsVisible; myUserData = that.myUserData != null ? new HashMap(that.myUserData) : null; } } public abstract boolean isExpandable(); public abstract void setContext(EvaluationContextImpl context); public EvaluateException getEvaluateException() { return myEvaluateException; } @Override public String getLabel() { return myLabel; } public String toString() { return getLabel(); } protected String setFailed(EvaluateException e) { myEvaluateException = e; return e.getMessage(); } protected String setLabel(String customLabel) { return myLabel = customLabel; } //Context is set to null public void clear() { myEvaluateException = null; myLabel = ""; } public List getChildren() { return myChildren; } @Override public void setAncestor(NodeDescriptor oldDescriptor) { displayAs(oldDescriptor); } @Nullable public static Map getMarkupMap(final DebugProcess process) { if (process == null) { return null; } Map map = process.getUserData(MARKUP_MAP_KEY); if (map == null) { map = new java.util.HashMap(); process.putUserData(MARKUP_MAP_KEY, map); } return map; } }