blob: 60d0b708befbd2d80e3135b89a3fe3e5afac1c18 [file] [log] [blame]
/*
* Copyright 2000-2014 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.engine;
import com.intellij.debugger.engine.evaluation.EvaluationContextImpl;
import com.intellij.debugger.engine.events.SuspendContextCommandImpl;
import com.intellij.debugger.settings.NodeRendererSettings;
import com.intellij.debugger.ui.impl.watch.*;
import com.intellij.debugger.ui.tree.render.ClassRenderer;
import com.intellij.xdebugger.frame.*;
import com.sun.jdi.Field;
import com.sun.jdi.ReferenceType;
import org.jetbrains.annotations.NotNull;
import java.util.List;
/**
* @author egor
*/
public class JavaStaticGroup extends XValueGroup implements NodeDescriptorProvider {
private final StaticDescriptorImpl myStaticDescriptor;
private final EvaluationContextImpl myEvaluationContext;
private final NodeManagerImpl myNodeManager;
public JavaStaticGroup(StaticDescriptorImpl staticDescriptor,
EvaluationContextImpl evaluationContext,
NodeManagerImpl nodeManager) {
super(staticDescriptor.getName());
myStaticDescriptor = staticDescriptor;
myEvaluationContext = evaluationContext;
myNodeManager = nodeManager;
}
@Override
public NodeDescriptorImpl getDescriptor() {
return myStaticDescriptor;
}
@Override
public void computeChildren(@NotNull final XCompositeNode node) {
myEvaluationContext.getDebugProcess().getManagerThread().schedule(
new SuspendContextCommandImpl(myEvaluationContext.getSuspendContext()) {
@Override
public void contextAction() throws Exception {
final XValueChildrenList children = new XValueChildrenList();
final ReferenceType refType = myStaticDescriptor.getType();
List<Field> fields = refType.allFields();
final ClassRenderer classRenderer = NodeRendererSettings.getInstance().getClassRenderer();
for (Field field : fields) {
if (field.isStatic()) {
boolean isSynthetic = DebuggerUtils.isSynthetic(field);
if (!classRenderer.SHOW_SYNTHETICS && isSynthetic) {
continue;
}
final FieldDescriptorImpl fieldDescriptor = myNodeManager.getFieldDescriptor(myStaticDescriptor, null, field);
children.add(JavaValue.create(fieldDescriptor, myEvaluationContext, myNodeManager));
//final DebuggerTreeNodeImpl node = myNodeManager.createNode(fieldDescriptor, myEvaluationContext);
//myChildren.add(node);
}
}
node.addChildren(children, true);
}
});
}
}