src/share/classes/com/sun/tools/javac/code/Lint.java

Thu, 21 Feb 2013 17:49:56 -0800

author
lana
date
Thu, 21 Feb 2013 17:49:56 -0800
changeset 1603
6118072811e5
parent 1588
2620c953e9fe
child 1802
8fb68f73d4b1
permissions
-rw-r--r--

Merge

     1 /*
     2  * Copyright (c) 2005, 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.code;
    28 import java.util.EnumSet;
    29 import java.util.Map;
    30 import com.sun.tools.javac.code.Symbol.*;
    31 import com.sun.tools.javac.util.Context;
    32 import com.sun.tools.javac.util.List;
    33 import com.sun.tools.javac.util.Options;
    34 import com.sun.tools.javac.util.Pair;
    36 import static com.sun.tools.javac.code.Flags.*;
    39 /**
    40  * A class for handling -Xlint suboptions and @SuppresssWarnings.
    41  *
    42  *  <p><b>This is NOT part of any supported API.
    43  *  If you write code that depends on this, you do so at your own risk.
    44  *  This code and its internal interfaces are subject to change or
    45  *  deletion without notice.</b>
    46  */
    47 public class Lint
    48 {
    49     /** The context key for the root Lint object. */
    50     protected static final Context.Key<Lint> lintKey = new Context.Key<Lint>();
    52     /** Get the root Lint instance. */
    53     public static Lint instance(Context context) {
    54         Lint instance = context.get(lintKey);
    55         if (instance == null)
    56             instance = new Lint(context);
    57         return instance;
    58     }
    60     /**
    61      * Returns the result of combining the values in this object with
    62      * the given annotation.
    63      */
    64     public Lint augment(Attribute.Compound attr) {
    65         return augmentor.augment(this, attr);
    66     }
    69     /**
    70      * Returns the result of combining the values in this object with
    71      * the given annotations.
    72      */
    73     public Lint augment(Annotations annots) {
    74         return augmentor.augment(this, annots.getDeclarationAttributes());
    75     }
    77     /**
    78      * Returns the result of combining the values in this object with
    79      * the given annotations and flags.
    80      */
    81     public Lint augment(Annotations annots, long flags) {
    82         Lint l = augmentor.augment(this, annots.getDeclarationAttributes());
    83         if ((flags & DEPRECATED) != 0) {
    84             if (l == this)
    85                 l = new Lint(this);
    86             l.values.remove(LintCategory.DEPRECATION);
    87             l.suppressedValues.add(LintCategory.DEPRECATION);
    88         }
    89         return l;
    90     }
    93     private final AugmentVisitor augmentor;
    95     private final EnumSet<LintCategory> values;
    96     private final EnumSet<LintCategory> suppressedValues;
    98     private static final Map<String, LintCategory> map =
    99             new java.util.concurrent.ConcurrentHashMap<String, LintCategory>(20);
   102     protected Lint(Context context) {
   103         // initialize values according to the lint options
   104         Options options = Options.instance(context);
   105         values = EnumSet.noneOf(LintCategory.class);
   106         for (Map.Entry<String, LintCategory> e: map.entrySet()) {
   107             if (options.lint(e.getKey()))
   108                 values.add(e.getValue());
   109         }
   111         suppressedValues = EnumSet.noneOf(LintCategory.class);
   113         context.put(lintKey, this);
   114         augmentor = new AugmentVisitor(context);
   115     }
   117     protected Lint(Lint other) {
   118         this.augmentor = other.augmentor;
   119         this.values = other.values.clone();
   120         this.suppressedValues = other.suppressedValues.clone();
   121     }
   123     @Override
   124     public String toString() {
   125         return "Lint:[values" + values + " suppressedValues" + suppressedValues + "]";
   126     }
   128     /**
   129      * Categories of warnings that can be generated by the compiler.
   130      */
   131     public enum LintCategory {
   132         /**
   133          * Warn when code refers to a auxiliary class that is hidden in a source file (ie source file name is
   134          * different from the class name, and the type is not properly nested) and the referring code
   135          * is not located in the same source file.
   136          */
   137         AUXILIARYCLASS("auxiliaryclass"),
   139         /**
   140          * Warn about use of unnecessary casts.
   141          */
   142         CAST("cast"),
   144         /**
   145          * Warn about issues related to classfile contents
   146          */
   147         CLASSFILE("classfile"),
   149         /**
   150          * Warn about use of deprecated items.
   151          */
   152         DEPRECATION("deprecation"),
   154         /**
   155          * Warn about items which are documented with an {@code @deprecated} JavaDoc
   156          * comment, but which do not have {@code @Deprecated} annotation.
   157          */
   158         DEP_ANN("dep-ann"),
   160         /**
   161          * Warn about division by constant integer 0.
   162          */
   163         DIVZERO("divzero"),
   165         /**
   166          * Warn about empty statement after if.
   167          */
   168         EMPTY("empty"),
   170         /**
   171          * Warn about falling through from one case of a switch statement to the next.
   172          */
   173         FALLTHROUGH("fallthrough"),
   175         /**
   176          * Warn about finally clauses that do not terminate normally.
   177          */
   178         FINALLY("finally"),
   180         /**
   181          * Warn about issues relating to use of command line options
   182          */
   183         OPTIONS("options"),
   185         /**
   186          * Warn about issues regarding method overrides.
   187          */
   188         OVERRIDES("overrides"),
   190         /**
   191          * Warn about invalid path elements on the command line.
   192          * Such warnings cannot be suppressed with the SuppressWarnings
   193          * annotation.
   194          */
   195         PATH("path"),
   197         /**
   198          * Warn about issues regarding annotation processing.
   199          */
   200         PROCESSING("processing"),
   202         /**
   203          * Warn about unchecked operations on raw types.
   204          */
   205         RAW("rawtypes"),
   207         /**
   208          * Warn about Serializable classes that do not provide a serial version ID.
   209          */
   210         SERIAL("serial"),
   212         /**
   213          * Warn about issues relating to use of statics
   214          */
   215         STATIC("static"),
   217         /**
   218          * Warn about proprietary API that may be removed in a future release.
   219          */
   220         SUNAPI("sunapi", true),
   222         /**
   223          * Warn about issues relating to use of try blocks (i.e. try-with-resources)
   224          */
   225         TRY("try"),
   227         /**
   228          * Warn about unchecked operations on raw types.
   229          */
   230         UNCHECKED("unchecked"),
   232         /**
   233          * Warn about potentially unsafe vararg methods
   234          */
   235         VARARGS("varargs");
   237         LintCategory(String option) {
   238             this(option, false);
   239         }
   241         LintCategory(String option, boolean hidden) {
   242             this.option = option;
   243             this.hidden = hidden;
   244             map.put(option, this);
   245         }
   247         static LintCategory get(String option) {
   248             return map.get(option);
   249         }
   251         public final String option;
   252         public final boolean hidden;
   253     };
   255     /**
   256      * Checks if a warning category is enabled. A warning category may be enabled
   257      * on the command line, or by default, and can be temporarily disabled with
   258      * the SuppressWarnings annotation.
   259      */
   260     public boolean isEnabled(LintCategory lc) {
   261         return values.contains(lc);
   262     }
   264     /**
   265      * Checks is a warning category has been specifically suppressed, by means
   266      * of the SuppressWarnings annotation, or, in the case of the deprecated
   267      * category, whether it has been implicitly suppressed by virtue of the
   268      * current entity being itself deprecated.
   269      */
   270     public boolean isSuppressed(LintCategory lc) {
   271         return suppressedValues.contains(lc);
   272     }
   274     protected static class AugmentVisitor implements Attribute.Visitor {
   275         private final Context context;
   276         private Symtab syms;
   277         private Lint parent;
   278         private Lint lint;
   280         AugmentVisitor(Context context) {
   281             // to break an ugly sequence of initialization dependencies,
   282             // we defer the initialization of syms until it is needed
   283             this.context = context;
   284         }
   286         Lint augment(Lint parent, Attribute.Compound attr) {
   287             initSyms();
   288             this.parent = parent;
   289             lint = null;
   290             attr.accept(this);
   291             return (lint == null ? parent : lint);
   292         }
   294         Lint augment(Lint parent, List<Attribute.Compound> attrs) {
   295             initSyms();
   296             this.parent = parent;
   297             lint = null;
   298             for (Attribute.Compound a: attrs) {
   299                 a.accept(this);
   300             }
   301             return (lint == null ? parent : lint);
   302         }
   304         private void initSyms() {
   305             if (syms == null)
   306                 syms = Symtab.instance(context);
   307         }
   309         private void suppress(LintCategory lc) {
   310             if (lint == null)
   311                 lint = new Lint(parent);
   312             lint.suppressedValues.add(lc);
   313             lint.values.remove(lc);
   314         }
   316         public void visitConstant(Attribute.Constant value) {
   317             if (value.type.tsym == syms.stringType.tsym) {
   318                 LintCategory lc = LintCategory.get((String) (value.value));
   319                 if (lc != null)
   320                     suppress(lc);
   321             }
   322         }
   324         public void visitClass(Attribute.Class clazz) {
   325         }
   327         // If we find a @SuppressWarnings annotation, then we continue
   328         // walking the tree, in order to suppress the individual warnings
   329         // specified in the @SuppressWarnings annotation.
   330         public void visitCompound(Attribute.Compound compound) {
   331             if (compound.type.tsym == syms.suppressWarningsType.tsym) {
   332                 for (List<Pair<MethodSymbol,Attribute>> v = compound.values;
   333                      v.nonEmpty(); v = v.tail) {
   334                     Pair<MethodSymbol,Attribute> value = v.head;
   335                     if (value.fst.name.toString().equals("value"))
   336                         value.snd.accept(this);
   337                 }
   339             }
   340         }
   342         public void visitArray(Attribute.Array array) {
   343             for (Attribute value : array.values)
   344                 value.accept(this);
   345         }
   347         public void visitEnum(Attribute.Enum e) {
   348         }
   350         public void visitError(Attribute.Error e) {
   351         }
   352     };
   353 }

mercurial