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
|
/*
* Copyright (c) 2022, 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 8266670
* @summary Test expected AccessFlag's on methods and parameters
* @compile -parameters MethodAccessFlagTest.java
* @run main MethodAccessFlagTest
*/
// Use -parameters flag to javac to have access flag information about
// parameters preserved in the resulting class file.
import java.lang.annotation.*;
import java.lang.reflect.*;
/*
* Method modifiers include:
* public, private, protected, static, final, synchronized,
* bridge, varargs, native, abstract, strictfp, synthetic,
*
* At a source level, constructors can have modifiers public,
* protected, or private.
*
* The modifiers bridge and synthetic cannot be applied directly and
* strictfp can only be applied in older source versions.
*
* Method parameters can be final, synthetic, and mandated.
*/
public abstract class MethodAccessFlagTest {
@ExpectedMethodFlags("[PUBLIC, STATIC, VARARGS]")
public static void main(String... args) {
for (var ctor :
MethodAccessFlagTest.class.getDeclaredConstructors()) {
checkExecutable(ctor);
}
for (var method :
MethodAccessFlagTest.class.getDeclaredMethods()) {
checkExecutable(method);
}
// Hard-code information about parameter modifiers; could be
// represented as annotations on the class and decoded.
for (var ctor : NestedClass.class.getConstructors()) {
for (var parameter : ctor.getParameters()) {
String expected = null;
if (parameter.getType() == int.class) {
// The explicit int parameter is expected to have
// the final flag
expected = "[FINAL]";
} else {
// The implicit this$0 parameter is expected to have the
// final and mandated flags
expected = "[FINAL, MANDATED]";
}
checkString(parameter.toString(),
parameter.accessFlags().toString(),
expected);
}
}
for (var method : BridgeExample.class.getDeclaredMethods()) {
// Find the two "clone" methods, one implicit and one
// explicit
if (!method.getName().equals("clone")) {
throw new RuntimeException("Unexpected name for " + method);
}
String expected = null;
if (method.getReturnType() == Object.class) {
expected = "[PUBLIC, BRIDGE, SYNTHETIC]";
} else {
expected = "[PUBLIC]";
}
checkString(method.toString(),
method.accessFlags().toString(),
expected);
}
// Hard-code information about parameter modifiers; could be
// represented as annotations on the class and decoded.
for (var ctor : TestEnum.class.getDeclaredConstructors()) {
// Each of the two parameters used in javac's enum
// constructor implementation is synthetic. This may need
// to be updated if javac's enum constructor generation
// idiom changes.
for (var parameter : ctor.getParameters()) {
checkString(parameter.toString(),
parameter.accessFlags().toString(),
"[SYNTHETIC]");
}
}
}
class NestedClass {
private int i;
// Implicit leading parameter
public NestedClass(final int i) {
this.i = i;
}
}
class BridgeExample implements Cloneable {
public BridgeExample(){}
// Triggers generation of a bridge method.
public BridgeExample clone() {
return new BridgeExample();
}
}
// Use as a host for a constructor with synthetic parameters
enum TestEnum {
INSTANCE;
}
private static void checkExecutable(Executable method) {
ExpectedMethodFlags emf =
method.getAnnotation(ExpectedMethodFlags.class);
if (emf != null) {
String actual = method.accessFlags().toString();
checkString(method.toString(), emf.value(), actual);
}
}
private static void checkString(String declaration,
String expected,
String actual) {
if (!expected.equals(actual)) {
throw new RuntimeException("On " + declaration +
" expected " + expected +
" got " + actual);
}
}
// Constructors
@ExpectedMethodFlags("[PUBLIC]")
public MethodAccessFlagTest() {}
@ExpectedMethodFlags("[PROTECTED]")
protected MethodAccessFlagTest(int i) {super();}
@ExpectedMethodFlags("[PRIVATE]")
private MethodAccessFlagTest(String s) {super();}
// Methods
@ExpectedMethodFlags("[PROTECTED, SYNCHRONIZED]")
protected synchronized void m0() {}
@ExpectedMethodFlags("[PRIVATE]")
private void m1() {}
@ExpectedMethodFlags("[ABSTRACT]")
abstract void m2();
@ExpectedMethodFlags("[PUBLIC, FINAL]")
public final void m3() {}
@ExpectedMethodFlags("[NATIVE]")
native void m4();
@Retention(RetentionPolicy.RUNTIME)
private @interface ExpectedMethodFlags {
String value();
}
}
|