author | ohrstrom |
Thu, 01 Nov 2012 10:48:36 +0100 | |
changeset 14369 | 3d660d08d1f7 |
parent 13689 | 4d519199a6aa |
child 14801 | d66cab4ef397 |
permissions | -rw-r--r-- |
10 | 1 |
/* |
13689
4d519199a6aa
7151010: Add compiler support for repeating annotations
jfranck
parents:
7681
diff
changeset
|
2 |
* Copyright (c) 2005, 2012, Oracle and/or its affiliates. All rights reserved. |
10 | 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 |
|
5520 | 7 |
* published by the Free Software Foundation. Oracle designates this |
10 | 8 |
* particular file as subject to the "Classpath" exception as provided |
5520 | 9 |
* by Oracle in the LICENSE file that accompanied this code. |
10 | 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 |
* |
|
5520 | 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. |
|
10 | 24 |
*/ |
25 |
||
26 |
package com.sun.tools.javac.code; |
|
27 |
||
28 |
import java.util.EnumSet; |
|
29 |
import java.util.HashMap; |
|
30 |
import java.util.Map; |
|
31 |
import com.sun.tools.javac.code.Symbol.*; |
|
32 |
import com.sun.tools.javac.util.Context; |
|
33 |
import com.sun.tools.javac.util.List; |
|
34 |
import com.sun.tools.javac.util.Options; |
|
35 |
import com.sun.tools.javac.util.Pair; |
|
36 |
import static com.sun.tools.javac.code.Flags.*; |
|
37 |
||
38 |
||
39 |
/** |
|
40 |
* A class for handling -Xlint suboptions and @SuppresssWarnings. |
|
41 |
* |
|
5847
1908176fd6e3
6944312: Potential rebranding issues in openjdk/langtools repository sources
jjg
parents:
5846
diff
changeset
|
42 |
* <p><b>This is NOT part of any supported API. |
1908176fd6e3
6944312: Potential rebranding issues in openjdk/langtools repository sources
jjg
parents:
5846
diff
changeset
|
43 |
* If you write code that depends on this, you do so at your own risk. |
10 | 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>(); |
|
51 |
||
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 |
} |
|
59 |
||
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 |
} |
|
67 |
||
68 |
||
69 |
/** |
|
70 |
* Returns the result of combining the values in this object with |
|
71 |
* the given annotations. |
|
72 |
*/ |
|
13689
4d519199a6aa
7151010: Add compiler support for repeating annotations
jfranck
parents:
7681
diff
changeset
|
73 |
public Lint augment(Annotations annots) { |
4d519199a6aa
7151010: Add compiler support for repeating annotations
jfranck
parents:
7681
diff
changeset
|
74 |
return augmentor.augment(this, annots.getAttributes()); |
10 | 75 |
} |
76 |
||
77 |
/** |
|
78 |
* Returns the result of combining the values in this object with |
|
79 |
* the given annotations and flags. |
|
80 |
*/ |
|
13689
4d519199a6aa
7151010: Add compiler support for repeating annotations
jfranck
parents:
7681
diff
changeset
|
81 |
public Lint augment(Annotations annots, long flags) { |
4d519199a6aa
7151010: Add compiler support for repeating annotations
jfranck
parents:
7681
diff
changeset
|
82 |
Lint l = augmentor.augment(this, annots.getAttributes()); |
10 | 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 |
} |
|
91 |
||
92 |
||
93 |
private final AugmentVisitor augmentor; |
|
94 |
||
95 |
private final EnumSet<LintCategory> values; |
|
96 |
private final EnumSet<LintCategory> suppressedValues; |
|
97 |
||
98 |
private static Map<String, LintCategory> map = new HashMap<String,LintCategory>(); |
|
99 |
||
100 |
||
101 |
protected Lint(Context context) { |
|
102 |
// initialize values according to the lint options |
|
103 |
Options options = Options.instance(context); |
|
104 |
values = EnumSet.noneOf(LintCategory.class); |
|
105 |
for (Map.Entry<String, LintCategory> e: map.entrySet()) { |
|
106 |
if (options.lint(e.getKey())) |
|
107 |
values.add(e.getValue()); |
|
108 |
} |
|
109 |
||
110 |
suppressedValues = EnumSet.noneOf(LintCategory.class); |
|
111 |
||
112 |
context.put(lintKey, this); |
|
113 |
augmentor = new AugmentVisitor(context); |
|
114 |
} |
|
115 |
||
116 |
protected Lint(Lint other) { |
|
117 |
this.augmentor = other.augmentor; |
|
118 |
this.values = other.values.clone(); |
|
119 |
this.suppressedValues = other.suppressedValues.clone(); |
|
120 |
} |
|
121 |
||
6151
dd513881e71d
6957438: improve code for generating warning messages containing option names
jjg
parents:
6148
diff
changeset
|
122 |
@Override |
10 | 123 |
public String toString() { |
124 |
return "Lint:[values" + values + " suppressedValues" + suppressedValues + "]"; |
|
125 |
} |
|
126 |
||
127 |
/** |
|
128 |
* Categories of warnings that can be generated by the compiler. |
|
129 |
*/ |
|
130 |
public enum LintCategory { |
|
131 |
/** |
|
14369
3d660d08d1f7
7153951: Add new lint option -Xlint:auxiliaryclass
ohrstrom
parents:
13689
diff
changeset
|
132 |
* Warn when code refers to a auxiliary class that is hidden in a source file (ie source file name is |
3d660d08d1f7
7153951: Add new lint option -Xlint:auxiliaryclass
ohrstrom
parents:
13689
diff
changeset
|
133 |
* different from the class name, and the type is not properly nested) and the referring code |
3d660d08d1f7
7153951: Add new lint option -Xlint:auxiliaryclass
ohrstrom
parents:
13689
diff
changeset
|
134 |
* is not located in the same source file. |
3d660d08d1f7
7153951: Add new lint option -Xlint:auxiliaryclass
ohrstrom
parents:
13689
diff
changeset
|
135 |
*/ |
3d660d08d1f7
7153951: Add new lint option -Xlint:auxiliaryclass
ohrstrom
parents:
13689
diff
changeset
|
136 |
AUXILIARYCLASS("auxiliaryclass"), |
3d660d08d1f7
7153951: Add new lint option -Xlint:auxiliaryclass
ohrstrom
parents:
13689
diff
changeset
|
137 |
|
3d660d08d1f7
7153951: Add new lint option -Xlint:auxiliaryclass
ohrstrom
parents:
13689
diff
changeset
|
138 |
/** |
10 | 139 |
* Warn about use of unnecessary casts. |
140 |
*/ |
|
141 |
CAST("cast"), |
|
142 |
||
143 |
/** |
|
7624
c31b0ea95b37
6999210: javac should be able to warn of anomalous conditions in classfiles
jjg
parents:
7335
diff
changeset
|
144 |
* Warn about issues related to classfile contents |
c31b0ea95b37
6999210: javac should be able to warn of anomalous conditions in classfiles
jjg
parents:
7335
diff
changeset
|
145 |
*/ |
c31b0ea95b37
6999210: javac should be able to warn of anomalous conditions in classfiles
jjg
parents:
7335
diff
changeset
|
146 |
CLASSFILE("classfile"), |
c31b0ea95b37
6999210: javac should be able to warn of anomalous conditions in classfiles
jjg
parents:
7335
diff
changeset
|
147 |
|
c31b0ea95b37
6999210: javac should be able to warn of anomalous conditions in classfiles
jjg
parents:
7335
diff
changeset
|
148 |
/** |
10 | 149 |
* Warn about use of deprecated items. |
150 |
*/ |
|
151 |
DEPRECATION("deprecation"), |
|
152 |
||
153 |
/** |
|
154 |
* Warn about items which are documented with an {@code @deprecated} JavaDoc |
|
155 |
* comment, but which do not have {@code @Deprecated} annotation. |
|
156 |
*/ |
|
157 |
DEP_ANN("dep-ann"), |
|
158 |
||
159 |
/** |
|
160 |
* Warn about division by constant integer 0. |
|
161 |
*/ |
|
162 |
DIVZERO("divzero"), |
|
163 |
||
164 |
/** |
|
165 |
* Warn about empty statement after if. |
|
166 |
*/ |
|
167 |
EMPTY("empty"), |
|
168 |
||
169 |
/** |
|
170 |
* Warn about falling through from one case of a switch statement to the next. |
|
171 |
*/ |
|
172 |
FALLTHROUGH("fallthrough"), |
|
173 |
||
174 |
/** |
|
175 |
* Warn about finally clauses that do not terminate normally. |
|
176 |
*/ |
|
177 |
FINALLY("finally"), |
|
178 |
||
179 |
/** |
|
7335
8b390fd27190
6900037: javac should warn if earlier -source is used and bootclasspath not set
jjg
parents:
7211
diff
changeset
|
180 |
* Warn about issues relating to use of command line options |
8b390fd27190
6900037: javac should warn if earlier -source is used and bootclasspath not set
jjg
parents:
7211
diff
changeset
|
181 |
*/ |
8b390fd27190
6900037: javac should warn if earlier -source is used and bootclasspath not set
jjg
parents:
7211
diff
changeset
|
182 |
OPTIONS("options"), |
8b390fd27190
6900037: javac should warn if earlier -source is used and bootclasspath not set
jjg
parents:
7211
diff
changeset
|
183 |
|
8b390fd27190
6900037: javac should warn if earlier -source is used and bootclasspath not set
jjg
parents:
7211
diff
changeset
|
184 |
/** |
10 | 185 |
* Warn about issues regarding method overrides. |
186 |
*/ |
|
187 |
OVERRIDES("overrides"), |
|
188 |
||
189 |
/** |
|
190 |
* Warn about invalid path elements on the command line. |
|
191 |
* Such warnings cannot be suppressed with the SuppressWarnings |
|
192 |
* annotation. |
|
193 |
*/ |
|
194 |
PATH("path"), |
|
195 |
||
196 |
/** |
|
1360
fd574e4926e3
6739427: -Xlint:processing not recognized as an option
martin
parents:
1358
diff
changeset
|
197 |
* Warn about issues regarding annotation processing. |
fd574e4926e3
6739427: -Xlint:processing not recognized as an option
martin
parents:
1358
diff
changeset
|
198 |
*/ |
fd574e4926e3
6739427: -Xlint:processing not recognized as an option
martin
parents:
1358
diff
changeset
|
199 |
PROCESSING("processing"), |
fd574e4926e3
6739427: -Xlint:processing not recognized as an option
martin
parents:
1358
diff
changeset
|
200 |
|
fd574e4926e3
6739427: -Xlint:processing not recognized as an option
martin
parents:
1358
diff
changeset
|
201 |
/** |
7335
8b390fd27190
6900037: javac should warn if earlier -source is used and bootclasspath not set
jjg
parents:
7211
diff
changeset
|
202 |
* Warn about unchecked operations on raw types. |
8b390fd27190
6900037: javac should warn if earlier -source is used and bootclasspath not set
jjg
parents:
7211
diff
changeset
|
203 |
*/ |
8b390fd27190
6900037: javac should warn if earlier -source is used and bootclasspath not set
jjg
parents:
7211
diff
changeset
|
204 |
RAW("rawtypes"), |
8b390fd27190
6900037: javac should warn if earlier -source is used and bootclasspath not set
jjg
parents:
7211
diff
changeset
|
205 |
|
8b390fd27190
6900037: javac should warn if earlier -source is used and bootclasspath not set
jjg
parents:
7211
diff
changeset
|
206 |
/** |
10 | 207 |
* Warn about Serializable classes that do not provide a serial version ID. |
208 |
*/ |
|
209 |
SERIAL("serial"), |
|
210 |
||
211 |
/** |
|
7335
8b390fd27190
6900037: javac should warn if earlier -source is used and bootclasspath not set
jjg
parents:
7211
diff
changeset
|
212 |
* Warn about issues relating to use of statics |
8b390fd27190
6900037: javac should warn if earlier -source is used and bootclasspath not set
jjg
parents:
7211
diff
changeset
|
213 |
*/ |
8b390fd27190
6900037: javac should warn if earlier -source is used and bootclasspath not set
jjg
parents:
7211
diff
changeset
|
214 |
STATIC("static"), |
8b390fd27190
6900037: javac should warn if earlier -source is used and bootclasspath not set
jjg
parents:
7211
diff
changeset
|
215 |
|
8b390fd27190
6900037: javac should warn if earlier -source is used and bootclasspath not set
jjg
parents:
7211
diff
changeset
|
216 |
/** |
8b390fd27190
6900037: javac should warn if earlier -source is used and bootclasspath not set
jjg
parents:
7211
diff
changeset
|
217 |
* Warn about proprietary API that may be removed in a future release. |
8b390fd27190
6900037: javac should warn if earlier -source is used and bootclasspath not set
jjg
parents:
7211
diff
changeset
|
218 |
*/ |
8b390fd27190
6900037: javac should warn if earlier -source is used and bootclasspath not set
jjg
parents:
7211
diff
changeset
|
219 |
SUNAPI("sunapi", true), |
8b390fd27190
6900037: javac should warn if earlier -source is used and bootclasspath not set
jjg
parents:
7211
diff
changeset
|
220 |
|
8b390fd27190
6900037: javac should warn if earlier -source is used and bootclasspath not set
jjg
parents:
7211
diff
changeset
|
221 |
/** |
8b390fd27190
6900037: javac should warn if earlier -source is used and bootclasspath not set
jjg
parents:
7211
diff
changeset
|
222 |
* Warn about issues relating to use of try blocks (i.e. try-with-resources) |
8b390fd27190
6900037: javac should warn if earlier -source is used and bootclasspath not set
jjg
parents:
7211
diff
changeset
|
223 |
*/ |
8b390fd27190
6900037: javac should warn if earlier -source is used and bootclasspath not set
jjg
parents:
7211
diff
changeset
|
224 |
TRY("try"), |
8b390fd27190
6900037: javac should warn if earlier -source is used and bootclasspath not set
jjg
parents:
7211
diff
changeset
|
225 |
|
8b390fd27190
6900037: javac should warn if earlier -source is used and bootclasspath not set
jjg
parents:
7211
diff
changeset
|
226 |
/** |
10 | 227 |
* Warn about unchecked operations on raw types. |
228 |
*/ |
|
1358 | 229 |
UNCHECKED("unchecked"), |
230 |
||
231 |
/** |
|
5846
6df0e6bcb388
6945418: Project Coin: Simplified Varargs Method Invocation
mcimadamore
parents:
5520
diff
changeset
|
232 |
* Warn about potentially unsafe vararg methods |
6df0e6bcb388
6945418: Project Coin: Simplified Varargs Method Invocation
mcimadamore
parents:
5520
diff
changeset
|
233 |
*/ |
7335
8b390fd27190
6900037: javac should warn if earlier -source is used and bootclasspath not set
jjg
parents:
7211
diff
changeset
|
234 |
VARARGS("varargs"); |
10 | 235 |
|
236 |
LintCategory(String option) { |
|
3661 | 237 |
this(option, false); |
238 |
} |
|
239 |
||
240 |
LintCategory(String option, boolean hidden) { |
|
10 | 241 |
this.option = option; |
3661 | 242 |
this.hidden = hidden; |
10 | 243 |
map.put(option, this); |
244 |
} |
|
245 |
||
246 |
static LintCategory get(String option) { |
|
247 |
return map.get(option); |
|
248 |
} |
|
249 |
||
168 | 250 |
public final String option; |
3661 | 251 |
public final boolean hidden; |
10 | 252 |
}; |
253 |
||
254 |
/** |
|
255 |
* Checks if a warning category is enabled. A warning category may be enabled |
|
256 |
* on the command line, or by default, and can be temporarily disabled with |
|
257 |
* the SuppressWarnings annotation. |
|
258 |
*/ |
|
259 |
public boolean isEnabled(LintCategory lc) { |
|
260 |
return values.contains(lc); |
|
261 |
} |
|
262 |
||
263 |
/** |
|
264 |
* Checks is a warning category has been specifically suppressed, by means |
|
265 |
* of the SuppressWarnings annotation, or, in the case of the deprecated |
|
266 |
* category, whether it has been implicitly suppressed by virtue of the |
|
267 |
* current entity being itself deprecated. |
|
268 |
*/ |
|
269 |
public boolean isSuppressed(LintCategory lc) { |
|
270 |
return suppressedValues.contains(lc); |
|
271 |
} |
|
272 |
||
273 |
protected static class AugmentVisitor implements Attribute.Visitor { |
|
274 |
private final Context context; |
|
275 |
private Symtab syms; |
|
276 |
private Lint parent; |
|
277 |
private Lint lint; |
|
278 |
||
279 |
AugmentVisitor(Context context) { |
|
280 |
// to break an ugly sequence of initialization dependencies, |
|
281 |
// we defer the initialization of syms until it is needed |
|
282 |
this.context = context; |
|
283 |
} |
|
284 |
||
285 |
Lint augment(Lint parent, Attribute.Compound attr) { |
|
286 |
initSyms(); |
|
287 |
this.parent = parent; |
|
288 |
lint = null; |
|
289 |
attr.accept(this); |
|
290 |
return (lint == null ? parent : lint); |
|
291 |
} |
|
292 |
||
293 |
Lint augment(Lint parent, List<Attribute.Compound> attrs) { |
|
294 |
initSyms(); |
|
295 |
this.parent = parent; |
|
296 |
lint = null; |
|
297 |
for (Attribute.Compound a: attrs) { |
|
298 |
a.accept(this); |
|
299 |
} |
|
300 |
return (lint == null ? parent : lint); |
|
301 |
} |
|
302 |
||
303 |
private void initSyms() { |
|
304 |
if (syms == null) |
|
305 |
syms = Symtab.instance(context); |
|
306 |
} |
|
307 |
||
308 |
private void suppress(LintCategory lc) { |
|
309 |
if (lint == null) |
|
310 |
lint = new Lint(parent); |
|
311 |
lint.suppressedValues.add(lc); |
|
312 |
lint.values.remove(lc); |
|
313 |
} |
|
314 |
||
315 |
public void visitConstant(Attribute.Constant value) { |
|
316 |
if (value.type.tsym == syms.stringType.tsym) { |
|
317 |
LintCategory lc = LintCategory.get((String) (value.value)); |
|
318 |
if (lc != null) |
|
319 |
suppress(lc); |
|
320 |
} |
|
321 |
} |
|
322 |
||
323 |
public void visitClass(Attribute.Class clazz) { |
|
324 |
} |
|
325 |
||
326 |
// If we find a @SuppressWarnings annotation, then we continue |
|
327 |
// walking the tree, in order to suppress the individual warnings |
|
328 |
// specified in the @SuppressWarnings annotation. |
|
329 |
public void visitCompound(Attribute.Compound compound) { |
|
330 |
if (compound.type.tsym == syms.suppressWarningsType.tsym) { |
|
331 |
for (List<Pair<MethodSymbol,Attribute>> v = compound.values; |
|
332 |
v.nonEmpty(); v = v.tail) { |
|
333 |
Pair<MethodSymbol,Attribute> value = v.head; |
|
334 |
if (value.fst.name.toString().equals("value")) |
|
335 |
value.snd.accept(this); |
|
336 |
} |
|
337 |
||
338 |
} |
|
339 |
} |
|
340 |
||
341 |
public void visitArray(Attribute.Array array) { |
|
342 |
for (Attribute value : array.values) |
|
343 |
value.accept(this); |
|
344 |
} |
|
345 |
||
346 |
public void visitEnum(Attribute.Enum e) { |
|
347 |
} |
|
348 |
||
349 |
public void visitError(Attribute.Error e) { |
|
350 |
} |
|
351 |
}; |
|
352 |
} |