Skip to content
This repository was archived by the owner on Aug 27, 2022. It is now read-only.
/ lanai Public archive

Commit 392b75d

Browse files
author
Pavel Rappo
committedApr 21, 2020
8224612: javadoc should better handle empty set of doclet options
Reviewed-by: hannesw
1 parent d19f5f6 commit 392b75d

File tree

2 files changed

+173
-4
lines changed

2 files changed

+173
-4
lines changed
 

‎src/jdk.javadoc/share/classes/jdk/javadoc/internal/tool/Start.java

+14-4
Original file line numberDiff line numberDiff line change
@@ -188,8 +188,6 @@ private void showUsage(String headerKey, ToolOption.Kind kind, String footerKey)
188188

189189
// let doclet print usage information
190190
if (docletClass != null) {
191-
String name = doclet.getName();
192-
messager.notice("main.doclet.usage.header", name);
193191
showDocletOptions(kind == ToolOption.Kind.EXTENDED
194192
? Option.Kind.EXTENDED
195193
: Option.Kind.STANDARD);
@@ -252,6 +250,13 @@ private void showToolOption(ToolOption option) {
252250
}
253251

254252
private void showDocletOptions(Option.Kind kind) {
253+
String name = doclet.getName();
254+
Set<? extends Option> options = getSupportedOptionsOf(doclet);
255+
if (options.isEmpty()) {
256+
return;
257+
}
258+
messager.notice("main.doclet.usage.header", name);
259+
255260
Comparator<Doclet.Option> comp = new Comparator<Doclet.Option>() {
256261
final Collator collator = Collator.getInstance(Locale.US);
257262
{ collator.setStrength(Collator.PRIMARY); }
@@ -262,7 +267,7 @@ public int compare(Doclet.Option o1, Doclet.Option o2) {
262267
}
263268
};
264269

265-
doclet.getSupportedOptions().stream()
270+
options.stream()
266271
.filter(opt -> opt.getKind() == kind)
267272
.sorted(comp)
268273
.forEach(this::showDocletOption);
@@ -577,7 +582,7 @@ boolean matches(Doclet.Option option, String arg) {
577582
int handleDocletOption(int idx, List<String> args, boolean isToolOption)
578583
throws OptionException {
579584
if (docletOptions == null) {
580-
docletOptions = doclet.getSupportedOptions();
585+
docletOptions = getSupportedOptionsOf(doclet);
581586
}
582587
String arg = args.get(idx);
583588
String argBase, argVal;
@@ -623,6 +628,11 @@ int handleDocletOption(int idx, List<String> args, boolean isToolOption)
623628
return idx;
624629
}
625630

631+
private static Set<? extends Option> getSupportedOptionsOf(Doclet doclet) {
632+
Set<? extends Option> options = doclet.getSupportedOptions();
633+
return options == null ? Set.of() : options;
634+
}
635+
626636
/**
627637
* Performs an initial pass over the options, primarily to determine
628638
* the doclet to be used (if any), so that it may participate in the
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,159 @@
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 8224612
27+
* @key randomness
28+
* @library /tools/lib ../../lib
29+
* @modules jdk.javadoc/jdk.javadoc.internal.tool
30+
* @build javadoc.tester.*
31+
* @run main OptionsTest
32+
*/
33+
34+
import javadoc.tester.JavadocTester;
35+
import jdk.javadoc.doclet.Doclet;
36+
import jdk.javadoc.doclet.DocletEnvironment;
37+
import jdk.javadoc.doclet.Reporter;
38+
39+
import javax.lang.model.SourceVersion;
40+
import java.nio.file.Path;
41+
import java.nio.file.Paths;
42+
import java.util.Collections;
43+
import java.util.HashSet;
44+
import java.util.LinkedHashSet;
45+
import java.util.List;
46+
import java.util.Locale;
47+
import java.util.Random;
48+
import java.util.Set;
49+
import java.util.TreeSet;
50+
import java.util.function.Supplier;
51+
52+
public class OptionsTest extends JavadocTester {
53+
54+
public static void main(String... args) throws Exception {
55+
new OptionsTest().runTests(m -> new Object[]{Paths.get(m.getName())});
56+
}
57+
58+
@Test
59+
public void testEmptySupportedOptionsDoclet(Path base) {
60+
test(EmptySupportedOptionsDoclet.class);
61+
}
62+
63+
private void test(Class<? extends Doclet> _class) {
64+
javadoc("-doclet", _class.getName(),
65+
"-docletpath", System.getProperty("test.classes", "."),
66+
"--help");
67+
checkExit(Exit.OK);
68+
checkOutput(Output.OUT, false, "javadoc: error - fatal error encountered: java.lang.NullPointerException");
69+
checkOutput(Output.OUT, false, "Provided by the %s doclet:".formatted(_class.getSimpleName()));
70+
}
71+
72+
@Test
73+
public void testNullSupportedOptionsDoclet(Path base) {
74+
test(NullSupportedOptionsDoclet.class);
75+
}
76+
77+
public static final class EmptySupportedOptionsDoclet implements Doclet {
78+
79+
private final Random random;
80+
81+
public EmptySupportedOptionsDoclet() {
82+
long seed = Long.getLong("jdk.test.lib.random.seed", System.currentTimeMillis());
83+
System.out.println("new java.util.Random(" + seed + ")");
84+
this.random = new Random(seed);
85+
}
86+
87+
@Override
88+
public void init(Locale locale, Reporter reporter) {
89+
}
90+
91+
@Override
92+
public String getName() {
93+
return getClass().getSimpleName();
94+
}
95+
96+
@Override
97+
public Set<? extends Option> getSupportedOptions() {
98+
return randomEmptySet();
99+
}
100+
101+
/*
102+
* This method is used to check that emptiness of a set is determined
103+
* by value (or in this case, by behavior), rather than by reference
104+
* (i.e. there's no code like `s == Collections.EMPTY_SET`, etc.)
105+
*/
106+
private Set<? extends Option> randomEmptySet() {
107+
List<Supplier<Set<? extends Option>>> emptySets = List.of(
108+
Set::of,
109+
Collections::emptySet,
110+
HashSet::new,
111+
TreeSet::new,
112+
LinkedHashSet::new
113+
);
114+
int idx = random.nextInt(emptySets.size());
115+
return emptySets.get(idx).get();
116+
}
117+
118+
@Override
119+
public SourceVersion getSupportedSourceVersion() {
120+
return SourceVersion.latestSupported();
121+
}
122+
123+
@Override
124+
public boolean run(DocletEnvironment environment) {
125+
return true;
126+
}
127+
}
128+
129+
/**
130+
* An implementation of an otherwise well-behaving Doclet, that returns
131+
* {@code null} from {@link #getSupportedOptions}.
132+
*/
133+
public static final class NullSupportedOptionsDoclet implements Doclet {
134+
135+
@Override
136+
public void init(Locale locale, Reporter reporter) {
137+
}
138+
139+
@Override
140+
public String getName() {
141+
return getClass().getSimpleName();
142+
}
143+
144+
@Override
145+
public Set<? extends Option> getSupportedOptions() {
146+
return null;
147+
}
148+
149+
@Override
150+
public SourceVersion getSupportedSourceVersion() {
151+
return SourceVersion.latestSupported();
152+
}
153+
154+
@Override
155+
public boolean run(DocletEnvironment environment) {
156+
return true;
157+
}
158+
}
159+
}

0 commit comments

Comments
 (0)
This repository has been archived.