langtools/src/jdk.javadoc/share/classes/com/sun/tools/doclets/formats/html/ConfigurationImpl.java
author jjg
Tue, 12 Jul 2016 14:41:14 -0700
changeset 43261 d377e97291d8
parent 38617 d93a7f64e231
permissions -rw-r--r--
8138725: Add options for Javadoc generation Reviewed-by: ksrini, bpatel, ahgross
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     1
/*
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 33920
diff changeset
     2
 * Copyright (c) 1998, 2016, Oracle and/or its affiliates. All rights reserved.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
06bc494ca11e Initial load
duke
parents:
diff changeset
     4
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
06bc494ca11e Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5520
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 2212
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5520
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 2212
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    10
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
06bc494ca11e Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
06bc494ca11e Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
06bc494ca11e Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
06bc494ca11e Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
06bc494ca11e Initial load
duke
parents:
diff changeset
    16
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
06bc494ca11e Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
06bc494ca11e Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
06bc494ca11e Initial load
duke
parents:
diff changeset
    20
 *
5520
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 2212
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 2212
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 2212
diff changeset
    23
 * questions.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    24
 */
06bc494ca11e Initial load
duke
parents:
diff changeset
    25
06bc494ca11e Initial load
duke
parents:
diff changeset
    26
package com.sun.tools.doclets.formats.html;
06bc494ca11e Initial load
duke
parents:
diff changeset
    27
14258
8d2148961366 8000663: clean up langtools imports
jjg
parents: 13842
diff changeset
    28
import java.net.*;
8d2148961366 8000663: clean up langtools imports
jjg
parents: 13842
diff changeset
    29
import java.util.*;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    30
14544
d71d992cb905 8002079: update DocFile to use a JavaFileManager
jjg
parents: 14542
diff changeset
    31
import javax.tools.JavaFileManager;
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 33920
diff changeset
    32
import javax.tools.JavaFileManager.Location;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 33920
diff changeset
    33
import javax.tools.StandardLocation;
14544
d71d992cb905 8002079: update DocFile to use a JavaFileManager
jjg
parents: 14542
diff changeset
    34
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    35
import com.sun.javadoc.*;
29957
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents: 25874
diff changeset
    36
import com.sun.tools.doclets.formats.html.markup.*;
14258
8d2148961366 8000663: clean up langtools imports
jjg
parents: 13842
diff changeset
    37
import com.sun.tools.doclets.internal.toolkit.*;
8d2148961366 8000663: clean up langtools imports
jjg
parents: 13842
diff changeset
    38
import com.sun.tools.doclets.internal.toolkit.util.*;
15354
52a04c670c05 8004834: Add doclint support into javadoc
jjg
parents: 14545
diff changeset
    39
import com.sun.tools.doclint.DocLint;
14544
d71d992cb905 8002079: update DocFile to use a JavaFileManager
jjg
parents: 14542
diff changeset
    40
import com.sun.tools.javac.file.JavacFileManager;
d71d992cb905 8002079: update DocFile to use a JavaFileManager
jjg
parents: 14542
diff changeset
    41
import com.sun.tools.javac.util.Context;
22153
f9f06fcca59d 8029800: Flags.java uses String.toLowerCase without specifying Locale
jlahoda
parents: 21888
diff changeset
    42
import com.sun.tools.javac.util.StringUtils;
43261
d377e97291d8 8138725: Add options for Javadoc generation
jjg
parents: 38617
diff changeset
    43
import com.sun.tools.javadoc.main.JavaScriptScanner;
37938
42baa89d2156 8075703: jdk.javadoc module exports com.sun.tools.javadoc package which contains a lot of internal API.
jjg
parents: 36526
diff changeset
    44
import com.sun.tools.javadoc.main.RootDocImpl;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    45
06bc494ca11e Initial load
duke
parents:
diff changeset
    46
/**
06bc494ca11e Initial load
duke
parents:
diff changeset
    47
 * Configure the output based on the command line options.
06bc494ca11e Initial load
duke
parents:
diff changeset
    48
 * <p>
06bc494ca11e Initial load
duke
parents:
diff changeset
    49
 * Also determine the length of the command line option. For example,
06bc494ca11e Initial load
duke
parents:
diff changeset
    50
 * for a option "-header" there will be a string argument associated, then the
06bc494ca11e Initial load
duke
parents:
diff changeset
    51
 * the length of option "-header" is two. But for option "-nohelp" no argument
06bc494ca11e Initial load
duke
parents:
diff changeset
    52
 * is needed so it's length is 1.
06bc494ca11e Initial load
duke
parents:
diff changeset
    53
 * </p>
06bc494ca11e Initial load
duke
parents:
diff changeset
    54
 * <p>
06bc494ca11e Initial load
duke
parents:
diff changeset
    55
 * Also do the error checking on the options used. For example it is illegal to
06bc494ca11e Initial load
duke
parents:
diff changeset
    56
 * use "-helpfile" option when already "-nohelp" option is used.
06bc494ca11e Initial load
duke
parents:
diff changeset
    57
 * </p>
06bc494ca11e Initial load
duke
parents:
diff changeset
    58
 *
14368
6f4c62de6985 8001664: refactor javadoc to use abstraction to handle files
jjg
parents: 14357
diff changeset
    59
 *  <p><b>This is NOT part of any supported API.
6f4c62de6985 8001664: refactor javadoc to use abstraction to handle files
jjg
parents: 14357
diff changeset
    60
 *  If you write code that depends on this, you do so at your own risk.
6f4c62de6985 8001664: refactor javadoc to use abstraction to handle files
jjg
parents: 14357
diff changeset
    61
 *  This code and its internal interfaces are subject to change or
6f4c62de6985 8001664: refactor javadoc to use abstraction to handle files
jjg
parents: 14357
diff changeset
    62
 *  deletion without notice.</b>
6f4c62de6985 8001664: refactor javadoc to use abstraction to handle files
jjg
parents: 14357
diff changeset
    63
 *
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    64
 * @author Robert Field.
06bc494ca11e Initial load
duke
parents:
diff changeset
    65
 * @author Atul Dambalkar.
06bc494ca11e Initial load
duke
parents:
diff changeset
    66
 * @author Jamie Ho
9608
385a828ba236 6553182: Need to modify javadoc doclet for GPL
bpatel
parents: 5520
diff changeset
    67
 * @author Bhavesh Patel (Modified)
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    68
 */
38617
d93a7f64e231 8157606: deprecate com.sun.javadoc API
jjg
parents: 37938
diff changeset
    69
