src/share/classes/com/sun/tools/javac/util/Log.java

Tue, 09 Oct 2012 19:10:00 -0700

author
jjg
date
Tue, 09 Oct 2012 19:10:00 -0700
changeset 1357
c75be5bc5283
parent 1347
1408af4cd8b0
child 1406
2901c7b5339e
permissions
-rw-r--r--

8000663: clean up langtools imports
Reviewed-by: darcy

duke@1 1 /*
jjg@1280 2 * Copyright (c) 1999, 2012, Oracle and/or its affiliates. All rights reserved.
duke@1 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
duke@1 4 *
duke@1 5 * This code is free software; you can redistribute it and/or modify it
duke@1 6 * under the terms of the GNU General Public License version 2 only, as
ohair@554 7 * published by the Free Software Foundation. Oracle designates this
duke@1 8 * particular file as subject to the "Classpath" exception as provided
ohair@554 9 * by Oracle in the LICENSE file that accompanied this code.
duke@1 10 *
duke@1 11 * This code is distributed in the hope that it will be useful, but WITHOUT
duke@1 12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
duke@1 13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
duke@1 14 * version 2 for more details (a copy is included in the LICENSE file that
duke@1 15 * accompanied this code).
duke@1 16 *
duke@1 17 * You should have received a copy of the GNU General Public License version
duke@1 18 * 2 along with this work; if not, write to the Free Software Foundation,
duke@1 19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
duke@1 20 *
ohair@554 21 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
ohair@554 22 * or visit www.oracle.com if you need additional information or have any
ohair@554 23 * questions.
duke@1 24 */
duke@1 25
duke@1 26 package com.sun.tools.javac.util;
duke@1 27
duke@1 28 import java.io.*;
jjg@194 29 import java.util.Arrays;
jjg@664 30 import java.util.EnumSet;
duke@1 31 import java.util.HashSet;
jjg@664 32 import java.util.Queue;
duke@1 33 import java.util.Set;
duke@1 34 import javax.tools.DiagnosticListener;
duke@1 35 import javax.tools.JavaFileObject;
jjg@50 36
jjg@700 37 import com.sun.tools.javac.api.DiagnosticFormatter;
jjg@1157 38 import com.sun.tools.javac.main.Main;
jjg@1157 39 import com.sun.tools.javac.main.Option;
jjg@1280 40 import com.sun.tools.javac.tree.EndPosTable;
duke@1 41 import com.sun.tools.javac.util.JCDiagnostic.DiagnosticPosition;
duke@1 42 import com.sun.tools.javac.util.JCDiagnostic.DiagnosticType;
duke@1 43
jjg@1157 44 import static com.sun.tools.javac.main.Option.*;
jjg@700 45
duke@1 46 /** A class for error logs. Reports errors and warnings, and
duke@1 47 * keeps track of error numbers and positions.
duke@1 48 *
jjg@581 49 * <p><b>This is NOT part of any supported API.
jjg@581 50 * If you write code that depends on this, you do so at your own risk.
duke@1 51 * This code and its internal interfaces are subject to change or
duke@1 52 * deletion without notice.</b>
duke@1 53 */
jjg@73 54 public class Log extends AbstractLog {
duke@1 55 /** The context key for the log. */
duke@1 56 public static final Context.Key<Log> logKey
duke@1 57 = new Context.Key<Log>();
duke@1 58
duke@1 59 /** The context key for the output PrintWriter. */
duke@1 60 public static final Context.Key<PrintWriter> outKey =
duke@1 61 new Context.Key<PrintWriter>();
duke@1 62
jjg@1136 63 /* TODO: Should unify this with prefix handling in JCDiagnostic.Factory. */
jjg@1136 64 public enum PrefixKind {
jjg@1136 65 JAVAC("javac."),
jjg@1136 66 COMPILER_MISC("compiler.misc.");
jjg@1136 67 PrefixKind(String v) {
jjg@1136 68 value = v;
jjg@1136 69 }
jjg@1136 70 public String key(String k) {
jjg@1136 71 return value + k;
jjg@1136 72 }
jjg@1136 73 final String value;
jjg@1136 74 }
jjg@1136 75
jjg@1135 76 public enum WriterKind { NOTICE, WARNING, ERROR };
duke@1 77
jjg@1135 78 protected PrintWriter errWriter;
duke@1 79
jjg@1135 80 protected PrintWriter warnWriter;
jjg@1135 81
jjg@1135 82 protected PrintWriter noticeWriter;
duke@1 83
duke@1 84 /** The maximum number of errors/warnings that are reported.
duke@1 85 */
jjg@1135 86 protected int MaxErrors;
jjg@1135 87 protected int MaxWarnings;
duke@1 88
duke@1 89 /** Switch: prompt user on each error.
duke@1 90 */
duke@1 91 public boolean promptOnError;
duke@1 92
duke@1 93 /** Switch: emit warning messages.
duke@1 94 */
duke@1 95 public boolean emitWarnings;
duke@1 96
jjg@376 97 /** Switch: suppress note messages.
jjg@376 98 */
jjg@376 99 public boolean suppressNotes;
jjg@376 100
duke@1 101 /** Print stack trace on errors?
duke@1 102 */
duke@1 103 public boolean dumpOnError;
duke@1 104
duke@1 105 /** Print multiple errors for same source locations.
duke@1 106 */
duke@1 107 public boolean multipleErrors;
duke@1 108
duke@1 109 /**
duke@1 110 * Diagnostic listener, if provided through programmatic
duke@1 111 * interface to javac (JSR 199).
duke@1 112 */
duke@1 113 protected DiagnosticListener<? super JavaFileObject> diagListener;
jjg@73 114
duke@1 115 /**
mcimadamore@221 116 * Formatter for diagnostics.
duke@1 117 */
mcimadamore@83 118 private DiagnosticFormatter<JCDiagnostic> diagFormatter;
duke@1 119
mcimadamore@136 120 /**
mcimadamore@221 121 * Keys for expected diagnostics.
jjg@194 122 */
jjg@194 123 public Set<String> expectDiagKeys;
jjg@194 124
jjg@194 125 /**
mcimadamore@221 126 * JavacMessages object used for localization.
mcimadamore@136 127 */
mcimadamore@136 128 private JavacMessages messages;
mcimadamore@136 129
jjg@664 130 /**
jjg@664 131 * Deferred diagnostics
jjg@664 132 */
mcimadamore@1347 133 public Filter<JCDiagnostic> deferredDiagFilter;
jjg@664 134 public Queue<JCDiagnostic> deferredDiagnostics = new ListBuffer<JCDiagnostic>();
jjg@664 135
duke@1 136 /** Construct a log with given I/O redirections.
duke@1 137 */
duke@1 138 protected Log(Context context, PrintWriter errWriter, PrintWriter warnWriter, PrintWriter noticeWriter) {
jjg@73 139 super(JCDiagnostic.Factory.instance(context));
duke@1 140 context.put(logKey, this);
duke@1 141 this.errWriter = errWriter;
duke@1 142 this.warnWriter = warnWriter;
duke@1 143 this.noticeWriter = noticeWriter;
duke@1 144
duke@1 145 @SuppressWarnings("unchecked") // FIXME
jjg@194 146 DiagnosticListener<? super JavaFileObject> dl =
duke@1 147 context.get(DiagnosticListener.class);
jjg@194 148 this.diagListener = dl;
jjg@194 149
jjg@1135 150 messages = JavacMessages.instance(context);
jjg@1136 151 messages.add(Main.javacBundleName);
jjg@1135 152
jjg@1135 153 final Options options = Options.instance(context);
jjg@1135 154 initOptions(options);
jjg@1135 155 options.addListener(new Runnable() {
jjg@1135 156 public void run() {
jjg@1135 157 initOptions(options);
jjg@1135 158 }
jjg@1135 159 });
duke@1 160 }
duke@1 161 // where
jjg@1135 162 private void initOptions(Options options) {
jjg@1135 163 this.dumpOnError = options.isSet(DOE);
jjg@1135 164 this.promptOnError = options.isSet(PROMPT);
jjg@1135 165 this.emitWarnings = options.isUnset(XLINT_CUSTOM, "none");
jjg@1135 166 this.suppressNotes = options.isSet("suppressNotes");
jjg@1135 167 this.MaxErrors = getIntOption(options, XMAXERRS, getDefaultMaxErrors());
jjg@1135 168 this.MaxWarnings = getIntOption(options, XMAXWARNS, getDefaultMaxWarnings());
jjg@1135 169
jjg@1135 170 boolean rawDiagnostics = options.isSet("rawDiagnostics");
jjg@1135 171 this.diagFormatter = rawDiagnostics ? new RawDiagnosticFormatter(options) :
jjg@1135 172 new BasicDiagnosticFormatter(options, messages);
jjg@1135 173
jjg@1135 174 String ek = options.get("expectKeys");
jjg@1135 175 if (ek != null)
jjg@1135 176 expectDiagKeys = new HashSet<String>(Arrays.asList(ek.split(", *")));
jjg@1135 177 }
jjg@1135 178
jjg@1157 179 private int getIntOption(Options options, Option option, int defaultValue) {
jjg@1157 180 String s = options.get(option);
duke@1 181 try {
jjg@464 182 if (s != null) {
jjg@464 183 int n = Integer.parseInt(s);
jjg@464 184 return (n <= 0 ? Integer.MAX_VALUE : n);
jjg@464 185 }
duke@1 186 } catch (NumberFormatException e) {
duke@1 187 // silently ignore ill-formed numbers
duke@1 188 }
duke@1 189 return defaultValue;
duke@1 190 }
duke@1 191
jjg@584 192 /** Default value for -Xmaxerrs.
jjg@584 193 */
jjg@584 194 protected int getDefaultMaxErrors() {
jjg@584 195 return 100;
jjg@584 196 }
jjg@584 197
jjg@584 198 /** Default value for -Xmaxwarns.
jjg@584 199 */
jjg@584 200 protected int getDefaultMaxWarnings() {
jjg@584 201 return 100;
jjg@584 202 }
jjg@584 203
duke@1 204 /** The default writer for diagnostics
duke@1 205 */
jjg@1135 206 static PrintWriter defaultWriter(Context context) {
duke@1 207 PrintWriter result = context.get(outKey);
duke@1 208 if (result == null)
duke@1 209 context.put(outKey, result = new PrintWriter(System.err));
duke@1 210 return result;
duke@1 211 }
duke@1 212
duke@1 213 /** Construct a log with default settings.
duke@1 214 */
duke@1 215 protected Log(Context context) {
duke@1 216 this(context, defaultWriter(context));
duke@1 217 }
duke@1 218
duke@1 219 /** Construct a log with all output redirected.
duke@1 220 */
duke@1 221 protected Log(Context context, PrintWriter defaultWriter) {
duke@1 222 this(context, defaultWriter, defaultWriter, defaultWriter);
duke@1 223 }
duke@1 224
duke@1 225 /** Get the Log instance for this context. */
duke@1 226 public static Log instance(Context context) {
duke@1 227 Log instance = context.get(logKey);
duke@1 228 if (instance == null)
duke@1 229 instance = new Log(context);
duke@1 230 return instance;
duke@1 231 }
duke@1 232
duke@1 233 /** The number of errors encountered so far.
duke@1 234 */
duke@1 235 public int nerrors = 0;
duke@1 236
duke@1 237 /** The number of warnings encountered so far.
duke@1 238 */
duke@1 239 public int nwarnings = 0;
duke@1 240
duke@1 241 /** A set of all errors generated so far. This is used to avoid printing an
duke@1 242 * error message more than once. For each error, a pair consisting of the
duke@1 243 * source file name and source code position of the error is added to the set.
duke@1 244 */
duke@1 245 private Set<Pair<JavaFileObject, Integer>> recorded = new HashSet<Pair<JavaFileObject,Integer>>();
duke@1 246
duke@1 247 public boolean hasDiagnosticListener() {
duke@1 248 return diagListener != null;
duke@1 249 }
duke@1 250
ksrini@1138 251 public void setEndPosTable(JavaFileObject name, EndPosTable endPosTable) {
jjg@73 252 name.getClass(); // null check
ksrini@1138 253 getSource(name).setEndPosTable(endPosTable);
duke@1 254 }
duke@1 255
mcimadamore@168 256 /** Return current sourcefile.
duke@1 257 */
mcimadamore@168 258 public JavaFileObject currentSourceFile() {
duke@1 259 return source == null ? null : source.getFile();
duke@1 260 }
duke@1 261
mcimadamore@221 262 /** Get the current diagnostic formatter.
mcimadamore@221 263 */
mcimadamore@221 264 public DiagnosticFormatter<JCDiagnostic> getDiagnosticFormatter() {
mcimadamore@221 265 return diagFormatter;
mcimadamore@221 266 }
mcimadamore@221 267
mcimadamore@221 268 /** Set the current diagnostic formatter.
mcimadamore@221 269 */
mcimadamore@221 270 public void setDiagnosticFormatter(DiagnosticFormatter<JCDiagnostic> diagFormatter) {
mcimadamore@221 271 this.diagFormatter = diagFormatter;
mcimadamore@221 272 }
mcimadamore@221 273
jjg@1135 274 public PrintWriter getWriter(WriterKind kind) {
jjg@1135 275 switch (kind) {
jjg@1135 276 case NOTICE: return noticeWriter;
jjg@1135 277 case WARNING: return warnWriter;
jjg@1135 278 case ERROR: return errWriter;
jjg@1135 279 default: throw new IllegalArgumentException();
jjg@1135 280 }
jjg@1135 281 }
jjg@1135 282
jjg@1135 283 public void setWriter(WriterKind kind, PrintWriter pw) {
jjg@1135 284 pw.getClass();
jjg@1135 285 switch (kind) {
jjg@1135 286 case NOTICE: noticeWriter = pw; break;
jjg@1135 287 case WARNING: warnWriter = pw; break;
jjg@1135 288 case ERROR: errWriter = pw; break;
jjg@1135 289 default: throw new IllegalArgumentException();
jjg@1135 290 }
jjg@1135 291 }
jjg@1135 292
jjg@1135 293 public void setWriters(PrintWriter pw) {
jjg@1135 294 pw.getClass();
jjg@1135 295 noticeWriter = warnWriter = errWriter = pw;
jjg@1135 296 }
jjg@1135 297
jjg@1159 298 public void setWriters(Log other) {
jjg@1159 299 this.noticeWriter = other.noticeWriter;
jjg@1159 300 this.warnWriter = other.warnWriter;
jjg@1159 301 this.errWriter = other.errWriter;
jjg@1159 302 }
jjg@1159 303
jjg@1323 304 public void setSourceMap(Log other) {
jjg@1323 305 this.sourceMap = other.sourceMap;
jjg@1323 306 }
jjg@1323 307
duke@1 308 /** Flush the logs
duke@1 309 */
duke@1 310 public void flush() {
duke@1 311 errWriter.flush();
duke@1 312 warnWriter.flush();
duke@1 313 noticeWriter.flush();
duke@1 314 }
duke@1 315
jjg@1135 316 public void flush(WriterKind kind) {
jjg@1135 317 getWriter(kind).flush();
jjg@1135 318 }
jjg@1135 319
duke@1 320 /** Returns true if an error needs to be reported for a given
duke@1 321 * source name and pos.
duke@1 322 */
duke@1 323 protected boolean shouldReport(JavaFileObject file, int pos) {
duke@1 324 if (multipleErrors || file == null)
duke@1 325 return true;
duke@1 326
duke@1 327 Pair<JavaFileObject,Integer> coords = new Pair<JavaFileObject,Integer>(file, pos);
duke@1 328 boolean shouldReport = !recorded.contains(coords);
duke@1 329 if (shouldReport)
duke@1 330 recorded.add(coords);
duke@1 331 return shouldReport;
duke@1 332 }
duke@1 333
duke@1 334 /** Prompt user after an error.
duke@1 335 */
duke@1 336 public void prompt() {
duke@1 337 if (promptOnError) {
jjg@604 338 System.err.println(localize("resume.abort"));
duke@1 339 try {
duke@1 340 while (true) {
duke@1 341 switch (System.in.read()) {
duke@1 342 case 'a': case 'A':
duke@1 343 System.exit(-1);
duke@1 344 return;
duke@1 345 case 'r': case 'R':
duke@1 346 return;
duke@1 347 case 'x': case 'X':
duke@1 348 throw new AssertionError("user abort");
duke@1 349 default:
duke@1 350 }
duke@1 351 }
duke@1 352 } catch (IOException e) {}
duke@1 353 }
duke@1 354 }
duke@1 355
duke@1 356 /** Print the faulty source code line and point to the error.
duke@1 357 * @param pos Buffer index of the error position, must be on current line
duke@1 358 */
duke@1 359 private void printErrLine(int pos, PrintWriter writer) {
jjg@73 360 String line = (source == null ? null : source.getLine(pos));
jjg@73 361 if (line == null)
duke@1 362 return;
mcimadamore@100 363 int col = source.getColumnNumber(pos, false);
duke@1 364
jjg@1136 365 printRawLines(writer, line);
jjg@73 366 for (int i = 0; i < col - 1; i++) {
jjg@73 367 writer.print((line.charAt(i) == '\t') ? "\t" : " ");
duke@1 368 }
duke@1 369 writer.println("^");
duke@1 370 writer.flush();
duke@1 371 }
duke@1 372
jjg@1136 373 public void printNewline() {
jjg@1136 374 noticeWriter.println();
jjg@1136 375 }
jjg@1136 376
jjg@1136 377 public void printNewline(WriterKind wk) {
jjg@1136 378 getWriter(wk).println();
jjg@1136 379 }
jjg@1136 380
jjg@1136 381 public void printLines(String key, Object... args) {
jjg@1136 382 printRawLines(noticeWriter, localize(key, args));
jjg@1136 383 }
jjg@1136 384
jjg@1136 385 public void printLines(PrefixKind pk, String key, Object... args) {
jjg@1136 386 printRawLines(noticeWriter, localize(pk, key, args));
jjg@1136 387 }
jjg@1136 388
jjg@1136 389 public void printLines(WriterKind wk, String key, Object... args) {
jjg@1136 390 printRawLines(getWriter(wk), localize(key, args));
jjg@1136 391 }
jjg@1136 392
jjg@1136 393 public void printLines(WriterKind wk, PrefixKind pk, String key, Object... args) {
jjg@1136 394 printRawLines(getWriter(wk), localize(pk, key, args));
jjg@1135 395 }
jjg@1135 396
jjg@1135 397 /** Print the text of a message, translating newlines appropriately
jjg@1135 398 * for the platform.
jjg@1135 399 */
jjg@1136 400 public void printRawLines(String msg) {
jjg@1136 401 printRawLines(noticeWriter, msg);
jjg@1136 402 }
jjg@1136 403
jjg@1136 404 /** Print the text of a message, translating newlines appropriately
jjg@1136 405 * for the platform.
jjg@1136 406 */
jjg@1136 407 public void printRawLines(WriterKind kind, String msg) {
jjg@1136 408 printRawLines(getWriter(kind), msg);
jjg@1136 409 }
jjg@1136 410
jjg@1136 411 /** Print the text of a message, translating newlines appropriately
jjg@1136 412 * for the platform.
jjg@1136 413 */
jjg@1136 414 public static void printRawLines(PrintWriter writer, String msg) {
duke@1 415 int nl;
duke@1 416 while ((nl = msg.indexOf('\n')) != -1) {
duke@1 417 writer.println(msg.substring(0, nl));
duke@1 418 msg = msg.substring(nl+1);
duke@1 419 }
duke@1 420 if (msg.length() != 0) writer.println(msg);
duke@1 421 }
duke@1 422
jjg@909 423 /**
jjg@909 424 * Print the localized text of a "verbose" message to the
jjg@909 425 * noticeWriter stream.
jjg@909 426 */
jjg@909 427 public void printVerbose(String key, Object... args) {
jjg@1136 428 printRawLines(noticeWriter, localize("verbose." + key, args));
jjg@909 429 }
jjg@909 430
jjg@73 431 protected void directError(String key, Object... args) {
jjg@1136 432 printRawLines(errWriter, localize(key, args));
jjg@73 433 errWriter.flush();
duke@1 434 }
duke@1 435
duke@1 436 /** Report a warning that cannot be suppressed.
duke@1 437 * @param pos The source position at which to report the warning.
duke@1 438 * @param key The key for the localized warning message.
duke@1 439 * @param args Fields of the warning message.
duke@1 440 */
duke@1 441 public void strictWarning(DiagnosticPosition pos, String key, Object ... args) {
duke@1 442 writeDiagnostic(diags.warning(source, pos, key, args));
duke@1 443 nwarnings++;
duke@1 444 }
duke@1 445
jjg@664 446 /** Report all deferred diagnostics, and clear the deferDiagnostics flag. */
jjg@664 447 public void reportDeferredDiagnostics() {
jjg@664 448 reportDeferredDiagnostics(EnumSet.allOf(JCDiagnostic.Kind.class));
jjg@664 449 }
jjg@664 450
jjg@664 451 /** Report selected deferred diagnostics, and clear the deferDiagnostics flag. */
jjg@664 452 public void reportDeferredDiagnostics(Set<JCDiagnostic.Kind> kinds) {
mcimadamore@1347 453 deferredDiagFilter = null;
jjg@664 454 JCDiagnostic d;
jjg@664 455 while ((d = deferredDiagnostics.poll()) != null) {
jjg@664 456 if (kinds.contains(d.getKind()))
jjg@664 457 report(d);
jjg@664 458 }
jjg@664 459 }
jjg@664 460
duke@1 461 /**
duke@1 462 * Common diagnostic handling.
duke@1 463 * The diagnostic is counted, and depending on the options and how many diagnostics have been
duke@1 464 * reported so far, the diagnostic may be handed off to writeDiagnostic.
duke@1 465 */
duke@1 466 public void report(JCDiagnostic diagnostic) {
mcimadamore@1347 467 if (deferredDiagFilter != null && deferredDiagFilter.accepts(diagnostic)) {
jjg@664 468 deferredDiagnostics.add(diagnostic);
jjg@664 469 return;
jjg@664 470 }
jjg@664 471
jjg@194 472 if (expectDiagKeys != null)
jjg@194 473 expectDiagKeys.remove(diagnostic.getCode());
jjg@194 474
duke@1 475 switch (diagnostic.getType()) {
duke@1 476 case FRAGMENT:
duke@1 477 throw new IllegalArgumentException();
duke@1 478
duke@1 479 case NOTE:
duke@1 480 // Print out notes only when we are permitted to report warnings
duke@1 481 // Notes are only generated at the end of a compilation, so should be small
duke@1 482 // in number.
jjg@376 483 if ((emitWarnings || diagnostic.isMandatory()) && !suppressNotes) {
duke@1 484 writeDiagnostic(diagnostic);
duke@1 485 }
duke@1 486 break;
duke@1 487
duke@1 488 case WARNING:
duke@1 489 if (emitWarnings || diagnostic.isMandatory()) {
duke@1 490 if (nwarnings < MaxWarnings) {
duke@1 491 writeDiagnostic(diagnostic);
duke@1 492 nwarnings++;
duke@1 493 }
duke@1 494 }
duke@1 495 break;
duke@1 496
duke@1 497 case ERROR:
duke@1 498 if (nerrors < MaxErrors
duke@1 499 && shouldReport(diagnostic.getSource(), diagnostic.getIntPosition())) {
duke@1 500 writeDiagnostic(diagnostic);
duke@1 501 nerrors++;
duke@1 502 }
duke@1 503 break;
duke@1 504 }
duke@1 505 }
duke@1 506
duke@1 507 /**
duke@1 508 * Write out a diagnostic.
duke@1 509 */
duke@1 510 protected void writeDiagnostic(JCDiagnostic diag) {
duke@1 511 if (diagListener != null) {
jjg@946 512 diagListener.report(diag);
jjg@946 513 return;
duke@1 514 }
duke@1 515
duke@1 516 PrintWriter writer = getWriterForDiagnosticType(diag.getType());
duke@1 517
jjg@1136 518 printRawLines(writer, diagFormatter.format(diag, messages.getCurrentLocale()));
duke@1 519
duke@1 520 if (promptOnError) {
duke@1 521 switch (diag.getType()) {
duke@1 522 case ERROR:
duke@1 523 case WARNING:
duke@1 524 prompt();
duke@1 525 }
duke@1 526 }
duke@1 527
duke@1 528 if (dumpOnError)
duke@1 529 new RuntimeException().printStackTrace(writer);
duke@1 530
duke@1 531 writer.flush();
duke@1 532 }
duke@1 533
duke@1 534 @Deprecated
duke@1 535 protected PrintWriter getWriterForDiagnosticType(DiagnosticType dt) {
duke@1 536 switch (dt) {
duke@1 537 case FRAGMENT:
duke@1 538 throw new IllegalArgumentException();
duke@1 539
duke@1 540 case NOTE:
duke@1 541 return noticeWriter;
duke@1 542
duke@1 543 case WARNING:
duke@1 544 return warnWriter;
duke@1 545
duke@1 546 case ERROR:
duke@1 547 return errWriter;
duke@1 548
duke@1 549 default:
duke@1 550 throw new Error();
duke@1 551 }
duke@1 552 }
duke@1 553
mcimadamore@1347 554 public void deferAll() {
mcimadamore@1347 555 deferredDiagFilter = new Filter<JCDiagnostic>() {
mcimadamore@1347 556 public boolean accepts(JCDiagnostic t) {
mcimadamore@1347 557 return true;
mcimadamore@1347 558 }
mcimadamore@1347 559 };
mcimadamore@1347 560 }
mcimadamore@1347 561
mcimadamore@1347 562 public void deferNone() {
mcimadamore@1347 563 deferredDiagFilter = null;
mcimadamore@1347 564 }
mcimadamore@1347 565
duke@1 566 /** Find a localized string in the resource bundle.
jjg@604 567 * Because this method is static, it ignores the locale.
jjg@604 568 * Use localize(key, args) when possible.
duke@1 569 * @param key The key for the localized string.
duke@1 570 * @param args Fields to substitute into the string.
duke@1 571 */
duke@1 572 public static String getLocalizedString(String key, Object ... args) {
jjg@1136 573 return JavacMessages.getDefaultLocalizedString(PrefixKind.COMPILER_MISC.key(key), args);
duke@1 574 }
duke@1 575
jjg@604 576 /** Find a localized string in the resource bundle.
jjg@604 577 * @param key The key for the localized string.
jjg@604 578 * @param args Fields to substitute into the string.
jjg@604 579 */
jjg@604 580 public String localize(String key, Object... args) {
jjg@1136 581 return localize(PrefixKind.COMPILER_MISC, key, args);
jjg@604 582 }
jjg@604 583
jjg@1136 584 /** Find a localized string in the resource bundle.
jjg@1136 585 * @param key The key for the localized string.
jjg@1136 586 * @param args Fields to substitute into the string.
jjg@1136 587 */
jjg@1136 588 public String localize(PrefixKind pk, String key, Object... args) {
jjg@1136 589 if (useRawMessages)
jjg@1136 590 return pk.key(key);
jjg@1136 591 else
jjg@1136 592 return messages.getLocalizedString(pk.key(key), args);
jjg@1136 593 }
jjg@1136 594 // where
jjg@1136 595 // backdoor hook for testing, should transition to use -XDrawDiagnostics
jjg@1136 596 private static boolean useRawMessages = false;
jjg@1136 597
duke@1 598 /***************************************************************************
duke@1 599 * raw error messages without internationalization; used for experimentation
duke@1 600 * and quick prototyping
duke@1 601 ***************************************************************************/
duke@1 602
jjg@73 603 /** print an error or warning message:
jjg@73 604 */
duke@1 605 private void printRawError(int pos, String msg) {
jjg@73 606 if (source == null || pos == Position.NOPOS) {
jjg@1136 607 printRawLines(errWriter, "error: " + msg);
duke@1 608 } else {
jjg@73 609 int line = source.getLineNumber(pos);
mcimadamore@168 610 JavaFileObject file = source.getFile();
duke@1 611 if (file != null)
jjg@1136 612 printRawLines(errWriter,
jjg@415 613 file.getName() + ":" +
duke@1 614 line + ": " + msg);
duke@1 615 printErrLine(pos, errWriter);
duke@1 616 }
duke@1 617 errWriter.flush();
duke@1 618 }
duke@1 619
jjg@73 620 /** report an error:
jjg@73 621 */
duke@1 622 public void rawError(int pos, String msg) {
mcimadamore@168 623 if (nerrors < MaxErrors && shouldReport(currentSourceFile(), pos)) {
duke@1 624 printRawError(pos, msg);
duke@1 625 prompt();
duke@1 626 nerrors++;
duke@1 627 }
duke@1 628 errWriter.flush();
duke@1 629 }
duke@1 630
jjg@73 631 /** report a warning:
jjg@73 632 */
duke@1 633 public void rawWarning(int pos, String msg) {
duke@1 634 if (nwarnings < MaxWarnings && emitWarnings) {
duke@1 635 printRawError(pos, "warning: " + msg);
duke@1 636 }
duke@1 637 prompt();
duke@1 638 nwarnings++;
duke@1 639 errWriter.flush();
duke@1 640 }
duke@1 641
duke@1 642 public static String format(String fmt, Object... args) {
duke@1 643 return String.format((java.util.Locale)null, fmt, args);
duke@1 644 }
duke@1 645
duke@1 646 }

mercurial