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

Tue, 20 Aug 2013 14:55:20 -0700

author
jjg
date
Tue, 20 Aug 2013 14:55:20 -0700
changeset 1964
79e341614c50
parent 1952
3d4f0fa2ad05
child 1985
0e6577980181
permissions
-rw-r--r--

8022080: javadoc generates invalid HTML in Turkish locale
Reviewed-by: bpatel

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@1952 126 protected void addProfilesList(Content profileSummary, Content body) {
bpatel@1952 127 Content h2 = HtmlTree.HEADING(HtmlTag.H2, profileSummary);
bpatel@1952 128 Content profilesDiv = HtmlTree.DIV(h2);
bpatel@1952 129 Content ul = new HtmlTree(HtmlTag.UL);
bpatel@1952 130 String profileName;
bpatel@1952 131 for (int i = 1; i < configuration.profiles.getProfileCount(); i++) {
bpatel@1952 132 profileName = Profile.lookup(i).name;
bpatel@1952 133 Content profileLinkContent = getTargetProfileLink("classFrame",
bpatel@1952 134 new StringContent(profileName), profileName);
bpatel@1952 135 Content li = HtmlTree.LI(profileLinkContent);
bpatel@1952 136 ul.addContent(li);
bpatel@1952 137 }
bpatel@1952 138 profilesDiv.addContent(ul);
bpatel@1952 139 Content div = HtmlTree.DIV(HtmlStyle.contentContainer, profilesDiv);
bpatel@1568 140 body.addContent(div);
bpatel@1568 141 }
bpatel@1568 142
bpatel@1568 143 /**
bpatel@1568 144 * {@inheritDoc}
bpatel@1568 145 */
bpatel@766 146 protected void addPackagesList(PackageDoc[] packages, String text,
bpatel@766 147 String tableSummary, Content body) {
bpatel@766 148 Content table = HtmlTree.TABLE(HtmlStyle.overviewSummary, 0, 3, 0, tableSummary,
jjg@1747 149 getTableCaption(new RawHtml(text)));
bpatel@766 150 table.addContent(getSummaryTableHeader(packageTableHeader, "col"));
bpatel@766 151 Content tbody = new HtmlTree(HtmlTag.TBODY);
bpatel@766 152 addPackagesList(packages, tbody);
bpatel@766 153 table.addContent(tbody);
bpatel@766 154 Content div = HtmlTree.DIV(HtmlStyle.contentContainer, table);
bpatel@766 155 body.addContent(div);
bpatel@766 156 }
bpatel@766 157
bpatel@766 158 /**
bpatel@766 159 * Adds list of packages in the index table. Generate link to each package.
bpatel@766 160 *
bpatel@766 161 * @param packages Packages to which link is to be generated
bpatel@766 162 * @param tbody the documentation tree to which the list will be added
bpatel@766 163 */
bpatel@766 164 protected void addPackagesList(PackageDoc[] packages, Content tbody) {
bpatel@766 165 for (int i = 0; i < packages.length; i++) {
bpatel@766 166 if (packages[i] != null && packages[i].name().length() > 0) {
bpatel@995 167 if (configuration.nodeprecated && Util.isDeprecated(packages[i]))
bpatel@995 168 continue;
bpatel@766 169 Content packageLinkContent = getPackageLink(packages[i],
bpatel@766 170 getPackageName(packages[i]));
bpatel@766 171 Content tdPackage = HtmlTree.TD(HtmlStyle.colFirst, packageLinkContent);
bpatel@766 172 HtmlTree tdSummary = new HtmlTree(HtmlTag.TD);
bpatel@766 173 tdSummary.addStyle(HtmlStyle.colLast);
bpatel@766 174 addSummaryComment(packages[i], tdSummary);
bpatel@766 175 HtmlTree tr = HtmlTree.TR(tdPackage);
bpatel@766 176 tr.addContent(tdSummary);
bpatel@766 177 if (i%2 == 0)
bpatel@766 178 tr.addStyle(HtmlStyle.altColor);
bpatel@766 179 else
bpatel@766 180 tr.addStyle(HtmlStyle.rowColor);
bpatel@766 181 tbody.addContent(tr);
bpatel@766 182 }
duke@1 183 }
duke@1 184 }
duke@1 185
duke@1 186 /**
bpatel@766 187 * Adds the overview summary comment for this documentation. Add one line
bpatel@766 188 * summary at the top of the page and generate a link to the description,
bpatel@766 189 * which is added at the end of this page.
bpatel@766 190 *
bpatel@766 191 * @param body the documentation tree to which the overview header will be added
duke@1 192 */
bpatel@766 193 protected void addOverviewHeader(Content body) {
duke@1 194 if (root.inlineTags().length > 0) {
bpatel@943 195 HtmlTree subTitleDiv = new HtmlTree(HtmlTag.DIV);
bpatel@943 196 subTitleDiv.addStyle(HtmlStyle.subTitle);
bpatel@943 197 addSummaryComment(root, subTitleDiv);
bpatel@943 198 Content div = HtmlTree.DIV(HtmlStyle.header, subTitleDiv);
bpatel@766 199 Content see = seeLabel;
bpatel@766 200 see.addContent(" ");
bpatel@766 201 Content descPara = HtmlTree.P(see);
jjg@1373 202 Content descLink = getHyperLink(DocLink.fragment("overview_description"),
bpatel@766 203 descriptionLabel, "", "");
bpatel@766 204 descPara.addContent(descLink);
bpatel@766 205 div.addContent(descPara);
bpatel@766 206 body.addContent(div);
duke@1 207 }
duke@1 208 }
duke@1 209
duke@1 210 /**
bpatel@766 211 * Adds the overview comment as provided in the file specified by the
bpatel@766 212 * "-overview" option on the command line.
bpatel@766 213 *
bpatel@766 214 * @param htmltree the documentation tree to which the overview comment will
bpatel@766 215 * be added
duke@1 216 */
bpatel@766 217 protected void addOverviewComment(Content htmltree) {
bpatel@766 218 if (root.inlineTags().length > 0) {
bpatel@766 219 htmltree.addContent(getMarkerAnchor("overview_description"));
jjg@1536 220 addInlineComment(root, htmltree);
bpatel@766 221 }
duke@1 222 }
duke@1 223
duke@1 224 /**
bpatel@766 225 * Adds the tag information as provided in the file specified by the
bpatel@766 226 * "-overview" option on the command line.
bpatel@766 227 *
bpatel@766 228 * @param body the documentation tree to which the overview will be added
duke@1 229 */
bpatel@766 230 protected void addOverview(Content body) throws IOException {
bpatel@766 231 HtmlTree div = new HtmlTree(HtmlTag.DIV);
jjg@1536 232 div.addStyle(HtmlStyle.contentContainer);
bpatel@766 233 addOverviewComment(div);
bpatel@766 234 addTagsInfo(root, div);
bpatel@766 235 body.addContent(div);
duke@1 236 }
duke@1 237
duke@1 238 /**
bpatel@766 239 * Adds the top text (from the -top option), the upper
bpatel@766 240 * navigation bar, and then the title (from the"-title"
bpatel@766 241 * option), at the top of page.
bpatel@766 242 *
bpatel@766 243 * @body the documentation tree to which the navigation bar header will be added
bpatel@766 244 */
bpatel@766 245 protected void addNavigationBarHeader(Content body) {
bpatel@766 246 addTop(body);
bpatel@766 247 addNavLinks(true, body);
bpatel@766 248 addConfigurationTitle(body);
bpatel@766 249 }
bpatel@766 250
bpatel@766 251 /**
bpatel@766 252 * Adds the lower navigation bar and the bottom text
duke@1 253 * (from the -bottom option) at the bottom of page.
bpatel@766 254 *
jjg@1358 255 * @param body the documentation tree to which the navigation bar footer will be added
duke@1 256 */
bpatel@766 257 protected void addNavigationBarFooter(Content body) {
bpatel@766 258 addNavLinks(false, body);
bpatel@766 259 addBottom(body);
duke@1 260 }
duke@1 261 }

mercurial