1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267
|
/*
* Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
/**
* @test
* @bug 8166628
* @summary Verify that loading a classfile for a local class that is a member of an anonymous class
* won't break compilation.
* @modules jdk.compiler
*/
import java.io.IOException;
import java.io.StringWriter;
import java.net.URI;
import java.net.URISyntaxException;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.util.Arrays;
import java.util.List;
import java.util.Set;
import javax.annotation.processing.AbstractProcessor;
import javax.annotation.processing.RoundEnvironment;
import javax.annotation.processing.SupportedAnnotationTypes;
import javax.lang.model.element.Element;
import javax.lang.model.element.PackageElement;
import javax.lang.model.element.TypeElement;
import javax.lang.model.util.Elements;
import javax.tools.Diagnostic;
import javax.tools.DiagnosticListener;
import javax.tools.JavaCompiler;
import javax.tools.JavaFileObject;
import javax.tools.SimpleJavaFileObject;
import javax.tools.ToolProvider;
import com.sun.source.tree.BlockTree;
import com.sun.source.tree.ClassTree;
import com.sun.source.tree.MethodTree;
import com.sun.source.tree.Tree;
import com.sun.source.tree.VariableTree;
import com.sun.source.util.JavacTask;
import com.sun.source.util.TaskEvent;
import com.sun.source.util.TaskEvent.Kind;
import com.sun.source.util.TaskListener;
import com.sun.source.util.TreePath;
import com.sun.source.util.TreePathScanner;
import com.sun.source.util.Trees;
public class LocalInAnonymous {
public static void main(String[] args) throws Exception {
Path base = Paths.get(".").toAbsolutePath();
Path classes = base.resolve("classes");
JavaCompiler compiler = ToolProvider.getSystemJavaCompiler();
DiagnosticListener<JavaFileObject> noErrors = d -> {
if (d.getKind() == Diagnostic.Kind.ERROR) {
throw new AssertionError(d.getMessage(null));
}
};
List<TJFO> files = Arrays.asList(new TJFO("Test", CODE));
List<String> options = Arrays.asList("-d", classes.toString());
StringWriter out = new StringWriter();
JavacTask task = (JavacTask) compiler.getTask(out, null, noErrors, options, null, files);
task.call();
if (!out.toString().isEmpty()) {
throw new AssertionError("Unexpected output: " + out);
}
options = Arrays.asList("-classpath", classes.toString(), "-d", classes.toString());
JavacTask task2 = (JavacTask) compiler.getTask(out, null, noErrors, options, null, files);
task2.addTaskListener(new TaskListener() {
@Override
public void started(TaskEvent te) {
}
@Override
public void finished(TaskEvent te) {
if (te.getKind() == Kind.ENTER) {
Element pack = task2.getElements().getTypeElement("Test").getEnclosingElement();
System.err.println(pack.getEnclosedElements());
}
if (te.getKind() == Kind.ANALYZE) {
PackageElement pack = task2.getElements().getPackageOf(te.getTypeElement());
new OwnerCheck(Trees.instance(task2), pack).scan(te.getCompilationUnit(), null);
}
}
});
task2.call();
if (!out.toString().isEmpty()) {
throw new AssertionError("Unexpected output: " + out);
}
options = Arrays.asList("-classpath", classes.toString(),
"-d", classes.toString(),
"-processorpath", System.getProperty("test.classes"),
"-processor", Processor.class.getName());
JavacTask task3 = (JavacTask) compiler.getTask(out, null, noErrors, options, null, files);
task3.call();
if (!out.toString().isEmpty()) {
throw new AssertionError("Unexpected output: " + out);
}
}
private static final class TJFO extends SimpleJavaFileObject {
private final String code;
public TJFO(String name, String code) throws URISyntaxException {
super(new URI("mem:///" + name + ".java"), Kind.SOURCE);
this.code = code;
}
@Override
public CharSequence getCharContent(boolean ignoreEncodingErrors) throws IOException {
return code;
}
}
@SupportedAnnotationTypes("*")
public static final class Processor extends AbstractProcessor {
@Override
public boolean process(Set<? extends TypeElement> annotations, RoundEnvironment roundEnv) {
Trees trees = Trees.instance(processingEnv);
Elements elements = processingEnv.getElementUtils();
Element pack = elements.getTypeElement("Test").getEnclosingElement();
for (Element root : pack.getEnclosedElements()) {
TreePath tp = trees.getPath(root);
new OwnerCheck(trees, pack).scan(tp.getCompilationUnit(), null);
}
return false;
}
}
private static final class OwnerCheck extends TreePathScanner<Void, Void> {
private final Trees trees;
private Element currentOwner;
public OwnerCheck(Trees trees, Element pack) {
this.trees = trees;
this.currentOwner = pack;
}
@Override
public Void visitClass(ClassTree node, Void p) {
Element prevOwner = currentOwner;
try {
Element currentElement = trees.getElement(getCurrentPath());
if (currentOwner != null && currentElement.getEnclosingElement() != currentOwner) {
throw new AssertionError("Unexpected owner!");
}
currentOwner = currentElement;
return super.visitClass(node, p);
} finally {
currentOwner = prevOwner;
}
}
@Override
public Void visitMethod(MethodTree node, Void p) {
Element prevOwner = currentOwner;
try {
Element currentElement = trees.getElement(getCurrentPath());
if (currentElement.getEnclosingElement() != currentOwner) {
throw new AssertionError("Unexpected owner!");
}
currentOwner = currentElement;
return super.visitMethod(node, p);
} finally {
currentOwner = prevOwner;
}
}
@Override
public Void visitVariable(VariableTree node, Void p) {
Element currentElement = trees.getElement(getCurrentPath());
if (!currentElement.getKind().isField()) {
return super.visitVariable(node, p);
}
Element prevOwner = currentOwner;
try {
if (currentElement.getEnclosingElement() != currentOwner) {
throw new AssertionError("Unexpected owner!");
}
currentOwner = currentElement;
return super.visitVariable(node, p);
} finally {
currentOwner = prevOwner;
}
}
@Override
public Void visitBlock(BlockTree node, Void p) {
if (getCurrentPath().getParentPath().getLeaf().getKind() != Tree.Kind.CLASS) {
return super.visitBlock(node, p);
}
Element prevOwner = currentOwner;
try {
currentOwner = null;
return super.visitBlock(node, p);
} finally {
currentOwner = prevOwner;
}
}
}
private static final String CODE =
"public class Test {\n" +
" void test() {\n" +
" Object o = new Object() {\n" +
" class IC {}\n" +
" public Object get() {\n" +
" return new IC();\n" +
" }\n" +
" };\n" +
" }\n" +
" {\n" +
" Object o = new Object() {\n" +
" class IC {}\n" +
" public Object get() {\n" +
" return new IC();\n" +
" }\n" +
" };\n" +
" }\n" +
" static {\n" +
" Object o = new Object() {\n" +
" class IC {}\n" +
" public Object get() {\n" +
" return new IC();\n" +
" }\n" +
" };\n" +
" }\n" +
" Object o1 = new Object() {\n" +
" class IC {}\n" +
" public Object get() {\n" +
" return new IC();\n" +
" }\n" +
" };\n" +
" static Object o2 = new Object() {\n" +
" class IC {}\n" +
" public Object get() {\n" +
" return new IC();\n" +
" }\n" +
" };\n" +
"}";
}
|