author | avstepan |
Tue, 19 May 2015 16:04:14 +0400 | |
changeset 30655 | d83f50188ca9 |
parent 25690 | b1dac768ab79 |
child 30730 | d3ce7619db2c |
permissions | -rw-r--r-- |
10 | 1 |
/* |
25443
9187d77f2c64
8031569: Refactor javac scope implementation to enable lazy imports
jlahoda
parents:
10192
diff
changeset
|
2 |
* Copyright (c) 2006, 2014, 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 |
|
7 |
* published by the Free Software Foundation. |
|
8 |
* |
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
* accompanied this code). |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License version |
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
18 |
* |
|
5520 | 19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
20 |
* or visit www.oracle.com if you need additional information or have any |
|
21 |
* questions. |
|
10 | 22 |
*/ |
23 |
||
24 |
/* |
|
25 |
* @test |
|
25443
9187d77f2c64
8031569: Refactor javac scope implementation to enable lazy imports
jlahoda
parents:
10192
diff
changeset
|
26 |
* @bug 6402516 8031569 |
10 | 27 |
* @summary need Trees.getScope(TreePath) |
28 |
* @build Checker CheckLocalElements |
|
29 |
* @run main CheckLocalElements |
|
30 |
*/ |
|
31 |
||
25443
9187d77f2c64
8031569: Refactor javac scope implementation to enable lazy imports
jlahoda
parents:
10192
diff
changeset
|
32 |
import java.io.IOException; |
10 | 33 |
import java.util.*; |
25443
9187d77f2c64
8031569: Refactor javac scope implementation to enable lazy imports
jlahoda
parents:
10192
diff
changeset
|
34 |
import java.util.regex.*; |
9187d77f2c64
8031569: Refactor javac scope implementation to enable lazy imports
jlahoda
parents:
10192
diff
changeset
|
35 |
|
10 | 36 |
import javax.lang.model.element.*; |
37 |
import javax.lang.model.util.*; |
|
38 |
||
25443
9187d77f2c64
8031569: Refactor javac scope implementation to enable lazy imports
jlahoda
parents:
10192
diff
changeset
|
39 |
import com.sun.source.tree.*; |
9187d77f2c64
8031569: Refactor javac scope implementation to enable lazy imports
jlahoda
parents:
10192
diff
changeset
|
40 |
import com.sun.source.util.*; |
9187d77f2c64
8031569: Refactor javac scope implementation to enable lazy imports
jlahoda
parents:
10192
diff
changeset
|
41 |
|
10 | 42 |
/* |
25443
9187d77f2c64
8031569: Refactor javac scope implementation to enable lazy imports
jlahoda
parents:
10192
diff
changeset
|
43 |
* Check the local elements of a scope against the contents of string literals and top-level comment. |
10 | 44 |
*/ |
45 |
public class CheckLocalElements extends Checker { |
|
46 |
public static void main(String... args) throws Exception { |
|
47 |
Checker chk = new CheckLocalElements(); |
|
48 |
chk.check("TestLocalElements.java"); |
|
49 |
} |
|
50 |
||
51 |
@Override |
|
52 |
protected boolean checkLocal(Scope s, String ref) { |
|
53 |
Iterator<? extends Element> elemIter = s.getLocalElements().iterator(); |
|
54 |
ref = ref.trim(); |
|
55 |
String[] refs = ref.length() == 0 ? new String[0] : ref.split("[ ]*,[ ]*", -1); |
|
56 |
Iterator<String> refIter = Arrays.asList(refs).iterator(); |
|
57 |
String r = null; |
|
58 |
||
59 |
nextElem: |
|
60 |
while (elemIter.hasNext()) { |
|
61 |
Element e = elemIter.next(); |
|
62 |
try { |
|
63 |
if (r == null) |
|
64 |
r = refIter.next(); |
|
65 |
||
66 |
while (r.endsWith(".*")) { |
|
67 |
String encl = getEnclosingName(e); |
|
68 |
String rBase = r.substring(0, r.length() - 2); |
|
69 |
if (encl.equals(rBase) || encl.startsWith(rBase + ".")) |
|
70 |
continue nextElem; |
|
71 |
r = refIter.next(); |
|
72 |
} |
|
73 |
||
74 |
if (r.equals("-") && (e.getSimpleName().length() == 0) |
|
75 |
|| e.getSimpleName().toString().equals(r)) { |
|
76 |
r = null; |
|
77 |
continue nextElem; |
|
78 |
} |
|
79 |
||
80 |
error(s, ref, "mismatch: " + e.getSimpleName() + " " + r); |
|
81 |
return false; |
|
82 |
||
83 |
} catch (NoSuchElementException ex) { // from refIter.next() |
|
84 |
error(s, null, "scope has unexpected entry: " + e.getSimpleName()); |
|
85 |
return false; |
|
86 |
} |
|
87 |
||
88 |
} |
|
89 |
||
90 |
if (refIter.hasNext()) { |
|
91 |
error(s, ref, "scope is missing entry: " + refIter.next()); |
|
92 |
return false; |
|
93 |
} |
|
94 |
||
95 |
return true; |
|
96 |
} |
|
97 |
||
25443
9187d77f2c64
8031569: Refactor javac scope implementation to enable lazy imports
jlahoda
parents:
10192
diff
changeset
|
98 |
@Override |
9187d77f2c64
8031569: Refactor javac scope implementation to enable lazy imports
jlahoda
parents:
10192
diff
changeset
|
99 |
void additionalChecks(Trees trees, CompilationUnitTree topLevel) throws IOException { |
9187d77f2c64
8031569: Refactor javac scope implementation to enable lazy imports
jlahoda
parents:
10192
diff
changeset
|
100 |
Matcher m = TOPLEVEL_SCOPE_DEF.matcher(topLevel.getSourceFile().getCharContent(false)); |
9187d77f2c64
8031569: Refactor javac scope implementation to enable lazy imports
jlahoda
parents:
10192
diff
changeset
|
101 |
if (!m.find()) |
9187d77f2c64
8031569: Refactor javac scope implementation to enable lazy imports
jlahoda
parents:
10192
diff
changeset
|
102 |
throw new AssertionError("Should have top-level scope def!"); |
9187d77f2c64
8031569: Refactor javac scope implementation to enable lazy imports
jlahoda
parents:
10192
diff
changeset
|
103 |
check(trees.getScope(new TreePath(topLevel)), m.group(1)); |
9187d77f2c64
8031569: Refactor javac scope implementation to enable lazy imports
jlahoda
parents:
10192
diff
changeset
|
104 |
} |
9187d77f2c64
8031569: Refactor javac scope implementation to enable lazy imports
jlahoda
parents:
10192
diff
changeset
|
105 |
//where: |
9187d77f2c64
8031569: Refactor javac scope implementation to enable lazy imports
jlahoda
parents:
10192
diff
changeset
|
106 |
Pattern TOPLEVEL_SCOPE_DEF = Pattern.compile("TOPLEVEL_SCOPE:(.*)"); |
9187d77f2c64
8031569: Refactor javac scope implementation to enable lazy imports
jlahoda
parents:
10192
diff
changeset
|
107 |
|
10 | 108 |
private String getEnclosingName(Element e) { |
109 |
Element encl = e.getEnclosingElement(); |
|
110 |
return encl == null ? "" : encl.accept(qualNameVisitor, null); |
|
111 |
} |
|
112 |
||
25690
b1dac768ab79
8050430: Provided new utility visitors supporting SourceVersion.RELEASE_9
darcy
parents:
25443
diff
changeset
|
113 |
private ElementVisitor<String,Void> qualNameVisitor = new SimpleElementVisitor9<String,Void>() { |
10 | 114 |
protected String defaultAction(Element e, Void ignore) { |
115 |
return ""; |
|
116 |
} |
|
117 |
||
118 |
public String visitPackage(PackageElement e, Void ignore) { |
|
119 |
return e.getQualifiedName().toString(); |
|
120 |
} |
|
121 |
||
122 |
public String visitType(TypeElement e, Void ignore) { |
|
123 |
return e.getQualifiedName().toString(); |
|
124 |
} |
|
125 |
}; |
|
126 |
} |