@Deprecated
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    70
public class ConfigurationImpl extends Configuration {
06bc494ca11e Initial load
duke
parents:
diff changeset
    71
06bc494ca11e Initial load
duke
parents:
diff changeset
    72
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    73
     * The build date.  Note: For now, we will use
06bc494ca11e Initial load
duke
parents:
diff changeset
    74
     * a version number instead of a date.
06bc494ca11e Initial load
duke
parents:
diff changeset
    75
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    76
    public static final String BUILD_DATE = System.getProperty("java.version");
06bc494ca11e Initial load
duke
parents:
diff changeset
    77
06bc494ca11e Initial load
duke
parents:
diff changeset
    78
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    79
     * Argument for command line option "-header".
06bc494ca11e Initial load
duke
parents:
diff changeset
    80
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    81
    public String header = "";
06bc494ca11e Initial load
duke
parents:
diff changeset
    82
06bc494ca11e Initial load
duke
parents:
diff changeset
    83
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    84
     * Argument for command line option "-packagesheader".
06bc494ca11e Initial load
duke
parents:
diff changeset
    85
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    86
    public String packagesheader = "";
06bc494ca11e Initial load
duke
parents:
diff changeset
    87
06bc494ca11e Initial load
duke
parents:
diff changeset
    88
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    89
     * Argument for command line option "-footer".
06bc494ca11e Initial load
duke
parents:
diff changeset
    90
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    91
    public String footer = "";
06bc494ca11e Initial load
duke
parents:
diff changeset
    92
06bc494ca11e Initial load
duke
parents:
diff changeset
    93
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    94
     * Argument for command line option "-doctitle".
06bc494ca11e Initial load
duke
parents:
diff changeset
    95
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    96
    public String doctitle = "";
06bc494ca11e Initial load
duke
parents:
diff changeset
    97
06bc494ca11e Initial load
duke
parents:
diff changeset
    98
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    99
     * Argument for command line option "-windowtitle".
06bc494ca11e Initial load
duke
parents:
diff changeset
   100
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   101
    public String windowtitle = "";
06bc494ca11e Initial load
duke
parents:
diff changeset
   102
06bc494ca11e Initial load
duke
parents:
diff changeset
   103
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   104
     * Argument for command line option "-top".
06bc494ca11e Initial load
duke
parents:
diff changeset
   105
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   106
    public String top = "";
06bc494ca11e Initial load
duke
parents:
diff changeset
   107
06bc494ca11e Initial load
duke
parents:
diff changeset
   108
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   109
     * Argument for command line option "-bottom".
06bc494ca11e Initial load
duke
parents:
diff changeset
   110
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   111
    public String bottom = "";
06bc494ca11e Initial load
duke
parents:
diff changeset
   112
06bc494ca11e Initial load
duke
parents:
diff changeset
   113
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   114
     * Argument for command line option "-helpfile".
06bc494ca11e Initial load
duke
parents:
diff changeset
   115
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   116
    public String helpfile = "";
06bc494ca11e Initial load
duke
parents:
diff changeset
   117
06bc494ca11e Initial load
duke
parents:
diff changeset
   118
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   119
     * Argument for command line option "-stylesheetfile".
06bc494ca11e Initial load
duke
parents:
diff changeset
   120
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   121
    public String stylesheetfile = "";
06bc494ca11e Initial load
duke
parents:
diff changeset
   122
06bc494ca11e Initial load
duke
parents:
diff changeset
   123
    /**
9608
385a828ba236 6553182: Need to modify javadoc doclet for GPL
bpatel
parents: 5520
diff changeset
   124
     * Argument for command line option "-Xdocrootparent".
385a828ba236 6553182: Need to modify javadoc doclet for GPL
bpatel
parents: 5520
diff changeset
   125
     */
385a828ba236 6553182: Need to modify javadoc doclet for GPL
bpatel
parents: 5520
diff changeset
   126
    public String docrootparent = "";
385a828ba236 6553182: Need to modify javadoc doclet for GPL
bpatel
parents: 5520
diff changeset
   127
385a828ba236 6553182: Need to modify javadoc doclet for GPL
bpatel
parents: 5520
diff changeset
   128
    /**
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   129
     * True if command line option "-nohelp" is used. Default value is false.
06bc494ca11e Initial load
duke
parents:
diff changeset
   130
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   131
    public boolean nohelp = false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   132
06bc494ca11e Initial load
duke
parents:
diff changeset
   133
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   134
     * True if command line option "-splitindex" is used. Default value is
06bc494ca11e Initial load
duke
parents:
diff changeset
   135
     * false.
06bc494ca11e Initial load
duke
parents:
diff changeset
   136
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   137
    public boolean splitindex = false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   138
06bc494ca11e Initial load
duke
parents:
diff changeset
   139
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   140
     * False if command line option "-noindex" is used. Default value is true.
06bc494ca11e Initial load
duke
parents:
diff changeset
   141
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   142
    public boolean createindex = true;
06bc494ca11e Initial load
duke
parents:
diff changeset
   143
06bc494ca11e Initial load
duke
parents:
diff changeset
   144
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   145
     * True if command line option "-use" is used. Default value is false.
06bc494ca11e Initial load
duke
parents:
diff changeset
   146
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   147
    public boolean classuse = false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   148
06bc494ca11e Initial load
duke
parents:
diff changeset
   149
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   150
     * False if command line option "-notree" is used. Default value is true.
06bc494ca11e Initial load
duke
parents:
diff changeset
   151
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   152
    public boolean createtree = true;
06bc494ca11e Initial load
duke
parents:
diff changeset
   153
06bc494ca11e Initial load
duke
parents:
diff changeset
   154
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   155
     * True if command line option "-nodeprecated" is used. Default value is
06bc494ca11e Initial load
duke
parents:
diff changeset
   156
     * false.
06bc494ca11e Initial load
duke
parents:
diff changeset
   157
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   158
    public boolean nodeprecatedlist = false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   159
06bc494ca11e Initial load
duke
parents:
diff changeset
   160
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   161
     * True if command line option "-nonavbar" is used. Default value is false.
06bc494ca11e Initial load
duke
parents:
diff changeset
   162
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   163
    public boolean nonavbar = false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   164
06bc494ca11e Initial load
duke
parents:
diff changeset
   165
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   166
     * True if command line option "-nooverview" is used. Default value is
06bc494ca11e Initial load
duke
parents:
diff changeset
   167
     * false
06bc494ca11e Initial load
duke
parents:
diff changeset
   168
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   169
    private boolean nooverview = false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   170
06bc494ca11e Initial load
duke
parents:
diff changeset
   171
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   172
     * True if command line option "-overview" is used. Default value is false.
06bc494ca11e Initial load
duke
parents:
diff changeset
   173
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   174
    public boolean overview = false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   175
06bc494ca11e Initial load
duke
parents:
diff changeset
   176
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   177
     * This is true if option "-overview" is used or option "-overview" is not
06bc494ca11e Initial load
duke
parents:
diff changeset
   178
     * used and number of packages is more than one.
06bc494ca11e Initial load
duke
parents:
diff changeset
   179
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   180
    public boolean createoverview = false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   181
06bc494ca11e Initial load
duke
parents:
diff changeset
   182
    /**
29957
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents: 25874
diff changeset
   183
     * This is the HTML version of the generated pages. HTML 4.01 is the default output version.
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents: 25874
diff changeset
   184
     */
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents: 25874
diff changeset
   185
    public HtmlVersion htmlVersion = HtmlVersion.HTML4;
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents: 25874
diff changeset
   186
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents: 25874
diff changeset
   187
    /**
15354
52a04c670c05 8004834: Add doclint support into javadoc
jjg
parents: 14545
diff changeset
   188
     * Collected set of doclint options
52a04c670c05 8004834: Add doclint support into javadoc
jjg
parents: 14545
diff changeset
   189
     */
22163
3651128c74eb 8030244: Update langtools to use Diamond
briangoetz
parents: 22159
diff changeset
   190
    public Set<String> doclintOpts = new LinkedHashSet<>();
15354
52a04c670c05 8004834: Add doclint support into javadoc
jjg
parents: 14545
diff changeset
   191
52a04c670c05 8004834: Add doclint support into javadoc
jjg
parents: 14545
diff changeset
   192
    /**
43261
d377e97291d8 8138725: Add options for Javadoc generation
jjg
parents: 38617
diff changeset
   193
     * Whether or not to check for JavaScript in doc comments.
d377e97291d8 8138725: Add options for Javadoc generation
jjg
parents: 38617
diff changeset
   194
     */
d377e97291d8 8138725: Add options for Javadoc generation
jjg
parents: 38617
diff changeset
   195
    private boolean allowScriptInComments;
d377e97291d8 8138725: Add options for Javadoc generation
jjg
parents: 38617
diff changeset
   196
d377e97291d8 8138725: Add options for Javadoc generation
jjg
parents: 38617
diff changeset
   197
    /**
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   198
     * Unique Resource Handler for this package.
06bc494ca11e Initial load
duke
parents:
diff changeset
   199
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   200
    public final MessageRetriever standardmessage;
06bc494ca11e Initial load
duke
parents:
diff changeset
   201
06bc494ca11e Initial load
duke
parents:
diff changeset
   202
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   203
     * First file to appear in the right-hand frame in the generated
06bc494ca11e Initial load
duke
parents:
diff changeset
   204
     * documentation.
06bc494ca11e Initial load
duke
parents:
diff changeset
   205
     */
14357
faf9cde2817b 8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents: 14259
diff changeset
   206
    public DocPath topFile = DocPath.empty;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   207
06bc494ca11e Initial load
duke
parents:
diff changeset
   208
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   209
     * The classdoc for the class file getting generated.
06bc494ca11e Initial load
duke
parents:
diff changeset
   210
     */
14542
7062120649c2 8000800: javadoc uses static non-final fields
jjg
parents: 14368
diff changeset
   211
    public ClassDoc currentcd = null;  // Set this classdoc in the ClassWriter.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   212
33920
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 31752
diff changeset
   213
    protected List<SearchIndexItem> memberSearchIndex = new ArrayList<>();
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 31752
diff changeset
   214
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 31752
diff changeset
   215
    protected List<SearchIndexItem> packageSearchIndex = new ArrayList<>();
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 31752
diff changeset
   216
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 31752
diff changeset
   217
    protected List<SearchIndexItem> tagSearchIndex = new ArrayList<>();
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 31752
diff changeset
   218
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 31752
diff changeset
   219
    protected List<SearchIndexItem> typeSearchIndex = new ArrayList<>();
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 31752
diff changeset
   220
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 31752
diff changeset
   221
    protected Map<Character,List<SearchIndexItem>> tagSearchIndexMap = new HashMap<>();
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 31752
diff changeset
   222
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 31752
diff changeset
   223
    protected Set<Character> tagSearchIndexKeys;
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 31752
diff changeset
   224
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   225
    /**
14259
fb94a1df0d53 8000208: fix langtools javadoc comment issues
jjg
parents: 14258
diff changeset
   226
     * Constructor. Initializes resource for the
fb94a1df0d53 8000208: fix langtools javadoc comment issues
jjg
parents: 14258
diff changeset
   227
     * {@link com.sun.tools.doclets.internal.toolkit.util.MessageRetriever MessageRetriever}.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   228
     */
14542
7062120649c2 8000800: javadoc uses static non-final fields
jjg
parents: 14368
diff changeset
   229
    public ConfigurationImpl() {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   230
        standardmessage = new MessageRetriever(this,
06bc494ca11e Initial load
duke
parents:
diff changeset
   231
            "com.sun.tools.doclets.formats.html.resources.standard");
06bc494ca11e Initial load
duke
parents:
diff changeset
   232
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   233
21888
568c5da9f16b 6726154: javadoc generated with incorrect version in comment
kizune
parents: 21500
diff changeset
   234
    private final String versionRBName = "com.sun.tools.javadoc.resources.version";
568c5da9f16b 6726154: javadoc generated with incorrect version in comment
kizune
parents: 21500
diff changeset
   235
    private ResourceBundle versionRB;
568c5da9f16b 6726154: javadoc generated with incorrect version in comment
kizune
parents: 21500
diff changeset
   236
1475
19c0851667ca 6748541: javadoc should be reusable
jjg
parents: 1264
diff changeset
   237
    /**
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   238
     * Return the build date for the doclet.
06bc494ca11e Initial load
duke
parents:
diff changeset
   239
     */
14544
d71d992cb905 8002079: update DocFile to use a JavaFileManager
jjg
parents: 14542
diff changeset
   240
    @Override
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   241
    public String getDocletSpecificBuildDate() {
21888
568c5da9f16b 6726154: javadoc generated with incorrect version in comment
kizune
parents: 21500
diff changeset
   242
        if (versionRB == null) {
568c5da9f16b 6726154: javadoc generated with incorrect version in comment
kizune
parents: 21500
diff changeset
   243
            try {
568c5da9f16b 6726154: javadoc generated with incorrect version in comment
kizune
parents: 21500
diff changeset
   244
                versionRB = ResourceBundle.getBundle(versionRBName);
568c5da9f16b 6726154: javadoc generated with incorrect version in comment
kizune
parents: 21500
diff changeset
   245
            } catch (MissingResourceException e) {
568c5da9f16b 6726154: javadoc generated with incorrect version in comment
kizune
parents: 21500
diff changeset
   246
                return BUILD_DATE;
568c5da9f16b 6726154: javadoc generated with incorrect version in comment
kizune
parents: 21500
diff changeset
   247
            }
568c5da9f16b 6726154: javadoc generated with incorrect version in comment
kizune
parents: 21500
diff changeset
   248
        }
568c5da9f16b 6726154: javadoc generated with incorrect version in comment
kizune
parents: 21500
diff changeset
   249
568c5da9f16b 6726154: javadoc generated with incorrect version in comment
kizune
parents: 21500
diff changeset
   250
        try {
568c5da9f16b 6726154: javadoc generated with incorrect version in comment
kizune
parents: 21500
diff changeset
   251
            return versionRB.getString("release");
568c5da9f16b 6726154: javadoc generated with incorrect version in comment
kizune
parents: 21500
diff changeset
   252
        } catch (MissingResourceException e) {
568c5da9f16b 6726154: javadoc generated with incorrect version in comment
kizune
parents: 21500
diff changeset
   253
            return BUILD_DATE;
568c5da9f16b 6726154: javadoc generated with incorrect version in comment
kizune
parents: 21500
diff changeset
   254
        }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   255
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   256
06bc494ca11e Initial load
duke
parents:
diff changeset
   257
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   258
     * Depending upon the command line options provided by the user, set
06bc494ca11e Initial load
duke
parents:
diff changeset
   259
     * configure the output generation environment.
06bc494ca11e Initial load
duke
parents:
diff changeset
   260
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   261
     * @param options The array of option names and values.
06bc494ca11e Initial load
duke
parents:
diff changeset
   262
     */
14544
d71d992cb905 8002079: update DocFile to use a JavaFileManager
jjg
parents: 14542
diff changeset
   263
    @Override
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   264
    public void setSpecificDocletOptions(String[][] options) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   265
        for (int oi = 0; oi < options.length; ++oi) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   266
            String[] os = options[oi];
22153
f9f06fcca59d 8029800: Flags.java uses String.toLowerCase without specifying Locale
jlahoda
parents: 21888
diff changeset
   267
            String opt = StringUtils.toLowerCase(os[0]);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   268
            if (opt.equals("-footer")) {
13842
6908f6badce4 7180906: Javadoc tool does not apply parameter -nosince
bpatel
parents: 9608
diff changeset
   269
                footer = os[1];
6908f6badce4 7180906: Javadoc tool does not apply parameter -nosince
bpatel
parents: 9608
diff changeset
   270
            } else if (opt.equals("-header")) {
6908f6badce4 7180906: Javadoc tool does not apply parameter -nosince
bpatel
parents: 9608
diff changeset
   271
                header = os[1];
6908f6badce4 7180906: Javadoc tool does not apply parameter -nosince
bpatel
parents: 9608
diff changeset
   272
            } else if (opt.equals("-packagesheader")) {
6908f6badce4 7180906: Javadoc tool does not apply parameter -nosince
bpatel
parents: 9608
diff changeset
   273
                packagesheader = os[1];
6908f6badce4 7180906: Javadoc tool does not apply parameter -nosince
bpatel
parents: 9608
diff changeset
   274
            } else if (opt.equals("-doctitle")) {
6908f6badce4 7180906: Javadoc tool does not apply parameter -nosince
bpatel
parents: 9608
diff changeset
   275
                doctitle = os[1];
6908f6badce4 7180906: Javadoc tool does not apply parameter -nosince
bpatel
parents: 9608
diff changeset
   276
            } else if (opt.equals("-windowtitle")) {
23968
d67158b385dd 8026736: Enhance Javadoc pages
bpatel
parents: 22163
diff changeset
   277
                windowtitle = os[1].replaceAll("\\<.*?>", "");
13842
6908f6badce4 7180906: Javadoc tool does not apply parameter -nosince
bpatel
parents: 9608
diff changeset
   278
            } else if (opt.equals("-top")) {
6908f6badce4 7180906: Javadoc tool does not apply parameter -nosince
bpatel
parents: 9608
diff changeset
   279
                top = os[1];
6908f6badce4 7180906: Javadoc tool does not apply parameter -nosince
bpatel
parents: 9608
diff changeset
   280
            } else if (opt.equals("-bottom")) {
6908f6badce4 7180906: Javadoc tool does not apply parameter -nosince
bpatel
parents: 9608
diff changeset
   281
                bottom = os[1];
6908f6badce4 7180906: Javadoc tool does not apply parameter -nosince
bpatel
parents: 9608
diff changeset
   282
            } else if (opt.equals("-helpfile")) {
6908f6badce4 7180906: Javadoc tool does not apply parameter -nosince
bpatel
parents: 9608
diff changeset
   283
                helpfile = os[1];
6908f6badce4 7180906: Javadoc tool does not apply parameter -nosince
bpatel
parents: 9608
diff changeset
   284
            } else if (opt.equals("-stylesheetfile")) {
6908f6badce4 7180906: Javadoc tool does not apply parameter -nosince
bpatel
parents: 9608
diff changeset
   285
                stylesheetfile = os[1];
6908f6badce4 7180906: Javadoc tool does not apply parameter -nosince
bpatel
parents: 9608
diff changeset
   286
            } else if (opt.equals("-charset")) {
6908f6badce4 7180906: Javadoc tool does not apply parameter -nosince
bpatel
parents: 9608
diff changeset
   287
                charset = os[1];
9608
385a828ba236 6553182: Need to modify javadoc doclet for GPL
bpatel
parents: 5520
diff changeset
   288
            } else if (opt.equals("-xdocrootparent")) {
385a828ba236 6553182: Need to modify javadoc doclet for GPL
bpatel
parents: 5520
diff changeset
   289
                docrootparent = os[1];
13842
6908f6badce4 7180906: Javadoc tool does not apply parameter -nosince
bpatel
parents: 9608
diff changeset
   290
            } else if (opt.equals("-nohelp")) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   291
                nohelp = true;
13842
6908f6badce4 7180906: Javadoc tool does not apply parameter -nosince
bpatel
parents: 9608
diff changeset
   292
            } else if (opt.equals("-splitindex")) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   293
                splitindex = true;
13842
6908f6badce4 7180906: Javadoc tool does not apply parameter -nosince
bpatel
parents: 9608
diff changeset
   294
            } else if (opt.equals("-noindex")) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   295
                createindex = false;
13842
6908f6badce4 7180906: Javadoc tool does not apply parameter -nosince
bpatel
parents: 9608
diff changeset
   296
            } else if (opt.equals("-use")) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   297
                classuse = true;
