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

Sat, 08 Sep 2012 22:43:38 -0700

author
bpatel
date
Sat, 08 Sep 2012 22:43:38 -0700
changeset 1324
fa85af323d97
parent 997
dbc4ced9d171
child 1357
c75be5bc5283
permissions
-rw-r--r--

7180906: Javadoc tool does not apply parameter -nosince
Reviewed-by: jjg

duke@1 1 /*
bpatel@1324 2 * Copyright (c) 1998, 2012, 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 com.sun.tools.doclets.internal.toolkit.*;
duke@1 29 import com.sun.tools.doclets.internal.toolkit.util.*;
duke@1 30
duke@1 31 import com.sun.javadoc.*;
duke@1 32 import java.util.*;
duke@1 33 import java.io.*;
bpatel@997 34 import java.net.*;
duke@1 35
duke@1 36 /**
duke@1 37 * Configure the output based on the command line options.
duke@1 38 * <p>
duke@1 39 * Also determine the length of the command line option. For example,
duke@1 40 * for a option "-header" there will be a string argument associated, then the
duke@1 41 * the length of option "-header" is two. But for option "-nohelp" no argument
duke@1 42 * is needed so it's length is 1.
duke@1 43 * </p>
duke@1 44 * <p>
duke@1 45 * Also do the error checking on the options used. For example it is illegal to
duke@1 46 * use "-helpfile" option when already "-nohelp" option is used.
duke@1 47 * </p>
duke@1 48 *
duke@1 49 * @author Robert Field.
duke@1 50 * @author Atul Dambalkar.
duke@1 51 * @author Jamie Ho
bpatel@997 52 * @author Bhavesh Patel (Modified)
duke@1 53 */
duke@1 54 public class ConfigurationImpl extends Configuration {
duke@1 55
jjg@140 56 private static ConfigurationImpl instance = new ConfigurationImpl();
duke@1 57
duke@1 58 /**
duke@1 59 * The build date. Note: For now, we will use
duke@1 60 * a version number instead of a date.
duke@1 61 */
duke@1 62 public static final String BUILD_DATE = System.getProperty("java.version");
duke@1 63
duke@1 64 /**
duke@1 65 * The name of the constant values file.
duke@1 66 */
duke@1 67 public static final String CONSTANTS_FILE_NAME = "constant-values.html";
duke@1 68
duke@1 69 /**
duke@1 70 * Argument for command line option "-header".
duke@1 71 */
duke@1 72 public String header = "";
duke@1 73
duke@1 74 /**
duke@1 75 * Argument for command line option "-packagesheader".
duke@1 76 */
duke@1 77 public String packagesheader = "";
duke@1 78
duke@1 79 /**
duke@1 80 * Argument for command line option "-footer".
duke@1 81 */
duke@1 82 public String footer = "";
duke@1 83
duke@1 84 /**
duke@1 85 * Argument for command line option "-doctitle".
duke@1 86 */
duke@1 87 public String doctitle = "";
duke@1 88
duke@1 89 /**
duke@1 90 * Argument for command line option "-windowtitle".
duke@1 91 */
duke@1 92 public String windowtitle = "";
duke@1 93
duke@1 94 /**
duke@1 95 * Argument for command line option "-top".
duke@1 96 */
duke@1 97 public String top = "";
duke@1 98
duke@1 99 /**
duke@1 100 * Argument for command line option "-bottom".
duke@1 101 */
duke@1 102 public String bottom = "";
duke@1 103
duke@1 104 /**
duke@1 105 * Argument for command line option "-helpfile".
duke@1 106 */
duke@1 107 public String helpfile = "";
duke@1 108
duke@1 109 /**
duke@1 110 * Argument for command line option "-stylesheetfile".
duke@1 111 */
duke@1 112 public String stylesheetfile = "";
duke@1 113
duke@1 114 /**
bpatel@997 115 * Argument for command line option "-Xdocrootparent".
bpatel@997 116 */
bpatel@997 117 public String docrootparent = "";
bpatel@997 118
bpatel@997 119 /**
duke@1 120 * True if command line option "-nohelp" is used. Default value is false.
duke@1 121 */
duke@1 122 public boolean nohelp = false;
duke@1 123
duke@1 124 /**
duke@1 125 * True if command line option "-splitindex" is used. Default value is
duke@1 126 * false.
duke@1 127 */
duke@1 128 public boolean splitindex = false;
duke@1 129
duke@1 130 /**
duke@1 131 * False if command line option "-noindex" is used. Default value is true.
duke@1 132 */
duke@1 133 public boolean createindex = true;
duke@1 134
duke@1 135 /**
duke@1 136 * True if command line option "-use" is used. Default value is false.
duke@1 137 */
duke@1 138 public boolean classuse = false;
duke@1 139
duke@1 140 /**
duke@1 141 * False if command line option "-notree" is used. Default value is true.
duke@1 142 */
duke@1 143 public boolean createtree = true;
duke@1 144
duke@1 145 /**
duke@1 146 * True if command line option "-nodeprecated" is used. Default value is
duke@1 147 * false.
duke@1 148 */
duke@1 149 public boolean nodeprecatedlist = false;
duke@1 150
duke@1 151 /**
duke@1 152 * True if command line option "-nonavbar" is used. Default value is false.
duke@1 153 */
duke@1 154 public boolean nonavbar = false;
duke@1 155
duke@1 156 /**
duke@1 157 * True if command line option "-nooverview" is used. Default value is
duke@1 158 * false
duke@1 159 */
duke@1 160 private boolean nooverview = false;
duke@1 161
duke@1 162 /**
duke@1 163 * True if command line option "-overview" is used. Default value is false.
duke@1 164 */
duke@1 165 public boolean overview = false;
duke@1 166
duke@1 167 /**
duke@1 168 * This is true if option "-overview" is used or option "-overview" is not
duke@1 169 * used and number of packages is more than one.
duke@1 170 */
duke@1 171 public boolean createoverview = false;
duke@1 172
duke@1 173 /**
duke@1 174 * Unique Resource Handler for this package.
duke@1 175 */
duke@1 176 public final MessageRetriever standardmessage;
duke@1 177
duke@1 178 /**
duke@1 179 * First file to appear in the right-hand frame in the generated
duke@1 180 * documentation.
duke@1 181 */
duke@1 182 public String topFile = "";
duke@1 183
duke@1 184 /**
duke@1 185 * The classdoc for the class file getting generated.
duke@1 186 */
duke@1 187 public ClassDoc currentcd = null; // Set this classdoc in the
duke@1 188 // ClassWriter.
duke@1 189
duke@1 190 /**
duke@1 191 * Constructor. Initialises resource for the
duke@1 192 * {@link com.sun.tools.doclets.MessageRetriever}.
duke@1 193 */
duke@1 194 private ConfigurationImpl() {
duke@1 195 standardmessage = new MessageRetriever(this,
duke@1 196 "com.sun.tools.doclets.formats.html.resources.standard");
duke@1 197 }
duke@1 198
jjg@140 199 /**
jjg@140 200 * Reset to a fresh new ConfigurationImpl, to allow multiple invocations
jjg@140 201 * of javadoc within a single VM. It would be better not to be using
jjg@140 202 * static fields at all, but .... (sigh).
jjg@140 203 */
jjg@140 204 public static void reset() {
jjg@140 205 instance = new ConfigurationImpl();
jjg@140 206 }
jjg@140 207
duke@1 208 public static ConfigurationImpl getInstance() {
duke@1 209 return instance;
duke@1 210 }
duke@1 211
duke@1 212 /**
duke@1 213 * Return the build date for the doclet.
duke@1 214 */
duke@1 215 public String getDocletSpecificBuildDate() {
duke@1 216 return BUILD_DATE;
duke@1 217 }
duke@1 218
duke@1 219 /**
duke@1 220 * Depending upon the command line options provided by the user, set
duke@1 221 * configure the output generation environment.
duke@1 222 *
duke@1 223 * @param options The array of option names and values.
duke@1 224 */
duke@1 225 public void setSpecificDocletOptions(String[][] options) {
duke@1 226 for (int oi = 0; oi < options.length; ++oi) {
duke@1 227 String[] os = options[oi];
duke@1 228 String opt = os[0].toLowerCase();
duke@1 229 if (opt.equals("-footer")) {
bpatel@1324 230 footer = os[1];
bpatel@1324 231 } else if (opt.equals("-header")) {
bpatel@1324 232 header = os[1];
bpatel@1324 233 } else if (opt.equals("-packagesheader")) {
bpatel@1324 234 packagesheader = os[1];
bpatel@1324 235 } else if (opt.equals("-doctitle")) {
bpatel@1324 236 doctitle = os[1];
bpatel@1324 237 } else if (opt.equals("-windowtitle")) {
bpatel@1324 238 windowtitle = os[1];
bpatel@1324 239 } else if (opt.equals("-top")) {
bpatel@1324 240 top = os[1];
bpatel@1324 241 } else if (opt.equals("-bottom")) {
bpatel@1324 242 bottom = os[1];
bpatel@1324 243 } else if (opt.equals("-helpfile")) {
bpatel@1324 244 helpfile = os[1];
bpatel@1324 245 } else if (opt.equals("-stylesheetfile")) {
bpatel@1324 246 stylesheetfile = os[1];
bpatel@1324 247 } else if (opt.equals("-charset")) {
bpatel@1324 248 charset = os[1];
bpatel@997 249 } else if (opt.equals("-xdocrootparent")) {
bpatel@997 250 docrootparent = os[1];
bpatel@1324 251 } else if (opt.equals("-nohelp")) {
duke@1 252 nohelp = true;
bpatel@1324 253 } else if (opt.equals("-splitindex")) {
duke@1 254 splitindex = true;
bpatel@1324 255 } else if (opt.equals("-noindex")) {
duke@1 256 createindex = false;
bpatel@1324 257 } else if (opt.equals("-use")) {
duke@1 258 classuse = true;
bpatel@1324 259 } else if (opt.equals("-notree")) {
duke@1 260 createtree = false;
bpatel@1324 261 } else if (opt.equals("-nodeprecatedlist")) {
duke@1 262 nodeprecatedlist = true;
bpatel@1324 263 } else if (opt.equals("-nonavbar")) {
duke@1 264 nonavbar = true;
bpatel@1324 265 } else if (opt.equals("-nooverview")) {
duke@1 266 nooverview = true;
bpatel@1324 267 } else if (opt.equals("-overview")) {
duke@1 268 overview = true;
duke@1 269 }
duke@1 270 }
duke@1 271 if (root.specifiedClasses().length > 0) {
jjg@74 272 Map<String,PackageDoc> map = new HashMap<String,PackageDoc>();
duke@1 273 PackageDoc pd;
duke@1 274 ClassDoc[] classes = root.classes();
duke@1 275 for (int i = 0; i < classes.length; i++) {
duke@1 276 pd = classes[i].containingPackage();
duke@1 277 if(! map.containsKey(pd.name())) {
duke@1 278 map.put(pd.name(), pd);
duke@1 279 }
duke@1 280 }
duke@1 281 }
duke@1 282 setCreateOverview();
duke@1 283 setTopFile(root);
duke@1 284 }
duke@1 285
duke@1 286 /**
duke@1 287 * Returns the "length" of a given option. If an option takes no
duke@1 288 * arguments, its length is one. If it takes one argument, it's
duke@1 289 * length is two, and so on. This method is called by JavaDoc to
duke@1 290 * parse the options it does not recognize. It then calls
duke@1 291 * {@link #validOptions(String[][], DocErrorReporter)} to
duke@1 292 * validate them.
duke@1 293 * <b>Note:</b><br>
duke@1 294 * The options arrive as case-sensitive strings. For options that
duke@1 295 * are not case-sensitive, use toLowerCase() on the option string
duke@1 296 * before comparing it.
duke@1 297 * </blockquote>
duke@1 298 *
duke@1 299 * @return number of arguments + 1 for a option. Zero return means
duke@1 300 * option not known. Negative value means error occurred.
duke@1 301 */
duke@1 302 public int optionLength(String option) {
duke@1 303 int result = -1;
duke@1 304 if ((result = super.optionLength(option)) > 0) {
duke@1 305 return result;
duke@1 306 }
duke@1 307 // otherwise look for the options we have added
duke@1 308 option = option.toLowerCase();
duke@1 309 if (option.equals("-nodeprecatedlist") ||
duke@1 310 option.equals("-noindex") ||
duke@1 311 option.equals("-notree") ||
duke@1 312 option.equals("-nohelp") ||
duke@1 313 option.equals("-splitindex") ||
duke@1 314 option.equals("-serialwarn") ||
duke@1 315 option.equals("-use") ||
duke@1 316 option.equals("-nonavbar") ||
duke@1 317 option.equals("-nooverview")) {
duke@1 318 return 1;
duke@1 319 } else if (option.equals("-help")) {
duke@1 320 System.out.println(getText("doclet.usage"));
duke@1 321 return 1;
duke@1 322 } else if (option.equals("-footer") ||
duke@1 323 option.equals("-header") ||
duke@1 324 option.equals("-packagesheader") ||
duke@1 325 option.equals("-doctitle") ||
duke@1 326 option.equals("-windowtitle") ||
duke@1 327 option.equals("-top") ||
duke@1 328 option.equals("-bottom") ||
duke@1 329 option.equals("-helpfile") ||
duke@1 330 option.equals("-stylesheetfile") ||
duke@1 331 option.equals("-charset") ||
bpatel@997 332 option.equals("-overview") ||
bpatel@997 333 option.equals("-xdocrootparent")) {
duke@1 334 return 2;
duke@1 335 } else {
duke@1 336 return 0;
duke@1 337 }
duke@1 338 }
duke@1 339
duke@1 340 /**
duke@1 341 * {@inheritDoc}
duke@1 342 */
duke@1 343 public boolean validOptions(String options[][],
duke@1 344 DocErrorReporter reporter) {
duke@1 345 boolean helpfile = false;
duke@1 346 boolean nohelp = false;
duke@1 347 boolean overview = false;
duke@1 348 boolean nooverview = false;
duke@1 349 boolean splitindex = false;
duke@1 350 boolean noindex = false;
duke@1 351 // check shared options
duke@1 352 if (!generalValidOptions(options, reporter)) {
duke@1 353 return false;
duke@1 354 }
duke@1 355 // otherwise look at our options
duke@1 356 for (int oi = 0; oi < options.length; ++oi) {
duke@1 357 String[] os = options[oi];
duke@1 358 String opt = os[0].toLowerCase();
duke@1 359 if (opt.equals("-helpfile")) {
duke@1 360 if (nohelp == true) {
duke@1 361 reporter.printError(getText("doclet.Option_conflict",
duke@1 362 "-helpfile", "-nohelp"));
duke@1 363 return false;
duke@1 364 }
duke@1 365 if (helpfile == true) {
duke@1 366 reporter.printError(getText("doclet.Option_reuse",
duke@1 367 "-helpfile"));
duke@1 368 return false;
duke@1 369 }
duke@1 370 File help = new File(os[1]);
duke@1 371 if (!help.exists()) {
duke@1 372 reporter.printError(getText("doclet.File_not_found", os[1]));
duke@1 373 return false;
duke@1 374 }
duke@1 375 helpfile = true;
duke@1 376 } else if (opt.equals("-nohelp")) {
duke@1 377 if (helpfile == true) {
duke@1 378 reporter.printError(getText("doclet.Option_conflict",
duke@1 379 "-nohelp", "-helpfile"));
duke@1 380 return false;
duke@1 381 }
duke@1 382 nohelp = true;
bpatel@997 383 } else if (opt.equals("-xdocrootparent")) {
bpatel@997 384 try {
bpatel@997 385 new URL(os[1]);
bpatel@997 386 } catch (MalformedURLException e) {
bpatel@997 387 reporter.printError(getText("doclet.MalformedURL", os[1]));
bpatel@997 388 return false;
bpatel@997 389 }
duke@1 390 } else if (opt.equals("-overview")) {
duke@1 391 if (nooverview == true) {
duke@1 392 reporter.printError(getText("doclet.Option_conflict",
duke@1 393 "-overview", "-nooverview"));
duke@1 394 return false;
duke@1 395 }
duke@1 396 if (overview == true) {
duke@1 397 reporter.printError(getText("doclet.Option_reuse",
duke@1 398 "-overview"));
duke@1 399 return false;
duke@1 400 }
duke@1 401 overview = true;
duke@1 402 } else if (opt.equals("-nooverview")) {
duke@1 403 if (overview == true) {
duke@1 404 reporter.printError(getText("doclet.Option_conflict",
duke@1 405 "-nooverview", "-overview"));
duke@1 406 return false;
duke@1 407 }
duke@1 408 nooverview = true;
duke@1 409 } else if (opt.equals("-splitindex")) {
duke@1 410 if (noindex == true) {
duke@1 411 reporter.printError(getText("doclet.Option_conflict",
duke@1 412 "-splitindex", "-noindex"));
duke@1 413 return false;
duke@1 414 }
duke@1 415 splitindex = true;
duke@1 416 } else if (opt.equals("-noindex")) {
duke@1 417 if (splitindex == true) {
duke@1 418 reporter.printError(getText("doclet.Option_conflict",
duke@1 419 "-noindex", "-splitindex"));
duke@1 420 return false;
duke@1 421 }
duke@1 422 noindex = true;
duke@1 423 }
duke@1 424 }
duke@1 425 return true;
duke@1 426 }
duke@1 427
duke@1 428 /**
duke@1 429 * {@inheritDoc}
duke@1 430 */
duke@1 431 public MessageRetriever getDocletSpecificMsg() {
duke@1 432 return standardmessage;
duke@1 433 }
duke@1 434
duke@1 435 /**
duke@1 436 * Decide the page which will appear first in the right-hand frame. It will
duke@1 437 * be "overview-summary.html" if "-overview" option is used or no
duke@1 438 * "-overview" but the number of packages is more than one. It will be
duke@1 439 * "package-summary.html" of the respective package if there is only one
duke@1 440 * package to document. It will be a class page(first in the sorted order),
duke@1 441 * if only classes are provided on the command line.
duke@1 442 *
duke@1 443 * @param root Root of the program structure.
duke@1 444 */
duke@1 445 protected void setTopFile(RootDoc root) {
duke@1 446 if (!checkForDeprecation(root)) {
duke@1 447 return;
duke@1 448 }
duke@1 449 if (createoverview) {
duke@1 450 topFile = "overview-summary.html";
duke@1 451 } else {
duke@1 452 if (packages.length == 1 && packages[0].name().equals("")) {
duke@1 453 if (root.classes().length > 0) {
duke@1 454 ClassDoc[] classarr = root.classes();
duke@1 455 Arrays.sort(classarr);
duke@1 456 ClassDoc cd = getValidClass(classarr);
duke@1 457 topFile = DirectoryManager.getPathToClass(cd);
duke@1 458 }
duke@1 459 } else {
duke@1 460 topFile = DirectoryManager.getPathToPackage(packages[0],
duke@1 461 "package-summary.html");
duke@1 462 }
duke@1 463 }
duke@1 464 }
duke@1 465
duke@1 466 protected ClassDoc getValidClass(ClassDoc[] classarr) {
duke@1 467 if (!nodeprecated) {
duke@1 468 return classarr[0];
duke@1 469 }
duke@1 470 for (int i = 0; i < classarr.length; i++) {
duke@1 471 if (classarr[i].tags("deprecated").length == 0) {
duke@1 472 return classarr[i];
duke@1 473 }
duke@1 474 }
duke@1 475 return null;
duke@1 476 }
duke@1 477
duke@1 478 protected boolean checkForDeprecation(RootDoc root) {
duke@1 479 ClassDoc[] classarr = root.classes();
duke@1 480 for (int i = 0; i < classarr.length; i++) {
duke@1 481 if (isGeneratedDoc(classarr[i])) {
duke@1 482 return true;
duke@1 483 }
duke@1 484 }
duke@1 485 return false;
duke@1 486 }
duke@1 487
duke@1 488 /**
duke@1 489 * Generate "overview.html" page if option "-overview" is used or number of
duke@1 490 * packages is more than one. Sets {@link #createoverview} field to true.
duke@1 491 */
duke@1 492 protected void setCreateOverview() {
duke@1 493 if ((overview || packages.length > 1) && !nooverview) {
duke@1 494 createoverview = true;
duke@1 495 }
duke@1 496 }
duke@1 497
duke@1 498 /**
duke@1 499 * {@inheritDoc}
duke@1 500 */
duke@1 501 public WriterFactory getWriterFactory() {
jjg@140 502 return new WriterFactoryImpl(this);
duke@1 503 }
duke@1 504
duke@1 505 /**
duke@1 506 * {@inheritDoc}
duke@1 507 */
jjg@74 508 public Comparator<ProgramElementDoc> getMemberComparator() {
duke@1 509 return null;
duke@1 510 }
bpatel@191 511
bpatel@191 512 /**
bpatel@191 513 * {@inheritDoc}
bpatel@191 514 */
bpatel@191 515 public Locale getLocale() {
bpatel@191 516 if (root instanceof com.sun.tools.javadoc.RootDocImpl)
bpatel@191 517 return ((com.sun.tools.javadoc.RootDocImpl)root).getLocale();
bpatel@191 518 else
bpatel@191 519 return Locale.getDefault();
bpatel@191 520 }
duke@1 521 }

mercurial