X-Git-Url: http://www2.svjatoslav.eu/gitweb/?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Feu%2Fsvjatoslav%2Finspector%2Fjava%2Fstructure%2FClassDescriptor.java;h=e43fe8d3c3d04a630d839bd4b857d98a5763fb8b;hb=934aea34806546c732112258e5e98a482cf9d50e;hp=fbd491bdefe7aa964739d7d8b4a172adb2f85371;hpb=79db54fde2069b536c95e9da810efb27f2e4efb5;p=javainspect.git diff --git a/src/main/java/eu/svjatoslav/inspector/java/structure/ClassDescriptor.java b/src/main/java/eu/svjatoslav/inspector/java/structure/ClassDescriptor.java old mode 100644 new mode 100755 index fbd491b..e43fe8d --- a/src/main/java/eu/svjatoslav/inspector/java/structure/ClassDescriptor.java +++ b/src/main/java/eu/svjatoslav/inspector/java/structure/ClassDescriptor.java @@ -1,10 +1,10 @@ /* * JavaInspect - Utility to visualize java software - * Copyright (C) 2013, Svjatoslav Agejenko, svjatoslav@svjatoslav.eu - * + * Copyright (C) 2013-2015, Svjatoslav Agejenko, svjatoslav@svjatoslav.eu + * * This program is free software; you can redistribute it and/or - * modify it under the terms of version 2 of the GNU General Public License - * as published by the Free Software Foundation. + * modify it under the terms of version 3 of the GNU Lesser General Public License + * or later as published by the Free Software Foundation. */ package eu.svjatoslav.inspector.java.structure; @@ -12,9 +12,11 @@ package eu.svjatoslav.inspector.java.structure; import java.lang.reflect.Field; import java.lang.reflect.Method; import java.util.ArrayList; -import java.util.HashMap; import java.util.List; import java.util.Map; +import java.util.SortedSet; +import java.util.TreeMap; +import java.util.TreeSet; /** * Describes single class instance @@ -23,11 +25,11 @@ public class ClassDescriptor implements GraphElement { private static final int MAX_REFERECNES_COUNT = 10; - public final String fullyQualifiedName; + private String fullyQualifiedName; - Map nameToFieldMap = new HashMap(); + private final Map nameToFieldMap = new TreeMap(); - public List methods = new ArrayList(); + private final SortedSet methods = new TreeSet(); /** * Incoming arrows will have this color. @@ -55,20 +57,30 @@ public class ClassDescriptor implements GraphElement { /** * Amount of field and method references pointing to this class. */ - private int referenceCount = 0; + private int referencesCount = 0; - public ClassDescriptor(final Class clazz, - final ClassGraph dump) { - classGraph = dump; + // for interface, counts amount of found implementations + private int implementationsCount = 0; + + // counts amount of times this class is extended + private int extensionsCount = 0; + + private ClassDescriptor arrayComponent; + + public ClassDescriptor(final ClassGraph classGraph) { + this.classGraph = classGraph; + } + + protected void analyzeClass(final Class clazz) { fullyQualifiedName = clazz.getName(); - dump.nameToClassMap.put(fullyQualifiedName, this); isArray = clazz.isArray(); if (isArray) { final Class componentType = clazz.getComponentType(); - dump.addClass(componentType); + arrayComponent = getClassGraph().getOrCreateClassDescriptor( + componentType); } // System.out.println("class: " + fullyQualifiedName); @@ -85,17 +97,25 @@ public class ClassDescriptor implements GraphElement { indexMethods(clazz); - for (final Class interfaceClass : clazz.getInterfaces()) - interfaces.add(dump.addClass(interfaceClass)); + for (final Class interfaceClass : clazz.getInterfaces()) { + final ClassDescriptor interfaceClassDescriptor = getClassGraph() + .getOrCreateClassDescriptor(interfaceClass); + interfaceClassDescriptor.registerImplementation(); + interfaces.add(interfaceClassDescriptor); + } - superClass = dump.addClass(clazz.getSuperclass()); - } + superClass = getClassGraph().getOrCreateClassDescriptor( + clazz.getSuperclass()); + if (superClass != null) + superClass.registerExtension(); + + }; - public boolean areReferencesShown() { - return referenceCount <= MAX_REFERECNES_COUNT; + protected boolean areReferencesShown() { + return referencesCount <= MAX_REFERECNES_COUNT; } - public void enlistFieldReferences(final StringBuffer result) { + private void enlistFieldReferences(final StringBuffer result) { if (nameToFieldMap.isEmpty()) return; @@ -106,7 +126,7 @@ public class ClassDescriptor implements GraphElement { result.append(entry.getValue().getDot()); } - public void enlistFields(final StringBuffer result) { + private void enlistFields(final StringBuffer result) { if (nameToFieldMap.isEmpty()) return; @@ -119,7 +139,7 @@ public class ClassDescriptor implements GraphElement { result.append(entry.getValue().getEmbeddedDot()); } - public void enlistImplementedInterfaces(final StringBuffer result) { + private void enlistImplementedInterfaces(final StringBuffer result) { if (interfaces.isEmpty()) return; @@ -131,14 +151,17 @@ public class ClassDescriptor implements GraphElement { if (!interfaceDescriptor.isVisible()) continue; + if (!interfaceDescriptor.areReferencesShown()) + continue; + result.append(" " + interfaceDescriptor.getGraphId() + " -> " - + getGraphId() + "[style=\"dotted, tapered\", color=\"" + + getGraphId() + "[style=\"dotted\", color=\"" + interfaceDescriptor.getInterfaceColor() - + "\", penwidth=20, dir=\"forward\"];\n"); + + "\", penwidth=10, dir=\"forward\"];\n"); } } - public void enlistMethodReferences(final StringBuffer result) { + private void enlistMethodReferences(final StringBuffer result) { if (methods.isEmpty()) return; @@ -148,7 +171,7 @@ public class ClassDescriptor implements GraphElement { result.append(methodDescriptor.getDot()); } - public void enlistMethods(final StringBuffer result) { + private void enlistMethods(final StringBuffer result) { if (methods.isEmpty()) return; @@ -160,23 +183,25 @@ public class ClassDescriptor implements GraphElement { result.append(methodDescriptor.getEmbeddedDot()); } - public void enlistSuperClass(final StringBuffer result) { + private void enlistSuperClass(final StringBuffer result) { if (superClass == null) return; if (!superClass.isVisible()) return; + if (!superClass.areReferencesShown()) + return; + result.append("\n"); result.append(" // super class for: " + fullyQualifiedName + "\n"); result.append(" " + superClass.getGraphId() + " -> " + getGraphId() - + "[style=\"tapered\", color=\"" - + superClass.getSuperClassColor() + + "[ color=\"" + superClass.getSuperClassColor() + "\", penwidth=10, dir=\"forward\"];\n"); } - public void generateDotHeader(final StringBuffer result) { + private void generateDotHeader(final StringBuffer result) { result.append("\n"); result.append("// Class: " + fullyQualifiedName + "\n"); @@ -199,17 +224,7 @@ public class ClassDescriptor implements GraphElement { + "" + "\n"); } - public List getAllFields() { - final List result = new ArrayList(); - - for (final Map.Entry entry : nameToFieldMap - .entrySet()) - result.add(entry.getValue()); - - return result; - } - - public String getBackgroundColor() { + private String getBackgroundColor() { String bgColor = ""; if (isEnum) @@ -221,23 +236,33 @@ public class ClassDescriptor implements GraphElement { return bgColor; } - public String getBorderWidth() { + private String getBorderWidth() { if (!areReferencesShown()) return "4"; return "1"; } - public String getClassName(final boolean differentiateArray) { + protected ClassGraph getClassGraph() { + return classGraph; + } + + protected String getClassName(final boolean differentiateArray) { // this is needed for nested classes final String actualClassName = fullyQualifiedName.replace('$', '.'); - final int i = actualClassName.lastIndexOf('.'); - - String result = actualClassName.substring(i + 1); - - if (isArray) - result = result.substring(0, result.length() - 1); + String result; + if (isArray) { + // for arrays use array component instead of array class name + result = arrayComponent.fullyQualifiedName; + if (result.contains(".")) { + final int i = result.lastIndexOf('.'); + result = result.substring(i + 1); + } + } else { + final int i = actualClassName.lastIndexOf('.'); + result = actualClassName.substring(i + 1); + } if (differentiateArray) if (isArray) @@ -248,14 +273,10 @@ public class ClassDescriptor implements GraphElement { return result; } - public String getColor() { - if (getDistinctiveColor() == null) - setDistinctiveColor(Utils.getNextDarkColor()); + protected String getColor() { + if (distinctiveReferenceColor == null) + distinctiveReferenceColor = Utils.getNextDarkColor(); - return getDistinctiveColor(); - } - - public String getDistinctiveColor() { return distinctiveReferenceColor; } @@ -293,22 +314,78 @@ public class ClassDescriptor implements GraphElement { return null; } + /** + * Returns field with given name (case is ignored). Or null if + * field is not found. + */ + protected FieldDescriptor getFieldIgnoreCase(final String fieldToSearch) { + + for (final String fieldName : nameToFieldMap.keySet()) + if (fieldToSearch.equalsIgnoreCase(fieldName)) + return nameToFieldMap.get(fieldName); + + return null; + } + + protected String getFullyQualifiedName() { + return fullyQualifiedName; + } + @Override public String getGraphId() { final String result = "class_" + fullyQualifiedName.replace('.', '_').replace(";", "") - .replace("[L", "").replace('$', '_'); + .replace("[L", "").replace('$', '_'); return result; } - public String getInterfaceColor() { + private String getInterfaceColor() { if (interfaceColor == null) - interfaceColor = Utils.getNextLightColor(); + interfaceColor = Utils.getNextDarkColor(); return interfaceColor; } - public String getPackageName() { + private FieldDescriptor getOrCreateFieldDescriptor(final Field field) { + + final String fieldName = field.getName(); + + if (nameToFieldMap.containsKey(fieldName)) + return nameToFieldMap.get(fieldName); + + final FieldDescriptor newFieldDescriptor = new FieldDescriptor(this); + nameToFieldMap.put(fieldName, newFieldDescriptor); + + newFieldDescriptor.analyzeField(field); + + return newFieldDescriptor; + } + + private int getOutgoingReferencesCount() { + int result = 0; + + // count method references + for (final MethodDescriptor methodDescriptor : methods) + result += methodDescriptor.getOutsideVisibleReferencesCount(); + + // count field references + for (final FieldDescriptor fieldDescriptor : nameToFieldMap.values()) + result += fieldDescriptor.getOutsideVisibleReferencesCount(); + + // count implemented interfaces + for (final ClassDescriptor classDescriptor : interfaces) + if (classDescriptor.isVisible()) + result++; + + // count superclass + if (superClass != null) + if (superClass.isVisible()) + result++; + + return result; + } + + private String getPackageName() { final int i = fullyQualifiedName.lastIndexOf('.'); @@ -318,7 +395,7 @@ public class ClassDescriptor implements GraphElement { return fullyQualifiedName.substring(0, i).replace("[L", ""); } - public String getParentClassesName() { + private String getParentClassesName() { int i = fullyQualifiedName.lastIndexOf('.'); final String fullClassName = fullyQualifiedName.substring(i + 1); @@ -329,47 +406,59 @@ public class ClassDescriptor implements GraphElement { return parentClassesName.replace('$', '.'); } - // public String getReadableName() { - // - // // do not print full class name for well known system classes - // final String packageName = getPackageName(); - // - // if (packageName.equals("java.util")) - // return getClassName(); - // - // if (packageName.equals("java.lang")) - // return getClassName(); - // - // return fullyQualifiedName; - // } - - public String getSuperClassColor() { + private String getSuperClassColor() { if (superClassColor == null) superClassColor = Utils.getNextLightColor(); return superClassColor; } - public void hide() { + /** + * Checks if class has field with given name (case is ignored). Returns + * true if such field is found. + */ + protected boolean hasFieldIgnoreCase(final String fieldToSearch) { + + for (final String fieldName : nameToFieldMap.keySet()) + if (fieldToSearch.equalsIgnoreCase(fieldName)) + return true; + + return false; + } + + private void hide() { isShown = false; } - public void indexFields(final Field[] fields) { - for (final Field field : fields) { - if (nameToFieldMap.containsKey(field.getName())) - continue; + protected void hideClassIfNoReferences() { + if (!isVisible()) + return; - final FieldDescriptor fieldDescriptor = new FieldDescriptor(field, - this, classGraph); + final int totalReferencesCount = getOutgoingReferencesCount() + + referencesCount + extensionsCount + implementationsCount; + if (totalReferencesCount == 0) { + hide(); + return; } + + return; + } + + private void indexFields(final Field[] fields) { + for (final Field field : fields) + getOrCreateFieldDescriptor(field); } private void indexMethods(final Class clazz) { - final Method[] methods = clazz.getMethods(); + for (final Method method : clazz.getMethods()) { + final MethodDescriptor methodDescriptor = new MethodDescriptor( + this, method.getName()); - for (final Method method : methods) - new MethodDescriptor(method, this, classGraph); + methods.add(methodDescriptor); + + methodDescriptor.analyze(method); + } } @@ -382,17 +471,33 @@ public class ClassDescriptor implements GraphElement { if (Utils.isSystemPackage(fullyQualifiedName)) return false; - if (!classGraph.filter.isClassShown(fullyQualifiedName)) + if (!getClassGraph().getFilter().isClassShown(fullyQualifiedName)) return false; + if (isArray) + if (arrayComponent != null) + if (Utils.isSystemDataType(arrayComponent.fullyQualifiedName)) + // Do not show references to primitive data types in arrays. + // That is: there is no point to show reference to byte when + // we have class with byte array field. + return false; + return isShown; } - public void registerReference() { - referenceCount++; + /** + * Register event when another class is extending this one. + */ + protected void registerExtension() { + extensionsCount++; + } + + protected void registerImplementation() { + implementationsCount++; } - public void setDistinctiveColor(final String distinctiveColor) { - distinctiveReferenceColor = distinctiveColor; + protected void registerReference() { + referencesCount++; } + }