13842
6908f6badce4 7180906: Javadoc tool does not apply parameter -nosince
bpatel
parents: 9608
diff changeset
   298
            } else if (opt.equals("-notree")) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   299
                createtree = false;
13842
6908f6badce4 7180906: Javadoc tool does not apply parameter -nosince
bpatel
parents: 9608
diff changeset
   300
            } else if (opt.equals("-nodeprecatedlist")) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   301
                nodeprecatedlist = true;
13842
6908f6badce4 7180906: Javadoc tool does not apply parameter -nosince
bpatel
parents: 9608
diff changeset
   302
            } else if (opt.equals("-nonavbar")) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   303
                nonavbar = true;
13842
6908f6badce4 7180906: Javadoc tool does not apply parameter -nosince
bpatel
parents: 9608
diff changeset
   304
            } else if (opt.equals("-nooverview")) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   305
                nooverview = true;
13842
6908f6badce4 7180906: Javadoc tool does not apply parameter -nosince
bpatel
parents: 9608
diff changeset
   306
            } else if (opt.equals("-overview")) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   307
                overview = true;
29957
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents: 25874
diff changeset
   308
            } else if (opt.equals("-html4")) {
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents: 25874
diff changeset
   309
                htmlVersion = HtmlVersion.HTML4;
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents: 25874
diff changeset
   310
            } else if (opt.equals("-html5")) {
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents: 25874
diff changeset
   311
                htmlVersion = HtmlVersion.HTML5;
15354
52a04c670c05 8004834: Add doclint support into javadoc
jjg
parents: 14545
diff changeset
   312
            } else if (opt.equals("-xdoclint")) {
31752
a4ea4c9bce2f 8129909: Add -Xdoclint/package: to javadoc
jlahoda
parents: 31751
diff changeset
   313
                doclintOpts.add(DocLint.XMSGS_OPTION);
15354
52a04c670c05 8004834: Add doclint support into javadoc
jjg
parents: 14545
diff changeset
   314
            } else if (opt.startsWith("-xdoclint:")) {
31752
a4ea4c9bce2f 8129909: Add -Xdoclint/package: to javadoc
jlahoda
parents: 31751
diff changeset
   315
                doclintOpts.add(DocLint.XMSGS_CUSTOM_PREFIX + opt.substring(opt.indexOf(":") + 1));
a4ea4c9bce2f 8129909: Add -Xdoclint/package: to javadoc
jlahoda
parents: 31751
diff changeset
   316
            } else if (opt.startsWith("-xdoclint/package:")) {
a4ea4c9bce2f 8129909: Add -Xdoclint/package: to javadoc
jlahoda
parents: 31751
diff changeset
   317
                doclintOpts.add(DocLint.XCHECK_PACKAGE + opt.substring(opt.indexOf(":") + 1));
43261
d377e97291d8 8138725: Add options for Javadoc generation
jjg
parents: 38617
diff changeset
   318
            } else if (opt.equals("--allow-script-in-comments")) {
d377e97291d8 8138725: Add options for Javadoc generation
jjg
parents: 38617
diff changeset
   319
                allowScriptInComments = true;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   320
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   321
        }
