-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBOperation.java
148 lines (126 loc) · 4.07 KB
/
BOperation.java
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
import java.io.*;
/******************************
* Copyright (c) 2003,2019 Kevin Lano
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0
*
* SPDX-License-Identifier: EPL-2.0
* *****************************/
class BOperation
{ String name;
String precond;
IfStatement body;
public BOperation(String n, String p, IfStatement b)
{ name = n;
precond = p;
body = b;
}
public void display()
{ System.out.print(" " + name + " = ");
if (body.isEmpty())
{ System.out.print(" skip");
return;
}
else
{ System.out.println(); }
System.out.println(" PRE " + precond);
System.out.println(" THEN");
body.display();
System.out.print(" END");
}
public void displayImp(String var)
/* var is statemachine name */
{ System.out.print(" " + name + " =");
if (body.isEmpty())
{ System.out.print(" skip");
return;
}
else
{ System.out.println(); }
System.out.println(" VAR " + var + "x");
System.out.println(" IN " + var + "x <-- " + var + "_VAL_VAR;");
Statement newBody = body.substituteEq(var, new BasicExpression(var + "x"));
newBody.displayImp(null);
System.out.print(" END");
} // VAL_NVAR if Attribute
public void displayImp(String var, PrintWriter out)
/* var is statemachine name */
{ out.print(" " + name + " =");
if (body.isEmpty())
{ out.print(" skip");
return;
}
else
{ out.println(); }
out.println(" VAR " + var + "x");
out.println(" IN " + var + "x <-- " + var + "_VAL_VAR;");
Statement newBody = body.substituteEq(var, new BasicExpression(var + "x"));
newBody.displayImp(null,out);
out.print(" END");
} // VAL_NVAR if Attribute
public void displayMultImp(String var)
/* var is statemachine name */
{ System.out.print(" " + name + " =");
if (body.isEmpty())
{ System.out.print(" skip");
return;
}
else
{ System.out.println(); }
int n = var.length();
String lib = var.substring(0,1).toUpperCase() +
var.substring(1,n);
System.out.println(" VAR " + var + "x");
System.out.println(" IN " + var + "x <-- " + lib + "_VAL_FNC_OBJ(oo);");
Statement newBody = body.substituteEq(var, new BasicExpression(var + "x"));
newBody.displayImp(null);
System.out.print(" END");
}
public void displayMultImp(String var, PrintWriter out)
/* var is statemachine name */
{ out.print(" " + name + " =");
if (body.isEmpty())
{ out.print(" skip");
return;
}
else
{ out.println(); }
int n = var.length();
String lib = var.substring(0,1).toUpperCase() +
var.substring(1,n);
out.println(" VAR " + var + "x");
out.println(" IN " + var + "x <-- " + lib + "_VAL_FNC_OBJ(oo);");
Statement newBody = body.substituteEq(var, new BasicExpression(var + "x"));
newBody.displayImp(null,out);
out.print(" END");
}
public void display(PrintWriter out)
{ out.print(" " + name + " =");
if (body.cases.size() == 0)
{ out.print(" skip");
return;
}
else
{ out.println(); }
out.println(" PRE " + precond);
out.println(" THEN");
body.display(out);
out.print(" END");
}
public void displayJava(String stat)
{ System.out.println("public " + stat + "void " + name + "()");
System.out.println("/* Assumes: " + precond + " */");
System.out.println("{");
body.displayJava(null); /* Or ""? */
System.out.println("}");
}
public void displayJava(PrintWriter out, String stat)
{ out.println("public " + stat + "void " + name + "()");
out.println("/* Assumes: " + precond + " */");
out.println("{");
body.displayJava("", out);
out.println("}");
}
// Should display java forms of precond.
}