author | ctornqvi |
Fri, 19 Aug 2016 18:20:22 +0200 | |
changeset 40632 | 8cf7f396360e |
parent 23010 | 6dadb192ad81 |
permissions | -rw-r--r-- |
2 | 1 |
/* |
23010
6dadb192ad81
8029235: Update copyright year to match last edit in jdk8 jdk repository for 2013
lana
parents:
21805
diff
changeset
|
2 |
* Copyright (c) 1998, 2013, 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 OutNode extends AbstractTypeListNode { |
|
32 |
||
33 |
String cmdName; |
|
34 |
||
35 |
void set(String kind, List<Node> components, int lineno) { |
|
36 |
super.set(kind, components, lineno); |
|
37 |
components.add(0, new NameNode("Out")); |
|
38 |
} |
|
39 |
||
40 |
void constrain(Context ctx) { |
|
41 |
super.constrain(ctx.commandWritingSubcontext()); |
|
42 |
CommandNode cmd = (CommandNode)parent; |
|
43 |
cmdName = cmd.name; |
|
44 |
} |
|
45 |
||
46 |
void genProcessMethod(PrintWriter writer, int depth) { |
|
47 |
writer.println(); |
|
48 |
indent(writer, depth); |
|
49 |
writer.print( |
|
50 |
"static " + cmdName + " process(VirtualMachineImpl vm"); |
|
10110 | 51 |
for (Node node : components) { |
52 |
TypeNode tn = (TypeNode)node; |
|
2 | 53 |
writer.println(", "); |
54 |
indent(writer, depth+5); |
|
55 |
writer.print(tn.javaParam()); |
|
56 |
} |
|
57 |
writer.println(")"); |
|
58 |
indent(writer, depth+6); |
|
59 |
writer.println("throws JDWPException {"); |
|
60 |
indent(writer, depth+1); |
|
61 |
writer.print("PacketStream ps = enqueueCommand(vm"); |
|
10110 | 62 |
for (Node node : components) { |
63 |
TypeNode tn = (TypeNode)node; |
|
2 | 64 |
writer.print(", "); |
65 |
writer.print(tn.name()); |
|
66 |
} |
|
67 |
writer.println(");"); |
|
68 |
indent(writer, depth+1); |
|
69 |
writer.println("return waitForReply(vm, ps);"); |
|
70 |
indent(writer, depth); |
|
71 |
writer.println("}"); |
|
72 |
} |
|
73 |
||
74 |
void genEnqueueMethod(PrintWriter writer, int depth) { |
|
75 |
writer.println(); |
|
76 |
indent(writer, depth); |
|
77 |
writer.print( |
|
78 |
"static PacketStream enqueueCommand(VirtualMachineImpl vm"); |
|
10110 | 79 |
for (Node node : components) { |
80 |
TypeNode tn = (TypeNode)node; |
|
2 | 81 |
writer.println(", "); |
82 |
indent(writer, depth+5); |
|
83 |
writer.print(tn.javaParam()); |
|
84 |
} |
|
85 |
writer.println(") {"); |
|
86 |
indent(writer, depth+1); |
|
87 |
writer.println( |
|
88 |
"PacketStream ps = new PacketStream(vm, COMMAND_SET, COMMAND);"); |
|
89 |
if (Main.genDebug) { |
|
90 |
indent(writer, depth+1); |
|
91 |
writer.println( |
|
11277 | 92 |
"if ((vm.traceFlags & VirtualMachineImpl.TRACE_SENDS) != 0) {"); |
2 | 93 |
indent(writer, depth+2); |
94 |
writer.print( |
|
95 |
"vm.printTrace(\"Sending Command(id=\" + ps.pkt.id + \") "); |
|
96 |
writer.print(parent.context.whereJava); |
|
97 |
writer.println( |
|
98 |
"\"+(ps.pkt.flags!=0?\", FLAGS=\" + ps.pkt.flags:\"\"));"); |
|
99 |
indent(writer, depth+1); |
|
100 |
writer.println("}"); |
|
101 |
} |
|
102 |
genJavaWrites(writer, depth+1); |
|
103 |
indent(writer, depth+1); |
|
104 |
writer.println("ps.send();"); |
|
105 |
indent(writer, depth+1); |
|
106 |
writer.println("return ps;"); |
|
107 |
indent(writer, depth); |
|
108 |
writer.println("}"); |
|
109 |
} |
|
110 |
||
111 |
void genWaitMethod(PrintWriter writer, int depth) { |
|
112 |
writer.println(); |
|
113 |
indent(writer, depth); |
|
114 |
writer.println( |
|
115 |
"static " + cmdName + " waitForReply(VirtualMachineImpl vm, " + |
|
116 |
"PacketStream ps)"); |
|
117 |
indent(writer, depth+6); |
|
118 |
writer.println("throws JDWPException {"); |
|
119 |
indent(writer, depth+1); |
|
120 |
writer.println("ps.waitForReply();"); |
|
121 |
indent(writer, depth+1); |
|
122 |
writer.println("return new " + cmdName + "(vm, ps);"); |
|
123 |
indent(writer, depth); |
|
124 |
writer.println("}"); |
|
125 |
} |
|
126 |
||
127 |
void genJava(PrintWriter writer, int depth) { |
|
128 |
genJavaPreDef(writer, depth); |
|
129 |
super.genJava(writer, depth); |
|
130 |
genProcessMethod(writer, depth); |
|
131 |
genEnqueueMethod(writer, depth); |
|
132 |
genWaitMethod(writer, depth); |
|
133 |
} |
|
134 |
} |