src/share/classes/com/sun/tools/doclets/internal/toolkit/builders/ConstantsSummaryBuilder.java

Tue, 09 Oct 2012 19:10:00 -0700

author
jjg
date
Tue, 09 Oct 2012 19:10:00 -0700
changeset 1357
c75be5bc5283
parent 798
4868a36f6fd8
child 1358
fc123bdeddb8
permissions
-rw-r--r--

8000663: clean up langtools imports
Reviewed-by: darcy

     1 /*
     2  * Copyright (c) 2003, 2012, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.  Oracle designates this
     8  * particular file as subject to the "Classpath" exception as provided
     9  * by Oracle in the LICENSE file that accompanied this code.
    10  *
    11  * This code is distributed in the hope that it will be useful, but WITHOUT
    12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
    14  * version 2 for more details (a copy is included in the LICENSE file that
    15  * accompanied this code).
    16  *
    17  * You should have received a copy of the GNU General Public License version
    18  * 2 along with this work; if not, write to the Free Software Foundation,
    19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    20  *
    21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
    22  * or visit www.oracle.com if you need additional information or have any
    23  * questions.
    24  */
    26 package com.sun.tools.doclets.internal.toolkit.builders;
    28 import java.io.*;
    29 import java.util.*;
    31 import com.sun.javadoc.*;
    32 import com.sun.tools.doclets.internal.toolkit.*;
    33 import com.sun.tools.doclets.internal.toolkit.util.*;
    35 /**
    36  * Builds the Constants Summary Page.
    37  *
    38  * This code is not part of an API.
    39  * It is implementation that is subject to change.
    40  * Do not use it as an API
    41  *
    42  * @author Jamie Ho
    43  * @author Bhavesh Patel (Modified)
    44  * @since 1.5
    45  */
    46 public class ConstantsSummaryBuilder extends AbstractBuilder {
    48     /**
    49      * The root element of the constant summary XML is {@value}.
    50      */
    51     public static final String ROOT = "ConstantSummary";
    53     /**
    54      * The maximum number of package directories shown in the constant
    55      * value index.
    56      */
    57     public static final int MAX_CONSTANT_VALUE_INDEX_LENGTH = 2;
    59     /**
    60      * The writer used to write the results.
    61      */
    62     protected ConstantsSummaryWriter writer;
    64     /**
    65      * The set of ClassDocs that have constant fields.
    66      */
    67     protected Set<ClassDoc> classDocsWithConstFields;
    69     /**
    70      * The set of printed package headers.
    71      */
    72     protected Set<String> printedPackageHeaders;
    74     /**
    75      * The current package being documented.
    76      */
    77     private PackageDoc currentPackage;
    79     /**
    80      * The current class being documented.
    81      */
    82     private ClassDoc currentClass;
    84     /**
    85      * The content tree for the constant summary documentation.
    86      */
    87     private Content contentTree;
    89     /**
    90      * Construct a new ConstantsSummaryBuilder.
    91      *
    92      * @param configuration the current configuration of the
    93      *                      doclet.
    94      */
    95     private ConstantsSummaryBuilder(Configuration configuration) {
    96         super(configuration);
    97     }
    99     /**
   100      * Construct a ConstantsSummaryBuilder.
   101      *
   102      * @param configuration the configuration used in this run
   103      *                      of the doclet.
   104      * @param writer        the writer for the summary.
   105      */
   106     public static ConstantsSummaryBuilder getInstance(
   107         Configuration configuration, ConstantsSummaryWriter writer) {
   108         ConstantsSummaryBuilder builder = new ConstantsSummaryBuilder(
   109             configuration);
   110         builder.writer = writer;
   111         builder.classDocsWithConstFields = new HashSet<ClassDoc>();
   112         return builder;
   113     }
   115     /**
   116      * {@inheritDoc}
   117      */
   118     public void build() throws IOException {
   119         if (writer == null) {
   120             //Doclet does not support this output.
   121             return;
   122         }
   123         build(LayoutParser.getInstance(configuration).parseXML(ROOT), contentTree);
   124     }
   126     /**
   127      * {@inheritDoc}
   128      */
   129     public String getName() {
   130         return ROOT;
   131     }
   133     /**
   134      * Build the constant summary.
   135      *
   136      * @param node the XML element that specifies which components to document
   137      * @param contentTree the content tree to which the documentation will be added
   138      */
   139     public void buildConstantSummary(XMLNode node, Content contentTree) throws Exception {
   140         contentTree = writer.getHeader();
   141         buildChildren(node, contentTree);
   142         writer.addFooter(contentTree);
   143         writer.printDocument(contentTree);
   144         writer.close();
   145     }
   147     /**
   148      * Build the list of packages.
   149      *
   150      * @param node the XML element that specifies which components to document
   151      * @param contentTree the content tree to which the content list will be added
   152      */
   153     public void buildContents(XMLNode node, Content contentTree) {
   154         Content contentListTree = writer.getContentsHeader();
   155         PackageDoc[] packages = configuration.packages;
   156         printedPackageHeaders = new HashSet<String>();
   157         for (int i = 0; i < packages.length; i++) {
   158             if (hasConstantField(packages[i]) && ! hasPrintedPackageIndex(packages[i].name())) {
   159                 writer.addLinkToPackageContent(packages[i],
   160                     parsePackageName(packages[i].name()),
   161                     printedPackageHeaders, contentListTree);
   162             }
   163         }
   164         contentTree.addContent(writer.getContentsList(contentListTree));
   165     }
   167     /**
   168      * Build the summary for each documented package.
   169      *
   170      * @param node the XML element that specifies which components to document
   171      * @param contentTree the tree to which the summaries will be added
   172      */
   173     public void buildConstantSummaries(XMLNode node, Content contentTree) {
   174         PackageDoc[] packages = configuration.packages;
   175         printedPackageHeaders = new HashSet<String>();
   176         Content summariesTree = writer.getConstantSummaries();
   177         for (int i = 0; i < packages.length; i++) {
   178             if (hasConstantField(packages[i])) {
   179                 currentPackage = packages[i];
   180                 //Build the documentation for the current package.
   181                 buildChildren(node, summariesTree);
   182             }
   183         }
   184         contentTree.addContent(summariesTree);
   185     }
   187     /**
   188      * Build the header for the given package.
   189      *
   190      * @param node the XML element that specifies which components to document
   191      * @param summariesTree the tree to which the package header will be added
   192      */
   193     public void buildPackageHeader(XMLNode node, Content summariesTree) {
   194         String parsedPackageName = parsePackageName(currentPackage.name());
   195         if (! printedPackageHeaders.contains(parsedPackageName)) {
   196             writer.addPackageName(currentPackage,
   197                 parsePackageName(currentPackage.name()), summariesTree);
   198             printedPackageHeaders.add(parsedPackageName);
   199         }
   200     }
   202     /**
   203      * Build the summary for the current class.
   204      *
   205      * @param node the XML element that specifies which components to document
   206      * @param summariesTree the tree to which the class constant summary will be added
   207      */
   208     public void buildClassConstantSummary(XMLNode node, Content summariesTree) {
   209         ClassDoc[] classes = currentPackage.name().length() > 0 ?
   210             currentPackage.allClasses() :
   211             configuration.classDocCatalog.allClasses(
   212                 DocletConstants.DEFAULT_PACKAGE_NAME);
   213         Arrays.sort(classes);
   214         Content classConstantTree = writer.getClassConstantHeader();
   215         for (int i = 0; i < classes.length; i++) {
   216             if (! classDocsWithConstFields.contains(classes[i]) ||
   217                 ! classes[i].isIncluded()) {
   218                 continue;
   219             }
   220             currentClass = classes[i];
   221             //Build the documentation for the current class.
   222             buildChildren(node, classConstantTree);
   223         }
   224         summariesTree.addContent(classConstantTree);
   225     }
   227     /**
   228      * Build the summary of constant members in the class.
   229      *
   230      * @param node the XML element that specifies which components to document
   231      * @param classConstantTree the tree to which the constant members table
   232      *                          will be added
   233      */
   234     public void buildConstantMembers(XMLNode node, Content classConstantTree) {
   235         new ConstantFieldBuilder(currentClass).buildMembersSummary(node, classConstantTree);
   236     }
   238     /**
   239      * Return true if the given package has constant fields to document.
   240      *
   241      * @param pkg   the package being checked.
   242      * @return true if the given package has constant fields to document.
   243      */
   244     private boolean hasConstantField(PackageDoc pkg) {
   245         ClassDoc[] classes;
   246         if (pkg.name().length() > 0) {
   247             classes = pkg.allClasses();
   248         } else {
   249             classes = configuration.classDocCatalog.allClasses(
   250                 DocletConstants.DEFAULT_PACKAGE_NAME);
   251         }
   252         boolean found = false;
   253         for (int j = 0; j < classes.length; j++){
   254             if (classes[j].isIncluded() && hasConstantField(classes[j])) {
   255                 found = true;
   256             }
   257         }
   258         return found;
   259     }
   261     /**
   262      * Return true if the given class has constant fields to document.
   263      *
   264      * @param classDoc the class being checked.
   265      * @return true if the given package has constant fields to document.
   266      */
   267     private boolean hasConstantField (ClassDoc classDoc) {
   268         VisibleMemberMap visibleMemberMapFields = new VisibleMemberMap(classDoc,
   269             VisibleMemberMap.FIELDS, configuration.nodeprecated);
   270         List<?> fields = visibleMemberMapFields.getLeafClassMembers(configuration);
   271         for (Iterator<?> iter = fields.iterator(); iter.hasNext(); ) {
   272             FieldDoc field = (FieldDoc) iter.next();
   273             if (field.constantValueExpression() != null) {
   274                 classDocsWithConstFields.add(classDoc);
   275                 return true;
   276             }
   277         }
   278         return false;
   279     }
   281     /**
   282      * Return true if the given package name has been printed.  Also
   283      * return true if the root of this package has been printed.
   284      *
   285      * @param pkgname the name of the package to check.
   286      */
   287     private boolean hasPrintedPackageIndex(String pkgname) {
   288         String[] list = printedPackageHeaders.toArray(new String[] {});
   289         for (int i = 0; i < list.length; i++) {
   290             if (pkgname.startsWith(list[i])) {
   291                 return true;
   292             }
   293         }
   294         return false;
   295     }
   297     /**
   298      * Print the table of constants.
   299      *
   300      * @author Jamie Ho
   301      * @since 1.4
   302      */
   303     private class ConstantFieldBuilder {
   305         /**
   306          * The map used to get the visible variables.
   307          */
   308         protected VisibleMemberMap visibleMemberMapFields = null;
   310         /**
   311          * The map used to get the visible variables.
   312          */
   313         protected VisibleMemberMap visibleMemberMapEnumConst = null;
   315         /**
   316          * The classdoc that we are examining constants for.
   317          */
   318         protected ClassDoc classdoc;
   320         /**
   321          * Construct a ConstantFieldSubWriter.
   322          * @param classdoc the classdoc that we are examining constants for.
   323          */
   324         public ConstantFieldBuilder(ClassDoc classdoc) {
   325             this.classdoc = classdoc;
   326             visibleMemberMapFields = new VisibleMemberMap(classdoc,
   327                 VisibleMemberMap.FIELDS, configuration.nodeprecated);
   328             visibleMemberMapEnumConst = new VisibleMemberMap(classdoc,
   329                 VisibleMemberMap.ENUM_CONSTANTS, configuration.nodeprecated);
   330         }
   332         /**
   333          * Builds the table of constants for a given class.
   334          *
   335          * @param node the XML element that specifies which components to document
   336          * @param classConstantTree the tree to which the class constants table
   337          *                          will be added
   338          */
   339         protected void buildMembersSummary(XMLNode node, Content classConstantTree) {
   340             List<FieldDoc> members = new ArrayList<FieldDoc>(members());
   341             if (members.size() > 0) {
   342                 Collections.sort(members);
   343                 writer.addConstantMembers(classdoc, members, classConstantTree);
   344             }
   345         }
   347         /**
   348          * Return the list of visible constant fields for the given classdoc.
   349          * @param cd the classdoc to examine.
   350          * @return the list of visible constant fields for the given classdoc.
   351          */
   352         protected List<FieldDoc> members() {
   353             List<ProgramElementDoc> l = visibleMemberMapFields.getLeafClassMembers(configuration);
   354             l.addAll(visibleMemberMapEnumConst.getLeafClassMembers(configuration));
   355             Iterator<ProgramElementDoc> iter;
   357             if(l != null){
   358                 iter = l.iterator();
   359             } else {
   360                 return null;
   361             }
   362             List<FieldDoc> inclList = new LinkedList<FieldDoc>();
   363             FieldDoc member;
   364             while(iter.hasNext()){
   365                 member = (FieldDoc)iter.next();
   366                 if(member.constantValue() != null){
   367                     inclList.add(member);
   368                 }
   369             }
   370             return inclList;
   371         }
   372     }
   374     /**
   375      * Parse the package name.  We only want to display package name up to
   376      * 2 levels.
   377      */
   378     private String parsePackageName(String pkgname) {
   379         int index = -1;
   380         for (int j = 0; j < MAX_CONSTANT_VALUE_INDEX_LENGTH; j++) {
   381             index = pkgname.indexOf(".", index + 1);
   382         }
   383         if (index != -1) {
   384             pkgname = pkgname.substring(0, index);
   385         }
   386         return pkgname;
   387     }
   388 }

mercurial