langtools/src/jdk.javadoc/share/classes/jdk/javadoc/internal/tool/JavadocTool.java
author ksrini
Mon, 10 Oct 2016 06:47:47 -0700
changeset 41451 a847c7aa25a7
parent 40508 74ef30d16fb9
child 43269 12f989542165
permissions -rw-r--r--
8151102: Cleanup javadoc exception handling Reviewed-by: jjg
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: 35426
diff changeset
     2
 * Copyright (c) 2001, 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
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 32163
diff changeset
    26
package jdk.javadoc.internal.tool;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 32163
diff changeset
    27
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    28
1869
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
    29
import java.io.File;
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 32163
diff changeset
    30
import java.util.ArrayList;
23116
4c134ccd6b8d 8029145: javadoc fails with java.lang.IllegalStateException: endPosTable already set
ksrini
parents: 22163
diff changeset
    31
import java.util.HashSet;
32163
2bdcabf14e91 8133223: Clean up package handling code in JavadocTool
jjg
parents: 30066
diff changeset
    32
import java.util.LinkedHashSet;
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 32163
diff changeset
    33
import java.util.List;
1869
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
    34
import java.util.Map;
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
    35
import java.util.Set;
24604
7f68545b5128 8041422: Split javac ClassReader into ClassReader+ClassFinder
jjg
parents: 23973
diff changeset
    36
1869
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
    37
import javax.tools.JavaFileObject;
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
    38
import javax.tools.StandardJavaFileManager;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    39
24604
7f68545b5128 8041422: Split javac ClassReader into ClassReader+ClassFinder
jjg
parents: 23973
diff changeset
    40
import com.sun.tools.javac.code.ClassFinder;
30066
d74c06a92bd8 8078600: Infinite loop when compiling annotations with -XDcompletionDeps
alundblad
parents: 25874
diff changeset
    41
import com.sun.tools.javac.code.Symbol.Completer;
1869
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
    42
import com.sun.tools.javac.code.Symbol.CompletionFailure;
24604
7f68545b5128 8041422: Split javac ClassReader into ClassReader+ClassFinder
jjg
parents: 23973
diff changeset
    43
import com.sun.tools.javac.comp.Enter;
1869
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
    44
import com.sun.tools.javac.tree.JCTree;
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
    45
import com.sun.tools.javac.tree.JCTree.JCClassDecl;
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
    46
import com.sun.tools.javac.tree.JCTree.JCCompilationUnit;
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
    47
import com.sun.tools.javac.util.Abort;
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
    48
import com.sun.tools.javac.util.Context;
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
    49
import com.sun.tools.javac.util.ListBuffer;
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
    50
import com.sun.tools.javac.util.Position;
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 32163
diff changeset
    51
import jdk.javadoc.doclet.DocletEnvironment;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    52
41451
a847c7aa25a7 8151102: Cleanup javadoc exception handling
ksrini
parents: 40508
diff changeset
    53
import static jdk.javadoc.internal.tool.Main.Result.*;
a847c7aa25a7 8151102: Cleanup javadoc exception handling
ksrini
parents: 40508
diff changeset
    54
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    55
/**
06bc494ca11e Initial load
duke
parents:
diff changeset
    56
 *  This class could be the main entry point for Javadoc when Javadoc is used as a
06bc494ca11e Initial load
duke
parents:
diff changeset
    57
 *  component in a larger software system. It provides operations to
06bc494ca11e Initial load
duke
parents:
diff changeset
    58
 *  construct a new javadoc processor, and to run it on a set of source
06bc494ca11e Initial load
duke
parents:
diff changeset
    59
 *  files.
14260
727a84636f12 8000665: fix "internal API" comments on javadoc files
jjg
parents: 14259
diff changeset
    60
 *
727a84636f12 8000665: fix "internal API" comments on javadoc files
jjg
parents: 14259
diff changeset
    61
 *  <p><b>This is NOT part of any supported API.
727a84636f12 8000665: fix "internal API" comments on javadoc files
jjg
parents: 14259
diff changeset
    62
 *  If you write code that depends on this, you do so at your own risk.
727a84636f12 8000665: fix "internal API" comments on javadoc files
jjg
parents: 14259
diff changeset
    63
 *  This code and its internal interfaces are subject to change or
727a84636f12 8000665: fix "internal API" comments on javadoc files
jjg
parents: 14259
diff changeset
    64
 *  deletion without notice.</b>
727a84636f12 8000665: fix "internal API" comments on javadoc files
jjg
parents: 14259
diff changeset
    65
 *
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    66
 *  @author Neal Gafter
06bc494ca11e Initial load
duke
parents:
diff changeset
    67
 */
