Skip to content

Commit 2cb271e

Browse files
committedJan 11, 2021
8253996: Javac error on jdk16 build 18: invalid flag: -Xdoclint:-missing
Reviewed-by: hannesw
1 parent d60a937 commit 2cb271e

File tree

6 files changed

+95
-8
lines changed

6 files changed

+95
-8
lines changed
 

‎src/jdk.compiler/share/classes/com/sun/tools/doclint/DocLint.java

+6-2
Original file line numberDiff line numberDiff line change
@@ -76,12 +76,16 @@ public String getName() {
7676

7777
@Override
7878
public void init(JavacTask task, String... args) {
79-
// ignore
79+
throw new IllegalStateException("doclint not available");
8080
}
8181

8282
@Override
8383
public boolean isValidOption(String s) {
84-
return false;
84+
// passively accept all "plausible" options
85+
return s.equals(XMSGS_OPTION)
86+
|| s.startsWith(XMSGS_CUSTOM_PREFIX)
87+
|| s.startsWith(XHTML_VERSION_PREFIX)
88+
|| s.startsWith(XCHECK_PACKAGE);
8589
}
8690
}
8791
}

‎src/jdk.compiler/share/classes/com/sun/tools/javac/api/BasicJavacTask.java

+7-3
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@
5555
import com.sun.tools.javac.platform.PlatformDescription.PluginInfo;
5656
import com.sun.tools.javac.processing.JavacProcessingEnvironment;
5757
import com.sun.tools.javac.resources.CompilerProperties.Errors;
58+
import com.sun.tools.javac.resources.CompilerProperties.Warnings;
5859
import com.sun.tools.javac.tree.JCTree;
5960
import com.sun.tools.javac.util.Context;
6061
import com.sun.tools.javac.util.DefinedBy;
@@ -257,8 +258,11 @@ private void initPlugin(Plugin p, String... args) {
257258
public void initDocLint(List<String> docLintOpts) {
258259
if (docLintOpts.isEmpty())
259260
return;
260-
261-
DocLint.newDocLint().init(this, docLintOpts.toArray(new String[docLintOpts.size()]));
262-
JavaCompiler.instance(context).keepComments = true;
261+
try {
262+
DocLint.newDocLint().init(this, docLintOpts.toArray(new String[docLintOpts.size()]));
263+
JavaCompiler.instance(context).keepComments = true;
264+
} catch (IllegalStateException e) {
265+
Log.instance(context).warning(Warnings.DoclintNotAvailable);
266+
}
263267
}
264268
}

‎src/jdk.compiler/share/classes/com/sun/tools/javac/resources/compiler.properties

+3
Original file line numberDiff line numberDiff line change
@@ -2049,6 +2049,9 @@ compiler.warn.deprecated.annotation.has.no.effect=\
20492049
compiler.warn.invalid.path=\
20502050
Invalid filename: {0}
20512051

2052+
compiler.warn.doclint.not.available=\
2053+
No service provider for doclint is available
2054+
20522055
# 0: string
20532056
compiler.err.invalid.path=\
20542057
Invalid filename: {0}

‎src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/HtmlOptions.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,12 @@
3232
import java.util.Set;
3333
import java.util.TreeSet;
3434

35-
import com.sun.tools.doclint.DocLint;
3635
import jdk.javadoc.internal.doclets.toolkit.BaseOptions;
3736
import jdk.javadoc.internal.doclets.toolkit.Messages;
3837
import jdk.javadoc.internal.doclets.toolkit.Resources;
3938
import jdk.javadoc.internal.doclets.toolkit.util.DocFile;
4039
import jdk.javadoc.internal.doclets.toolkit.util.Utils;
40+
import jdk.javadoc.internal.doclint.DocLint;
4141