43261
d377e97291d8 8138725: Add options for Javadoc generation
jjg
parents: 38617
diff changeset
   322
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   323
        if (root.specifiedClasses().length > 0) {
22163
3651128c74eb 8030244: Update langtools to use Diamond
briangoetz
parents: 22159
diff changeset
   324
            Map<String,PackageDoc> map = new HashMap<>();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   325
            PackageDoc pd;
06bc494ca11e Initial load
duke
parents:
diff changeset
   326
            ClassDoc[] classes = root.classes();
22159
682da512ec17 8030253: Update langtools to use strings-in-switch
briangoetz
parents: 22153
diff changeset
   327
            for (ClassDoc aClass : classes) {
682da512ec17 8030253: Update langtools to use strings-in-switch
briangoetz
parents: 22153
diff changeset
   328
                pd = aClass.containingPackage();
682da512ec17 8030253: Update langtools to use strings-in-switch
briangoetz
parents: 22153
diff changeset
   329
                if (!map.containsKey(pd.name())) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   330
                    map.put(pd.name(), pd);
06bc494ca11e Initial load
duke
parents:
diff changeset
   331
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
   332
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   333
        }
43261
d377e97291d8 8138725: Add options for Javadoc generation
jjg
parents: 38617
diff changeset
   334
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   335
        setCreateOverview();
06bc494ca11e Initial load
duke
parents:
diff changeset
   336
        setTopFile(root);
15354
52a04c670c05 8004834: Add doclint support into javadoc
jjg
parents: 14545
diff changeset
   337
52a04c670c05 8004834: Add doclint support into javadoc
jjg
parents: 14545
diff changeset
   338
        if (root instanceof RootDocImpl) {
29957
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents: 25874
diff changeset
   339
            ((RootDocImpl) root).initDocLint(doclintOpts, tagletManager.getCustomTagNames(),
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents: 25874
diff changeset
   340
                    StringUtils.toLowerCase(htmlVersion.name()));
43261
d377e97291d8 8138725: Add options for Javadoc generation
jjg
parents: 38617
diff changeset
   341
            JavaScriptScanner jss = ((RootDocImpl) root).initJavaScriptScanner(isAllowScriptInComments());
d377e97291d8 8138725: Add options for Javadoc generation
jjg
parents: 38617
diff changeset
   342
            if (jss != null) {
d377e97291d8 8138725: Add options for Javadoc generation
jjg
parents: 38617
diff changeset
   343
                // In a more object-oriented world, this would be done by methods on the Option objects.
d377e97291d8 8138725: Add options for Javadoc generation
jjg
parents: 38617
diff changeset
   344
                // Note that -windowtitle silently removes any and all HTML elements, and so does not need
d377e97291d8 8138725: Add options for Javadoc generation
jjg
parents: 38617
diff changeset
   345
                // to be handled here.
d377e97291d8 8138725: Add options for Javadoc generation
jjg
parents: 38617
diff changeset
   346
                checkJavaScript(jss, "-header", header);
d377e97291d8 8138725: Add options for Javadoc generation
jjg
parents: 38617
diff changeset
   347
                checkJavaScript(jss, "-footer", footer);
d377e97291d8 8138725: Add options for Javadoc generation
jjg
parents: 38617
diff changeset
   348
                checkJavaScript(jss, "-top", top);
d377e97291d8 8138725: Add options for Javadoc generation
jjg
parents: 38617
diff changeset
   349
                checkJavaScript(jss, "-bottom", bottom);
d377e97291d8 8138725: Add options for Javadoc generation
jjg
parents: 38617
diff changeset
   350
                checkJavaScript(jss, "-doctitle", doctitle);
d377e97291d8 8138725: Add options for Javadoc generation
jjg
parents: 38617
diff changeset
   351
                checkJavaScript(jss, "-packagesheader", packagesheader);
d377e97291d8 8138725: Add options for Javadoc generation
jjg
parents: 38617
diff changeset
   352
            }
15354
52a04c670c05 8004834: Add doclint support into javadoc
jjg
parents: 14545
diff changeset
   353
        }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   354
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   355
43261
d377e97291d8 8138725: Add options for Javadoc generation
jjg
parents: 38617
diff changeset
   356
    private void checkJavaScript(JavaScriptScanner jss, final String opt, String value) {
d377e97291d8 8138725: Add options for Javadoc generation
jjg
parents: 38617
diff changeset
   357
        jss.parse(value, new JavaScriptScanner.Reporter() {
d377e97291d8 8138725: Add options for Javadoc generation
jjg
parents: 38617
diff changeset
   358
            public void report() {
d377e97291d8 8138725: Add options for Javadoc generation
jjg
parents: 38617
diff changeset
   359
                root.printError(getText("doclet.JavaScript_in_option", opt));
d377e97291d8 8138725: Add options for Javadoc generation
jjg
parents: 38617
diff changeset
   360
                throw new FatalError();
d377e97291d8 8138725: Add options for Javadoc generation
jjg
parents: 38617
diff changeset
   361
            }
d377e97291d8 8138725: Add options for Javadoc generation
jjg
parents: 38617
diff changeset
   362
        });
d377e97291d8 8138725: Add options for Javadoc generation
jjg
parents: 38617
diff changeset
   363
    }
d377e97291d8 8138725: Add options for Javadoc generation
jjg
parents: 38617
diff changeset
   364
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   365
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   366
     * Returns the "length" of a given option. If an option takes no
06bc494ca11e Initial load
duke
parents:
diff changeset
   367
     * arguments, its length is one. If it takes one argument, it's
06bc494ca11e Initial load
duke
parents:
diff changeset
   368
     * length is two, and so on. This method is called by JavaDoc to
06bc494ca11e Initial load
duke
parents:
diff changeset
   369
     * parse the options it does not recognize. It then calls
06bc494ca11e Initial load
duke
parents:
diff changeset
   370
     * {@link #validOptions(String[][], DocErrorReporter)} to
06bc494ca11e Initial load
duke
parents:
diff changeset
   371
     * validate them.
06bc494ca11e Initial load
duke
parents:
diff changeset
   372
     * <b>Note:</b><br>
06bc494ca11e Initial load
duke
parents:
diff changeset
   373
     * The options arrive as case-sensitive strings. For options that
06bc494ca11e Initial load
duke
parents:
diff changeset
   374
     * are not case-sensitive, use toLowerCase() on the option string
06bc494ca11e Initial load
duke
parents:
diff changeset
   375
     * before comparing it.
06bc494ca11e Initial load
duke
parents:
diff changeset
   376
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   377
     * @return number of arguments + 1 for a option. Zero return means
06bc494ca11e Initial load
duke
parents:
diff changeset
   378
     * option not known.  Negative value means error occurred.
06bc494ca11e Initial load
duke
parents:
diff changeset
   379
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   380
    public int optionLength(String option) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   381
        int result = -1;
06bc494ca11e Initial load
duke
parents:
diff changeset
   382
        if ((result = super.optionLength(option)) > 0) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   383
            return result;
06bc494ca11e Initial load
duke
parents:
diff changeset
   384
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   385
        // otherwise look for the options we have added
22153
f9f06fcca59d 8029800: Flags.java uses String.toLowerCase without specifying Locale
jlahoda
parents: 21888
diff changeset
   386
        option = StringUtils.toLowerCase(option);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   387
        if (option.equals("-nodeprecatedlist") ||
06bc494ca11e Initial load
duke
parents:
diff changeset
   388
            option.equals("-noindex") ||
06bc494ca11e Initial load
duke
parents:
diff changeset
   389
            option.equals("-notree") ||
06bc494ca11e Initial load
duke
parents:
diff changeset
   390
            option.equals("-nohelp") ||
06bc494ca11e Initial load
duke
parents:
diff changeset
   391
            option.equals("-splitindex") ||
06bc494ca11e Initial load
duke
parents:
diff changeset
   392
            option.equals("-serialwarn") ||
06bc494ca11e Initial load
duke
parents:
diff changeset
   393
            option.equals("-use") ||
06bc494ca11e Initial load
duke
parents:
diff changeset
   394
            option.equals("-nonavbar") ||
15354
52a04c670c05 8004834: Add doclint support into javadoc
jjg
parents: 14545
diff changeset
   395
            option.equals("-nooverview") ||
29957
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents: 25874
diff changeset
   396
            option.equals("-html4") ||
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents: 25874
diff changeset
   397
            option.equals("-html5") ||
15354
52a04c670c05 8004834: Add doclint support into javadoc
jjg
parents: 14545
diff changeset
   398
            option.equals("-xdoclint") ||
31752
a4ea4c9bce2f 8129909: Add -Xdoclint/package: to javadoc
jlahoda
parents: 31751
diff changeset
   399
            option.startsWith("-xdoclint:") ||
43261
d377e97291d8 8138725: Add options for Javadoc generation
jjg
parents: 38617
diff changeset
   400
            option.startsWith("-xdoclint/package:") ||
d377e97291d8 8138725: Add options for Javadoc generation
jjg
parents: 38617
diff changeset
   401
            option.startsWith("--allow-script-in-comments")) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   402
            return 1;
06bc494ca11e Initial load
duke
parents:
diff changeset
   403
        } else if (option.equals("-help")) {
18005
598e2e068668 8007687: javadoc -X does not include -Xdoclint
jjg
parents: 17570
diff changeset
   404
            // Uugh: first, this should not be hidden inside optionLength,
598e2e068668 8007687: javadoc -X does not include -Xdoclint
jjg
parents: 17570
diff changeset
   405
            // and second, we should not be writing directly to stdout.
598e2e068668 8007687: javadoc -X does not include -Xdoclint
jjg
parents: 17570
diff changeset
   406
            // But we have no access to a DocErrorReporter, which would
598e2e068668 8007687: javadoc -X does not include -Xdoclint
jjg
parents: 17570
diff changeset
   407
            // allow use of reporter.printNotice
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   408
            System.out.println(getText("doclet.usage"));
06bc494ca11e Initial load
duke
parents:
diff changeset
   409
            return 1;
18005
598e2e068668 8007687: javadoc -X does not include -Xdoclint
jjg
parents: 17570
diff changeset
   410
        } else if (option.equals("-x")) {
598e2e068668 8007687: javadoc -X does not include -Xdoclint
jjg
parents: 17570
diff changeset
   411
            // Uugh: first, this should not be hidden inside optionLength,
598e2e068668 8007687: javadoc -X does not include -Xdoclint
jjg
parents: 17570
diff changeset
   412
            // and second, we should not be writing directly to stdout.
598e2e068668 8007687: javadoc -X does not include -Xdoclint
jjg
parents: 17570
diff changeset
   413
            // But we have no access to a DocErrorReporter, which would
598e2e068668 8007687: javadoc -X does not include -Xdoclint
jjg
parents: 17570
diff changeset
   414
            // allow use of reporter.printNotice
598e2e068668 8007687: javadoc -X does not include -Xdoclint
jjg
parents: 17570
diff changeset
   415
            System.out.println(getText("doclet.X.usage"));
598e2e068668 8007687: javadoc -X does not include -Xdoclint
jjg
parents: 17570
diff changeset
   416
            return 1;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   417
        } else if (option.equals("-footer") ||
06bc494ca11e Initial load
duke
parents:
diff changeset
   418
                   option.equals("-header") ||
06bc494ca11e Initial load
duke
parents:
diff changeset
   419
                   option.equals("-packagesheader") ||
06bc494ca11e Initial load
duke
parents:
diff changeset
   420
                   option.equals("-doctitle") ||
06bc494ca11e Initial load
duke
parents:
diff changeset
   421
                   option.equals("-windowtitle") ||
06bc494ca11e Initial load
duke
parents:
diff changeset
   422
                   option.equals("-top") ||
06bc494ca11e Initial load
duke
parents:
diff changeset
   423
                   option.equals("-bottom") ||
06bc494ca11e Initial load
duke
parents:
diff changeset
   424
                   option.equals("-helpfile") ||
06bc494ca11e Initial load
duke
parents:
diff changeset
   425
                   option.equals("-stylesheetfile") ||
06bc494ca11e Initial load
duke
parents:
diff changeset
   426
                   option.equals("-charset") ||
9608
385a828ba236 6553182: Need to modify javadoc doclet for GPL
bpatel
parents: 5520
diff changeset
   427
                   option.equals("-overview") ||
385a828ba236 6553182: Need to modify javadoc doclet for GPL
bpatel
parents: 5520
diff changeset
   428
                   option.equals("-xdocrootparent")) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   429
            return 2;
06bc494ca11e Initial load
duke
parents:
diff changeset
   430
        } else {
06bc494ca11e Initial load
duke
parents:
diff changeset
   431
            return 0;
06bc494ca11e Initial load
duke
parents:
diff changeset
   432
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   433
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   434
06bc494ca11e Initial load
duke
parents:
diff changeset
   435
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   436
     * {@inheritDoc}
06bc494ca11e Initial load
duke
parents:
diff changeset
   437
     */
14544
d71d992cb905 8002079: update DocFile to use a JavaFileManager
jjg
parents: 14542
diff changeset
   438
    @Override
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   439
    public boolean validOptions(String options[][],
06bc494ca11e Initial load
duke
parents:
diff changeset
   440
            DocErrorReporter reporter) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   441
        boolean helpfile = false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   442
        boolean nohelp = false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   443
        boolean overview = false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   444
        boolean nooverview = false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   445
        boolean splitindex = false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   446
        boolean noindex = false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   447
        // check shared options
06bc494ca11e Initial load
duke
parents:
diff changeset
   448
        if (!generalValidOptions(options, reporter)) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   449
            return false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   450
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   451
        // otherwise look at our options
06bc494ca11e Initial load
duke
parents:
diff changeset
   452
        for (int oi = 0; oi < options.length; ++oi) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   453
            String[] os = options[oi];
22153
f9f06fcca59d 8029800: Flags.java uses String.toLowerCase without specifying Locale
jlahoda
parents: 21888
diff changeset
   454
            String opt = StringUtils.toLowerCase(os[0]);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   455
            if (opt.equals("-helpfile")) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   456
                if (nohelp == true) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   457
                    reporter.printError(getText("doclet.Option_conflict",
06bc494ca11e Initial load
duke
parents:
diff changeset
   458
                        "-helpfile", "-nohelp"));
06bc494ca11e Initial load
duke
parents:
diff changeset
   459
                    return false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   460
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
   461
                if (helpfile == true) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   462
                    reporter.printError(getText("doclet.Option_reuse",
06bc494ca11e Initial load
duke
parents:
diff changeset
   463
                        "-helpfile"));
06bc494ca11e Initial load
duke
parents:
diff changeset
   464
                    return false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   465
                }
