2
|
1 |
/*
|
48623
|
2 |
* Copyright (c) 1998, 2018, Oracle and/or its affiliates. All rights reserved.
|
2
|
3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
4 |
*
|
|
5 |
* This code is free software; you can redistribute it and/or modify it
|
|
6 |
* under the terms of the GNU General Public License version 2 only, as
|
5506
|
7 |
* published by the Free Software Foundation. Oracle designates this
|
2
|
8 |
* particular file as subject to the "Classpath" exception as provided
|
5506
|
9 |
* by Oracle in the LICENSE file that accompanied this code.
|
2
|
10 |
*
|
|
11 |
* This code is distributed in the hope that it will be useful, but WITHOUT
|
|
12 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
13 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
14 |
* version 2 for more details (a copy is included in the LICENSE file that
|
|
15 |
* accompanied this code).
|
|
16 |
*
|
|
17 |
* You should have received a copy of the GNU General Public License version
|
|
18 |
* 2 along with this work; if not, write to the Free Software Foundation,
|
|
19 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
20 |
*
|
5506
|
21 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
|
22 |
* or visit www.oracle.com if you need additional information or have any
|
|
23 |
* questions.
|
2
|
24 |
*/
|
|
25 |
|
|
26 |
package build.tools.jdwpgen;
|
|
27 |
|
|
28 |
import java.util.*;
|
|
29 |
import java.io.*;
|
|
30 |
|
|
31 |
class ConstantSetNode extends AbstractNamedNode {
|
|
32 |
|
|
33 |
/**
|
|
34 |
* The mapping between a constant and its value.
|
|
35 |
*/
|
10110
|
36 |
protected static final Map<String, String> constantMap = new HashMap<>();
|
2
|
37 |
|
|
38 |
void prune() {
|
10110
|
39 |
List<Node> addons = new ArrayList<>();
|
2
|
40 |
|
|
41 |
if (!addons.isEmpty()) {
|
|
42 |
components.addAll(addons);
|
|
43 |
}
|
|
44 |
super.prune();
|
|
45 |
}
|
|
46 |
|
|
47 |
void constrainComponent(Context ctx, Node node) {
|
|
48 |
if (node instanceof ConstantNode) {
|
|
49 |
node.constrain(ctx);
|
|
50 |
constantMap.put(name + "_" + ((ConstantNode) node).getName(), node.comment());
|
|
51 |
} else {
|
|
52 |
error("Expected 'Constant', got: " + node);
|
|
53 |
}
|
|
54 |
}
|
|
55 |
|
|
56 |
void document(PrintWriter writer) {
|
48623
|
57 |
writer.println("<h4 id=\"" + context.whereC + "\">" + name +
|
|
58 |
" Constants</h4>");
|
2
|
59 |
writer.println(comment());
|
48623
|
60 |
writer.println("<table><tr>");
|
|
61 |
writer.println("<th style=\"width: 20%\"><th style=\"width: 5%\"><th style=\"width: 65%\">");
|
2
|
62 |
ConstantNode n;
|
10110
|
63 |
for (Node node : components) {
|
|
64 |
n = (ConstantNode)node;
|
48623
|
65 |
writer.println("<span id=\"" + name + "_" + n.name + "\"></span>");
|
2
|
66 |
n.document(writer);
|
|
67 |
}
|
|
68 |
writer.println("</table>");
|
|
69 |
}
|
|
70 |
|
|
71 |
void documentIndex(PrintWriter writer) {
|
|
72 |
writer.print("<li><a href=\"#" + context.whereC + "\">");
|
|
73 |
writer.println(name() + "</a> Constants");
|
|
74 |
// writer.println("<ul>");
|
|
75 |
// for (Iterator it = components.iterator(); it.hasNext();) {
|
|
76 |
// ((Node)it.next()).documentIndex(writer);
|
|
77 |
// }
|
|
78 |
// writer.println("</ul>");
|
|
79 |
}
|
|
80 |
|
|
81 |
void genJavaClassSpecifics(PrintWriter writer, int depth) {
|
|
82 |
}
|
|
83 |
|
|
84 |
void genJava(PrintWriter writer, int depth) {
|
|
85 |
genJavaClass(writer, depth);
|
|
86 |
}
|
|
87 |
|
|
88 |
public static String getConstant(String key){
|
51
|
89 |
String com = constantMap.get(key);
|
2
|
90 |
if(com == null){
|
|
91 |
return "";
|
|
92 |
} else {
|
|
93 |
return com;
|
|
94 |
}
|
|
95 |
}
|
|
96 |
|
|
97 |
}
|