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