14368
6f4c62de6985 8001664: refactor javadoc to use abstraction to handle files
jjg
parents: 14357
diff changeset
   466
                DocFile help = DocFile.createFileForInput(this, os[1]);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   467
                if (!help.exists()) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   468
                    reporter.printError(getText("doclet.File_not_found", os[1]));
06bc494ca11e Initial load
duke
parents:
diff changeset
   469
                    return false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   470
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
   471
                helpfile = true;
06bc494ca11e Initial load
duke
parents:
diff changeset
   472
            } else  if (opt.equals("-nohelp")) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   473
                if (helpfile == true) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   474
                    reporter.printError(getText("doclet.Option_conflict",
06bc494ca11e Initial load
duke
parents:
diff changeset
   475
                        "-nohelp", "-helpfile"));
06bc494ca11e Initial load
duke
parents:
diff changeset
   476
                    return false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   477
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
   478
                nohelp = true;
9608
385a828ba236 6553182: Need to modify javadoc doclet for GPL
bpatel
parents: 5520
diff changeset
   479
            } else if (opt.equals("-xdocrootparent")) {
385a828ba236 6553182: Need to modify javadoc doclet for GPL
bpatel
parents: 5520
diff changeset
   480
                try {
385a828ba236 6553182: Need to modify javadoc doclet for GPL
bpatel
parents: 5520
diff changeset
   481
                    new URL(os[1]);
385a828ba236 6553182: Need to modify javadoc doclet for GPL
bpatel
parents: 5520
diff changeset
   482
                } catch (MalformedURLException e) {
385a828ba236 6553182: Need to modify javadoc doclet for GPL
bpatel
parents: 5520
diff changeset
   483
                    reporter.printError(getText("doclet.MalformedURL", os[1]));
385a828ba236 6553182: Need to modify javadoc doclet for GPL
bpatel
parents: 5520
diff changeset
   484
                    return false;
385a828ba236 6553182: Need to modify javadoc doclet for GPL
bpatel
parents: 5520
diff changeset
   485
                }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   486
            } else if (opt.equals("-overview")) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   487
                if (nooverview == true) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   488
                    reporter.printError(getText("doclet.Option_conflict",
06bc494ca11e Initial load
duke
parents:
diff changeset
   489
                        "-overview", "-nooverview"));