4242
/**
4343
* Storage for all options supported by the
@@ -405,7 +405,7 @@ public boolean process(String opt, List<String> args) {
405405
messages.error("doclet.Option_doclint_no_qualifiers");
406406
return false;
407407
}
408-
if (!DocLint.newDocLint().isValidOption(dopt)) {
408+
if (!(new DocLint()).isValidOption(dopt)) {
409409
messages.error("doclet.Option_doclint_invalid_arg");
410410
return false;
411411
}
@@ -418,7 +418,7 @@ public boolean process(String opt, List<String> args) {
418418
@Override
419419
public boolean process(String opt, List<String> args) {
420420
String dopt = opt.replace("-Xdoclint/package:", DocLint.XCHECK_PACKAGE);
421-
if (!DocLint.newDocLint().isValidOption(dopt)) {
421+
if (!(new DocLint()).isValidOption(dopt)) {
422422
messages.error("doclet.Option_doclint_package_invalid_arg");
423423
return false;
424424
}

‎test/langtools/tools/javac/diags/examples.not-yet.txt

+1
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,7 @@ compiler.misc.wrong.version # ClassReader
110110
compiler.warn.annotation.method.not.found # ClassReader
111111
compiler.warn.annotation.method.not.found.reason # ClassReader
112112
compiler.warn.big.major.version # ClassReader
113+
compiler.warn.doclint.not.available # requires restricted image
113114
compiler.warn.future.attr # ClassReader
114115
compiler.warn.illegal.char.for.encoding
115116
compiler.warn.incubating.modules # requires adjusted classfile
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
/*
2+
* Copyright (c) 2020, Oracle and/or its affiliates. All rights reserved.
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
7+
* published by the Free Software Foundation.
8+
*
9+
* This code is distributed in the hope that it will be useful, but WITHOUT
10+
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11+
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12+
* version 2 for more details (a copy is included in the LICENSE file that
13+
* accompanied this code).
14+
*
15+
* You should have received a copy of the GNU General Public License version
16+
* 2 along with this work; if not, write to the Free Software Foundation,
17+
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18+
*
19+
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20+
* or visit www.oracle.com if you need additional information or have any
21+
* questions.
22+
*/
23+
24+
/**
25+
* @test
26+
* @bug 8253996
27+
* @summary Verify doclint behavior when doclint not available
28+
* @library /tools/lib
29+
* @modules jdk.compiler/com.sun.tools.javac.api
30+
* jdk.compiler/com.sun.tools.javac.main
31+
* @run main/othervm --limit-modules jdk.compiler,jdk.zipfs LimitedImage
32+
*/
33+
34+
import java.io.IOException;
35+
import java.nio.file.Path;
36+
import java.util.List;
37+
38+
import toolbox.JavacTask;
39+
import toolbox.Task.Expect;
40+
import toolbox.Task.Mode;
41+
import toolbox.Task.OutputKind;
42+
import toolbox.ToolBox;
43+
44+
public class LimitedImage {
45+
public static void main(String... args) throws IOException {
46+
ToolBox tb = new ToolBox();
47+
48+
//showing help should be OK
49+
new JavacTask(tb, Mode.CMDLINE)
50+
.options("--help")
51+
.run().writeAll();
52+
53+
Path testSource = Path.of("Test.java");
54+
tb.writeFile(testSource, "class Test {}");
55+
56+
List<String> actualOutput;
57+
List<String> expectedOutput = List.of(
58+
"- compiler.warn.doclint.not.available",
59+
"1 warning"
60+
);
61+
62+
//check proper diagnostics when doclint provider not present:
63+
System.err.println("Test -Xdoclint when doclint not available");
64+
actualOutput = new JavacTask(tb, Mode.CMDLINE)
65+
.options("-XDrawDiagnostics", "-Xdoclint")
66+
.files(testSource)
67+
.outdir(".")
68+
.run(Expect.SUCCESS)
69+
.writeAll()
70+
.getOutputLines(OutputKind.DIRECT);
71+
72+
tb.checkEqual(expectedOutput, actualOutput);
73+
}
74+
75+
}

0 commit comments

Comments
 (0)
Please sign in to comment.