8037484: [javadoc] fails with java.lang.IllegalStateException: endPosTable already set

Reviewed-by: jjg
This commit is contained in:
Kumar Srinivasan 2014-04-16 18:15:48 -07:00
parent 7a4a5803fc
commit 7a7a57bb88
3 changed files with 58 additions and 21 deletions
langtools
src/share/classes/com/sun/tools/javadoc
test/tools/javadoc/parser/7091528

@ -68,6 +68,7 @@ public class JavadocTool extends com.sun.tools.javac.main.JavaCompiler {
final Messager messager; final Messager messager;
final JavadocClassReader javadocReader; final JavadocClassReader javadocReader;
final JavadocEnter javadocEnter; final JavadocEnter javadocEnter;
final Set<JavaFileObject> uniquefiles;
/** /**
* Construct a new JavaCompiler processor, using appropriately * Construct a new JavaCompiler processor, using appropriately
@ -78,6 +79,7 @@ public class JavadocTool extends com.sun.tools.javac.main.JavaCompiler {
messager = Messager.instance0(context); messager = Messager.instance0(context);
javadocReader = JavadocClassReader.instance0(context); javadocReader = JavadocClassReader.instance0(context);
javadocEnter = JavadocEnter.instance0(context); javadocEnter = JavadocEnter.instance0(context);
uniquefiles = new HashSet<>();
} }
/** /**
@ -148,9 +150,7 @@ public class JavadocTool extends com.sun.tools.javac.main.JavaCompiler {
String name = it.head; String name = it.head;
if (!docClasses && fm != null && name.endsWith(".java") && new File(name).exists()) { if (!docClasses && fm != null && name.endsWith(".java") && new File(name).exists()) {
JavaFileObject fo = fm.getJavaFileObjects(name).iterator().next(); JavaFileObject fo = fm.getJavaFileObjects(name).iterator().next();
docenv.notice("main.Loading_source_file", name); parse(fo, classTrees, true);
JCCompilationUnit tree = parse(fo);
classTrees.append(tree);
} else if (isValidPackageName(name)) { } else if (isValidPackageName(name)) {
names = names.append(name); names = names.append(name);
} else if (name.endsWith(".java")) { } else if (name.endsWith(".java")) {
@ -163,9 +163,7 @@ public class JavadocTool extends com.sun.tools.javac.main.JavaCompiler {
} }
} }
for (JavaFileObject fo: fileObjects) { for (JavaFileObject fo: fileObjects) {
docenv.notice("main.Loading_source_file", fo.getName()); parse(fo, classTrees, true);
JCCompilationUnit tree = parse(fo);
classTrees.append(tree);
} }
if (!docClasses) { if (!docClasses) {
@ -213,7 +211,7 @@ public class JavadocTool extends com.sun.tools.javac.main.JavaCompiler {
* .java files found in such a directory to args. * .java files found in such a directory to args.
*/ */
private void parsePackageClasses(String name, private void parsePackageClasses(String name,
Iterable<JavaFileObject> files, List<JavaFileObject> files,
ListBuffer<JCCompilationUnit> trees, ListBuffer<JCCompilationUnit> trees,
List<String> excludedPackages) List<String> excludedPackages)
throws IOException { throws IOException {
@ -221,7 +219,6 @@ public class JavadocTool extends com.sun.tools.javac.main.JavaCompiler {
return; return;
} }
boolean hasFiles = false;
docenv.notice("main.Loading_source_files_for_package", name); docenv.notice("main.Loading_source_files_for_package", name);
if (files == null) { if (files == null) {
@ -238,22 +235,25 @@ public class JavadocTool extends com.sun.tools.javac.main.JavaCompiler {
} }
files = lb.toList(); files = lb.toList();
} }
if (files.nonEmpty()) {
Set<JavaFileObject> ufiles = new HashSet<>();
for (JavaFileObject fo : files) { for (JavaFileObject fo : files) {
if (ufiles.add(fo)) { // ignore duplicates parse(fo, trees, false);
// messager.notice("main.Loading_source_file", fn);
trees.append(parse(fo));
hasFiles = true;
} }
} } else {
if (!hasFiles) {
messager.warning(Messager.NOPOS, "main.no_source_files_for_package", messager.warning(Messager.NOPOS, "main.no_source_files_for_package",
name.replace(File.separatorChar, '.')); name.replace(File.separatorChar, '.'));
} }
} }
private void parse(JavaFileObject fo, ListBuffer<JCCompilationUnit> trees,
boolean trace) {
if (uniquefiles.add(fo)) { // ignore duplicates
if (trace)
docenv.notice("main.Loading_source_file", fo.getName());
trees.append(parse(fo));
}
}
/** /**
* Recursively search all directories in path for subdirectory name. * Recursively search all directories in path for subdirectory name.
* Add all packages found in such a directory to packages list. * Add all packages found in such a directory to packages list.

@ -23,7 +23,7 @@
/** /**
* @test * @test
* @bug 7091528 8029145 * @bug 7091528 8029145 8037484
* @summary ensures javadoc parses unique source files and ignores all class files * @summary ensures javadoc parses unique source files and ignores all class files
* @compile p/C1.java p/q/C2.java * @compile p/C1.java p/q/C2.java
* @run main T7091528 * @run main T7091528
@ -50,6 +50,16 @@ public class T7091528 {
"-sourcepath", testSrc.getAbsolutePath(), "-sourcepath", testSrc.getAbsolutePath(),
"-subpackages", "-subpackages",
"p:p.q"); "p:p.q");
File testPkgDir = new File(testSrc, "p");
File testFile = new File(testPkgDir, "C3.java");
runTest("-d", ".",
"-sourcepath", testSrc.getAbsolutePath(),
testFile.getAbsolutePath(),
"p");
runTest("-d", ".",
"-classpath", testSrc.getAbsolutePath(),
testFile.getAbsolutePath(),
"p");
} }
void runTest(String... args) { void runTest(String... args) {
@ -65,7 +75,7 @@ public class T7091528 {
} }
if (rc != 0) if (rc != 0)
System.err.println("javadoc failed: exit code = " + rc); throw new Error("javadoc failed: exit code = " + rc);
if (out.matches("(?s).*p/[^ ]+\\.class.*")) if (out.matches("(?s).*p/[^ ]+\\.class.*"))
throw new Error("reading .class files"); throw new Error("reading .class files");

@ -0,0 +1,27 @@
/*
* Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
/** This is class C3, and no package for me please */
public class C3 {}