Skip to content

Commit 610a129

Browse files
committedJan 19, 2022
8268831: Improve javadoc tool handling of streams.
Reviewed-by: hannesw
1 parent e20c6bf commit 610a129

File tree

5 files changed

+44
-54
lines changed

5 files changed

+44
-54
lines changed
 

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2001, 2021, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2001, 2022, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -793,7 +793,7 @@ private void addFilesForParser(Collection<JavaFileObject> result,
793793
Collection<ModulePackage> collection,
794794
boolean recurse) throws ToolException {
795795
for (ModulePackage modpkg : collection) {
796-
toolEnv.notice("main.Loading_source_files_for_package", modpkg.toString());
796+
toolEnv.printInfo("main.Loading_source_files_for_package", modpkg.toString());
797797
List<JavaFileObject> files = getFiles(modpkg, recurse);
798798
if (files.isEmpty()) {
799799
String text = log.getText("main.no_source_files_for_package",

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

+15-16
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1997, 2021, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1997, 2022, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -292,12 +292,6 @@ public void print(Diagnostic.Kind kind, DocTreePath path, int start, int pos, in
292292
report(dt, flags, ds, dp, message);
293293
}
294294

295-
private int getSourcePos(DocTreePath path, int offset) {
296-
DCTree.DCDocComment docComment = (DCTree.DCDocComment) path.getDocComment();
297-
DCTree tree = (DCTree) path.getLeaf();
298-
return docComment.getSourcePosition(tree.getStartPosition() + offset);
299-
}
300-
301295
@Override // Reporter
302296
public void print(Kind kind, Element element, String message) {
303297
DiagnosticType dt = getDiagnosticType(kind);
@@ -450,22 +444,27 @@ public void printWarningUsingKey(Element element, String key, Object... args) {
450444
}
451445

452446
/**
453-
* Prints a "notice" message to the standard writer.
447+
* Prints a "notice" message.
454448
*
455-
* @param key the resource key for the message
456-
* @param args the arguments for the message
449+
* @param message the message
457450
*/
458-
public void noticeUsingKey(String key, Object... args) {
459-
printRawLines(getStandardWriter(), getText(key, args));
451+
public void printNote(String message) {
452+
// Ideally, for consistency with errors and warnings, we would use the following:
453+
// report(Kind.NOTE, null, null, message);
454+
// but the default formatting in Log for Kind.NOTE is to prefix the line with "Note:"
455+
// which is undesirable and inconsistent with existing javadoc output.
456+
// For now, to avoid the prefix, we write directly to the underlying stream.
457+
printRawLines(WriterKind.NOTICE, message);
460458
}
461459

462460
/**
463-
* Prints a "notice" message to the standard writer.
461+
* Prints a "notice" message.
464462
*
465-
* @param message the message
463+
* @param key the resource key for the message
464+
* @param args the arguments for the message
466465
*/
467-
public void notice(String message) {
468-
printRawLines(getStandardWriter(), message);
466+
public void printNoteUsingKey(String key, Object... args) {
467+
printNote(getText(key, args));
469468
}
470469

471470
/**

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2001, 2021, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2001, 2022, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -207,7 +207,7 @@ public DocletEnvironment getEnvironment(ToolOptions toolOptions,
207207
}
208208

209209
// Enter symbols for all files
210-
toolEnv.notice("main.Building_tree");
210+
toolEnv.printInfo("main.Building_tree");
211211
javadocEnter.main(allTrees.toList());
212212

213213
if (log.hasErrors()) {
@@ -284,7 +284,7 @@ private void parse(Iterable<? extends JavaFileObject> files, ListBuffer<JCCompil
284284
for (JavaFileObject fo: files) {
285285
if (uniquefiles.add(fo)) { // ignore duplicates
286286
if (trace)
287-
toolEnv.notice("main.Loading_source_file", fo.getName());
287+
toolEnv.printInfo("main.Loading_source_file", fo.getName());
288288
trees.append(parse(fo));
289289
}
290290
}

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

+19-10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1997, 2021, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1997, 2022, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -196,7 +196,7 @@ private void showUsage() {
196196
}
197197

198198
private void showUsage(String headerKey, ToolOption.Kind kind, String footerKey) {
199-
log.noticeUsingKey(headerKey);
199+
showLinesUsingKey(headerKey);
200200
showToolOptions(kind);
201201

202202
// let doclet print usage information
@@ -205,12 +205,13 @@ private void showUsage(String headerKey, ToolOption.Kind kind, String footerKey)
205205
? Option.Kind.EXTENDED
206206
: Option.Kind.STANDARD);
207207
}
208-
if (footerKey != null)
209-
log.noticeUsingKey(footerKey);
208+
if (footerKey != null) {
209+
showLinesUsingKey(footerKey);
210+
}
210211
}
211212

212213
private void showVersion(String labelKey, String value) {
213-
log.noticeUsingKey(labelKey, log.programName, value);
214+
showLinesUsingKey(labelKey, log.programName, value);
214215
}
215216

216217
private void showToolOptions(ToolOption.Kind kind) {
@@ -253,7 +254,7 @@ private void showDocletOptions(Option.Kind kind) {
253254
if (options.isEmpty()) {
254255
return;
255256
}
256-
log.noticeUsingKey("main.doclet.usage.header", name);
257+
showLinesUsingKey("main.doclet.usage.header", name);
257258

258259
Comparator<Doclet.Option> comp = new Comparator<Doclet.Option>() {
259260
final Collator collator = Collator.getInstance(Locale.US);
@@ -308,22 +309,30 @@ void showOption(List<String> names, String parameters, String description) {
308309
if (synopses.length() < DEFAULT_SYNOPSIS_WIDTH
309310
&& !description.contains("\n")
310311
&& (SMALL_INDENT.length() + DEFAULT_SYNOPSIS_WIDTH + 1 + description.length() <= DEFAULT_MAX_LINE_LENGTH)) {
311-
log.notice(String.format(COMPACT_FORMAT, synopses, description));
312+
showLines(String.format(COMPACT_FORMAT, synopses, description));
312313
return;
313314
}
314315

315316
// If option synopses fit on a single line of reasonable length, show that;
316317
// otherwise, show 1 per line
317318
if (synopses.length() <= DEFAULT_MAX_LINE_LENGTH) {
318-
log.notice(SMALL_INDENT + synopses);
319+
showLines(SMALL_INDENT + synopses);
319320
} else {
320321
for (String name: names) {
321-
log.notice(SMALL_INDENT + name + parameters);
322+
showLines(SMALL_INDENT + name + parameters);
322323
}
323324
}
324325

325326
// Finally, show the description
326-
log.notice(LARGE_INDENT + description.replace("\n", "\n" + LARGE_INDENT));
327+
showLines(LARGE_INDENT + description.replace("\n", "\n" + LARGE_INDENT));
328+
}
329+
330+
private void showLinesUsingKey(String key, Object... args) {
331+
showLines(log.getText(key, args));
332+
}
333+
334+
private void showLines(String message) {
335+
log.printRawLines(Log.WriterKind.STDOUT, message);
327336
}
328337

329338

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

+5-23
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2000, 2021, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2000, 2022, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -191,28 +191,14 @@ public Kind getFileKind(TypeElement te) {
191191
}
192192

193193
/**
194-
* Print a notice, iff <em>quiet</em> is not specified.
194+
* Prints a notice unless {@code -quiet} was specified.
195195
*
196196
* @param key selects message from resource
197197
*/
198-
public void notice(String key) {
199-
if (quiet) {
200-
return;
198+
public void printInfo(String key, Object... args) {
199+
if (!quiet) {
200+
log.printNoteUsingKey(key, args);
201201
}
202-
JavadocLog.printRawLines(log.getDiagnosticWriter(), log.getText(key));
203-
}
204-
205-
/**
206-
* Print a notice, iff <em>quiet</em> is not specified.
207-
*
208-
* @param key selects message from resource
209-
* @param a1 first argument
210-
*/
211-
public void notice(String key, String a1) {
212-
if (quiet) {
213-
return;
214-
}
215-
JavadocLog.printRawLines(log.getDiagnosticWriter(), log.getText(key, a1));
216202
}
217203

218204
TreePath getTreePath(JCCompilationUnit tree) {
@@ -247,8 +233,4 @@ public com.sun.tools.javac.code.Types getTypes() {
247233
public Env<AttrContext> getEnv(ClassSymbol tsym) {
248234
return enter.getEnv(tsym);
249235
}
250-
251-
public boolean isQuiet() {
252-
return quiet;
253-
}
254236
}

0 commit comments

Comments
 (0)
Please sign in to comment.