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

Wed, 23 Jan 2013 13:27:24 -0800

author
jjg
date
Wed, 23 Jan 2013 13:27:24 -0800
changeset 1521
71f35e4b93a5
parent 1358
fc123bdeddb8
child 1596
3a39d123d33a
permissions
-rw-r--r--

8006775: JSR 308: Compiler changes in JDK8
Reviewed-by: jjg
Contributed-by: mernst@cs.washington.edu, wmdietl@cs.washington.edu, mpapi@csail.mit.edu, mahmood@notnoop.com

     1 /*
     2  * Copyright (c) 2003, 2013, 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.  Oracle designates this
     8  * particular file as subject to the "Classpath" exception as provided
     9  * by Oracle in the LICENSE file that accompanied this code.
    10  *
    11  * This code is distributed in the hope that it will be useful, but WITHOUT
    12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
    14  * version 2 for more details (a copy is included in the LICENSE file that
    15  * accompanied this code).
    16  *
    17  * You should have received a copy of the GNU General Public License version
    18  * 2 along with this work; if not, write to the Free Software Foundation,
    19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    20  *
    21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
    22  * or visit www.oracle.com if you need additional information or have any
    23  * questions.
    24  */
    26 package com.sun.tools.javac.util;
    28 import java.util.EnumSet;
    29 import java.util.Locale;
    30 import java.util.Set;
    32 import javax.tools.Diagnostic;
    33 import javax.tools.JavaFileObject;
    35 import com.sun.tools.javac.api.DiagnosticFormatter;
    36 import com.sun.tools.javac.code.Lint.LintCategory;
    37 import com.sun.tools.javac.tree.EndPosTable;
    38 import com.sun.tools.javac.tree.JCTree;
    40 import static com.sun.tools.javac.util.JCDiagnostic.DiagnosticType.*;
    42 /** An abstraction of a diagnostic message generated by the compiler.
    43  *
    44  *  <p><b>This is NOT part of any supported API.
    45  *  If you write code that depends on this, you do so at your own risk.
    46  *  This code and its internal interfaces are subject to change or
    47  *  deletion without notice.</b>
    48  */
    49 public class JCDiagnostic implements Diagnostic<JavaFileObject> {
    50     /** A factory for creating diagnostic objects. */
    51     public static class Factory {
    52         /** The context key for the diagnostic factory. */
    53         protected static final Context.Key<JCDiagnostic.Factory> diagnosticFactoryKey =
    54             new Context.Key<JCDiagnostic.Factory>();
    56         /** Get the Factory instance for this context. */
    57         public static Factory instance(Context context) {
    58             Factory instance = context.get(diagnosticFactoryKey);
    59             if (instance == null)
    60                 instance = new Factory(context);
    61             return instance;
    62         }
    64         DiagnosticFormatter<JCDiagnostic> formatter;
    65         final String prefix;
    66         final Set<DiagnosticFlag> defaultErrorFlags;
    68         /** Create a new diagnostic factory. */
    69         protected Factory(Context context) {
    70             this(JavacMessages.instance(context), "compiler");
    71             context.put(diagnosticFactoryKey, this);
    73             final Options options = Options.instance(context);
    74             initOptions(options);
    75             options.addListener(new Runnable() {
    76                public void run() {
    77                    initOptions(options);
    78                }
    79             });
    80         }
    82         private void initOptions(Options options) {
    83             if (options.isSet("onlySyntaxErrorsUnrecoverable"))
    84                 defaultErrorFlags.add(DiagnosticFlag.RECOVERABLE);
    85         }
    87         /** Create a new diagnostic factory. */
    88         public Factory(JavacMessages messages, String prefix) {
    89             this.prefix = prefix;
    90             this.formatter = new BasicDiagnosticFormatter(messages);
    91             defaultErrorFlags = EnumSet.of(DiagnosticFlag.MANDATORY);
    92         }
    94         /**
    95          * Create an error diagnostic.
    96          *  @param source The source of the compilation unit, if any, in which to report the error.
    97          *  @param pos    The source position at which to report the error.
    98          *  @param key    The key for the localized error message.
    99          *  @param args   Fields of the error message.
   100          */
   101         public JCDiagnostic error(
   102                 DiagnosticSource source, DiagnosticPosition pos, String key, Object... args) {
   103             return create(ERROR, null, defaultErrorFlags, source, pos, key, args);
   104         }
   106         /**
   107          * Create a warning diagnostic that will not be hidden by the -nowarn or -Xlint:none options.
   108          *  @param source The source of the compilation unit, if any, in which to report the warning.
   109          *  @param pos    The source position at which to report the warning.
   110          *  @param key    The key for the localized warning message.
   111          *  @param args   Fields of the warning message.
   112          *  @see MandatoryWarningHandler
   113          */
   114         public JCDiagnostic mandatoryWarning(
   115                 DiagnosticSource source, DiagnosticPosition pos, String key, Object... args) {
   116             return create(WARNING, null, EnumSet.of(DiagnosticFlag.MANDATORY), source, pos, key, args);
   117         }
   119         /**
   120          * Create a warning diagnostic that will not be hidden by the -nowarn or -Xlint:none options.
   121          *  @param lc     The lint category for the diagnostic
   122          *  @param source The source of the compilation unit, if any, in which to report the warning.
   123          *  @param pos    The source position at which to report the warning.
   124          *  @param key    The key for the localized warning message.
   125          *  @param args   Fields of the warning message.
   126          *  @see MandatoryWarningHandler
   127          */
   128         public JCDiagnostic mandatoryWarning(
   129                 LintCategory lc,
   130                 DiagnosticSource source, DiagnosticPosition pos, String key, Object... args) {
   131             return create(WARNING, lc, EnumSet.of(DiagnosticFlag.MANDATORY), source, pos, key, args);
   132         }
   134         /**
   135          * Create a warning diagnostic.
   136          *  @param lc     The lint category for the diagnostic
   137          *  @param key    The key for the localized error message.
   138          *  @param args   Fields of the warning message.
   139          *  @see MandatoryWarningHandler
   140          */
   141         public JCDiagnostic warning(
   142                  LintCategory lc, String key, Object... args) {
   143             return create(WARNING, lc, EnumSet.noneOf(DiagnosticFlag.class), null, null, key, args);
   144         }
   146         /**
   147          * Create a warning diagnostic.
   148          *  @param source The source of the compilation unit, if any, in which to report the warning.
   149          *  @param pos    The source position at which to report the warning.
   150          *  @param key    The key for the localized warning message.
   151          *  @param args   Fields of the warning message.
   152          */
   153         public JCDiagnostic warning(
   154                 DiagnosticSource source, DiagnosticPosition pos, String key, Object... args) {
   155             return create(WARNING, null, EnumSet.noneOf(DiagnosticFlag.class), source, pos, key, args);
   156         }
   158         /**
   159          * Create a warning diagnostic.
   160          *  @param lc     The lint category for the diagnostic
   161          *  @param source The source of the compilation unit, if any, in which to report the warning.
   162          *  @param pos    The source position at which to report the warning.
   163          *  @param key    The key for the localized warning message.
   164          *  @param args   Fields of the warning message.
   165          *  @see MandatoryWarningHandler
   166          */
   167         public JCDiagnostic warning(
   168                  LintCategory lc, DiagnosticSource source, DiagnosticPosition pos, String key, Object... args) {
   169             return create(WARNING, lc, EnumSet.noneOf(DiagnosticFlag.class), source, pos, key, args);
   170         }
   172         /**
   173          * Create a note diagnostic that will not be hidden by the -nowarn or -Xlint:none options.
   174          *  @param key    The key for the localized message.
   175          *  @param args   Fields of the message.
   176          *  @see MandatoryWarningHandler
   177          */
   178         public JCDiagnostic mandatoryNote(DiagnosticSource source, String key, Object... args) {
   179             return create(NOTE, null, EnumSet.of(DiagnosticFlag.MANDATORY), source, null, key, args);
   180         }
   182         /**
   183          * Create a note diagnostic.
   184          *  @param key    The key for the localized error message.
   185          *  @param args   Fields of the message.
   186          */
   187         public JCDiagnostic note(String key, Object... args) {
   188             return create(NOTE, null, EnumSet.noneOf(DiagnosticFlag.class), null, null, key, args);
   189         }
   191         /**
   192          * Create a note diagnostic.
   193          *  @param source The source of the compilation unit, if any, in which to report the note.
   194          *  @param pos    The source position at which to report the note.
   195          *  @param key    The key for the localized message.
   196          *  @param args   Fields of the message.
   197          */
   198         public JCDiagnostic note(
   199                 DiagnosticSource source, DiagnosticPosition pos, String key, Object... args) {
   200             return create(NOTE, null, EnumSet.noneOf(DiagnosticFlag.class), source, pos, key, args);
   201         }
   203         /**
   204          * Create a fragment diagnostic, for use as an argument in other diagnostics
   205          *  @param key    The key for the localized message.
   206          *  @param args   Fields of the message.
   207          */
   208         public JCDiagnostic fragment(String key, Object... args) {
   209             return create(FRAGMENT, null, EnumSet.noneOf(DiagnosticFlag.class), null, null, key, args);
   210         }
   212         /**
   213          * Create a new diagnostic of the given kind, which is not mandatory and which has
   214          * no lint category.
   215          *  @param kind        The diagnostic kind
   216          *  @param source      The source of the compilation unit, if any, in which to report the message.
   217          *  @param pos         The source position at which to report the message.
   218          *  @param key         The key for the localized message.
   219          *  @param args        Fields of the message.
   220          */
   221         public JCDiagnostic create(
   222                 DiagnosticType kind, DiagnosticSource source, DiagnosticPosition pos, String key, Object... args) {
   223             return create(kind, null, EnumSet.noneOf(DiagnosticFlag.class), source, pos, key, args);
   224         }
   226         /**
   227          * Create a new diagnostic of the given kind.
   228          *  @param kind        The diagnostic kind
   229          *  @param lc          The lint category, if applicable, or null
   230          *  @param flags       The set of flags for the diagnostic
   231          *  @param source      The source of the compilation unit, if any, in which to report the message.
   232          *  @param pos         The source position at which to report the message.
   233          *  @param key         The key for the localized message.
   234          *  @param args        Fields of the message.
   235          */
   236         public JCDiagnostic create(
   237                 DiagnosticType kind, LintCategory lc, Set<DiagnosticFlag> flags, DiagnosticSource source, DiagnosticPosition pos, String key, Object... args) {
   238             return new JCDiagnostic(formatter, kind, lc, flags, source, pos, qualify(kind, key), args);
   239         }
   241         protected String qualify(DiagnosticType t, String key) {
   242             return prefix + "." + t.key + "." + key;
   243         }
   244     }
   248     /**
   249      * Create a fragment diagnostic, for use as an argument in other diagnostics
   250      *  @param key    The key for the localized error message.
   251      *  @param args   Fields of the error message.
   252      *
   253      */
   254     @Deprecated
   255     public static JCDiagnostic fragment(String key, Object... args) {
   256         return new JCDiagnostic(getFragmentFormatter(),
   257                               FRAGMENT,
   258                               null,
   259                               EnumSet.noneOf(DiagnosticFlag.class),
   260                               null,
   261                               null,
   262                               "compiler." + FRAGMENT.key + "." + key,
   263                               args);
   264     }
   265     //where
   266     @Deprecated
   267     public static DiagnosticFormatter<JCDiagnostic> getFragmentFormatter() {
   268         if (fragmentFormatter == null) {
   269             fragmentFormatter = new BasicDiagnosticFormatter(JavacMessages.getDefaultMessages());
   270         }
   271         return fragmentFormatter;
   272     }
   274     /**
   275      * A DiagnosticType defines the type of the diagnostic.
   276      **/
   277     public enum DiagnosticType {
   278         /** A fragment of an enclosing diagnostic. */
   279         FRAGMENT("misc"),
   280         /** A note: similar to, but less serious than, a warning. */
   281         NOTE("note"),
   282         /** A warning. */
   283         WARNING("warn"),
   284         /** An error. */
   285         ERROR("err");
   287         final String key;
   289         /** Create a DiagnosticType.
   290          * @param key A string used to create the resource key for the diagnostic.
   291          */
   292         DiagnosticType(String key) {
   293             this.key = key;
   294         }
   295     };
   297     /**
   298      * A DiagnosticPosition provides information about the positions in a file
   299      * that gave rise to a diagnostic. It always defines a "preferred" position
   300      * that most accurately defines the location of the diagnostic, it may also
   301      * provide a related tree node that spans that location.
   302      */
   303     public static interface DiagnosticPosition {
   304         /** Gets the tree node, if any, to which the diagnostic applies. */
   305         JCTree getTree();
   306         /** If there is a tree node, get the start position of the tree node.
   307          *  Otherwise, just returns the same as getPreferredPosition(). */
   308         int getStartPosition();
   309         /** Get the position within the file that most accurately defines the
   310          *  location for the diagnostic. */
   311         int getPreferredPosition();
   312         /** If there is a tree node, and if endPositions are available, get
   313          *  the end position of the tree node. Otherwise, just returns the
   314          *  same as getPreferredPosition(). */
   315         int getEndPosition(EndPosTable endPosTable);
   316     }
   318     /**
   319      * A DiagnosticPosition that simply identifies a position, but no related
   320      * tree node, as the location for a diagnostic. Used for scanner and parser
   321      * diagnostics. */
   322     public static class SimpleDiagnosticPosition implements DiagnosticPosition {
   323         public SimpleDiagnosticPosition(int pos) {
   324             this.pos = pos;
   325         }
   327         public JCTree getTree() {
   328             return null;
   329         }
   331         public int getStartPosition() {
   332             return pos;
   333         }
   335         public int getPreferredPosition() {
   336             return pos;
   337         }
   339         public int getEndPosition(EndPosTable endPosTable) {
   340             return pos;
   341         }
   343         private final int pos;
   344     }
   346     public enum DiagnosticFlag {
   347         MANDATORY,
   348         RESOLVE_ERROR,
   349         SYNTAX,
   350         RECOVERABLE
   351     }
   353     private final DiagnosticType type;
   354     private final DiagnosticSource source;
   355     private final DiagnosticPosition position;
   356     private final int line;
   357     private final int column;
   358     private final String key;
   359     protected final Object[] args;
   360     private final Set<DiagnosticFlag> flags;
   361     private final LintCategory lintCategory;
   363     /**
   364      * Create a diagnostic object.
   365      * @param formatter the formatter to use for the diagnostic
   366      * @param dt the type of diagnostic
   367      * @param lc     the lint category for the diagnostic
   368      * @param source the name of the source file, or null if none.
   369      * @param pos the character offset within the source file, if given.
   370      * @param key a resource key to identify the text of the diagnostic
   371      * @param args arguments to be included in the text of the diagnostic
   372      */
   373     protected JCDiagnostic(DiagnosticFormatter<JCDiagnostic> formatter,
   374                        DiagnosticType dt,
   375                        LintCategory lc,
   376                        Set<DiagnosticFlag> flags,
   377                        DiagnosticSource source,
   378                        DiagnosticPosition pos,
   379                        String key,
   380                        Object... args) {
   381         if (source == null && pos != null && pos.getPreferredPosition() != Position.NOPOS)
   382             throw new IllegalArgumentException();
   384         this.defaultFormatter = formatter;
   385         this.type = dt;
   386         this.lintCategory = lc;
   387         this.flags = flags;
   388         this.source = source;
   389         this.position = pos;
   390         this.key = key;
   391         this.args = args;
   393         int n = (pos == null ? Position.NOPOS : pos.getPreferredPosition());
   394         if (n == Position.NOPOS || source == null)
   395             line = column = -1;
   396         else {
   397             line = source.getLineNumber(n);
   398             column = source.getColumnNumber(n, true);
   399         }
   400     }
   402     /**
   403      * Get the type of this diagnostic.
   404      * @return the type of this diagnostic
   405      */
   406     public DiagnosticType getType() {
   407         return type;
   408     }
   410     /**
   411      * Get the subdiagnostic list
   412      * @return subdiagnostic list
   413      */
   414     public List<JCDiagnostic> getSubdiagnostics() {
   415         return List.nil();
   416     }
   418     public boolean isMultiline() {
   419         return false;
   420     }
   422     /**
   423      * Check whether or not this diagnostic is required to be shown.
   424      * @return true if this diagnostic is required to be shown.
   425      */
   426     public boolean isMandatory() {
   427         return flags.contains(DiagnosticFlag.MANDATORY);
   428     }
   430     /**
   431      * Check whether this diagnostic has an associated lint category.
   432      */
   433     public boolean hasLintCategory() {
   434         return (lintCategory != null);
   435     }
   437     /**
   438      * Get the associated lint category, or null if none.
   439      */
   440     public LintCategory getLintCategory() {
   441         return lintCategory;
   442     }
   444     /**
   445      * Get the name of the source file referred to by this diagnostic.
   446      * @return the name of the source referred to with this diagnostic, or null if none
   447      */
   448     public JavaFileObject getSource() {
   449         if (source == null)
   450             return null;
   451         else
   452             return source.getFile();
   453     }
   455     /**
   456      * Get the source referred to by this diagnostic.
   457      * @return the source referred to with this diagnostic, or null if none
   458      */
   459     public DiagnosticSource getDiagnosticSource() {
   460         return source;
   461     }
   463     protected int getIntStartPosition() {
   464         return (position == null ? Position.NOPOS : position.getStartPosition());
   465     }
   467     protected int getIntPosition() {
   468         return (position == null ? Position.NOPOS : position.getPreferredPosition());
   469     }
   471     protected int getIntEndPosition() {
   472         return (position == null ? Position.NOPOS : position.getEndPosition(source.getEndPosTable()));
   473     }
   475     public long getStartPosition() {
   476         return getIntStartPosition();
   477     }
   479     public long getPosition() {
   480         return getIntPosition();
   481     }
   483     public long getEndPosition() {
   484         return getIntEndPosition();
   485     }
   487     /**
   488      * Get the line number within the source referred to by this diagnostic.
   489      * @return  the line number within the source referred to by this diagnostic
   490      */
   491     public long getLineNumber() {
   492         return line;
   493     }
   495     /**
   496      * Get the column number within the line of source referred to by this diagnostic.
   497      * @return  the column number within the line of source referred to by this diagnostic
   498      */
   499     public long getColumnNumber() {
   500         return column;
   501     }
   503     /**
   504      * Get the arguments to be included in the text of the diagnostic.
   505      * @return  the arguments to be included in the text of the diagnostic
   506      */
   507     public Object[] getArgs() {
   508         return args;
   509     }
   511     /**
   512      * Get the prefix string associated with this type of diagnostic.
   513      * @return the prefix string associated with this type of diagnostic
   514      */
   515     public String getPrefix() {
   516         return getPrefix(type);
   517     }
   519     /**
   520      * Get the prefix string associated with a particular type of diagnostic.
   521      * @return the prefix string associated with a particular type of diagnostic
   522      */
   523     public String getPrefix(DiagnosticType dt) {
   524         return defaultFormatter.formatKind(this, Locale.getDefault());
   525     }
   527     /**
   528      * Return the standard presentation of this diagnostic.
   529      */
   530     @Override
   531     public String toString() {
   532         return defaultFormatter.format(this,Locale.getDefault());
   533     }
   535     private DiagnosticFormatter<JCDiagnostic> defaultFormatter;
   536     @Deprecated
   537     private static DiagnosticFormatter<JCDiagnostic> fragmentFormatter;
   539     // Methods for javax.tools.Diagnostic
   541     public Diagnostic.Kind getKind() {
   542         switch (type) {
   543         case NOTE:
   544             return Diagnostic.Kind.NOTE;
   545         case WARNING:
   546             return flags.contains(DiagnosticFlag.MANDATORY)
   547                     ? Diagnostic.Kind.MANDATORY_WARNING
   548                     : Diagnostic.Kind.WARNING;
   549         case ERROR:
   550             return Diagnostic.Kind.ERROR;
   551         default:
   552             return Diagnostic.Kind.OTHER;
   553         }
   554     }
   556     public String getCode() {
   557         return key;
   558     }
   560     public String getMessage(Locale locale) {
   561         return defaultFormatter.formatMessage(this, locale);
   562     }
   564     public void setFlag(DiagnosticFlag flag) {
   565         flags.add(flag);
   567         if (type == DiagnosticType.ERROR) {
   568             switch (flag) {
   569                 case SYNTAX:
   570                     flags.remove(DiagnosticFlag.RECOVERABLE);
   571                     break;
   572                 case RESOLVE_ERROR:
   573                     flags.add(DiagnosticFlag.RECOVERABLE);
   574                     break;
   575             }
   576         }
   577     }
   579     public boolean isFlagSet(DiagnosticFlag flag) {
   580         return flags.contains(flag);
   581     }
   583     public static class MultilineDiagnostic extends JCDiagnostic {
   585         private final List<JCDiagnostic> subdiagnostics;
   587         public MultilineDiagnostic(JCDiagnostic other, List<JCDiagnostic> subdiagnostics) {
   588             super(other.defaultFormatter,
   589                   other.getType(),
   590                   other.getLintCategory(),
   591                   other.flags,
   592                   other.getDiagnosticSource(),
   593                   other.position,
   594                   other.getCode(),
   595                   other.getArgs());
   596             this.subdiagnostics = subdiagnostics;
   597         }
   599         @Override
   600         public List<JCDiagnostic> getSubdiagnostics() {
   601             return subdiagnostics;
   602         }
   604         @Override
   605         public boolean isMultiline() {
   606             return true;
   607         }
   608     }
   609 }

mercurial