author | katleman |
Thu, 21 Aug 2014 14:16:14 -0700 | |
changeset 25878 | 6d561031123e |
parent 7681 | 1f0819a3341f |
child 27234 | f3f667e5870c |
permissions | -rw-r--r-- |
3548
fd92f0d28cb9
6729471: javap should accept class files on the command line
jjg
parents:
diff
changeset
|
1 |
/* |
7681 | 2 |
* Copyright (c) 2009, 2010, Oracle and/or its affiliates. All rights reserved. |
3548
fd92f0d28cb9
6729471: javap should accept class files on the command line
jjg
parents:
diff
changeset
|
3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
fd92f0d28cb9
6729471: javap should accept class files on the command line
jjg
parents:
diff
changeset
|
4 |
* |
fd92f0d28cb9
6729471: javap should accept class files on the command line
jjg
parents:
diff
changeset
|
5 |
* This code is free software; you can redistribute it and/or modify it |
fd92f0d28cb9
6729471: javap should accept class files on the command line
jjg
parents:
diff
changeset
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
fd92f0d28cb9
6729471: javap should accept class files on the command line
jjg
parents:
diff
changeset
|
7 |
* published by the Free Software Foundation. |
fd92f0d28cb9
6729471: javap should accept class files on the command line
jjg
parents:
diff
changeset
|
8 |
* |
fd92f0d28cb9
6729471: javap should accept class files on the command line
jjg
parents:
diff
changeset
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
fd92f0d28cb9
6729471: javap should accept class files on the command line
jjg
parents:
diff
changeset
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
fd92f0d28cb9
6729471: javap should accept class files on the command line
jjg
parents:
diff
changeset
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
fd92f0d28cb9
6729471: javap should accept class files on the command line
jjg
parents:
diff
changeset
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
fd92f0d28cb9
6729471: javap should accept class files on the command line
jjg
parents:
diff
changeset
|
13 |
* accompanied this code). |
fd92f0d28cb9
6729471: javap should accept class files on the command line
jjg
parents:
diff
changeset
|
14 |
* |
fd92f0d28cb9
6729471: javap should accept class files on the command line
jjg
parents:
diff
changeset
|
15 |
* You should have received a copy of the GNU General Public License version |
fd92f0d28cb9
6729471: javap should accept class files on the command line
jjg
parents:
diff
changeset
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
fd92f0d28cb9
6729471: javap should accept class files on the command line
jjg
parents:
diff
changeset
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
fd92f0d28cb9
6729471: javap should accept class files on the command line
jjg
parents:
diff
changeset
|
18 |
* |
5520 | 19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
20 |
* or visit www.oracle.com if you need additional information or have any |
|
21 |
* questions. |
|
3548
fd92f0d28cb9
6729471: javap should accept class files on the command line
jjg
parents:
diff
changeset
|
22 |
*/ |
fd92f0d28cb9
6729471: javap should accept class files on the command line
jjg
parents:
diff
changeset
|
23 |
|
fd92f0d28cb9
6729471: javap should accept class files on the command line
jjg
parents:
diff
changeset
|
24 |
|
fd92f0d28cb9
6729471: javap should accept class files on the command line
jjg
parents:
diff
changeset
|
25 |
/* |
fd92f0d28cb9
6729471: javap should accept class files on the command line
jjg
parents:
diff
changeset
|
26 |
* @test |
fd92f0d28cb9
6729471: javap should accept class files on the command line
jjg
parents:
diff
changeset
|
27 |
* @bug 6729471 |
fd92f0d28cb9
6729471: javap should accept class files on the command line
jjg
parents:
diff
changeset
|
28 |
* @summary javap does not output inner interfaces of an interface |
fd92f0d28cb9
6729471: javap should accept class files on the command line
jjg
parents:
diff
changeset
|
29 |
*/ |
fd92f0d28cb9
6729471: javap should accept class files on the command line
jjg
parents:
diff
changeset
|
30 |
|
fd92f0d28cb9
6729471: javap should accept class files on the command line
jjg
parents:
diff
changeset
|
31 |
import java.io.*; |
3768 | 32 |
import java.net.*; |
3548
fd92f0d28cb9
6729471: javap should accept class files on the command line
jjg
parents:
diff
changeset
|
33 |
import java.util.*; |
fd92f0d28cb9
6729471: javap should accept class files on the command line
jjg
parents:
diff
changeset
|
34 |
|
fd92f0d28cb9
6729471: javap should accept class files on the command line
jjg
parents:
diff
changeset
|
35 |
public class T6729471 |
fd92f0d28cb9
6729471: javap should accept class files on the command line
jjg
parents:
diff
changeset
|
36 |
{ |
fd92f0d28cb9
6729471: javap should accept class files on the command line
jjg
parents:
diff
changeset
|
37 |
public static void main(String... args) { |
fd92f0d28cb9
6729471: javap should accept class files on the command line
jjg
parents:
diff
changeset
|
38 |
new T6729471().run(); |
fd92f0d28cb9
6729471: javap should accept class files on the command line
jjg
parents:
diff
changeset
|
39 |
} |
fd92f0d28cb9
6729471: javap should accept class files on the command line
jjg
parents:
diff
changeset
|
40 |
|
fd92f0d28cb9
6729471: javap should accept class files on the command line
jjg
parents:
diff
changeset
|
41 |
void run() { |
7333
a9ed6bf644fc
7002346: javap test relies on location of scratch directory
jjg
parents:
5520
diff
changeset
|
42 |
File testClasses = new File(System.getProperty("test.classes")); |
a9ed6bf644fc
7002346: javap test relies on location of scratch directory
jjg
parents:
5520
diff
changeset
|
43 |
|
3548
fd92f0d28cb9
6729471: javap should accept class files on the command line
jjg
parents:
diff
changeset
|
44 |
// simple class |
fd92f0d28cb9
6729471: javap should accept class files on the command line
jjg
parents:
diff
changeset
|
45 |
verify("java.util.Map", |
fd92f0d28cb9
6729471: javap should accept class files on the command line
jjg
parents:
diff
changeset
|
46 |
"public abstract boolean containsKey(java.lang.Object)"); |
fd92f0d28cb9
6729471: javap should accept class files on the command line
jjg
parents:
diff
changeset
|
47 |
|
fd92f0d28cb9
6729471: javap should accept class files on the command line
jjg
parents:
diff
changeset
|
48 |
// inner class |
fd92f0d28cb9
6729471: javap should accept class files on the command line
jjg
parents:
diff
changeset
|
49 |
verify("java.util.Map.Entry", |
fd92f0d28cb9
6729471: javap should accept class files on the command line
jjg
parents:
diff
changeset
|
50 |
"public abstract K getKey()"); |
fd92f0d28cb9
6729471: javap should accept class files on the command line
jjg
parents:
diff
changeset
|
51 |
|
fd92f0d28cb9
6729471: javap should accept class files on the command line
jjg
parents:
diff
changeset
|
52 |
// file name |
7333
a9ed6bf644fc
7002346: javap test relies on location of scratch directory
jjg
parents:
5520
diff
changeset
|
53 |
verify(new File(testClasses, "T6729471.class").getPath(), |
3548
fd92f0d28cb9
6729471: javap should accept class files on the command line
jjg
parents:
diff
changeset
|
54 |
"public static void main(java.lang.String...)"); |
fd92f0d28cb9
6729471: javap should accept class files on the command line
jjg
parents:
diff
changeset
|
55 |
|
fd92f0d28cb9
6729471: javap should accept class files on the command line
jjg
parents:
diff
changeset
|
56 |
// file url |
7333
a9ed6bf644fc
7002346: javap test relies on location of scratch directory
jjg
parents:
5520
diff
changeset
|
57 |
verify(new File(testClasses, "T6729471.class").toURI().toString(), |
3548
fd92f0d28cb9
6729471: javap should accept class files on the command line
jjg
parents:
diff
changeset
|
58 |
"public static void main(java.lang.String...)"); |
fd92f0d28cb9
6729471: javap should accept class files on the command line
jjg
parents:
diff
changeset
|
59 |
|
fd92f0d28cb9
6729471: javap should accept class files on the command line
jjg
parents:
diff
changeset
|
60 |
// jar url: rt.jar |
fd92f0d28cb9
6729471: javap should accept class files on the command line
jjg
parents:
diff
changeset
|
61 |
File java_home = new File(System.getProperty("java.home")); |
fd92f0d28cb9
6729471: javap should accept class files on the command line
jjg
parents:
diff
changeset
|
62 |
if (java_home.getName().equals("jre")) |
fd92f0d28cb9
6729471: javap should accept class files on the command line
jjg
parents:
diff
changeset
|
63 |
java_home = java_home.getParentFile(); |
fd92f0d28cb9
6729471: javap should accept class files on the command line
jjg
parents:
diff
changeset
|
64 |
File rt_jar = new File(new File(new File(java_home, "jre"), "lib"), "rt.jar"); |
3768 | 65 |
try { |
66 |
verify("jar:" + rt_jar.toURL() + "!/java/util/Map.class", |
|
3548
fd92f0d28cb9
6729471: javap should accept class files on the command line
jjg
parents:
diff
changeset
|
67 |
"public abstract boolean containsKey(java.lang.Object)"); |
3768 | 68 |
} catch (MalformedURLException e) { |
69 |
error(e.toString()); |
|
70 |
} |
|
3548
fd92f0d28cb9
6729471: javap should accept class files on the command line
jjg
parents:
diff
changeset
|
71 |
|
fd92f0d28cb9
6729471: javap should accept class files on the command line
jjg
parents:
diff
changeset
|
72 |
// jar url: ct.sym, if it exists |
fd92f0d28cb9
6729471: javap should accept class files on the command line
jjg
parents:
diff
changeset
|
73 |
File ct_sym = new File(new File(java_home, "lib"), "ct.sym"); |
fd92f0d28cb9
6729471: javap should accept class files on the command line
jjg
parents:
diff
changeset
|
74 |
if (ct_sym.exists()) { |
3768 | 75 |
try { |
76 |
verify("jar:" + ct_sym.toURL() + "!/META-INF/sym/rt.jar/java/util/Map.class", |
|
77 |
"public abstract boolean containsKey(java.lang.Object)"); |
|
78 |
} catch (MalformedURLException e) { |
|
79 |
error(e.toString()); |
|
80 |
} |
|
3548
fd92f0d28cb9
6729471: javap should accept class files on the command line
jjg
parents:
diff
changeset
|
81 |
} else |
fd92f0d28cb9
6729471: javap should accept class files on the command line
jjg
parents:
diff
changeset
|
82 |
System.err.println("warning: ct.sym not found"); |
fd92f0d28cb9
6729471: javap should accept class files on the command line
jjg
parents:
diff
changeset
|
83 |
|
fd92f0d28cb9
6729471: javap should accept class files on the command line
jjg
parents:
diff
changeset
|
84 |
if (errors > 0) |
fd92f0d28cb9
6729471: javap should accept class files on the command line
jjg
parents:
diff
changeset
|
85 |
throw new Error(errors + " found."); |
fd92f0d28cb9
6729471: javap should accept class files on the command line
jjg
parents:
diff
changeset
|
86 |
} |
fd92f0d28cb9
6729471: javap should accept class files on the command line
jjg
parents:
diff
changeset
|
87 |
|
fd92f0d28cb9
6729471: javap should accept class files on the command line
jjg
parents:
diff
changeset
|
88 |
void verify(String className, String... expects) { |
fd92f0d28cb9
6729471: javap should accept class files on the command line
jjg
parents:
diff
changeset
|
89 |
String output = javap(className); |
fd92f0d28cb9
6729471: javap should accept class files on the command line
jjg
parents:
diff
changeset
|
90 |
for (String expect: expects) { |
fd92f0d28cb9
6729471: javap should accept class files on the command line
jjg
parents:
diff
changeset
|
91 |
if (output.indexOf(expect)< 0) |
fd92f0d28cb9
6729471: javap should accept class files on the command line
jjg
parents:
diff
changeset
|
92 |
error(expect + " not found"); |
fd92f0d28cb9
6729471: javap should accept class files on the command line
jjg
parents:
diff
changeset
|
93 |
} |
fd92f0d28cb9
6729471: javap should accept class files on the command line
jjg
parents:
diff
changeset
|
94 |
} |
fd92f0d28cb9
6729471: javap should accept class files on the command line
jjg
parents:
diff
changeset
|
95 |
|
fd92f0d28cb9
6729471: javap should accept class files on the command line
jjg
parents:
diff
changeset
|
96 |
void error(String msg) { |
fd92f0d28cb9
6729471: javap should accept class files on the command line
jjg
parents:
diff
changeset
|
97 |
System.err.println(msg); |
fd92f0d28cb9
6729471: javap should accept class files on the command line
jjg
parents:
diff
changeset
|
98 |
errors++; |
fd92f0d28cb9
6729471: javap should accept class files on the command line
jjg
parents:
diff
changeset
|
99 |
} |
fd92f0d28cb9
6729471: javap should accept class files on the command line
jjg
parents:
diff
changeset
|
100 |
|
fd92f0d28cb9
6729471: javap should accept class files on the command line
jjg
parents:
diff
changeset
|
101 |
int errors; |
fd92f0d28cb9
6729471: javap should accept class files on the command line
jjg
parents:
diff
changeset
|
102 |
|
fd92f0d28cb9
6729471: javap should accept class files on the command line
jjg
parents:
diff
changeset
|
103 |
String javap(String className) { |
fd92f0d28cb9
6729471: javap should accept class files on the command line
jjg
parents:
diff
changeset
|
104 |
String testClasses = System.getProperty("test.classes", "."); |
fd92f0d28cb9
6729471: javap should accept class files on the command line
jjg
parents:
diff
changeset
|
105 |
StringWriter sw = new StringWriter(); |
fd92f0d28cb9
6729471: javap should accept class files on the command line
jjg
parents:
diff
changeset
|
106 |
PrintWriter out = new PrintWriter(sw); |
fd92f0d28cb9
6729471: javap should accept class files on the command line
jjg
parents:
diff
changeset
|
107 |
String[] args = { "-classpath", testClasses, className }; |
fd92f0d28cb9
6729471: javap should accept class files on the command line
jjg
parents:
diff
changeset
|
108 |
int rc = com.sun.tools.javap.Main.run(args, out); |
fd92f0d28cb9
6729471: javap should accept class files on the command line
jjg
parents:
diff
changeset
|
109 |
out.close(); |
fd92f0d28cb9
6729471: javap should accept class files on the command line
jjg
parents:
diff
changeset
|
110 |
String output = sw.toString(); |
fd92f0d28cb9
6729471: javap should accept class files on the command line
jjg
parents:
diff
changeset
|
111 |
System.out.println("class " + className); |
fd92f0d28cb9
6729471: javap should accept class files on the command line
jjg
parents:
diff
changeset
|
112 |
System.out.println(output); |
fd92f0d28cb9
6729471: javap should accept class files on the command line
jjg
parents:
diff
changeset
|
113 |
if (rc != 0) |
fd92f0d28cb9
6729471: javap should accept class files on the command line
jjg
parents:
diff
changeset
|
114 |
throw new Error("javap failed. rc=" + rc); |
fd92f0d28cb9
6729471: javap should accept class files on the command line
jjg
parents:
diff
changeset
|
115 |
if (output.indexOf("Error:") != -1) |
fd92f0d28cb9
6729471: javap should accept class files on the command line
jjg
parents:
diff
changeset
|
116 |
throw new Error("javap reported error."); |
fd92f0d28cb9
6729471: javap should accept class files on the command line
jjg
parents:
diff
changeset
|
117 |
return output; |
fd92f0d28cb9
6729471: javap should accept class files on the command line
jjg
parents:
diff
changeset
|
118 |
} |
fd92f0d28cb9
6729471: javap should accept class files on the command line
jjg
parents:
diff
changeset
|
119 |
} |
fd92f0d28cb9
6729471: javap should accept class files on the command line
jjg
parents:
diff
changeset
|
120 |