src/share/classes/com/sun/tools/doclets/formats/html/PackageIndexWriter.java

Sun, 17 Feb 2013 16:44:55 -0500

author
dholmes
date
Sun, 17 Feb 2013 16:44:55 -0500
changeset 1571
af8417e590f4
parent 1568
5f0731e4e5e6
parent 1536
3d97a9a7a82b
child 1747
df4f44800923
permissions
-rw-r--r--

Merge

duke@1 1 /*
jjg@1536 2 * Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved.
duke@1 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
duke@1 4 *
duke@1 5 * This code is free software; you can redistribute it and/or modify it
duke@1 6 * under the terms of the GNU General Public License version 2 only, as
ohair@554 7 * published by the Free Software Foundation. Oracle designates this
duke@1 8 * particular file as subject to the "Classpath" exception as provided
ohair@554 9 * by Oracle in the LICENSE file that accompanied this code.
duke@1 10 *
duke@1 11 * This code is distributed in the hope that it will be useful, but WITHOUT
duke@1 12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
duke@1 13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
duke@1 14 * version 2 for more details (a copy is included in the LICENSE file that
duke@1 15 * accompanied this code).
duke@1 16 *
duke@1 17 * You should have received a copy of the GNU General Public License version
duke@1 18 * 2 along with this work; if not, write to the Free Software Foundation,
duke@1 19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
duke@1 20 *
ohair@554 21 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
ohair@554 22 * or visit www.oracle.com if you need additional information or have any
ohair@554 23 * questions.
duke@1 24 */
duke@1 25
duke@1 26 package com.sun.tools.doclets.formats.html;
duke@1 27
duke@1 28 import java.io.*;
duke@1 29 import java.util.*;
jjg@1357 30
bpatel@766 31 import com.sun.javadoc.*;
bpatel@1568 32 import com.sun.tools.javac.jvm.Profile;
jjg@1357 33 import com.sun.tools.doclets.formats.html.markup.*;
bpatel@766 34 import com.sun.tools.doclets.internal.toolkit.*;
bpatel@766 35 import com.sun.tools.doclets.internal.toolkit.util.*;
duke@1 36
duke@1 37 /**
duke@1 38 * Generate the package index page "overview-summary.html" for the right-hand
duke@1 39 * frame. A click on the package name on this page will update the same frame
jjg@1372 40 * with the "package-summary.html" file for the clicked package.
duke@1 41 *
jjg@1359 42 * <p><b>This is NOT part of any supported API.
jjg@1359 43 * If you write code that depends on this, you do so at your own risk.
jjg@1359 44 * This code and its internal interfaces are subject to change or
jjg@1359 45 * deletion without notice.</b>
jjg@1359 46 *
duke@1 47 * @author Atul M Dambalkar
bpatel@243 48 * @author Bhavesh Patel (Modified)
duke@1 49 */
duke@1 50 public class PackageIndexWriter extends AbstractPackageIndexWriter {
duke@1 51
duke@1 52 /**
duke@1 53 * Root of the program structure. Used for "overview" documentation.
duke@1 54 */
duke@1 55 private RootDoc root;
duke@1 56
duke@1 57 /**
duke@1 58 * Map representing the group of packages as specified on the command line.
duke@1 59 *
duke@1 60 * @see Group
duke@1 61 */
jjg@74 62 private Map<String,List<PackageDoc>> groupPackageMap;
duke@1 63
duke@1 64 /**
duke@1 65 * List to store the order groups as specified on the command line.
duke@1 66 */
mcimadamore@184 67 private List<String> groupList;
duke@1 68
duke@1 69 /**
duke@1 70 * Construct the PackageIndexWriter. Also constructs the grouping
duke@1 71 * information as provided on the command line by "-group" option. Stores
duke@1 72 * the order of groups specified by the user.
duke@1 73 *
duke@1 74 * @see Group
duke@1 75 */
duke@1 76 public PackageIndexWriter(ConfigurationImpl configuration,
jjg@1372 77 DocPath filename)
duke@1 78 throws IOException {
duke@1 79 super(configuration, filename);
duke@1 80 this.root = configuration.root;
duke@1 81 groupPackageMap = configuration.group.groupPackages(packages);
duke@1 82 groupList = configuration.group.getGroupList();
duke@1 83 }
duke@1 84
duke@1 85 /**
duke@1 86 * Generate the package index page for the right-hand frame.
duke@1 87 *
duke@1 88 * @param configuration the current configuration of the doclet.
duke@1 89 */
duke@1 90 public static void generate(ConfigurationImpl configuration) {
duke@1 91 PackageIndexWriter packgen;
jjg@1372 92 DocPath filename = DocPaths.OVERVIEW_SUMMARY;
duke@1 93 try {
duke@1 94 packgen = new PackageIndexWriter(configuration, filename);
bpatel@766 95 packgen.buildPackageIndexFile("doclet.Window_Overview_Summary", true);
duke@1 96 packgen.close();
duke@1 97 } catch (IOException exc) {
duke@1 98 configuration.standardmessage.error(
duke@1 99 "doclet.exception_encountered",
duke@1 100 exc.toString(), filename);
duke@1 101 throw new DocletAbortException();
duke@1 102 }
duke@1 103 }
duke@1 104
duke@1 105 /**
bpatel@766 106 * Depending upon the grouping information and their titles, add
bpatel@766 107 * separate table indices for each package group.
duke@1 108 *
bpatel@766 109 * @param body the documentation tree to which the index will be added
duke@1 110 */
bpatel@766 111 protected void addIndex(Content body) {
duke@1 112 for (int i = 0; i < groupList.size(); i++) {
jjg@198 113 String groupname = groupList.get(i);
jjg@74 114 List<PackageDoc> list = groupPackageMap.get(groupname);
duke@1 115 if (list != null && list.size() > 0) {
bpatel@766 116 addIndexContents(list.toArray(new PackageDoc[list.size()]),
bpatel@766 117 groupname, configuration.getText("doclet.Member_Table_Summary",
bpatel@766 118 groupname, configuration.getText("doclet.packages")), body);
duke@1 119 }
duke@1 120 }
duke@1 121 }
duke@1 122
duke@1 123 /**
bpatel@766 124 * {@inheritDoc}
duke@1 125 */
bpatel@1568 126 protected void addProfilesList(String profileSummary, String profilesTableSummary,
bpatel@1568 127 Content body) {
bpatel@1568 128 Content table = HtmlTree.TABLE(HtmlStyle.overviewSummary, 0, 3, 0, profilesTableSummary,
bpatel@1568 129 getTableCaption(profileSummary));
bpatel@1568 130 table.addContent(getSummaryTableHeader(profileTableHeader, "col"));
bpatel@1568 131 Content tbody = new HtmlTree(HtmlTag.TBODY);
bpatel@1568 132 addProfilesList(tbody);
bpatel@1568 133 table.addContent(tbody);
bpatel@1568 134 Content div = HtmlTree.DIV(HtmlStyle.contentContainer, table);
bpatel@1568 135 body.addContent(div);
bpatel@1568 136 }
bpatel@1568 137
bpatel@1568 138 /**
bpatel@1568 139 * {@inheritDoc}
bpatel@1568 140 */
bpatel@766 141 protected void addPackagesList(PackageDoc[] packages, String text,
bpatel@766 142 String tableSummary, Content body) {
bpatel@766 143 Content table = HtmlTree.TABLE(HtmlStyle.overviewSummary, 0, 3, 0, tableSummary,
bpatel@766 144 getTableCaption(text));
bpatel@766 145 table.addContent(getSummaryTableHeader(packageTableHeader, "col"));
bpatel@766 146 Content tbody = new HtmlTree(HtmlTag.TBODY);
bpatel@766 147 addPackagesList(packages, tbody);
bpatel@766 148 table.addContent(tbody);
bpatel@766 149 Content div = HtmlTree.DIV(HtmlStyle.contentContainer, table);
bpatel@766 150 body.addContent(div);
bpatel@766 151 }
bpatel@766 152
bpatel@766 153 /**
bpatel@1568 154 * Adds list of profiles in the index table. Generate link to each profile.
bpatel@1568 155 *
bpatel@1568 156 * @param tbody the documentation tree to which the list will be added
bpatel@1568 157 */
bpatel@1568 158 protected void addProfilesList(Content tbody) {
bpatel@1568 159 for (int i = 1; i < configuration.profiles.getProfileCount(); i++) {
bpatel@1568 160 String profileName = Profile.lookup(i).name;
bpatel@1568 161 Content profileLinkContent = getTargetProfileLink("classFrame",
bpatel@1568 162 new StringContent(profileName), profileName);
bpatel@1568 163 Content tdProfile = HtmlTree.TD(HtmlStyle.colFirst, profileLinkContent);
bpatel@1568 164 HtmlTree tdSummary = new HtmlTree(HtmlTag.TD);
bpatel@1568 165 tdSummary.addStyle(HtmlStyle.colLast);
bpatel@1568 166 tdSummary.addContent(getSpace());
bpatel@1568 167 HtmlTree tr = HtmlTree.TR(tdProfile);
bpatel@1568 168 tr.addContent(tdSummary);
bpatel@1568 169 if (i % 2 == 0) {
bpatel@1568 170 tr.addStyle(HtmlStyle.altColor);
bpatel@1568 171 } else {
bpatel@1568 172 tr.addStyle(HtmlStyle.rowColor);
bpatel@1568 173 }
bpatel@1568 174 tbody.addContent(tr);
bpatel@1568 175 }
bpatel@1568 176 }
bpatel@1568 177
bpatel@1568 178 /**
bpatel@766 179 * Adds list of packages in the index table. Generate link to each package.
bpatel@766 180 *
bpatel@766 181 * @param packages Packages to which link is to be generated
bpatel@766 182 * @param tbody the documentation tree to which the list will be added
bpatel@766 183 */
bpatel@766 184 protected void addPackagesList(PackageDoc[] packages, Content tbody) {
bpatel@766 185 for (int i = 0; i < packages.length; i++) {
bpatel@766 186 if (packages[i] != null && packages[i].name().length() > 0) {
bpatel@995 187 if (configuration.nodeprecated && Util.isDeprecated(packages[i]))
bpatel@995 188 continue;
bpatel@766 189 Content packageLinkContent = getPackageLink(packages[i],
bpatel@766 190 getPackageName(packages[i]));
bpatel@766 191 Content tdPackage = HtmlTree.TD(HtmlStyle.colFirst, packageLinkContent);
bpatel@766 192 HtmlTree tdSummary = new HtmlTree(HtmlTag.TD);
bpatel@766 193 tdSummary.addStyle(HtmlStyle.colLast);
bpatel@766 194 addSummaryComment(packages[i], tdSummary);
bpatel@766 195 HtmlTree tr = HtmlTree.TR(tdPackage);
bpatel@766 196 tr.addContent(tdSummary);
bpatel@766 197 if (i%2 == 0)
bpatel@766 198 tr.addStyle(HtmlStyle.altColor);
bpatel@766 199 else
bpatel@766 200 tr.addStyle(HtmlStyle.rowColor);
bpatel@766 201 tbody.addContent(tr);
bpatel@766 202 }
duke@1 203 }
duke@1 204 }
duke@1 205
duke@1 206 /**
bpatel@766 207 * Adds the overview summary comment for this documentation. Add one line
bpatel@766 208 * summary at the top of the page and generate a link to the description,
bpatel@766 209 * which is added at the end of this page.
bpatel@766 210 *
bpatel@766 211 * @param body the documentation tree to which the overview header will be added
duke@1 212 */
bpatel@766 213 protected void addOverviewHeader(Content body) {
duke@1 214 if (root.inlineTags().length > 0) {
bpatel@943 215 HtmlTree subTitleDiv = new HtmlTree(HtmlTag.DIV);
bpatel@943 216 subTitleDiv.addStyle(HtmlStyle.subTitle);
bpatel@943 217 addSummaryComment(root, subTitleDiv);
bpatel@943 218 Content div = HtmlTree.DIV(HtmlStyle.header, subTitleDiv);
bpatel@766 219 Content see = seeLabel;
bpatel@766 220 see.addContent(" ");
bpatel@766 221 Content descPara = HtmlTree.P(see);
jjg@1373 222 Content descLink = getHyperLink(DocLink.fragment("overview_description"),
bpatel@766 223 descriptionLabel, "", "");
bpatel@766 224 descPara.addContent(descLink);
bpatel@766 225 div.addContent(descPara);
bpatel@766 226 body.addContent(div);
duke@1 227 }
duke@1 228 }
duke@1 229
duke@1 230 /**
bpatel@766 231 * Adds the overview comment as provided in the file specified by the
bpatel@766 232 * "-overview" option on the command line.
bpatel@766 233 *
bpatel@766 234 * @param htmltree the documentation tree to which the overview comment will
bpatel@766 235 * be added
duke@1 236 */
bpatel@766 237 protected void addOverviewComment(Content htmltree) {
bpatel@766 238 if (root.inlineTags().length > 0) {
bpatel@766 239 htmltree.addContent(getMarkerAnchor("overview_description"));
jjg@1536 240 addInlineComment(root, htmltree);
bpatel@766 241 }
duke@1 242 }
duke@1 243
duke@1 244 /**
bpatel@766 245 * Adds the tag information as provided in the file specified by the
bpatel@766 246 * "-overview" option on the command line.
bpatel@766 247 *
bpatel@766 248 * @param body the documentation tree to which the overview will be added
duke@1 249 */
bpatel@766 250 protected void addOverview(Content body) throws IOException {
bpatel@766 251 HtmlTree div = new HtmlTree(HtmlTag.DIV);
jjg@1536 252 div.addStyle(HtmlStyle.contentContainer);
bpatel@766 253 addOverviewComment(div);
bpatel@766 254 addTagsInfo(root, div);
bpatel@766 255 body.addContent(div);
duke@1 256 }
duke@1 257
duke@1 258 /**
bpatel@766 259 * Adds the top text (from the -top option), the upper
bpatel@766 260 * navigation bar, and then the title (from the"-title"
bpatel@766 261 * option), at the top of page.
bpatel@766 262 *
bpatel@766 263 * @body the documentation tree to which the navigation bar header will be added
bpatel@766 264 */
bpatel@766 265 protected void addNavigationBarHeader(Content body) {
bpatel@766 266 addTop(body);
bpatel@766 267 addNavLinks(true, body);
bpatel@766 268 addConfigurationTitle(body);
bpatel@766 269 }
bpatel@766 270
bpatel@766 271 /**
bpatel@766 272 * Adds the lower navigation bar and the bottom text
duke@1 273 * (from the -bottom option) at the bottom of page.
bpatel@766 274 *
jjg@1358 275 * @param body the documentation tree to which the navigation bar footer will be added
duke@1 276 */
bpatel@766 277 protected void addNavigationBarFooter(Content body) {
bpatel@766 278 addNavLinks(false, body);
bpatel@766 279 addBottom(body);
duke@1 280 }
duke@1 281 }

mercurial