author | jjg |
Fri, 23 Feb 2018 13:42:04 -0800 | |
changeset 48945 | 6e6c777a37a2 |
parent 48085 | 8e96f85f2feb |
child 49197 | cc2673fa8c20 |
permissions | -rw-r--r-- |
10 | 1 |
/* |
48945
6e6c777a37a2
8186688: javax.lang.model.util.Elements.hides does not work correctly with interfaces
jjg
parents:
48085
diff
changeset
|
2 |
* Copyright (c) 2005, 2018, 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.model; |
|
27 |
||
43857
37614a3b7193
8173945: Add methods for Elements.getAll{Type, Package, Module}Elements
darcy
parents:
43591
diff
changeset
|
28 |
import java.util.Collections; |
43149 | 29 |
import java.util.HashSet; |
42824 | 30 |
import java.util.LinkedHashSet; |
10 | 31 |
import java.util.Map; |
42824 | 32 |
import java.util.Set; |
43149 | 33 |
import java.util.stream.Collectors; |
13077 | 34 |
|
42826 | 35 |
import javax.lang.model.AnnotatedConstruct; |
10 | 36 |
import javax.lang.model.SourceVersion; |
37 |
import javax.lang.model.element.*; |
|
38 |
import javax.lang.model.type.DeclaredType; |
|
39 |
import javax.lang.model.util.Elements; |
|
40 |
import javax.tools.JavaFileObject; |
|
13077 | 41 |
import static javax.lang.model.util.ElementFilter.methodsIn; |
42 |
||
36526 | 43 |
import com.sun.source.util.JavacTask; |
44 |
import com.sun.tools.javac.api.JavacTaskImpl; |
|
10 | 45 |
import com.sun.tools.javac.code.*; |
42826 | 46 |
import com.sun.tools.javac.code.Attribute.Compound; |
47 |
import com.sun.tools.javac.code.Directive.ExportsDirective; |
|
48 |
import com.sun.tools.javac.code.Directive.ExportsFlag; |
|
49 |
import com.sun.tools.javac.code.Directive.OpensDirective; |
|
50 |
import com.sun.tools.javac.code.Directive.OpensFlag; |
|
51 |
import com.sun.tools.javac.code.Directive.RequiresDirective; |
|
52 |
import com.sun.tools.javac.code.Directive.RequiresFlag; |
|
25443
9187d77f2c64
8031569: Refactor javac scope implementation to enable lazy imports
jlahoda
parents:
24069
diff
changeset
|
53 |
import com.sun.tools.javac.code.Scope.WriteableScope; |
48054
702043a4cdeb
8189749: Devise strategy for making source level checks more uniform
mcimadamore
parents:
47216
diff
changeset
|
54 |
import com.sun.tools.javac.code.Source.Feature; |
10 | 55 |
import com.sun.tools.javac.code.Symbol.*; |
56 |
import com.sun.tools.javac.comp.AttrContext; |
|
57 |
import com.sun.tools.javac.comp.Enter; |
|
58 |
import com.sun.tools.javac.comp.Env; |
|
59 |
import com.sun.tools.javac.main.JavaCompiler; |
|
60 |
import com.sun.tools.javac.processing.PrintingProcessor; |
|
61 |
import com.sun.tools.javac.tree.JCTree; |
|
62 |
import com.sun.tools.javac.tree.JCTree.*; |
|
63 |
import com.sun.tools.javac.tree.TreeInfo; |
|
64 |
import com.sun.tools.javac.tree.TreeScanner; |
|
1260
a772ba9ba43d
6574134: Allow for alternative implementation of Name Table with garbage collection of name bytes
jjg
parents:
10
diff
changeset
|
65 |
import com.sun.tools.javac.util.*; |
26266
2d24bda701dc
8056061: Mark implementations of public interfaces with an annotation
jlahoda
parents:
25874
diff
changeset
|
66 |
import com.sun.tools.javac.util.DefinedBy.Api; |
10 | 67 |
import com.sun.tools.javac.util.Name; |
27224
228abfa87080
8054457: Refactor Symbol kinds from small ints to an enum
emc
parents:
26266
diff
changeset
|
68 |
import static com.sun.tools.javac.code.Kinds.Kind.*; |
25443
9187d77f2c64
8031569: Refactor javac scope implementation to enable lazy imports
jlahoda
parents:
24069
diff
changeset
|
69 |
import static com.sun.tools.javac.code.Scope.LookupKind.NON_RECURSIVE; |
14359
d4099818ab70
7200915: convert TypeTags from a series of small ints to an enum
jjg
parents:
13077
diff
changeset
|
70 |
import static com.sun.tools.javac.code.TypeTag.CLASS; |
36526 | 71 |
import com.sun.tools.javac.comp.Modules; |
42824 | 72 |
import com.sun.tools.javac.comp.Resolve; |
73 |
import com.sun.tools.javac.comp.Resolve.RecoveryLoadClass; |
|
43149 | 74 |
import com.sun.tools.javac.resources.CompilerProperties.Notes; |
10950 | 75 |
import static com.sun.tools.javac.tree.JCTree.Tag.*; |
10 | 76 |
|
77 |
/** |
|
78 |
* Utility methods for operating on program elements. |
|
79 |
* |
|
5847
1908176fd6e3
6944312: Potential rebranding issues in openjdk/langtools repository sources
jjg
parents:
5520
diff
changeset
|
80 |
* <p><b>This is NOT part of any supported API. |
10 | 81 |
* If you write code that depends on this, you do so at your own |
82 |
* risk. This code and its internal interfaces are subject to change |
|
83 |
* or deletion without notice.</b></p> |
|
84 |
*/ |
|
85 |
public class JavacElements implements Elements { |
|
86 |
||
23810
b92eb80925f0
8038455: Use single Context for all rounds of annotation processing
jlahoda
parents:
23122
diff
changeset
|
87 |
private final JavaCompiler javaCompiler; |
b92eb80925f0
8038455: Use single Context for all rounds of annotation processing
jlahoda
parents:
23122
diff
changeset
|
88 |
private final Symtab syms; |
36526 | 89 |
private final Modules modules; |
23810
b92eb80925f0
8038455: Use single Context for all rounds of annotation processing
jlahoda
parents:
23122
diff
changeset
|
90 |
private final Names names; |
b92eb80925f0
8038455: Use single Context for all rounds of annotation processing
jlahoda
parents:
23122
diff
changeset
|
91 |
private final Types types; |
b92eb80925f0
8038455: Use single Context for all rounds of annotation processing
jlahoda
parents:
23122
diff
changeset
|
92 |
private final Enter enter; |
42824 | 93 |
private final Resolve resolve; |
36526 | 94 |
private final JavacTaskImpl javacTaskImpl; |
43149 | 95 |
private final Log log; |
96 |
private final boolean allowModules; |
|
10 | 97 |
|
98 |
public static JavacElements instance(Context context) { |
|
6924
ef7a9281ad2f
6988836: A new JavacElements is created for each round of annotation processing
jjg
parents:
5847
diff
changeset
|
99 |
JavacElements instance = context.get(JavacElements.class); |
ef7a9281ad2f
6988836: A new JavacElements is created for each round of annotation processing
jjg
parents:
5847
diff
changeset
|
100 |
if (instance == null) |
10 | 101 |
instance = new JavacElements(context); |
102 |
return instance; |
|
103 |
} |
|
104 |
||
6924
ef7a9281ad2f
6988836: A new JavacElements is created for each round of annotation processing
jjg
parents:
5847
diff
changeset
|
105 |
protected JavacElements(Context context) { |
ef7a9281ad2f
6988836: A new JavacElements is created for each round of annotation processing
jjg
parents:
5847
diff
changeset
|
106 |
context.put(JavacElements.class, this); |
10 | 107 |
javaCompiler = JavaCompiler.instance(context); |
108 |
syms = Symtab.instance(context); |
|
36526 | 109 |
modules = Modules.instance(context); |
1260
a772ba9ba43d
6574134: Allow for alternative implementation of Name Table with garbage collection of name bytes
jjg
parents:
10
diff
changeset
|
110 |
names = Names.instance(context); |
10 | 111 |
types = Types.instance(context); |
112 |
enter = Enter.instance(context); |
|
42824 | 113 |
resolve = Resolve.instance(context); |
36526 | 114 |
JavacTask t = context.get(JavacTask.class); |
115 |
javacTaskImpl = t instanceof JavacTaskImpl ? (JavacTaskImpl) t : null; |
|
43149 | 116 |
log = Log.instance(context); |
117 |
Source source = Source.instance(context); |
|
48054
702043a4cdeb
8189749: Devise strategy for making source level checks more uniform
mcimadamore
parents:
47216
diff
changeset
|
118 |
allowModules = Feature.MODULES.allowedInSource(source); |
36526 | 119 |
} |
120 |
||
121 |
@Override @DefinedBy(Api.LANGUAGE_MODEL) |
|
43857
37614a3b7193
8173945: Add methods for Elements.getAll{Type, Package, Module}Elements
darcy
parents:
43591
diff
changeset
|
122 |
public Set<? extends ModuleElement> getAllModuleElements() { |
37614a3b7193
8173945: Add methods for Elements.getAll{Type, Package, Module}Elements
darcy
parents:
43591
diff
changeset
|
123 |
if (allowModules) |
37614a3b7193
8173945: Add methods for Elements.getAll{Type, Package, Module}Elements
darcy
parents:
43591
diff
changeset
|
124 |
return Collections.unmodifiableSet(modules.allModules()); |
37614a3b7193
8173945: Add methods for Elements.getAll{Type, Package, Module}Elements
darcy
parents:
43591
diff
changeset
|
125 |
else |
37614a3b7193
8173945: Add methods for Elements.getAll{Type, Package, Module}Elements
darcy
parents:
43591
diff
changeset
|
126 |
return Collections.emptySet(); |
37614a3b7193
8173945: Add methods for Elements.getAll{Type, Package, Module}Elements
darcy
parents:
43591
diff
changeset
|
127 |
} |
37614a3b7193
8173945: Add methods for Elements.getAll{Type, Package, Module}Elements
darcy
parents:
43591
diff
changeset
|
128 |
|
37614a3b7193
8173945: Add methods for Elements.getAll{Type, Package, Module}Elements
darcy
parents:
43591
diff
changeset
|
129 |
@Override @DefinedBy(Api.LANGUAGE_MODEL) |
36526 | 130 |
public ModuleSymbol getModuleElement(CharSequence name) { |
131 |
ensureEntered("getModuleElement"); |
|
42824 | 132 |
if (modules.getDefaultModule() == syms.noModule) |
133 |
return null; |
|
36526 | 134 |
String strName = name.toString(); |
135 |
if (strName.equals("")) |
|
136 |
return syms.unnamedModule; |
|
137 |
return modules.getObservableModule(names.fromString(strName)); |
|
10 | 138 |
} |
139 |
||
37848
3c8ff4204d2d
8154956: Module system implementation refresh (4/2016)
alanb
parents:
36779
diff
changeset
|
140 |
@Override @DefinedBy(Api.LANGUAGE_MODEL) |
10 | 141 |
public PackageSymbol getPackageElement(CharSequence name) { |
42824 | 142 |
return doGetPackageElement(null, name); |
36526 | 143 |
} |
144 |
||
37848
3c8ff4204d2d
8154956: Module system implementation refresh (4/2016)
alanb
parents:
36779
diff
changeset
|
145 |
@Override @DefinedBy(Api.LANGUAGE_MODEL) |
36526 | 146 |
public PackageSymbol getPackageElement(ModuleElement module, CharSequence name) { |
42824 | 147 |
module.getClass(); |
148 |
return doGetPackageElement(module, name); |
|
149 |
} |
|
150 |
||
151 |
private PackageSymbol doGetPackageElement(ModuleElement module, CharSequence name) { |
|
152 |
ensureEntered("getPackageElement"); |
|
43149 | 153 |
return doGetElement(module, "getPackageElement", name, PackageSymbol.class); |
10 | 154 |
} |
155 |
||
37848
3c8ff4204d2d
8154956: Module system implementation refresh (4/2016)
alanb
parents:
36779
diff
changeset
|
156 |
@Override @DefinedBy(Api.LANGUAGE_MODEL) |
10 | 157 |
public ClassSymbol getTypeElement(CharSequence name) { |
42824 | 158 |
return doGetTypeElement(null, name); |
36526 | 159 |
} |
160 |
||
37848
3c8ff4204d2d
8154956: Module system implementation refresh (4/2016)
alanb
parents:
36779
diff
changeset
|
161 |
@Override @DefinedBy(Api.LANGUAGE_MODEL) |
36526 | 162 |
public ClassSymbol getTypeElement(ModuleElement module, CharSequence name) { |
42824 | 163 |
module.getClass(); |
164 |
||
165 |
return doGetTypeElement(module, name); |
|
166 |
} |
|
167 |
||
168 |
private ClassSymbol doGetTypeElement(ModuleElement module, CharSequence name) { |
|
169 |
ensureEntered("getTypeElement"); |
|
43149 | 170 |
return doGetElement(module, "getTypeElement", name, ClassSymbol.class); |
42824 | 171 |
} |
172 |
||
43149 | 173 |
private <S extends Symbol> S doGetElement(ModuleElement module, String methodName, |
174 |
CharSequence name, Class<S> clazz) { |
|
10 | 175 |
String strName = name.toString(); |
43369
aafd33c96bac
8173068: ElementUtils getPackageElement does not allow for an unnamed package
jlahoda
parents:
43272
diff
changeset
|
176 |
if (!SourceVersion.isName(strName) && (!strName.isEmpty() || clazz == ClassSymbol.class)) { |
42824 | 177 |
return null; |
178 |
} |
|
179 |
if (module == null) { |
|
43149 | 180 |
return unboundNameToSymbol(methodName, strName, clazz); |
42824 | 181 |
} else { |
182 |
return nameToSymbol((ModuleSymbol) module, strName, clazz); |
|
183 |
} |
|
184 |
} |
|
185 |
||
43149 | 186 |
private final Set<String> alreadyWarnedDuplicates = new HashSet<>(); |
187 |
||
188 |
private <S extends Symbol> S unboundNameToSymbol(String methodName, |
|
189 |
String nameStr, |
|
190 |
Class<S> clazz) { |
|
42824 | 191 |
if (modules.getDefaultModule() == syms.noModule) { //not a modular mode: |
192 |
return nameToSymbol(syms.noModule, nameStr, clazz); |
|
193 |
} |
|
194 |
||
43272
421ae1e38d2d
8173117: Compilation significantly slower after JDK-8169197
jlahoda
parents:
43149
diff
changeset
|
195 |
Set<S> found = new LinkedHashSet<>(); |
421ae1e38d2d
8173117: Compilation significantly slower after JDK-8169197
jlahoda
parents:
43149
diff
changeset
|
196 |
|
421ae1e38d2d
8173117: Compilation significantly slower after JDK-8169197
jlahoda
parents:
43149
diff
changeset
|
197 |
for (ModuleSymbol msym : modules.allModules()) { |
421ae1e38d2d
8173117: Compilation significantly slower after JDK-8169197
jlahoda
parents:
43149
diff
changeset
|
198 |
S sym = nameToSymbol(msym, nameStr, clazz); |
42824 | 199 |
|
48085 | 200 |
if (sym == null) |
201 |
continue; |
|
202 |
||
203 |
if (clazz == ClassSymbol.class) { |
|
204 |
// Always include classes |
|
205 |
found.add(sym); |
|
206 |
} else if (clazz == PackageSymbol.class) { |
|
207 |
// In module mode, ignore the "spurious" empty packages that "enclose" module-specific packages. |
|
208 |
// For example, if a module contains classes or package info in package p.q.r, it will also appear |
|
209 |
// to have additional packages p.q and p, even though these packages have no content other |
|
210 |
// than the subpackage. We don't want those empty packages showing up in searches for p or p.q. |
|
211 |
if (!sym.members().isEmpty() || ((PackageSymbol) sym).package_info != null) { |
|
43272
421ae1e38d2d
8173117: Compilation significantly slower after JDK-8169197
jlahoda
parents:
43149
diff
changeset
|
212 |
found.add(sym); |
42824 | 213 |
} |
214 |
} |
|
43272
421ae1e38d2d
8173117: Compilation significantly slower after JDK-8169197
jlahoda
parents:
43149
diff
changeset
|
215 |
} |
42824 | 216 |
|
43272
421ae1e38d2d
8173117: Compilation significantly slower after JDK-8169197
jlahoda
parents:
43149
diff
changeset
|
217 |
if (found.size() == 1) { |
421ae1e38d2d
8173117: Compilation significantly slower after JDK-8169197
jlahoda
parents:
43149
diff
changeset
|
218 |
return found.iterator().next(); |
421ae1e38d2d
8173117: Compilation significantly slower after JDK-8169197
jlahoda
parents:
43149
diff
changeset
|
219 |
} else if (found.size() > 1) { |
421ae1e38d2d
8173117: Compilation significantly slower after JDK-8169197
jlahoda
parents:
43149
diff
changeset
|
220 |
//more than one element found, produce a note: |
421ae1e38d2d
8173117: Compilation significantly slower after JDK-8169197
jlahoda
parents:
43149
diff
changeset
|
221 |
if (alreadyWarnedDuplicates.add(methodName + ":" + nameStr)) { |
421ae1e38d2d
8173117: Compilation significantly slower after JDK-8169197
jlahoda
parents:
43149
diff
changeset
|
222 |
String moduleNames = found.stream() |
421ae1e38d2d
8173117: Compilation significantly slower after JDK-8169197
jlahoda
parents:
43149
diff
changeset
|
223 |
.map(s -> s.packge().modle) |
421ae1e38d2d
8173117: Compilation significantly slower after JDK-8169197
jlahoda
parents:
43149
diff
changeset
|
224 |
.map(m -> m.toString()) |
421ae1e38d2d
8173117: Compilation significantly slower after JDK-8169197
jlahoda
parents:
43149
diff
changeset
|
225 |
.collect(Collectors.joining(", ")); |
421ae1e38d2d
8173117: Compilation significantly slower after JDK-8169197
jlahoda
parents:
43149
diff
changeset
|
226 |
log.note(Notes.MultipleElements(methodName, nameStr, moduleNames)); |
42824 | 227 |
} |
43272
421ae1e38d2d
8173117: Compilation significantly slower after JDK-8169197
jlahoda
parents:
43149
diff
changeset
|
228 |
return null; |
421ae1e38d2d
8173117: Compilation significantly slower after JDK-8169197
jlahoda
parents:
43149
diff
changeset
|
229 |
} else { |
421ae1e38d2d
8173117: Compilation significantly slower after JDK-8169197
jlahoda
parents:
43149
diff
changeset
|
230 |
//not found, or more than one element found: |
421ae1e38d2d
8173117: Compilation significantly slower after JDK-8169197
jlahoda
parents:
43149
diff
changeset
|
231 |
return null; |
42824 | 232 |
} |
10 | 233 |
} |
234 |
||
235 |
/** |
|
36526 | 236 |
* Returns a symbol given the type's or package's canonical name, |
10 | 237 |
* or null if the name isn't found. |
238 |
*/ |
|
36526 | 239 |
private <S extends Symbol> S nameToSymbol(ModuleSymbol module, String nameStr, Class<S> clazz) { |
10 | 240 |
Name name = names.fromString(nameStr); |
241 |
// First check cache. |
|
242 |
Symbol sym = (clazz == ClassSymbol.class) |
|
36526 | 243 |
? syms.getClass(module, name) |
244 |
: syms.lookupPackage(module, name); |
|
10 | 245 |
|
246 |
try { |
|
247 |
if (sym == null) |
|
36526 | 248 |
sym = javaCompiler.resolveIdent(module, nameStr); |
10 | 249 |
|
250 |
sym.complete(); |
|
251 |
||
27224
228abfa87080
8054457: Refactor Symbol kinds from small ints to an enum
emc
parents:
26266
diff
changeset
|
252 |
return (sym.kind != ERR && |
10 | 253 |
sym.exists() && |
254 |
clazz.isInstance(sym) && |
|
255 |
name.equals(sym.getQualifiedName())) |
|
256 |
? clazz.cast(sym) |
|
257 |
: null; |
|
258 |
} catch (CompletionFailure e) { |
|
259 |
return null; |
|
260 |
} |
|
261 |
} |
|
262 |
||
263 |
/** |
|
264 |
* Returns the tree for an annotation given the annotated element |
|
265 |
* and the element's own tree. Returns null if the tree cannot be found. |
|
266 |
*/ |
|
267 |
private JCTree matchAnnoToTree(AnnotationMirror findme, |
|
268 |
Element e, JCTree tree) { |
|
269 |
Symbol sym = cast(Symbol.class, e); |
|
270 |
class Vis extends JCTree.Visitor { |
|
271 |
List<JCAnnotation> result = null; |
|
24069 | 272 |
public void visitPackageDef(JCPackageDecl tree) { |
273 |
result = tree.annotations; |
|
10 | 274 |
} |
275 |
public void visitClassDef(JCClassDecl tree) { |
|
276 |
result = tree.mods.annotations; |
|
277 |
} |
|
278 |
public void visitMethodDef(JCMethodDecl tree) { |
|
279 |
result = tree.mods.annotations; |
|
280 |
} |
|
281 |
public void visitVarDef(JCVariableDecl tree) { |
|
282 |
result = tree.mods.annotations; |
|
283 |
} |
|
23122
02c931d49ad2
6411385: Trees.getPath does not work for constructors
jlahoda
parents:
22163
diff
changeset
|
284 |
@Override |
02c931d49ad2
6411385: Trees.getPath does not work for constructors
jlahoda
parents:
22163
diff
changeset
|
285 |
public void visitTypeParameter(JCTypeParameter tree) { |
02c931d49ad2
6411385: Trees.getPath does not work for constructors
jlahoda
parents:
22163
diff
changeset
|
286 |
result = tree.annotations; |
02c931d49ad2
6411385: Trees.getPath does not work for constructors
jlahoda
parents:
22163
diff
changeset
|
287 |
} |
10 | 288 |
} |
289 |
Vis vis = new Vis(); |
|
290 |
tree.accept(vis); |
|
291 |
if (vis.result == null) |
|
292 |
return null; |
|
15355
a4757c33cae9
7193719: Support repeating annotations in javax.lang.model
jfranck
parents:
14359
diff
changeset
|
293 |
|
23122
02c931d49ad2
6411385: Trees.getPath does not work for constructors
jlahoda
parents:
22163
diff
changeset
|
294 |
List<Attribute.Compound> annos = sym.getAnnotationMirrors(); |
10 | 295 |
return matchAnnoToTree(cast(Attribute.Compound.class, findme), |
15355
a4757c33cae9
7193719: Support repeating annotations in javax.lang.model
jfranck
parents:
14359
diff
changeset
|
296 |
annos, |
10 | 297 |
vis.result); |
298 |
} |
|
299 |
||
300 |
/** |
|
301 |
* Returns the tree for an annotation given a list of annotations |
|
302 |
* in which to search (recursively) and their corresponding trees. |
|
303 |
* Returns null if the tree cannot be found. |
|
304 |
*/ |
|
305 |
private JCTree matchAnnoToTree(Attribute.Compound findme, |
|
306 |
List<Attribute.Compound> annos, |
|
307 |
List<JCAnnotation> trees) { |
|
308 |
for (Attribute.Compound anno : annos) { |
|
309 |
for (JCAnnotation tree : trees) { |
|
43591
62824732af55
6388543: improve accuracy of source positions for AnnotationValue param of Messager.printMessage
cushon
parents:
43369
diff
changeset
|
310 |
if (tree.type.tsym != anno.type.tsym) |
62824732af55
6388543: improve accuracy of source positions for AnnotationValue param of Messager.printMessage
cushon
parents:
43369
diff
changeset
|
311 |
continue; |
62824732af55
6388543: improve accuracy of source positions for AnnotationValue param of Messager.printMessage
cushon
parents:
43369
diff
changeset
|
312 |
JCTree match = matchAttributeToTree(findme, anno, tree); |
10 | 313 |
if (match != null) |
314 |
return match; |
|
315 |
} |
|
316 |
} |
|
317 |
return null; |
|
318 |
} |
|
319 |
||
320 |
/** |
|
43591
62824732af55
6388543: improve accuracy of source positions for AnnotationValue param of Messager.printMessage
cushon
parents:
43369
diff
changeset
|
321 |
* Returns the tree for an attribute given an enclosing attribute to |
62824732af55
6388543: improve accuracy of source positions for AnnotationValue param of Messager.printMessage
cushon
parents:
43369
diff
changeset
|
322 |
* search (recursively) and the enclosing attribute's corresponding tree. |
10 | 323 |
* Returns null if the tree cannot be found. |
324 |
*/ |
|
43591
62824732af55
6388543: improve accuracy of source positions for AnnotationValue param of Messager.printMessage
cushon
parents:
43369
diff
changeset
|
325 |
private JCTree matchAttributeToTree(final Attribute findme, |
62824732af55
6388543: improve accuracy of source positions for AnnotationValue param of Messager.printMessage
cushon
parents:
43369
diff
changeset
|
326 |
final Attribute attr, |
62824732af55
6388543: improve accuracy of source positions for AnnotationValue param of Messager.printMessage
cushon
parents:
43369
diff
changeset
|
327 |
final JCTree tree) { |
10 | 328 |
if (attr == findme) |
43591
62824732af55
6388543: improve accuracy of source positions for AnnotationValue param of Messager.printMessage
cushon
parents:
43369
diff
changeset
|
329 |
return tree; |
10 | 330 |
|
331 |
class Vis implements Attribute.Visitor { |
|
332 |
JCTree result = null; |
|
333 |
public void visitConstant(Attribute.Constant value) { |
|
334 |
} |
|
335 |
public void visitClass(Attribute.Class clazz) { |
|
336 |
} |
|
337 |
public void visitCompound(Attribute.Compound anno) { |
|
338 |
for (Pair<MethodSymbol, Attribute> pair : anno.values) { |
|
339 |
JCExpression expr = scanForAssign(pair.fst, tree); |
|
340 |
if (expr != null) { |
|
43591
62824732af55
6388543: improve accuracy of source positions for AnnotationValue param of Messager.printMessage
cushon
parents:
43369
diff
changeset
|
341 |
JCTree match = matchAttributeToTree(findme, pair.snd, expr); |
10 | 342 |
if (match != null) { |
343 |
result = match; |
|
344 |
return; |
|
345 |
} |
|
346 |
} |
|
347 |
} |
|
348 |
} |
|
349 |
public void visitArray(Attribute.Array array) { |
|
43591
62824732af55
6388543: improve accuracy of source positions for AnnotationValue param of Messager.printMessage
cushon
parents:
43369
diff
changeset
|
350 |
if (tree.hasTag(NEWARRAY)) { |
62824732af55
6388543: improve accuracy of source positions for AnnotationValue param of Messager.printMessage
cushon
parents:
43369
diff
changeset
|
351 |
List<JCExpression> elems = ((JCNewArray)tree).elems; |
10 | 352 |
for (Attribute value : array.values) { |
43591
62824732af55
6388543: improve accuracy of source positions for AnnotationValue param of Messager.printMessage
cushon
parents:
43369
diff
changeset
|
353 |
JCTree match = matchAttributeToTree(findme, value, elems.head); |
62824732af55
6388543: improve accuracy of source positions for AnnotationValue param of Messager.printMessage
cushon
parents:
43369
diff
changeset
|
354 |
if (match != null) { |
62824732af55
6388543: improve accuracy of source positions for AnnotationValue param of Messager.printMessage
cushon
parents:
43369
diff
changeset
|
355 |
result = match; |
10 | 356 |
return; |
357 |
} |
|
358 |
elems = elems.tail; |
|
359 |
} |
|
43591
62824732af55
6388543: improve accuracy of source positions for AnnotationValue param of Messager.printMessage
cushon
parents:
43369
diff
changeset
|
360 |
} else if (array.values.length == 1) { |
62824732af55
6388543: improve accuracy of source positions for AnnotationValue param of Messager.printMessage
cushon
parents:
43369
diff
changeset
|
361 |
// the tree may not be a NEWARRAY for single-element array initializers |
62824732af55
6388543: improve accuracy of source positions for AnnotationValue param of Messager.printMessage
cushon
parents:
43369
diff
changeset
|
362 |
result = matchAttributeToTree(findme, array.values[0], tree); |
10 | 363 |
} |
364 |
} |
|
365 |
public void visitEnum(Attribute.Enum e) { |
|
366 |
} |
|
367 |
public void visitError(Attribute.Error e) { |
|
368 |
} |
|
369 |
} |
|
370 |
Vis vis = new Vis(); |
|
371 |
attr.accept(vis); |
|
372 |
return vis.result; |
|
373 |
} |
|
374 |
||
375 |
/** |
|
376 |
* Scans for a JCAssign node with a LHS matching a given |
|
377 |
* symbol, and returns its RHS. Does not scan nested JCAnnotations. |
|
378 |
*/ |
|
379 |
private JCExpression scanForAssign(final MethodSymbol sym, |
|
380 |
final JCTree tree) { |
|
381 |
class TS extends TreeScanner { |
|
382 |
JCExpression result = null; |
|
383 |
public void scan(JCTree t) { |
|
384 |
if (t != null && result == null) |
|
385 |
t.accept(this); |
|
386 |
} |
|
387 |
public void visitAnnotation(JCAnnotation t) { |
|
388 |
if (t == tree) |
|
389 |
scan(t.args); |
|
390 |
} |
|
391 |
public void visitAssign(JCAssign t) { |
|
10950 | 392 |
if (t.lhs.hasTag(IDENT)) { |
10 | 393 |
JCIdent ident = (JCIdent) t.lhs; |
394 |
if (ident.sym == sym) |
|
395 |
result = t.rhs; |
|
396 |
} |
|
397 |
} |
|
398 |
} |
|
399 |
TS scanner = new TS(); |
|
400 |
tree.accept(scanner); |
|
401 |
return scanner.result; |
|
402 |
} |
|
403 |
||
404 |
/** |
|
405 |
* Returns the tree node corresponding to this element, or null |
|
406 |
* if none can be found. |
|
407 |
*/ |
|
408 |
public JCTree getTree(Element e) { |
|
409 |
Pair<JCTree, ?> treeTop = getTreeAndTopLevel(e); |
|
410 |
return (treeTop != null) ? treeTop.fst : null; |
|
411 |
} |
|
412 |
||
26266
2d24bda701dc
8056061: Mark implementations of public interfaces with an annotation
jlahoda
parents:
25874
diff
changeset
|
413 |
@DefinedBy(Api.LANGUAGE_MODEL) |
10 | 414 |
public String getDocComment(Element e) { |
415 |
// Our doc comment is contained in a map in our toplevel, |
|
416 |
// indexed by our tree. Find our enter environment, which gives |
|
417 |
// us our toplevel. It also gives us a tree that contains our |
|
418 |
// tree: walk it to find our tree. This is painful. |
|
419 |
Pair<JCTree, JCCompilationUnit> treeTop = getTreeAndTopLevel(e); |
|
420 |
if (treeTop == null) |
|
421 |
return null; |
|
422 |
JCTree tree = treeTop.fst; |
|
423 |
JCCompilationUnit toplevel = treeTop.snd; |
|
424 |
if (toplevel.docComments == null) |
|
425 |
return null; |
|
13077 | 426 |
return toplevel.docComments.getCommentText(tree); |
10 | 427 |
} |
428 |
||
26266
2d24bda701dc
8056061: Mark implementations of public interfaces with an annotation
jlahoda
parents:
25874
diff
changeset
|
429 |
@DefinedBy(Api.LANGUAGE_MODEL) |
10 | 430 |
public PackageElement getPackageOf(Element e) { |
431 |
return cast(Symbol.class, e).packge(); |
|
432 |
} |
|
433 |
||
26266
2d24bda701dc
8056061: Mark implementations of public interfaces with an annotation
jlahoda
parents:
25874
diff
changeset
|
434 |
@DefinedBy(Api.LANGUAGE_MODEL) |
36526 | 435 |
public ModuleElement getModuleOf(Element e) { |
436 |
Symbol sym = cast(Symbol.class, e); |
|
42824 | 437 |
if (modules.getDefaultModule() == syms.noModule) |
438 |
return null; |
|
36526 | 439 |
return (sym.kind == MDL) ? ((ModuleElement) e) : sym.packge().modle; |
440 |
} |
|
441 |
||
442 |
@DefinedBy(Api.LANGUAGE_MODEL) |
|
10 | 443 |
public boolean isDeprecated(Element e) { |
444 |
Symbol sym = cast(Symbol.class, e); |
|
42407
f3702cff2933
8169069: Module system implementation refresh (11/2016)
alanb
parents:
37848
diff
changeset
|
445 |
sym.complete(); |
f3702cff2933
8169069: Module system implementation refresh (11/2016)
alanb
parents:
37848
diff
changeset
|
446 |
return sym.isDeprecated(); |
10 | 447 |
} |
448 |
||
42826 | 449 |
@Override @DefinedBy(Api.LANGUAGE_MODEL) |
450 |
public Origin getOrigin(Element e) { |
|
451 |
Symbol sym = cast(Symbol.class, e); |
|
452 |
if ((sym.flags() & Flags.GENERATEDCONSTR) != 0) |
|
453 |
return Origin.MANDATED; |
|
454 |
//TypeElement.getEnclosedElements does not return synthetic elements, |
|
455 |
//and most synthetic elements are not read from the classfile anyway: |
|
456 |
return Origin.EXPLICIT; |
|
457 |
} |
|
458 |
||
459 |
@Override @DefinedBy(Api.LANGUAGE_MODEL) |
|
460 |
public Origin getOrigin(AnnotatedConstruct c, AnnotationMirror a) { |
|
461 |
Compound ac = cast(Compound.class, a); |
|
462 |
if (ac.isSynthesized()) |
|
463 |
return Origin.MANDATED; |
|
464 |
return Origin.EXPLICIT; |
|
465 |
} |
|
466 |
||
467 |
@Override @DefinedBy(Api.LANGUAGE_MODEL) |
|
468 |
public Origin getOrigin(ModuleElement m, ModuleElement.Directive directive) { |
|
469 |
switch (directive.getKind()) { |
|
470 |
case REQUIRES: |
|
471 |
RequiresDirective rd = cast(RequiresDirective.class, directive); |
|
472 |
if (rd.flags.contains(RequiresFlag.MANDATED)) |
|
473 |
return Origin.MANDATED; |
|
474 |
if (rd.flags.contains(RequiresFlag.SYNTHETIC)) |
|
475 |
return Origin.SYNTHETIC; |
|
476 |
return Origin.EXPLICIT; |
|
477 |
case EXPORTS: |
|
478 |
ExportsDirective ed = cast(ExportsDirective.class, directive); |
|
479 |
if (ed.flags.contains(ExportsFlag.MANDATED)) |
|
480 |
return Origin.MANDATED; |
|
481 |
if (ed.flags.contains(ExportsFlag.SYNTHETIC)) |
|
482 |
return Origin.SYNTHETIC; |
|
483 |
return Origin.EXPLICIT; |
|
484 |
case OPENS: |
|
485 |
OpensDirective od = cast(OpensDirective.class, directive); |
|
486 |
if (od.flags.contains(OpensFlag.MANDATED)) |
|
487 |
return Origin.MANDATED; |
|
488 |
if (od.flags.contains(OpensFlag.SYNTHETIC)) |
|
489 |
return Origin.SYNTHETIC; |
|
490 |
return Origin.EXPLICIT; |
|
491 |
} |
|
492 |
return Origin.EXPLICIT; |
|
493 |
} |
|
494 |
||
26266
2d24bda701dc
8056061: Mark implementations of public interfaces with an annotation
jlahoda
parents:
25874
diff
changeset
|
495 |
@DefinedBy(Api.LANGUAGE_MODEL) |
10 | 496 |
public Name getBinaryName(TypeElement type) { |
497 |
return cast(TypeSymbol.class, type).flatName(); |
|
498 |
} |
|
499 |
||
26266
2d24bda701dc
8056061: Mark implementations of public interfaces with an annotation
jlahoda
parents:
25874
diff
changeset
|
500 |
@DefinedBy(Api.LANGUAGE_MODEL) |
10 | 501 |
public Map<MethodSymbol, Attribute> getElementValuesWithDefaults( |
502 |
AnnotationMirror a) { |
|
503 |
Attribute.Compound anno = cast(Attribute.Compound.class, a); |
|
504 |
DeclaredType annotype = a.getAnnotationType(); |
|
505 |
Map<MethodSymbol, Attribute> valmap = anno.getElementValues(); |
|
506 |
||
507 |
for (ExecutableElement ex : |
|
508 |
methodsIn(annotype.asElement().getEnclosedElements())) { |
|
509 |
MethodSymbol meth = (MethodSymbol) ex; |
|
510 |
Attribute defaultValue = meth.getDefaultValue(); |
|
511 |
if (defaultValue != null && !valmap.containsKey(meth)) { |
|
512 |
valmap.put(meth, defaultValue); |
|
513 |
} |
|
514 |
} |
|
515 |
return valmap; |
|
516 |
} |
|
517 |
||
518 |
/** |
|
519 |
* {@inheritDoc} |
|
520 |
*/ |
|
26266
2d24bda701dc
8056061: Mark implementations of public interfaces with an annotation
jlahoda
parents:
25874
diff
changeset
|
521 |
@DefinedBy(Api.LANGUAGE_MODEL) |
10 | 522 |
public FilteredMemberList getAllMembers(TypeElement element) { |
523 |
Symbol sym = cast(Symbol.class, element); |
|
25443
9187d77f2c64
8031569: Refactor javac scope implementation to enable lazy imports
jlahoda
parents:
24069
diff
changeset
|
524 |
WriteableScope scope = sym.members().dupUnshared(); |
10 | 525 |
List<Type> closure = types.closure(sym.asType()); |
526 |
for (Type t : closure) |
|
527 |
addMembers(scope, t); |
|
528 |
return new FilteredMemberList(scope); |
|
529 |
} |
|
530 |
// where |
|
25443
9187d77f2c64
8031569: Refactor javac scope implementation to enable lazy imports
jlahoda
parents:
24069
diff
changeset
|
531 |
private void addMembers(WriteableScope scope, Type type) { |
10 | 532 |
members: |
25443
9187d77f2c64
8031569: Refactor javac scope implementation to enable lazy imports
jlahoda
parents:
24069
diff
changeset
|
533 |
for (Symbol e : type.asElement().members().getSymbols(NON_RECURSIVE)) { |
9187d77f2c64
8031569: Refactor javac scope implementation to enable lazy imports
jlahoda
parents:
24069
diff
changeset
|
534 |
for (Symbol overrider : scope.getSymbolsByName(e.getSimpleName())) { |
9187d77f2c64
8031569: Refactor javac scope implementation to enable lazy imports
jlahoda
parents:
24069
diff
changeset
|
535 |
if (overrider.kind == e.kind && (overrider.flags() & Flags.SYNTHETIC) == 0) { |
9187d77f2c64
8031569: Refactor javac scope implementation to enable lazy imports
jlahoda
parents:
24069
diff
changeset
|
536 |
if (overrider.getKind() == ElementKind.METHOD && |
9187d77f2c64
8031569: Refactor javac scope implementation to enable lazy imports
jlahoda
parents:
24069
diff
changeset
|
537 |
overrides((ExecutableElement)overrider, (ExecutableElement)e, (TypeElement)type.asElement())) { |
10 | 538 |
continue members; |
539 |
} |
|
540 |
} |
|
541 |
} |
|
25443
9187d77f2c64
8031569: Refactor javac scope implementation to enable lazy imports
jlahoda
parents:
24069
diff
changeset
|
542 |
boolean derived = e.getEnclosingElement() != scope.owner; |
9187d77f2c64
8031569: Refactor javac scope implementation to enable lazy imports
jlahoda
parents:
24069
diff
changeset
|
543 |
ElementKind kind = e.getKind(); |
10 | 544 |
boolean initializer = kind == ElementKind.CONSTRUCTOR |
545 |
|| kind == ElementKind.INSTANCE_INIT |
|
546 |
|| kind == ElementKind.STATIC_INIT; |
|
25443
9187d77f2c64
8031569: Refactor javac scope implementation to enable lazy imports
jlahoda
parents:
24069
diff
changeset
|
547 |
if (!derived || (!initializer && e.isInheritedIn(scope.owner, types))) |
9187d77f2c64
8031569: Refactor javac scope implementation to enable lazy imports
jlahoda
parents:
24069
diff
changeset
|
548 |
scope.enter(e); |
10 | 549 |
} |
550 |
} |
|
551 |
||
552 |
/** |
|
553 |
* Returns all annotations of an element, whether |
|
554 |
* inherited or directly present. |
|
555 |
* |
|
556 |
* @param e the element being examined |
|
557 |
* @return all annotations of the element |
|
558 |
*/ |
|
26266
2d24bda701dc
8056061: Mark implementations of public interfaces with an annotation
jlahoda
parents:
25874
diff
changeset
|
559 |
@Override @DefinedBy(Api.LANGUAGE_MODEL) |
10 | 560 |
public List<Attribute.Compound> getAllAnnotationMirrors(Element e) { |
561 |
Symbol sym = cast(Symbol.class, e); |
|
17278
a48ec76f26e9
8011027: Type parameter annotations not passed through to javax.lang.model
jfranck
parents:
16557
diff
changeset
|
562 |
List<Attribute.Compound> annos = sym.getAnnotationMirrors(); |
10 | 563 |
while (sym.getKind() == ElementKind.CLASS) { |
564 |
Type sup = ((ClassSymbol) sym).getSuperclass(); |
|
14359
d4099818ab70
7200915: convert TypeTags from a series of small ints to an enum
jjg
parents:
13077
diff
changeset
|
565 |
if (!sup.hasTag(CLASS) || sup.isErroneous() || |
10 | 566 |
sup.tsym == syms.objectType.tsym) { |
567 |
break; |
|
568 |
} |
|
569 |
sym = sup.tsym; |
|
570 |
List<Attribute.Compound> oldAnnos = annos; |
|
17278
a48ec76f26e9
8011027: Type parameter annotations not passed through to javax.lang.model
jfranck
parents:
16557
diff
changeset
|
571 |
List<Attribute.Compound> newAnnos = sym.getAnnotationMirrors(); |
15355
a4757c33cae9
7193719: Support repeating annotations in javax.lang.model
jfranck
parents:
14359
diff
changeset
|
572 |
for (Attribute.Compound anno : newAnnos) { |
10 | 573 |
if (isInherited(anno.type) && |
574 |
!containsAnnoOfType(oldAnnos, anno.type)) { |
|
575 |
annos = annos.prepend(anno); |
|
576 |
} |
|
577 |
} |
|
578 |
} |
|
579 |
return annos; |
|
580 |
} |
|
581 |
||
582 |
/** |
|
583 |
* Tests whether an annotation type is @Inherited. |
|
584 |
*/ |
|
585 |
private boolean isInherited(Type annotype) { |
|
15355
a4757c33cae9
7193719: Support repeating annotations in javax.lang.model
jfranck
parents:
14359
diff
changeset
|
586 |
return annotype.tsym.attribute(syms.inheritedType.tsym) != null; |
10 | 587 |
} |
588 |
||
589 |
/** |
|
590 |
* Tests whether a list of annotations contains an annotation |
|
591 |
* of a given type. |
|
592 |
*/ |
|
593 |
private static boolean containsAnnoOfType(List<Attribute.Compound> annos, |
|
594 |
Type type) { |
|
595 |
for (Attribute.Compound anno : annos) { |
|
596 |
if (anno.type.tsym == type.tsym) |
|
597 |
return true; |
|
598 |
} |
|
599 |
return false; |
|
600 |
} |
|
601 |
||
26266
2d24bda701dc
8056061: Mark implementations of public interfaces with an annotation
jlahoda
parents:
25874
diff
changeset
|
602 |
@DefinedBy(Api.LANGUAGE_MODEL) |
10 | 603 |
public boolean hides(Element hiderEl, Element hideeEl) { |
604 |
Symbol hider = cast(Symbol.class, hiderEl); |
|
605 |
Symbol hidee = cast(Symbol.class, hideeEl); |
|
606 |
||
607 |
// Fields only hide fields; methods only methods; types only types. |
|
608 |
// Names must match. Nothing hides itself (just try it). |
|
609 |
if (hider == hidee || |
|
610 |
hider.kind != hidee.kind || |
|
611 |
hider.name != hidee.name) { |
|
612 |
return false; |
|
613 |
} |
|
614 |
||
615 |
// Only static methods can hide other methods. |
|
616 |
// Methods only hide methods with matching signatures. |
|
27224
228abfa87080
8054457: Refactor Symbol kinds from small ints to an enum
emc
parents:
26266
diff
changeset
|
617 |
if (hider.kind == MTH) { |
10 | 618 |
if (!hider.isStatic() || |
619 |
!types.isSubSignature(hider.type, hidee.type)) { |
|
620 |
return false; |
|
621 |
} |
|
622 |
} |
|
623 |
||
624 |
// Hider must be in a subclass of hidee's class. |
|
625 |
// Note that if M1 hides M2, and M2 hides M3, and M3 is accessible |
|
626 |
// in M1's class, then M1 and M2 both hide M3. |
|
627 |
ClassSymbol hiderClass = hider.owner.enclClass(); |
|
628 |
ClassSymbol hideeClass = hidee.owner.enclClass(); |
|
629 |
if (hiderClass == null || hideeClass == null || |
|
630 |
!hiderClass.isSubClass(hideeClass, types)) { |
|
631 |
return false; |
|
632 |
} |
|
633 |
||
634 |
// Hidee must be accessible in hider's class. |
|
48945
6e6c777a37a2
8186688: javax.lang.model.util.Elements.hides does not work correctly with interfaces
jjg
parents:
48085
diff
changeset
|
635 |
return hidee.isAccessibleIn(hiderClass, types); |
10 | 636 |
} |
637 |
||
26266
2d24bda701dc
8056061: Mark implementations of public interfaces with an annotation
jlahoda
parents:
25874
diff
changeset
|
638 |
@DefinedBy(Api.LANGUAGE_MODEL) |
10 | 639 |
public boolean overrides(ExecutableElement riderEl, |
640 |
ExecutableElement rideeEl, TypeElement typeEl) { |
|
641 |
MethodSymbol rider = cast(MethodSymbol.class, riderEl); |
|
642 |
MethodSymbol ridee = cast(MethodSymbol.class, rideeEl); |
|
643 |
ClassSymbol origin = cast(ClassSymbol.class, typeEl); |
|
644 |
||
645 |
return rider.name == ridee.name && |
|
646 |
||
647 |
// not reflexive as per JLS |
|
648 |
rider != ridee && |
|
649 |
||
650 |
// we don't care if ridee is static, though that wouldn't |
|
651 |
// compile |
|
652 |
!rider.isStatic() && |
|
653 |
||
654 |
// Symbol.overrides assumes the following |
|
655 |
ridee.isMemberOf(origin, types) && |
|
656 |
||
657 |
// check access and signatures; don't check return types |
|
658 |
rider.overrides(ridee, origin, types, false); |
|
659 |
} |
|
660 |
||
26266
2d24bda701dc
8056061: Mark implementations of public interfaces with an annotation
jlahoda
parents:
25874
diff
changeset
|
661 |
@DefinedBy(Api.LANGUAGE_MODEL) |
10 | 662 |
public String getConstantExpression(Object value) { |
663 |
return Constants.format(value); |
|
664 |
} |
|
665 |
||
666 |
/** |
|
667 |
* Print a representation of the elements to the given writer in |
|
668 |
* the specified order. The main purpose of this method is for |
|
669 |
* diagnostics. The exact format of the output is <em>not</em> |
|
670 |
* specified and is subject to change. |
|
671 |
* |
|
672 |
* @param w the writer to print the output to |
|
673 |
* @param elements the elements to print |
|
674 |
*/ |
|
26266
2d24bda701dc
8056061: Mark implementations of public interfaces with an annotation
jlahoda
parents:
25874
diff
changeset
|
675 |
@DefinedBy(Api.LANGUAGE_MODEL) |
10 | 676 |
public void printElements(java.io.Writer w, Element... elements) { |
677 |
for (Element element : elements) |
|
678 |
(new PrintingProcessor.PrintingElementVisitor(w, this)).visit(element).flush(); |
|
679 |
} |
|
680 |
||
26266
2d24bda701dc
8056061: Mark implementations of public interfaces with an annotation
jlahoda
parents:
25874
diff
changeset
|
681 |
@DefinedBy(Api.LANGUAGE_MODEL) |
10 | 682 |
public Name getName(CharSequence cs) { |
1260
a772ba9ba43d
6574134: Allow for alternative implementation of Name Table with garbage collection of name bytes
jjg
parents:
10
diff
changeset
|
683 |
return names.fromString(cs.toString()); |
10 | 684 |
} |
685 |
||
26266
2d24bda701dc
8056061: Mark implementations of public interfaces with an annotation
jlahoda
parents:
25874
diff
changeset
|
686 |
@Override @DefinedBy(Api.LANGUAGE_MODEL) |
15714
d9a83ab62853
8007574: Provide isFunctionalInterface in javax.lang.model
darcy
parents:
15365
diff
changeset
|
687 |
public boolean isFunctionalInterface(TypeElement element) { |
d9a83ab62853
8007574: Provide isFunctionalInterface in javax.lang.model
darcy
parents:
15365
diff
changeset
|
688 |
if (element.getKind() != ElementKind.INTERFACE) |
d9a83ab62853
8007574: Provide isFunctionalInterface in javax.lang.model
darcy
parents:
15365
diff
changeset
|
689 |
return false; |
d9a83ab62853
8007574: Provide isFunctionalInterface in javax.lang.model
darcy
parents:
15365
diff
changeset
|
690 |
else { |
d9a83ab62853
8007574: Provide isFunctionalInterface in javax.lang.model
darcy
parents:
15365
diff
changeset
|
691 |
TypeSymbol tsym = cast(TypeSymbol.class, element); |
d9a83ab62853
8007574: Provide isFunctionalInterface in javax.lang.model
darcy
parents:
15365
diff
changeset
|
692 |
return types.isFunctionalInterface(tsym); |
d9a83ab62853
8007574: Provide isFunctionalInterface in javax.lang.model
darcy
parents:
15365
diff
changeset
|
693 |
} |
d9a83ab62853
8007574: Provide isFunctionalInterface in javax.lang.model
darcy
parents:
15365
diff
changeset
|
694 |
} |
d9a83ab62853
8007574: Provide isFunctionalInterface in javax.lang.model
darcy
parents:
15365
diff
changeset
|
695 |
|
10 | 696 |
/** |
697 |
* Returns the tree node and compilation unit corresponding to this |
|
698 |
* element, or null if they can't be found. |
|
699 |
*/ |
|
700 |
private Pair<JCTree, JCCompilationUnit> getTreeAndTopLevel(Element e) { |
|
701 |
Symbol sym = cast(Symbol.class, e); |
|
702 |
Env<AttrContext> enterEnv = getEnterEnv(sym); |
|
703 |
if (enterEnv == null) |
|
704 |
return null; |
|
705 |
JCTree tree = TreeInfo.declarationFor(sym, enterEnv.tree); |
|
706 |
if (tree == null || enterEnv.toplevel == null) |
|
707 |
return null; |
|
22163 | 708 |
return new Pair<>(tree, enterEnv.toplevel); |
10 | 709 |
} |
710 |
||
711 |
/** |
|
712 |
* Returns the best approximation for the tree node and compilation unit |
|
713 |
* corresponding to the given element, annotation and value. |
|
714 |
* If the element is null, null is returned. |
|
715 |
* If the annotation is null or cannot be found, the tree node and |
|
716 |
* compilation unit for the element is returned. |
|
717 |
* If the annotation value is null or cannot be found, the tree node and |
|
718 |
* compilation unit for the annotation is returned. |
|
719 |
*/ |
|
720 |
public Pair<JCTree, JCCompilationUnit> getTreeAndTopLevel( |
|
721 |
Element e, AnnotationMirror a, AnnotationValue v) { |
|
722 |
if (e == null) |
|
723 |
return null; |
|
724 |
||
725 |
Pair<JCTree, JCCompilationUnit> elemTreeTop = getTreeAndTopLevel(e); |
|
726 |
if (elemTreeTop == null) |
|
727 |
return null; |
|
728 |
||
729 |
if (a == null) |
|
730 |
return elemTreeTop; |
|
731 |
||
732 |
JCTree annoTree = matchAnnoToTree(a, e, elemTreeTop.fst); |
|
733 |
if (annoTree == null) |
|
734 |
return elemTreeTop; |
|
735 |
||
43591
62824732af55
6388543: improve accuracy of source positions for AnnotationValue param of Messager.printMessage
cushon
parents:
43369
diff
changeset
|
736 |
if (v == null) |
62824732af55
6388543: improve accuracy of source positions for AnnotationValue param of Messager.printMessage
cushon
parents:
43369
diff
changeset
|
737 |
return new Pair<>(annoTree, elemTreeTop.snd); |
62824732af55
6388543: improve accuracy of source positions for AnnotationValue param of Messager.printMessage
cushon
parents:
43369
diff
changeset
|
738 |
|
62824732af55
6388543: improve accuracy of source positions for AnnotationValue param of Messager.printMessage
cushon
parents:
43369
diff
changeset
|
739 |
JCTree valueTree = matchAttributeToTree( |
62824732af55
6388543: improve accuracy of source positions for AnnotationValue param of Messager.printMessage
cushon
parents:
43369
diff
changeset
|
740 |
cast(Attribute.class, v), cast(Attribute.class, a), annoTree); |
62824732af55
6388543: improve accuracy of source positions for AnnotationValue param of Messager.printMessage
cushon
parents:
43369
diff
changeset
|
741 |
if (valueTree == null) |
62824732af55
6388543: improve accuracy of source positions for AnnotationValue param of Messager.printMessage
cushon
parents:
43369
diff
changeset
|
742 |
return new Pair<>(annoTree, elemTreeTop.snd); |
62824732af55
6388543: improve accuracy of source positions for AnnotationValue param of Messager.printMessage
cushon
parents:
43369
diff
changeset
|
743 |
|
62824732af55
6388543: improve accuracy of source positions for AnnotationValue param of Messager.printMessage
cushon
parents:
43369
diff
changeset
|
744 |
return new Pair<>(valueTree, elemTreeTop.snd); |
10 | 745 |
} |
746 |
||
747 |
/** |
|
748 |
* Returns a symbol's enter environment, or null if it has none. |
|
749 |
*/ |
|
750 |
private Env<AttrContext> getEnterEnv(Symbol sym) { |
|
751 |
// Get enclosing class of sym, or sym itself if it is a class |
|
36779
9a030c4d2591
8152771: NPE accessing comments on module declarations
ksrini
parents:
36526
diff
changeset
|
752 |
// package, or module. |
9a030c4d2591
8152771: NPE accessing comments on module declarations
ksrini
parents:
36526
diff
changeset
|
753 |
TypeSymbol ts = null; |
9a030c4d2591
8152771: NPE accessing comments on module declarations
ksrini
parents:
36526
diff
changeset
|
754 |
switch (sym.kind) { |
9a030c4d2591
8152771: NPE accessing comments on module declarations
ksrini
parents:
36526
diff
changeset
|
755 |
case PCK: |
9a030c4d2591
8152771: NPE accessing comments on module declarations
ksrini
parents:
36526
diff
changeset
|
756 |
ts = (PackageSymbol)sym; |
9a030c4d2591
8152771: NPE accessing comments on module declarations
ksrini
parents:
36526
diff
changeset
|
757 |
break; |
9a030c4d2591
8152771: NPE accessing comments on module declarations
ksrini
parents:
36526
diff
changeset
|
758 |
case MDL: |
9a030c4d2591
8152771: NPE accessing comments on module declarations
ksrini
parents:
36526
diff
changeset
|
759 |
ts = (ModuleSymbol)sym; |
9a030c4d2591
8152771: NPE accessing comments on module declarations
ksrini
parents:
36526
diff
changeset
|
760 |
break; |
9a030c4d2591
8152771: NPE accessing comments on module declarations
ksrini
parents:
36526
diff
changeset
|
761 |
default: |
9a030c4d2591
8152771: NPE accessing comments on module declarations
ksrini
parents:
36526
diff
changeset
|
762 |
ts = sym.enclClass(); |
9a030c4d2591
8152771: NPE accessing comments on module declarations
ksrini
parents:
36526
diff
changeset
|
763 |
} |
10 | 764 |
return (ts != null) |
765 |
? enter.getEnv(ts) |
|
766 |
: null; |
|
767 |
} |
|
768 |
||
36526 | 769 |
private void ensureEntered(String methodName) { |
770 |
if (javacTaskImpl != null) { |
|
771 |
javacTaskImpl.ensureEntered(); |
|
772 |
} |
|
773 |
if (!javaCompiler.isEnterDone()) { |
|
774 |
throw new IllegalStateException("Cannot use Elements." + methodName + " before the TaskEvent.Kind.ENTER finished event."); |
|
775 |
} |
|
776 |
} |
|
777 |
||
10 | 778 |
/** |
779 |
* Returns an object cast to the specified type. |
|
780 |
* @throws NullPointerException if the object is {@code null} |
|
781 |
* @throws IllegalArgumentException if the object is of the wrong type |
|
782 |
*/ |
|
783 |
private static <T> T cast(Class<T> clazz, Object o) { |
|
784 |
if (! clazz.isInstance(o)) |
|
785 |
throw new IllegalArgumentException(o.toString()); |
|
786 |
return clazz.cast(o); |
|
787 |
} |
|
788 |
} |