author | jlahoda |
Fri, 09 Mar 2018 09:42:10 +0100 | |
changeset 49197 | cc2673fa8c20 |
parent 47216 | 71c04702a3d5 |
permissions | -rw-r--r-- |
10 | 1 |
/* |
43269
12f989542165
8171098: NPE when --add-modules java.corba is used
jlahoda
parents:
42827
diff
changeset
|
2 |
* Copyright (c) 2001, 2017, Oracle and/or its affiliates. All rights reserved. |
10 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
5520 | 7 |
* published by the Free Software Foundation. Oracle designates this |
10 | 8 |
* particular file as subject to the "Classpath" exception as provided |
5520 | 9 |
* by Oracle in the LICENSE file that accompanied this code. |
10 | 10 |
* |
11 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
12 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
13 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
14 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
15 |
* accompanied this code). |
|
16 |
* |
|
17 |
* You should have received a copy of the GNU General Public License version |
|
18 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
19 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
20 |
* |
|
5520 | 21 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
22 |
* or visit www.oracle.com if you need additional information or have any |
|
23 |
* questions. |
|
10 | 24 |
*/ |
25 |
||
35426
374342e56a56
8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents:
27224
diff
changeset
|
26 |
package jdk.javadoc.internal.tool; |
10 | 27 |
|
13077 | 28 |
import javax.tools.JavaFileObject; |
29 |
||
24069 | 30 |
import com.sun.source.util.TreePath; |
10 | 31 |
import com.sun.tools.javac.code.Symbol.*; |
32 |
import com.sun.tools.javac.comp.Enter; |
|
33 |
import com.sun.tools.javac.tree.JCTree.*; |
|
13077 | 34 |
import com.sun.tools.javac.util.Context; |
35 |
import com.sun.tools.javac.util.JCDiagnostic.DiagnosticPosition; |
|
36 |
import com.sun.tools.javac.util.List; |
|
10 | 37 |
|
27224
228abfa87080
8054457: Refactor Symbol kinds from small ints to an enum
emc
parents:
25874
diff
changeset
|
38 |
import static com.sun.tools.javac.code.Kinds.Kind.*; |
43269
12f989542165
8171098: NPE when --add-modules java.corba is used
jlahoda
parents:
42827
diff
changeset
|
39 |
import com.sun.tools.javac.main.JavaCompiler; |
27224
228abfa87080
8054457: Refactor Symbol kinds from small ints to an enum
emc
parents:
25874
diff
changeset
|
40 |
|
10 | 41 |
/** |
42 |
* Javadoc's own enter phase does a few things above and beyond that |
|
43 |
* done by javac. |
|
14260
727a84636f12
8000665: fix "internal API" comments on javadoc files
jjg
parents:
14258
diff
changeset
|
44 |
* |
727a84636f12
8000665: fix "internal API" comments on javadoc files
jjg
parents:
14258
diff
changeset
|
45 |
* <p><b>This is NOT part of any supported API. |
727a84636f12
8000665: fix "internal API" comments on javadoc files
jjg
parents:
14258
diff
changeset
|
46 |
* 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:
14258
diff
changeset
|
47 |
* This code and its internal interfaces are subject to change or |
727a84636f12
8000665: fix "internal API" comments on javadoc files
jjg
parents:
14258
diff
changeset
|
48 |
* deletion without notice.</b> |
727a84636f12
8000665: fix "internal API" comments on javadoc files
jjg
parents:
14258
diff
changeset
|
49 |
* |
10 | 50 |
* @author Neal Gafter |
51 |
*/ |
|
52 |
public class JavadocEnter extends Enter { |
|
24604
7f68545b5128
8041422: Split javac ClassReader into ClassReader+ClassFinder
jjg
parents:
24069
diff
changeset
|
53 |
public static JavadocEnter instance(Context context) { |
10 | 54 |
Enter instance = context.get(enterKey); |
55 |
if (instance == null) |
|
56 |
instance = new JavadocEnter(context); |
|
57 |
return (JavadocEnter)instance; |
|
58 |
} |
|
59 |
||
8614 | 60 |
public static void preRegister(Context context) { |
42827
36468b5fa7f4
8181370: Convert anonymous inner classes into lambdas/method references
mcimadamore
parents:
42277
diff
changeset
|
61 |
context.put(enterKey, (Context.Factory<Enter>)JavadocEnter::new); |
10 | 62 |
} |
63 |
||
64 |
protected JavadocEnter(Context context) { |
|
65 |
super(context); |
|
66 |
messager = Messager.instance0(context); |
|
39364
bd6d4a7936b4
8160301: javadoc RootDoclmpl and DocEnv needs to be renamed
ksrini
parents:
35426
diff
changeset
|
67 |
toolEnv = ToolEnvironment.instance(context); |
43269
12f989542165
8171098: NPE when --add-modules java.corba is used
jlahoda
parents:
42827
diff
changeset
|
68 |
compiler = JavaCompiler.instance(context); |
10 | 69 |
} |
70 |
||
71 |
final Messager messager; |
|
39364
bd6d4a7936b4
8160301: javadoc RootDoclmpl and DocEnv needs to be renamed
ksrini
parents:
35426
diff
changeset
|
72 |
final ToolEnvironment toolEnv; |
43269
12f989542165
8171098: NPE when --add-modules java.corba is used
jlahoda
parents:
42827
diff
changeset
|
73 |
final JavaCompiler compiler; |
10 | 74 |
|
10203
cca843a7d258
7064544: (javadoc) miscellaneous fixes requested by netbeans
ksrini
parents:
8614
diff
changeset
|
75 |
@Override |
10 | 76 |
public void main(List<JCCompilationUnit> trees) { |
44287
829205b133d4
8175219: javadoc should exit when it encounters compilation errors.
ksrini
parents:
43269
diff
changeset
|
77 |
// cache the error count if we need to convert Enter errors as warnings. |
10 | 78 |
int nerrors = messager.nerrors; |
79 |
super.main(trees); |
|
43269
12f989542165
8171098: NPE when --add-modules java.corba is used
jlahoda
parents:
42827
diff
changeset
|
80 |
compiler.enterDone(); |
44287
829205b133d4
8175219: javadoc should exit when it encounters compilation errors.
ksrini
parents:
43269
diff
changeset
|
81 |
if (toolEnv.ignoreSourceErrors) { |
829205b133d4
8175219: javadoc should exit when it encounters compilation errors.
ksrini
parents:
43269
diff
changeset
|
82 |
messager.nwarnings += (messager.nerrors - nerrors); |
829205b133d4
8175219: javadoc should exit when it encounters compilation errors.
ksrini
parents:
43269
diff
changeset
|
83 |
messager.nerrors = nerrors; |
829205b133d4
8175219: javadoc should exit when it encounters compilation errors.
ksrini
parents:
43269
diff
changeset
|
84 |
} |
10 | 85 |
} |
86 |
||
10203
cca843a7d258
7064544: (javadoc) miscellaneous fixes requested by netbeans
ksrini
parents:
8614
diff
changeset
|
87 |
@Override |
10 | 88 |
public void visitTopLevel(JCCompilationUnit tree) { |
89 |
super.visitTopLevel(tree); |
|
90 |
if (tree.sourcefile.isNameCompatible("package-info", JavaFileObject.Kind.SOURCE)) { |
|
24069 | 91 |
JCPackageDecl pd = tree.getPackage(); |
39364
bd6d4a7936b4
8160301: javadoc RootDoclmpl and DocEnv needs to be renamed
ksrini
parents:
35426
diff
changeset
|
92 |
TreePath tp = pd == null ? toolEnv.getTreePath(tree) : toolEnv.getTreePath(tree, pd); |
bd6d4a7936b4
8160301: javadoc RootDoclmpl and DocEnv needs to be renamed
ksrini
parents:
35426
diff
changeset
|
93 |
toolEnv.setElementToTreePath(tree.packge, tp); |
10 | 94 |
} |
95 |
} |
|
96 |
||
10203
cca843a7d258
7064544: (javadoc) miscellaneous fixes requested by netbeans
ksrini
parents:
8614
diff
changeset
|
97 |
@Override |
10 | 98 |
public void visitClassDef(JCClassDecl tree) { |
99 |
super.visitClassDef(tree); |
|
10203
cca843a7d258
7064544: (javadoc) miscellaneous fixes requested by netbeans
ksrini
parents:
8614
diff
changeset
|
100 |
if (tree.sym == null) return; |
27224
228abfa87080
8054457: Refactor Symbol kinds from small ints to an enum
emc
parents:
25874
diff
changeset
|
101 |
if (tree.sym.kind == TYP || tree.sym.kind == ERR) { |
868 | 102 |
ClassSymbol c = tree.sym; |
39364
bd6d4a7936b4
8160301: javadoc RootDoclmpl and DocEnv needs to be renamed
ksrini
parents:
35426
diff
changeset
|
103 |
toolEnv.setElementToTreePath(c, toolEnv.getTreePath(env.toplevel, tree)); |
42277 | 104 |
c.classfile = env.toplevel.sourcefile; |
10 | 105 |
} |
106 |
} |
|
107 |
||
108 |
/** Don't complain about a duplicate class. */ |
|
10203
cca843a7d258
7064544: (javadoc) miscellaneous fixes requested by netbeans
ksrini
parents:
8614
diff
changeset
|
109 |
@Override |
10 | 110 |
protected void duplicateClass(DiagnosticPosition pos, ClassSymbol c) {} |
111 |
||
112 |
} |