06bc494ca11e Initial load
duke
parents:
diff changeset
   490
                    return false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   491
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
   492
                if (overview == true) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   493
                    reporter.printError(getText("doclet.Option_reuse",
06bc494ca11e Initial load
duke
parents:
diff changeset
   494
                        "-overview"));
06bc494ca11e Initial load
duke
parents:
diff changeset
   495
                    return false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   496
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
   497
                overview = true;
06bc494ca11e Initial load
duke
parents:
diff changeset
   498
            } else  if (opt.equals("-nooverview")) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   499
                if (overview == true) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   500
                    reporter.printError(getText("doclet.Option_conflict",
06bc494ca11e Initial load
duke
parents:
diff changeset
   501
                        "-nooverview", "-overview"));
06bc494ca11e Initial load
duke
parents:
diff changeset
   502
                    return false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   503
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
   504
                nooverview = true;
06bc494ca11e Initial load
duke
parents:
diff changeset
   505
            } else if (opt.equals("-splitindex")) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   506
                if (noindex == true) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   507
                    reporter.printError(getText("doclet.Option_conflict",
06bc494ca11e Initial load
duke
parents:
diff changeset
   508
                        "-splitindex", "-noindex"));
06bc494ca11e Initial load
duke
parents:
diff changeset
   509
                    return false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   510
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
   511
                splitindex = true;
06bc494ca11e Initial load
duke
parents:
diff changeset
   512
            } else if (opt.equals("-noindex")) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   513
                if (splitindex == true) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   514
                    reporter.printError(getText("doclet.Option_conflict",
06bc494ca11e Initial load
duke
parents:
diff changeset
   515
                        "-noindex", "-splitindex"));
06bc494ca11e Initial load
duke
parents:
diff changeset
   516
                    return false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   517
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
   518
                noindex = true;