06bc494ca11e Initial load
duke
parents:
diff changeset
    68
public class JavadocTool extends com.sun.tools.javac.main.JavaCompiler {
39364
bd6d4a7936b4 8160301: javadoc RootDoclmpl and DocEnv needs to be renamed
ksrini
parents: 38619
diff changeset
    69
    ToolEnvironment toolEnv;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    70
06bc494ca11e Initial load
duke
parents:
diff changeset
    71
    final Messager messager;
24604
7f68545b5128 8041422: Split javac ClassReader into ClassReader+ClassFinder
jjg
parents: 23973
diff changeset
    72
    final ClassFinder javadocFinder;
7f68545b5128 8041422: Split javac ClassReader into ClassReader+ClassFinder
jjg
parents: 23973
diff changeset
    73
    final Enter javadocEnter;
23973
4b5f3a297142 8037484: [javadoc] fails with java.lang.IllegalStateException: endPosTable already set
ksrini
parents: 23116
diff changeset
    74
    final Set<JavaFileObject> uniquefiles;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    75
06bc494ca11e Initial load
duke
parents:
diff changeset
    76
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    77
     * Construct a new JavaCompiler processor, using appropriately
06bc494ca11e Initial load
duke
parents:
diff changeset
    78
     * extended phases of the underlying compiler.
06bc494ca11e Initial load
duke
parents:
diff changeset
    79
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    80
    protected JavadocTool(Context context) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    81
        super(context);
06bc494ca11e Initial load
duke
parents:
diff changeset
    82
        messager = Messager.instance0(context);
24604
7f68545b5128 8041422: Split javac ClassReader into ClassReader+ClassFinder
jjg
parents: 23973
diff changeset
    83
        javadocFinder = JavadocClassFinder.instance(context);
7f68545b5128 8041422: Split javac ClassReader into ClassReader+ClassFinder
jjg
parents: 23973
diff changeset
    84
        javadocEnter = JavadocEnter.instance(context);
23973
4b5f3a297142 8037484: [javadoc] fails with java.lang.IllegalStateException: endPosTable already set
ksrini
parents: 23116
diff changeset
    85
        uniquefiles = new HashSet<>();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    86
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
    87
06bc494ca11e Initial load
duke
parents:
diff changeset
    88
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    89
     * For javadoc, the parser needs to keep comments. Overrides method from JavaCompiler.
06bc494ca11e Initial load
duke
parents:
diff changeset
    90
     */
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35426
diff changeset
    91
    @Override
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    92
    protected boolean keepComments() {
06bc494ca11e Initial load
duke
parents:
diff changeset
    93
        return true;
06bc494ca11e Initial load
duke
parents:
diff changeset
    94
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
    95
06bc494ca11e Initial load
duke
parents:
diff changeset
    96
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    97
     *  Construct a new javadoc tool.
06bc494ca11e Initial load
duke
parents:
diff changeset
    98
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    99
    public static JavadocTool make0(Context context) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   100
        Messager messager = null;
06bc494ca11e Initial load
duke
parents:
diff changeset
   101
        try {
24604
7f68545b5128 8041422: Split javac ClassReader into ClassReader+ClassFinder
jjg
parents: 23973
diff changeset
   102
            // force the use of Javadoc's class finder
7f68545b5128 8041422: Split javac ClassReader into ClassReader+ClassFinder
jjg
parents: 23973
diff changeset
   103
            JavadocClassFinder.preRegister(context);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   104
06bc494ca11e Initial load
duke
parents:
diff changeset
   105
            // force the use of Javadoc's own enter phase
06bc494ca11e Initial load
duke
parents:
diff changeset
   106
            JavadocEnter.preRegister(context);
06bc494ca11e Initial load
duke
parents:
diff changeset
   107
06bc494ca11e Initial load
duke
parents:
diff changeset
   108
            // force the use of Javadoc's own member enter phase
06bc494ca11e Initial load
duke
parents:
diff changeset
   109
            JavadocMemberEnter.preRegister(context);
06bc494ca11e Initial load
duke
parents:
diff changeset
   110
06bc494ca11e Initial load
duke
parents:
diff changeset
   111
            // force the use of Javadoc's own todo phase
06bc494ca11e Initial load
duke
parents:
diff changeset
   112
            JavadocTodo.preRegister(context);
06bc494ca11e Initial load
duke
parents:
diff changeset
   113
06bc494ca11e Initial load
duke
parents:
diff changeset
   114
            // force the use of Messager as a Log
06bc494ca11e Initial load
duke
parents:
diff changeset
   115
            messager = Messager.instance0(context);
06bc494ca11e Initial load
duke
parents:
diff changeset
   116
06bc494ca11e Initial load
duke
parents:
diff changeset
   117
            return new JavadocTool(context);
06bc494ca11e Initial load
duke
parents:
diff changeset
   118
        } catch (CompletionFailure ex) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   119
            messager.error(Position.NOPOS, ex.getMessage());
06bc494ca11e Initial load
duke
parents:
diff changeset
   120
            return null;
06bc494ca11e Initial load
duke
parents:
diff changeset
   121
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   122
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   123
41451
a847c7aa25a7 8151102: Cleanup javadoc exception handling
ksrini
parents: 40508
diff changeset
   124
    public DocletEnvironment getEnvironment(Map<ToolOption,
a847c7aa25a7 8151102: Cleanup javadoc exception handling
ksrini
parents: 40508
diff changeset
   125
            Object> jdtoolOpts,
a847c7aa25a7 8151102: Cleanup javadoc exception handling
ksrini
parents: 40508
diff changeset
   126
            List<String> javaNames,
a847c7aa25a7 8151102: Cleanup javadoc exception handling
ksrini
parents: 40508
diff changeset
   127
            Iterable<? extends JavaFileObject> fileObjects) throws ToolException {
39364
bd6d4a7936b4 8160301: javadoc RootDoclmpl and DocEnv needs to be renamed
ksrini
parents: 38619
diff changeset
   128
        toolEnv = ToolEnvironment.instance(context);
40508
74ef30d16fb9 8159305: Enhance the javadoc tool to support module related options
ksrini
parents: 40311
diff changeset
   129
        toolEnv.initialize(jdtoolOpts);
74ef30d16fb9 8159305: Enhance the javadoc tool to support module related options
ksrini
parents: 40311
diff changeset
   130
        ElementsTable etable = new ElementsTable(context, jdtoolOpts);
74ef30d16fb9 8159305: Enhance the javadoc tool to support module related options
ksrini
parents: 40311
diff changeset
   131
        javadocFinder.sourceCompleter = etable.xclasses
74ef30d16fb9 8159305: Enhance the javadoc tool to support module related options
ksrini
parents: 40311
diff changeset
   132
                ? Completer.NULL_COMPLETER
74ef30d16fb9 8159305: Enhance the javadoc tool to support module related options
ksrini
parents: 40311
diff changeset
   133
                : sourceCompleter;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   134
40508
74ef30d16fb9 8159305: Enhance the javadoc tool to support module related options
ksrini
parents: 40311
diff changeset
   135
        if (etable.xclasses) {
74ef30d16fb9 8159305: Enhance the javadoc tool to support module related options
ksrini
parents: 40311
diff changeset
   136
            // If -Xclasses is set, the args should be a list of class names
74ef30d16fb9 8159305: Enhance the javadoc tool to support module related options
ksrini
parents: 40311
diff changeset
   137
            for (String arg: javaNames) {
41451
a847c7aa25a7 8151102: Cleanup javadoc exception handling
ksrini
parents: 40508
diff changeset
   138
                if (!isValidPackageName(arg)) { // checks
a847c7aa25a7 8151102: Cleanup javadoc exception handling
ksrini
parents: 40508
diff changeset
   139
                    String text = messager.getText("main.illegal_class_name", arg);
a847c7aa25a7 8151102: Cleanup javadoc exception handling
ksrini
parents: 40508
diff changeset
   140
                    throw new ToolException(CMDERR, text);
a847c7aa25a7 8151102: Cleanup javadoc exception handling
ksrini
parents: 40508
diff changeset
   141
                }
32163
2bdcabf14e91 8133223: Clean up package handling code in JavadocTool
jjg
parents: 30066
diff changeset
   142
            }
41451
a847c7aa25a7 8151102: Cleanup javadoc exception handling
ksrini
parents: 40508
diff changeset
   143
            if (messager.hasErrors()) {
32163
2bdcabf14e91 8133223: Clean up package handling code in JavadocTool
jjg
parents: 30066
diff changeset
   144
                return null;
2bdcabf14e91 8133223: Clean up package handling code in JavadocTool
jjg
parents: 30066
diff changeset
   145
            }
40508
74ef30d16fb9 8159305: Enhance the javadoc tool to support module related options
ksrini
parents: 40311
diff changeset
   146
            etable.setClassArgList(javaNames);
74ef30d16fb9 8159305: Enhance the javadoc tool to support module related options
ksrini
parents: 40311
diff changeset
   147
            // prepare, force the data structures to be analyzed
74ef30d16fb9 8159305: Enhance the javadoc tool to support module related options
ksrini
parents: 40311
diff changeset
   148
            etable.analyze();
74ef30d16fb9 8159305: Enhance the javadoc tool to support module related options
ksrini
parents: 40311
diff changeset
   149
            return new DocEnvImpl(toolEnv, etable);
32163
2bdcabf14e91 8133223: Clean up package handling code in JavadocTool
jjg
parents: 30066
diff changeset
   150
        }
2bdcabf14e91 8133223: Clean up package handling code in JavadocTool
jjg
parents: 30066
diff changeset
   151
22163
3651128c74eb 8030244: Update langtools to use Diamond
briangoetz
parents: 19921
diff changeset
   152
        ListBuffer<JCCompilationUnit> classTrees = new ListBuffer<>();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   153
06bc494ca11e Initial load
duke
parents:
diff changeset
   154
        try {
39364
bd6d4a7936b4 8160301: javadoc RootDoclmpl and DocEnv needs to be renamed
ksrini
parents: 38619
diff changeset
   155
            StandardJavaFileManager fm = toolEnv.fileManager instanceof StandardJavaFileManager
40508
74ef30d16fb9 8159305: Enhance the javadoc tool to support module related options
ksrini
parents: 40311
diff changeset
   156
                    ? (StandardJavaFileManager) toolEnv.fileManager
74ef30d16fb9 8159305: Enhance the javadoc tool to support module related options
ksrini
parents: 40311
diff changeset
   157
                    : null;
32163
2bdcabf14e91 8133223: Clean up package handling code in JavadocTool
jjg
parents: 30066
diff changeset
   158
            Set<String> packageNames = new LinkedHashSet<>();
2bdcabf14e91 8133223: Clean up package handling code in JavadocTool
jjg
parents: 30066
diff changeset
   159
            // Normally, the args should be a series of package names or file names.
2bdcabf14e91 8133223: Clean up package handling code in JavadocTool
jjg
parents: 30066
diff changeset
   160
            // Parse the files and collect the package names.
40508
74ef30d16fb9 8159305: Enhance the javadoc tool to support module related options
ksrini
parents: 40311
diff changeset
   161
            for (String arg: javaNames) {
32163
2bdcabf14e91 8133223: Clean up package handling code in JavadocTool
jjg
parents: 30066
diff changeset
   162
                if (fm != null && arg.endsWith(".java") && new File(arg).exists()) {
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35426
diff changeset
   163
                    if (new File(arg).getName().equals("module-info.java")) {
41451
a847c7aa25a7 8151102: Cleanup javadoc exception handling
ksrini
parents: 40508
diff changeset
   164
                        messager.printWarningUsingKey("main.file_ignored", arg);
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35426
diff changeset
   165
                    } else {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35426
diff changeset
   166
                        parse(fm.getJavaFileObjects(arg), classTrees, true);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35426
diff changeset
   167
                    }
32163
2bdcabf14e91 8133223: Clean up package handling code in JavadocTool
jjg
parents: 30066
diff changeset
   168
                } else if (isValidPackageName(arg)) {
2bdcabf14e91 8133223: Clean up package handling code in JavadocTool
jjg
parents: 30066
diff changeset
   169
                    packageNames.add(arg);
2bdcabf14e91 8133223: Clean up package handling code in JavadocTool
jjg
parents: 30066
diff changeset
   170
                } else if (arg.endsWith(".java")) {
41451
a847c7aa25a7 8151102: Cleanup javadoc exception handling
ksrini
parents: 40508
diff changeset
   171
                    if (fm == null) {
a847c7aa25a7 8151102: Cleanup javadoc exception handling
ksrini
parents: 40508
diff changeset
   172
                        String text = messager.getText("main.assertion.error", "fm == null");
a847c7aa25a7 8151102: Cleanup javadoc exception handling
ksrini
parents: 40508
diff changeset
   173
                        throw new ToolException(ABNORMAL, text);
a847c7aa25a7 8151102: Cleanup javadoc exception handling
ksrini
parents: 40508
diff changeset
   174
                    } else {
a847c7aa25a7 8151102: Cleanup javadoc exception handling
ksrini
parents: 40508
diff changeset
   175
                        String text = messager.getText("main.file_not_found", arg);
a847c7aa25a7 8151102: Cleanup javadoc exception handling
ksrini
parents: 40508
diff changeset
   176
                        throw new ToolException(ERROR, text);
a847c7aa25a7 8151102: Cleanup javadoc exception handling
ksrini
parents: 40508
diff changeset
   177
                    }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   178
                } else {
41451
a847c7aa25a7 8151102: Cleanup javadoc exception handling
ksrini
parents: 40508
diff changeset
   179
                    String text = messager.getText("main.illegal_package_name", arg);
a847c7aa25a7 8151102: Cleanup javadoc exception handling
ksrini
parents: 40508
diff changeset
   180
                    throw new ToolException(CMDERR, text);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   181
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
   182
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   183
32163
2bdcabf14e91 8133223: Clean up package handling code in JavadocTool
jjg
parents: 30066
diff changeset
   184
            // Parse file objects provide via the DocumentationTool API
2bdcabf14e91 8133223: Clean up package handling code in JavadocTool
jjg
parents: 30066
diff changeset
   185
            parse(fileObjects, classTrees, true);
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35426
diff changeset
   186
40508
74ef30d16fb9 8159305: Enhance the javadoc tool to support module related options
ksrini
parents: 40311
diff changeset
   187
            etable.packages(packageNames)
74ef30d16fb9 8159305: Enhance the javadoc tool to support module related options
ksrini
parents: 40311
diff changeset
   188
                    .classTrees(classTrees.toList())
74ef30d16fb9 8159305: Enhance the javadoc tool to support module related options
ksrini
parents: 40311
diff changeset
   189
                    .scanSpecifiedItems();
32163
2bdcabf14e91 8133223: Clean up package handling code in JavadocTool
jjg
parents: 30066
diff changeset
   190
40508
74ef30d16fb9 8159305: Enhance the javadoc tool to support module related options
ksrini
parents: 40311
diff changeset
   191
            // Parse the files in the packages and subpackages to be documented
32163
2bdcabf14e91 8133223: Clean up package handling code in JavadocTool
jjg
parents: 30066
diff changeset
   192
            ListBuffer<JCCompilationUnit> packageTrees = new ListBuffer<>();
40508
74ef30d16fb9 8159305: Enhance the javadoc tool to support module related options
ksrini
parents: 40311
diff changeset
   193
            parse(etable.getFilesToParse(), packageTrees, false);
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35426
diff changeset
   194
            modules.enter(packageTrees.toList(), null);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   195
41451
a847c7aa25a7 8151102: Cleanup javadoc exception handling
ksrini
parents: 40508
diff changeset
   196
            if (messager.hasErrors()) {
32163
2bdcabf14e91 8133223: Clean up package handling code in JavadocTool
jjg
parents: 30066
diff changeset
   197
                return null;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   198
            }
32163
2bdcabf14e91 8133223: Clean up package handling code in JavadocTool
jjg
parents: 30066
diff changeset
   199
2bdcabf14e91 8133223: Clean up package handling code in JavadocTool
jjg
parents: 30066
diff changeset
   200
            // Enter symbols for all files
39364
bd6d4a7936b4 8160301: javadoc RootDoclmpl and DocEnv needs to be renamed
ksrini
parents: 38619
diff changeset
   201
            toolEnv.notice("main.Building_tree");
40508
74ef30d16fb9 8159305: Enhance the javadoc tool to support module related options
ksrini
parents: 40311
diff changeset
   202
            javadocEnter.main(classTrees.toList().appendList(packageTrees));
74ef30d16fb9 8159305: Enhance the javadoc tool to support module related options
ksrini
parents: 40311
diff changeset
   203
            etable.setClassDeclList(listClasses(classTrees.toList()));
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35426
diff changeset
   204
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35426
diff changeset
   205
            enterDone = true;
40508
74ef30d16fb9 8159305: Enhance the javadoc tool to support module related options
ksrini
parents: 40311
diff changeset
   206
            etable.analyze();
74ef30d16fb9 8159305: Enhance the javadoc tool to support module related options
ksrini
parents: 40311
diff changeset
   207
        } catch (CompletionFailure cf) {
41451
a847c7aa25a7 8151102: Cleanup javadoc exception handling
ksrini
parents: 40508
diff changeset
   208
            throw new ToolException(ABNORMAL, cf.getMessage(), cf);
a847c7aa25a7 8151102: Cleanup javadoc exception handling
ksrini
parents: 40508
diff changeset
   209
        } catch (Abort abort) {
a847c7aa25a7 8151102: Cleanup javadoc exception handling
ksrini
parents: 40508
diff changeset
   210
            if (messager.hasErrors()) {
a847c7aa25a7 8151102: Cleanup javadoc exception handling
ksrini
parents: 40508
diff changeset
   211
                // presumably a message has been emitted, keep silent
a847c7aa25a7 8151102: Cleanup javadoc exception handling
ksrini
parents: 40508
diff changeset
   212
                throw new ToolException(ABNORMAL, "", abort);
a847c7aa25a7 8151102: Cleanup javadoc exception handling
ksrini
parents: 40508
diff changeset
   213
            } else {
a847c7aa25a7 8151102: Cleanup javadoc exception handling
ksrini
parents: 40508
diff changeset
   214
                String text = messager.getText("main.internal.error");
a847c7aa25a7 8151102: Cleanup javadoc exception handling
ksrini
parents: 40508
diff changeset
   215
                Throwable t = abort.getCause() == null ? abort : abort.getCause();
a847c7aa25a7 8151102: Cleanup javadoc exception handling
ksrini
parents: 40508
diff changeset
   216
                throw new ToolException(ABNORMAL, text, t);
a847c7aa25a7 8151102: Cleanup javadoc exception handling
ksrini
parents: 40508
diff changeset
   217
            }
a847c7aa25a7 8151102: Cleanup javadoc exception handling
ksrini
parents: 40508
diff changeset
   218
        }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   219
41451
a847c7aa25a7 8151102: Cleanup javadoc exception handling
ksrini
parents: 40508
diff changeset
   220
        if (messager.hasErrors())
1869
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
   221
            return null;
40508
74ef30d16fb9 8159305: Enhance the javadoc tool to support module related options
ksrini
parents: 40311
diff changeset
   222
74ef30d16fb9 8159305: Enhance the javadoc tool to support module related options
ksrini
parents: 40311
diff changeset
   223
        toolEnv.docEnv = new DocEnvImpl(toolEnv, etable);
39364
bd6d4a7936b4 8160301: javadoc RootDoclmpl and DocEnv needs to be renamed
ksrini
parents: 38619
diff changeset
   224
        return toolEnv.docEnv;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   225
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   226
06bc494ca11e Initial load
duke
parents:
diff changeset
   227
    /** Is the given string a valid package name? */
06bc494ca11e Initial load
duke
parents:
diff changeset
   228
    boolean isValidPackageName(String s) {
40508
74ef30d16fb9 8159305: Enhance the javadoc tool to support module related options
ksrini
parents: 40311
diff changeset
   229
        if (s.contains("/")) {
74ef30d16fb9 8159305: Enhance the javadoc tool to support module related options
ksrini
parents: 40311
diff changeset
   230
            String[] a = s.split("/");
74ef30d16fb9 8159305: Enhance the javadoc tool to support module related options
ksrini
parents: 40311
diff changeset
   231
            if (a.length == 2) {
74ef30d16fb9 8159305: Enhance the javadoc tool to support module related options
ksrini
parents: 40311
diff changeset
   232
                 return isValidPackageName0(a[0]) && isValidPackageName0(a[1]);
74ef30d16fb9 8159305: Enhance the javadoc tool to support module related options
ksrini
parents: 40311
diff changeset
   233
            }
74ef30d16fb9 8159305: Enhance the javadoc tool to support module related options
ksrini
parents: 40311
diff changeset
   234
            return false;
74ef30d16fb9 8159305: Enhance the javadoc tool to support module related options
ksrini
parents: 40311
diff changeset
   235
        }
74ef30d16fb9 8159305: Enhance the javadoc tool to support module related options
ksrini
parents: 40311
diff changeset
   236
        return isValidPackageName0(s);
74ef30d16fb9 8159305: Enhance the javadoc tool to support module related options
ksrini
parents: 40311
diff changeset
   237
    }
74ef30d16fb9 8159305: Enhance the javadoc tool to support module related options
ksrini
parents: 40311
diff changeset
   238
74ef30d16fb9 8159305: Enhance the javadoc tool to support module related options
ksrini
parents: 40311
diff changeset
   239
    private boolean isValidPackageName0(String s) {
74ef30d16fb9 8159305: Enhance the javadoc tool to support module related options
ksrini
parents: 40311
diff changeset
   240
        for (int index = s.indexOf('.') ; index != -1; index = s.indexOf('.')) {
74ef30d16fb9 8159305: Enhance the javadoc tool to support module related options
ksrini
parents: 40311
diff changeset
   241
            if (!isValidClassName(s.substring(0, index))) {
74ef30d16fb9 8159305: Enhance the javadoc tool to support module related options
ksrini
parents: 40311
diff changeset
   242
                return false;
74ef30d16fb9 8159305: Enhance the javadoc tool to support module related options
ksrini
parents: 40311
diff changeset
   243
            }
74ef30d16fb9 8159305: Enhance the javadoc tool to support module related options
ksrini
parents: 40311
diff changeset
   244
            s = s.substring(index + 1);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   245
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   246
        return isValidClassName(s);
06bc494ca11e Initial load
duke
parents:
diff changeset
   247
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   248
32163
2bdcabf14e91 8133223: Clean up package handling code in JavadocTool
jjg
parents: 30066
diff changeset
   249
    private void parse(Iterable<? extends JavaFileObject> files, ListBuffer<JCCompilationUnit> trees,
23973
4b5f3a297142 8037484: [javadoc] fails with java.lang.IllegalStateException: endPosTable already set
ksrini
parents: 23116
diff changeset
   250
                       boolean trace) {
32163
2bdcabf14e91 8133223: Clean up package handling code in JavadocTool
jjg
parents: 30066
diff changeset
   251
        for (JavaFileObject fo: files) {
2bdcabf14e91 8133223: Clean up package handling code in JavadocTool
jjg
parents: 30066
diff changeset
   252
            if (uniquefiles.add(fo)) { // ignore duplicates
2bdcabf14e91 8133223: Clean up package handling code in JavadocTool
jjg
parents: 30066
diff changeset
   253
                if (trace)
39364
bd6d4a7936b4 8160301: javadoc RootDoclmpl and DocEnv needs to be renamed
ksrini
parents: 38619
diff changeset
   254
                    toolEnv.notice("main.Loading_source_file", fo.getName());
32163
2bdcabf14e91 8133223: Clean up package handling code in JavadocTool
jjg
parents: 30066
diff changeset
   255
                trees.append(parse(fo));
1869
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
   256
            }
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
   257
        }
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
   258
    }
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
   259
40508
74ef30d16fb9 8159305: Enhance the javadoc tool to support module related options
ksrini
parents: 40311
diff changeset
   260
    /** Are surrogates supported? */
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   261
    final static boolean surrogatesSupported = surrogatesSupported();
06bc494ca11e Initial load
duke
parents:
diff changeset
   262
    private static boolean surrogatesSupported() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   263
        try {
06bc494ca11e Initial load
duke
parents:
diff changeset
   264
            boolean b = Character.isHighSurrogate('a');
06bc494ca11e Initial load
duke
parents:
diff changeset
   265
            return true;
06bc494ca11e Initial load
duke
parents:
diff changeset
   266
        } catch (NoSuchMethodError ex) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   267
            return false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   268
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   269
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   270
06bc494ca11e Initial load
duke
parents:
diff changeset
   271
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   272
     * Return true if given file name is a valid class name
06bc494ca11e Initial load
duke
parents:
diff changeset
   273
     * (including "package-info").
14259
fb94a1df0d53 8000208: fix langtools javadoc comment issues
jjg
parents: 10950
diff changeset
   274
     * @param s the name of the class to check.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   275
     * @return true if given class name is a valid class name
06bc494ca11e Initial load
duke
parents:
diff changeset
   276
     * and false otherwise.
06bc494ca11e Initial load
duke
parents:
diff changeset
   277
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   278
    public static boolean isValidClassName(String s) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   279
        if (s.length() < 1) return false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   280
        if (s.equals("package-info")) return true;
06bc494ca11e Initial load
duke
parents:
diff changeset
   281
        if (surrogatesSupported) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   282
            int cp = s.codePointAt(0);
06bc494ca11e Initial load
duke
parents:
diff changeset
   283
            if (!Character.isJavaIdentifierStart(cp))
06bc494ca11e Initial load
duke
parents:
diff changeset
   284
                return false;
40508
74ef30d16fb9 8159305: Enhance the javadoc tool to support module related options
ksrini
parents: 40311
diff changeset
   285
            for (int j = Character.charCount(cp); j < s.length(); j += Character.charCount(cp)) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   286
                cp = s.codePointAt(j);
06bc494ca11e Initial load
duke
parents:
diff changeset
   287
                if (!Character.isJavaIdentifierPart(cp))
06bc494ca11e Initial load
duke
parents:
diff changeset
   288
                    return false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   289
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   290
        } else {
06bc494ca11e Initial load
duke
parents:
diff changeset
   291
            if (!Character.isJavaIdentifierStart(s.charAt(0)))
06bc494ca11e Initial load
duke
parents:
diff changeset
   292
                return false;
40508
74ef30d16fb9 8159305: Enhance the javadoc tool to support module related options
ksrini
parents: 40311
diff changeset
   293
            for (int j = 1; j < s.length(); j++)
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   294
                if (!Character.isJavaIdentifierPart(s.charAt(j)))
06bc494ca11e Initial load
duke
parents:
diff changeset
   295
                    return false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   296
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   297
        return true;
06bc494ca11e Initial load
duke
parents:
diff changeset
   298
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   299
06bc494ca11e Initial load
duke
parents:
diff changeset
   300
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   301
     * From a list of top level trees, return the list of contained class definitions
06bc494ca11e Initial load
duke
parents:
diff changeset
   302
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   303
    List<JCClassDecl> listClasses(List<JCCompilationUnit> trees) {
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 32163
diff changeset
   304
        List<JCClassDecl> result = new ArrayList<>();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   305
        for (JCCompilationUnit t : trees) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   306
            for (JCTree def : t.defs) {
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 10815
diff changeset
   307
                if (def.hasTag(JCTree.Tag.CLASSDEF))
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 32163
diff changeset
   308
                    result.add((JCClassDecl)def);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   309
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   310
        }
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 32163
diff changeset
   311
        return result;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   312
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   313
}