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
|
/*
* Copyright (c) 2023, 2024, 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 8292275
* @summary check that implicit parameter flags are available by default
* @library /tools/lib
* @modules jdk.compiler/com.sun.tools.javac.api
* jdk.compiler/com.sun.tools.javac.main
* jdk.compiler/com.sun.tools.javac.code
* @run main ImplicitParameters
*/
import java.lang.classfile.*;
import java.lang.classfile.attribute.MethodParameterInfo;
import java.lang.classfile.attribute.MethodParametersAttribute;
import com.sun.tools.javac.code.Flags;
import toolbox.Assert;
import toolbox.JavacTask;
import toolbox.Task;
import toolbox.TestRunner;
import toolbox.ToolBox;
import java.io.IOException;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.constant.ConstantDescs;
import java.lang.reflect.Method;
import java.nio.file.Files;
import java.nio.file.Path;
import java.util.List;
public class ImplicitParameters extends TestRunner {
private static final int CHECKED_FLAGS = ClassFile.ACC_MANDATED | ClassFile.ACC_SYNTHETIC;
private static final int NO_FLAGS = 0;
public ImplicitParameters() {
super(System.err);
}
public static void main(String[] args) throws Exception {
new ImplicitParameters().runTests();
}
@Override
protected void runTests() throws Exception {
Path base = Path.of(".").toAbsolutePath();
compileClasses(base);
runTests(method -> new Object[]{ readClassFile(base.resolve("classes"), method) });
}
private void compileClasses(Path base) throws IOException {
// Keep this in sync with test/jdk/java/lang/reflect/AccessFlag/RequiredMethodParameterFlagTest.java
String outer = """
class Outer {
class Inner {
public Inner(Inner notMandated) {}
}
Inner anonymousInner = this.new Inner(null) {};
Object anonymous = new Object() {};
private void instanceMethod(int i) {
class Task implements Runnable {
final int j;
Task(int j) {
this.j = j;
}
@Override
public void run() {
System.out.println(Outer.this.toString() + (i * j));
}
}
new Task(5).run();
}
enum MyEnum {
;
MyEnum(String s, int i) {}
}
record MyRecord(int a, Object b) {
MyRecord {}
}
}
""";
Path src = base.resolve("src");
ToolBox tb = new ToolBox();
tb.writeJavaFiles(src, outer);
Path classes = base.resolve("classes");
Files.createDirectories(classes);
new JavacTask(tb)
.files(tb.findJavaFiles(src))
.outdir(classes)
.run(Task.Expect.SUCCESS)
.writeAll();
}
private ClassModel readClassFile(Path classes, Method method) {
String className = method.getAnnotation(ClassName.class).value();
try {
return ClassFile.of().parse(classes.resolve("Outer$" + className + ".class"));
} catch (IOException e) {
throw new RuntimeException(e);
}
}
@Retention(RetentionPolicy.RUNTIME)
@interface ClassName {
String value();
}
@Test
@ClassName("Inner")
public void testInnerClassConstructor(ClassModel classFile) {
checkParameters(classFile.methods().get(0), ClassFile.ACC_MANDATED, 0);
}
@Test
@ClassName("1Task")
public void testLocalClassConstructor(ClassModel classFile) {
for (MethodModel method : classFile.methods()) {
if (method.methodName().equalsString(ConstantDescs.INIT_NAME)) {
checkParameters(method, ClassFile.ACC_MANDATED, NO_FLAGS, ClassFile.ACC_SYNTHETIC);
break;
}
}
}
@Test
@ClassName("1")
public void testAnonymousClassExtendingInnerClassConstructor(ClassModel classFile) {
checkParameters(classFile.methods().get(0), ClassFile.ACC_MANDATED, NO_FLAGS, NO_FLAGS);
}
@Test
@ClassName("2")
public void testAnonymousClassConstructor(ClassModel classFile) {
checkParameters(classFile.methods().get(0), ClassFile.ACC_MANDATED);
}
@Test
@ClassName("MyEnum")
public void testValueOfInEnum(ClassModel classFile) {
for (MethodModel method : classFile.methods()) {
if (method.methodName().equalsString("valueOf")) {
checkParameters(method, ClassFile.ACC_MANDATED);
break;
}
}
}
@Test
@ClassName("MyEnum")
public void testEnumClassConstructor(ClassModel classFile) {
for (MethodModel method : classFile.methods()) {
if (method.methodName().equalsString(ConstantDescs.INIT_NAME)) {
checkParameters(method, ClassFile.ACC_SYNTHETIC, ClassFile.ACC_SYNTHETIC, NO_FLAGS, NO_FLAGS);
break;
}
}
}
@Test
@ClassName("MyRecord")
public void testCompactConstructor(ClassModel classFile) {
checkParameters(classFile.methods().get(0), ClassFile.ACC_MANDATED, ClassFile.ACC_MANDATED);
}
private void checkParameters(MethodModel method, int... parametersFlags) {
MethodParametersAttribute methodParameters = method.findAttribute(Attributes.methodParameters()).orElseThrow();
Assert.checkNonNull(methodParameters, "MethodParameters attribute must be present");
List<MethodParameterInfo> table = methodParameters.parameters();
Assert.check(table.size() == parametersFlags.length, () -> "Expected " + parametersFlags.length
+ " MethodParameters entries, found " + table.size());
for (int i = 0; i < methodParameters.parameters().size(); i++) {
int foundFlags = table.get(i).flagsMask() & CHECKED_FLAGS;
int desiredFlags = parametersFlags[i] & CHECKED_FLAGS;
Assert.check(foundFlags == desiredFlags, () -> "Expected mandated and synthethic flags to be "
+ convertFlags(desiredFlags) + ", found " + convertFlags(foundFlags));
}
}
private static String convertFlags(int flags) {
return ((flags & ClassFile.ACC_MANDATED) == ClassFile.ACC_MANDATED) + " and " + ((flags & ClassFile.ACC_SYNTHETIC) == ClassFile.ACC_SYNTHETIC);
}
}
|