15354
52a04c670c05 8004834: Add doclint support into javadoc
jjg
parents: 14545
diff changeset
   519
            } else if (opt.startsWith("-xdoclint:")) {
52a04c670c05 8004834: Add doclint support into javadoc
jjg
parents: 14545
diff changeset
   520
                if (opt.contains("/")) {
52a04c670c05 8004834: Add doclint support into javadoc
jjg
parents: 14545
diff changeset
   521
                    reporter.printError(getText("doclet.Option_doclint_no_qualifiers"));
52a04c670c05 8004834: Add doclint support into javadoc
jjg
parents: 14545
diff changeset
   522
                    return false;
52a04c670c05 8004834: Add doclint support into javadoc
jjg
parents: 14545
diff changeset
   523
                }
52a04c670c05 8004834: Add doclint support into javadoc
jjg
parents: 14545
diff changeset
   524
                if (!DocLint.isValidOption(
52a04c670c05 8004834: Add doclint support into javadoc
jjg
parents: 14545
diff changeset
   525
                        opt.replace("-xdoclint:", DocLint.XMSGS_CUSTOM_PREFIX))) {
52a04c670c05 8004834: Add doclint support into javadoc
jjg
parents: 14545
diff changeset
   526
                    reporter.printError(getText("doclet.Option_doclint_invalid_arg"));
52a04c670c05 8004834: Add doclint support into javadoc
jjg
parents: 14545
diff changeset
   527
                    return false;
52a04c670c05 8004834: Add doclint support into javadoc
jjg
parents: 14545
diff changeset
   528
                }
31752
a4ea4c9bce2f 8129909: Add -Xdoclint/package: to javadoc
jlahoda
parents: 31751
diff changeset
   529
            } else if (opt.startsWith("-xdoclint/package:")) {
a4ea4c9bce2f 8129909: Add -Xdoclint/package: to javadoc
jlahoda
parents: 31751
diff changeset
   530
                if (!DocLint.isValidOption(
a4ea4c9bce2f 8129909: Add -Xdoclint/package: to javadoc
jlahoda
parents: 31751
diff changeset
   531
                        opt.replace("-xdoclint/package:", DocLint.XCHECK_PACKAGE))) {
a4ea4c9bce2f 8129909: Add -Xdoclint/package: to javadoc
jlahoda
parents: 31751
diff changeset
   532
                    reporter.printError(getText("doclet.Option_doclint_package_invalid_arg"));
a4ea4c9bce2f 8129909: Add -Xdoclint/package: to javadoc
jlahoda
parents: 31751
diff changeset
   533
                    return false;
a4ea4c9bce2f 8129909: Add -Xdoclint/package: to javadoc
jlahoda
parents: 31751
diff changeset
   534
                }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   535
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   536
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   537
        return true;
06bc494ca11e Initial load
duke
parents:
diff changeset
   538
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   539
06bc494ca11e Initial load
duke
parents:
diff changeset
   540
    /**
29957
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents: 25874
diff changeset
   541
     * Return true if the generated output is HTML5.
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents: 25874
diff changeset
   542
     */
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents: 25874
diff changeset
   543
    public boolean isOutputHtml5() {
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents: 25874
diff changeset
   544
        return htmlVersion == HtmlVersion.HTML5;
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents: 25874
diff changeset
   545
    }
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents: 25874
diff changeset
   546
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents: 25874
diff changeset
   547
    /**
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents: 25874
diff changeset
   548
     * Return true if the tag is allowed for this specific version of HTML.
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents: 25874
diff changeset
   549
     */
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents: 25874
diff changeset
   550
    public boolean allowTag(HtmlTag htmlTag) {
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents: 25874
diff changeset
   551
        return htmlTag.allowTag(this.htmlVersion);
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents: 25874
diff changeset
   552
    }
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents: 25874
diff changeset
   553
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents: 25874
diff changeset
   554
    /**
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   555
     * {@inheritDoc}
06bc494ca11e Initial load
duke
parents:
diff changeset
   556
     */
14544
d71d992cb905 8002079: update DocFile to use a JavaFileManager
jjg
parents: 14542
diff changeset
   557
    @Override
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   558
    public MessageRetriever getDocletSpecificMsg() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   559
        return standardmessage;
06bc494ca11e Initial load
duke
parents:
diff changeset
   560
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   561
06bc494ca11e Initial load
duke
parents:
diff changeset
   562
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   563
     * Decide the page which will appear first in the right-hand frame. It will
06bc494ca11e Initial load
duke
parents:
diff changeset
   564
     * be "overview-summary.html" if "-overview" option is used or no
06bc494ca11e Initial load
duke
parents:
diff changeset
   565
     * "-overview" but the number of packages is more than one. It will be
06bc494ca11e Initial load
duke
parents:
diff changeset
   566
     * "package-summary.html" of the respective package if there is only one
06bc494ca11e Initial load
duke
parents:
diff changeset
   567
     * package to document. It will be a class page(first in the sorted order),
06bc494ca11e Initial load
duke
parents:
diff changeset
   568
     * if only classes are provided on the command line.
06bc494ca11e Initial load
duke
parents:
diff changeset
   569
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   570
     * @param root Root of the program structure.
06bc494ca11e Initial load
duke
parents:
diff changeset
   571
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   572
    protected void setTopFile(RootDoc root) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   573
        if (!checkForDeprecation(root)) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   574
            return;
06bc494ca11e Initial load
duke
parents:
diff changeset
   575
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   576
        if (createoverview) {
14357
faf9cde2817b 8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents: 14259
diff changeset
   577
            topFile = DocPaths.OVERVIEW_SUMMARY;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   578
        } else {
24221
2376793dd33b 8038583: [javadoc] Refactor uses of arrays to Collections
ksrini
parents: 23968
diff changeset
   579
            if (packages.size() == 1 && packages.first().name().equals("")) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   580
                if (root.classes().length > 0) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   581
                    ClassDoc[] classarr = root.classes();
06bc494ca11e Initial load
duke
parents:
diff changeset
   582
                    Arrays.sort(classarr);
06bc494ca11e Initial load
duke
parents:
diff changeset
   583
                    ClassDoc cd = getValidClass(classarr);
14357
faf9cde2817b 8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents: 14259
diff changeset
   584
                    topFile = DocPath.forClass(cd);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   585
                }
24221
2376793dd33b 8038583: [javadoc] Refactor uses of arrays to Collections
ksrini
parents: 23968
diff changeset
   586
            } else if (!packages.isEmpty()) {
2376793dd33b 8038583: [javadoc] Refactor uses of arrays to Collections
ksrini
parents: 23968
diff changeset
   587
                topFile = DocPath.forPackage(packages.first()).resolve(DocPaths.PACKAGE_SUMMARY);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   588
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   589
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   590
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   591
06bc494ca11e Initial load
duke
parents:
diff changeset
   592
    protected ClassDoc getValidClass(ClassDoc[] classarr) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   593
        if (!nodeprecated) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   594
            return classarr[0];
06bc494ca11e Initial load
duke
parents:
diff changeset
   595
        }
