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
|
/*
* Copyright (c) 2011, 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 7079713
* @summary javac hangs when compiling a class that references a cyclically inherited class
* @run main TestCircularClassfile
*/
import java.io.*;
import java.net.URI;
import java.util.Arrays;
import javax.tools.JavaCompiler;
import javax.tools.JavaFileObject;
import javax.tools.SimpleJavaFileObject;
import javax.tools.StandardJavaFileManager;
import javax.tools.StandardLocation;
import javax.tools.ToolProvider;
import com.sun.source.util.JavacTask;
public class TestCircularClassfile {
enum SourceKind {
A_EXTENDS_B("class B {} class A extends B { void m() {} }"),
B_EXTENDS_A("class A { void m() {} } class B extends A {}");
String sourceStr;
private SourceKind(String sourceStr) {
this.sourceStr = sourceStr;
}
SimpleJavaFileObject getSource() {
return new SimpleJavaFileObject(URI.create("myfo:/Test.java"), JavaFileObject.Kind.SOURCE) {
@Override
public CharSequence getCharContent(boolean ignoreEncodingErrors) throws IOException {
return sourceStr;
}
};
}
}
enum TestKind {
REPLACE_A("A.class"),
REPLACE_B("B.class");
String targetClass;
private TestKind(String targetClass) {
this.targetClass = targetClass;
}
}
enum ClientKind {
METHOD_CALL1("A a = null; a.m();"),
METHOD_CALL2("B b = null; b.m();"),
CONSTR_CALL1("new A();"),
CONSTR_CALL2("new B();"),
ASSIGN1("A a = null; B b = a;"),
ASSIGN2("B b = null; A a = b;");
String mainMethod;
private ClientKind(String mainMethod) {
this.mainMethod = mainMethod;
}
SimpleJavaFileObject getSource() {
return new SimpleJavaFileObject(URI.create("myfo:/Test.java"), JavaFileObject.Kind.SOURCE) {
@Override
public CharSequence getCharContent(boolean ignoreEncodingErrors) throws IOException {
return "class Test { public static void main(String[] args) { #M } }"
.replace("#M", mainMethod);
}
};
}
}
public static void main(String... args) throws Exception {
JavaCompiler comp = ToolProvider.getSystemJavaCompiler();
StandardJavaFileManager fm = comp.getStandardFileManager(null, null, null);
int count = 0;
for (SourceKind sk1 : SourceKind.values()) {
for (SourceKind sk2 : SourceKind.values()) {
for (TestKind tk : TestKind.values()) {
for (ClientKind ck : ClientKind.values()) {
new TestCircularClassfile("sub_"+count++, sk1, sk2, tk, ck).check(comp, fm);
}
}
}
}
}
static String workDir = System.getProperty("user.dir");
String destPath;
SourceKind sk1;
SourceKind sk2;
TestKind tk;
ClientKind ck;
TestCircularClassfile(String destPath, SourceKind sk1, SourceKind sk2, TestKind tk, ClientKind ck) {
this.destPath = destPath;
this.sk1 = sk1;
this.sk2 = sk2;
this.tk = tk;
this.ck = ck;
}
void check(JavaCompiler comp, StandardJavaFileManager fm) throws Exception {
//step 1: compile first source code in the test subfolder
File destDir = new File(workDir, destPath); destDir.mkdir();
//output dir must be set explicitly as we are sharing the fm (see bug 7026941)
fm.setLocation(javax.tools.StandardLocation.CLASS_OUTPUT, Arrays.asList(destDir));
JavacTask ct = (JavacTask)comp.getTask(null, fm, null,
null, null, Arrays.asList(sk1.getSource()));
ct.generate();
//step 2: compile second source code in a temp folder
File tmpDir = new File(destDir, "tmp"); tmpDir.mkdir();
//output dir must be set explicitly as we are sharing the fm (see bug 7026941)
fm.setLocation(javax.tools.StandardLocation.CLASS_OUTPUT, Arrays.asList(tmpDir));
ct = (JavacTask)comp.getTask(null, fm, null,
null, null, Arrays.asList(sk2.getSource()));
ct.generate();
//step 3: move a classfile from the temp folder to the test subfolder
File fileToMove = new File(tmpDir, tk.targetClass);
File target = new File(destDir, tk.targetClass);
target.delete();
boolean success = fileToMove.renameTo(target);
if (!success) {
throw new AssertionError("error when moving file " + tk.targetClass);
}
//step 4: compile the client class against the classes in the test subfolder
//input/output dir must be set explicitly as we are sharing the fm (see bug 7026941)
fm.setLocation(StandardLocation.CLASS_OUTPUT, Arrays.asList(destDir));
fm.setLocation(StandardLocation.CLASS_PATH, Arrays.asList(destDir));
ct = (JavacTask)comp.getTask(null, fm, null,
null, null, Arrays.asList(ck.getSource()));
ct.generate();
}
}
|