blob: 0b411134100818f36059ef93a9270789d99ed1cd [file] [log] [blame]
Andreas Gampee492ae32016-10-28 19:34:57 -07001/*
2 * Copyright (C) 2016 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17import java.lang.reflect.Proxy;
18import java.util.Arrays;
19
20public class Main {
21 public static void main(String[] args) throws Exception {
22 System.loadLibrary(args[1]);
23
24 doTest();
25 }
26
27 public static void doTest() throws Exception {
28 testClass("java.lang.Object");
29 testClass("java.lang.String");
30 testClass("java.lang.Math");
31 testClass("java.util.List");
32
33 testClass(getProxyClass());
34
35 testClass(int.class);
36 testClass(double[].class);
Andreas Gampe4fd66ec2017-01-05 14:42:13 -080037
38 testClassType(int.class);
39 testClassType(getProxyClass());
40 testClassType(Runnable.class);
41 testClassType(String.class);
42
43 testClassType(int[].class);
44 testClassType(Runnable[].class);
45 testClassType(String[].class);
Andreas Gampeac587272017-01-05 15:21:34 -080046
47 testClassFields(Integer.class);
48 testClassFields(int.class);
49 testClassFields(String[].class);
Andreas Gampeff9d2092017-01-06 09:12:49 -080050
51 testClassStatus(int.class);
52 testClassStatus(String[].class);
53 testClassStatus(Object.class);
54 testClassStatus(TestForNonInit.class);
55 try {
56 System.out.println(TestForInitFail.dummy);
57 } catch (ExceptionInInitializerError e) {
58 }
59 testClassStatus(TestForInitFail.class);
Andreas Gampee492ae32016-10-28 19:34:57 -070060 }
61
62 private static Class<?> proxyClass = null;
63
64 private static Class<?> getProxyClass() throws Exception {
65 if (proxyClass != null) {
66 return proxyClass;
67 }
68
69 proxyClass = Proxy.getProxyClass(Main.class.getClassLoader(), new Class[] { Runnable.class });
70 return proxyClass;
71 }
72
73 private static void testClass(String className) throws Exception {
74 Class<?> base = Class.forName(className);
75 testClass(base);
76 }
77
78 private static void testClass(Class<?> base) throws Exception {
79 String[] result = getClassSignature(base);
80 System.out.println(Arrays.toString(result));
81 }
82
Andreas Gampe4fd66ec2017-01-05 14:42:13 -080083 private static void testClassType(Class<?> c) throws Exception {
84 boolean isInterface = isInterface(c);
85 boolean isArray = isArrayClass(c);
86 System.out.println(c.getName() + " interface=" + isInterface + " array=" + isArray);
87 }
88
Andreas Gampeac587272017-01-05 15:21:34 -080089 private static void testClassFields(Class<?> c) throws Exception {
90 System.out.println(Arrays.toString(getClassFields(c)));
91 }
92
Andreas Gampeff9d2092017-01-06 09:12:49 -080093 private static void testClassStatus(Class<?> c) {
94 System.out.println(c + " " + Integer.toBinaryString(getClassStatus(c)));
95 }
96
Andreas Gampee492ae32016-10-28 19:34:57 -070097 private static native String[] getClassSignature(Class<?> c);
Andreas Gampe4fd66ec2017-01-05 14:42:13 -080098
99 private static native boolean isInterface(Class<?> c);
100 private static native boolean isArrayClass(Class<?> c);
Andreas Gampeac587272017-01-05 15:21:34 -0800101
102 private static native Object[] getClassFields(Class<?> c);
Andreas Gampeff9d2092017-01-06 09:12:49 -0800103
104 private static native int getClassStatus(Class<?> c);
105
106 private static class TestForNonInit {
107 public static double dummy = Math.random(); // So it can't be compile-time initialized.
108 }
109
110 private static class TestForInitFail {
111 public static int dummy = ((int)Math.random())/0; // So it throws when initializing.
112 }
Andreas Gampee492ae32016-10-28 19:34:57 -0700113}