22159
682da512ec17 8030253: Update langtools to use strings-in-switch
briangoetz
parents: 22153
diff changeset
   596
        for (ClassDoc cd : classarr) {
682da512ec17 8030253: Update langtools to use strings-in-switch
briangoetz
parents: 22153
diff changeset
   597
            if (cd.tags("deprecated").length == 0) {
682da512ec17 8030253: Update langtools to use strings-in-switch
briangoetz
parents: 22153
diff changeset
   598
                return cd;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   599
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   600
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   601
        return null;
06bc494ca11e Initial load
duke
parents:
diff changeset
   602
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   603
06bc494ca11e Initial load
duke
parents:
diff changeset
   604
    protected boolean checkForDeprecation(RootDoc root) {
22159
682da512ec17 8030253: Update langtools to use strings-in-switch
briangoetz
parents: 22153
diff changeset
   605
        for (ClassDoc cd : root.classes()) {
682da512ec17 8030253: Update langtools to use strings-in-switch
briangoetz
parents: 22153
diff changeset
   606
            if (isGeneratedDoc(cd)) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   607
                return true;
06bc494ca11e Initial load
duke
parents:
diff changeset
   608
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   609
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   610
        return false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   611
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   612
06bc494ca11e Initial load
duke
parents:
diff changeset
   613
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   614
     * Generate "overview.html" page if option "-overview" is used or number of
06bc494ca11e Initial load
duke
parents:
diff changeset
   615
     * packages is more than one. Sets {@link #createoverview} field to true.
06bc494ca11e Initial load
duke
parents:
diff changeset
   616
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   617
    protected void setCreateOverview() {
24221
2376793dd33b 8038583: [javadoc] Refactor uses of arrays to Collections
ksrini
parents: 23968
diff changeset
   618
        if ((overview || packages.size() > 1) && !nooverview) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   619
            createoverview = true;
06bc494ca11e Initial load
duke
parents:
diff changeset
   620
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   621
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   622
06bc494ca11e Initial load
duke
parents:
diff changeset
   623
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   624
     * {@inheritDoc}
06bc494ca11e Initial load
duke
parents:
diff changeset
   625
     */
14544
d71d992cb905 8002079: update DocFile to use a JavaFileManager
jjg
parents: 14542
diff changeset
   626
    @Override
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   627
    public WriterFactory getWriterFactory() {
1475
19c0851667ca 6748541: javadoc should be reusable
jjg
parents: 1264
diff changeset
   628
        return new WriterFactoryImpl(this);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   629
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   630
06bc494ca11e Initial load
duke
parents:
diff changeset
   631
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   632
     * {@inheritDoc}
06bc494ca11e Initial load
duke
parents:
diff changeset
   633
     */
14544
d71d992cb905 8002079: update DocFile to use a JavaFileManager
jjg
parents: 14542
diff changeset
   634
    @Override
868
d0f233085cbb 6657907: javadoc has unchecked warnings
jjg
parents: 10
diff changeset
   635
    public Comparator<ProgramElementDoc> getMemberComparator() {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   636
        return null;
06bc494ca11e Initial load
duke
parents:
diff changeset
   637
    }
1863
e5de9abc0eb1 6786682: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - HTML tag should have lang attribute
bpatel
parents: 1475
diff changeset
   638
e5de9abc0eb1 6786682: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - HTML tag should have lang attribute
bpatel
parents: 1475
diff changeset
   639
    /**
e5de9abc0eb1 6786682: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - HTML tag should have lang attribute
bpatel
parents: 1475
diff changeset
   640
     * {@inheritDoc}
e5de9abc0eb1 6786682: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - HTML tag should have lang attribute
bpatel
parents: 1475
diff changeset
   641
     */
14544
d71d992cb905 8002079: update DocFile to use a JavaFileManager
jjg
parents: 14542
diff changeset
   642
    @Override
1863
e5de9abc0eb1 6786682: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - HTML tag should have lang attribute
bpatel
parents: 1475
diff changeset
   643
    public Locale getLocale() {
15354
52a04c670c05 8004834: Add doclint support into javadoc
jjg
parents: 14545
diff changeset
   644
        if (root instanceof RootDocImpl)
52a04c670c05 8004834: Add doclint support into javadoc
jjg
parents: 14545
diff changeset
   645
            return ((RootDocImpl)root).getLocale();
1863
e5de9abc0eb1 6786682: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - HTML tag should have lang attribute
bpatel
parents: 1475
diff changeset
   646
        else
e5de9abc0eb1 6786682: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - HTML tag should have lang attribute
bpatel
parents: 1475
diff changeset
   647
            return Locale.getDefault();
e5de9abc0eb1 6786682: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - HTML tag should have lang attribute
bpatel
parents: 1475
diff changeset
   648
    }
14544
d71d992cb905 8002079: update DocFile to use a JavaFileManager
jjg
parents: 14542
diff changeset
   649
d71d992cb905 8002079: update DocFile to use a JavaFileManager
jjg
parents: 14542
diff changeset
   650
    /**
d71d992cb905 8002079: update DocFile to use a JavaFileManager
jjg
parents: 14542
diff changeset
   651
     * {@inheritDoc}
d71d992cb905 8002079: update DocFile to use a JavaFileManager
jjg
parents: 14542
diff changeset
   652
     */
d71d992cb905 8002079: update DocFile to use a JavaFileManager
jjg
parents: 14542
diff changeset
   653
    @Override
d71d992cb905 8002079: update DocFile to use a JavaFileManager
jjg
parents: 14542
diff changeset
   654
    public JavaFileManager getFileManager() {
14545
2e7bab0639b8 6493690: javadoc should have a javax.tools.Tool service provider installed in tools.jar
jjg
parents: 14544
diff changeset
   655
        if (fileManager == null) {
15354
52a04c670c05 8004834: Add doclint support into javadoc
jjg
parents: 14545
diff changeset
   656
            if (root instanceof RootDocImpl)
52a04c670c05 8004834: Add doclint support into javadoc
jjg
parents: 14545
diff changeset
   657
                fileManager = ((RootDocImpl) root).getFileManager();
14545
2e7bab0639b8 6493690: javadoc should have a javax.tools.Tool service provider installed in tools.jar
jjg
parents: 14544
diff changeset
   658
            else
2e7bab0639b8 6493690: javadoc should have a javax.tools.Tool service provider installed in tools.jar
jjg
parents: 14544
diff changeset
   659
                fileManager = new JavacFileManager(new Context(), false, null);
2e7bab0639b8 6493690: javadoc should have a javax.tools.Tool service provider installed in tools.jar
jjg
parents: 14544
diff changeset
   660
        }
2e7bab0639b8 6493690: javadoc should have a javax.tools.Tool service provider installed in tools.jar
jjg
parents: 14544
diff changeset
   661
        return fileManager;
14544
d71d992cb905 8002079: update DocFile to use a JavaFileManager
jjg
parents: 14542
diff changeset
   662
    }
14545
2e7bab0639b8 6493690: javadoc should have a javax.tools.Tool service provider installed in tools.jar
jjg
parents: 14544
diff changeset
   663
2e7bab0639b8 6493690: javadoc should have a javax.tools.Tool service provider installed in tools.jar
jjg
parents: 14544
diff changeset
   664
    private JavaFileManager fileManager;
15354
52a04c670c05 8004834: Add doclint support into javadoc
jjg
parents: 14545
diff changeset
   665
52a04c670c05 8004834: Add doclint support into javadoc
jjg
parents: 14545
diff changeset
   666
    @Override
52a04c670c05 8004834: Add doclint support into javadoc
jjg
parents: 14545
diff changeset
   667
    public boolean showMessage(SourcePosition pos, String key) {
52a04c670c05 8004834: Add doclint support into javadoc
jjg
parents: 14545
diff changeset
   668
        if (root instanceof RootDocImpl) {
52a04c670c05 8004834: Add doclint support into javadoc
jjg
parents: 14545
diff changeset
   669
            return pos == null || ((RootDocImpl) root).showTagMessages();
52a04c670c05 8004834: Add doclint support into javadoc
jjg
parents: 14545
diff changeset
   670
        }
52a04c670c05 8004834: Add doclint support into javadoc
jjg
parents: 14545
diff changeset
   671
        return true;
52a04c670c05 8004834: Add doclint support into javadoc
jjg
parents: 14545
diff changeset
   672
    }
17563
e8ddeb9bd17c 8011668: Allow HTMLWriter.getResource to take Content args
jjg
parents: 15354
diff changeset
   673
e8ddeb9bd17c 8011668: Allow HTMLWriter.getResource to take Content args
jjg
parents: 15354
diff changeset
   674
    @Override
17570
78512b2899db 8012183: replace some uses of Configuration.getText with Configuration.getResource
jjg
parents: 17563
diff changeset
   675
    public Content newContent() {
17563
e8ddeb9bd17c 8011668: Allow HTMLWriter.getResource to take Content args
jjg
parents: 15354
diff changeset
   676
        return new ContentBuilder();
e8ddeb9bd17c 8011668: Allow HTMLWriter.getResource to take Content args
jjg
parents: 15354
diff changeset
   677
    }
33920
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 31752
diff changeset
   678
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 33920
diff changeset
   679
    @Override
3b41f1c69604 8142968: Module System implementation
alanb
parents: 33920
diff changeset
   680
    public Location getLocationForPackage(PackageDoc pd) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 33920
diff changeset
   681
        JavaFileManager fm = getFileManager();
3b41f1c69604 8142968: Module System implementation
alanb
parents: 33920
diff changeset
   682
        return StandardLocation.SOURCE_PATH;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 33920
diff changeset
   683
    }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 33920
diff changeset
   684
33920
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 31752
diff changeset
   685
    protected void buildSearchTagIndex() {
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 31752
diff changeset
   686
        for (SearchIndexItem sii : tagSearchIndex) {
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 31752
diff changeset
   687
            String tagLabel = sii.getLabel();
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 31752
diff changeset
   688
            char ch = (tagLabel.length() == 0)
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 31752
diff changeset
   689
                    ? '*'
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 31752
diff changeset
   690
                    : Character.toUpperCase(tagLabel.charAt(0));
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 31752
diff changeset
   691
            Character unicode = ch;
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 31752
diff changeset
   692
            List<SearchIndexItem> list = tagSearchIndexMap.get(unicode);
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 31752
diff changeset
   693
            if (list == null) {
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 31752
diff changeset
   694
                list = new ArrayList<>();
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 31752
diff changeset
   695
                tagSearchIndexMap.put(unicode, list);
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 31752
diff changeset
   696
            }
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 31752
diff changeset
   697
            list.add(sii);
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 31752
diff changeset
   698
        }
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 31752
diff changeset
   699
        tagSearchIndexKeys = tagSearchIndexMap.keySet();
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 31752
diff changeset
   700
    }
43261
d377e97291d8 8138725: Add options for Javadoc generation
jjg
parents: 38617
diff changeset
   701
d377e97291d8 8138725: Add options for Javadoc generation
jjg
parents: 38617
diff changeset
   702
    /**
d377e97291d8 8138725: Add options for Javadoc generation
jjg
parents: 38617
diff changeset
   703
     * Returns whether or not to allow JavaScript in comments.
d377e97291d8 8138725: Add options for Javadoc generation
jjg
parents: 38617
diff changeset
   704
     * Default is off; can be set true from a command line option.
d377e97291d8 8138725: Add options for Javadoc generation
jjg
parents: 38617
diff changeset
   705
     * @return the allowScriptInComments
d377e97291d8 8138725: Add options for Javadoc generation
jjg
parents: 38617
diff changeset
   706
     */
d377e97291d8 8138725: Add options for Javadoc generation
jjg
parents: 38617
diff changeset
   707
    public boolean isAllowScriptInComments() {
d377e97291d8 8138725: Add options for Javadoc generation
jjg
parents: 38617
diff changeset
   708
        return allowScriptInComments;
d377e97291d8 8138725: Add options for Javadoc generation
jjg
parents: 38617
diff changeset
   709
    }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   710
}