-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathlibrary_usage.py
327 lines (249 loc) · 7.79 KB
/
library_usage.py
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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
import json as stdjson
import os
import sys
from contextlib import redirect_stdout
from helper import apa_path, read_file, tlc_path
from modelator_py.apalache import (
ApalacheArgs,
ApalachePureCmd,
ApalacheRawCmd,
apalache_pure,
apalache_raw,
)
from modelator_py.tlc import TlcArgs, TlcPureCmd, TlcRawCmd, tlc_pure, tlc_raw
from modelator_py.util.tlc.itf import TlcITFCmd, tlc_itf
# mypy: ignore-errors
"""
This program demonstrates programatic use of the utilities.
You can try out this code with the following minimal environment. This has no
relationship to the Poetry developer environment that modelator-py itself uses.
```
cd samples;
python3 -m venv env;
source env/bin/activate;
which python3; # Should have suffix 'env/bin/python3'
python3 -m pip install -r requirements.txt
```
then call the examples with
```
python3 library_usage.py <args>
```
"""
def apalache_pure_json_demo():
"""
Call Apalache, encapsulated to remove side effects.
"""
data = {
"jar": apa_path(),
"args": {
"cmd": "check",
"nworkers": 4,
"file": "Hello.tla",
"config": "Hello.cfg",
},
"files": read_file("Hello.tla") | read_file("Hello.cfg"),
}
result = apalache_pure(json=data)
# That's it. Now print for demo purposes.
to_print = stdjson.dumps(result, indent=4, sort_keys=True)
print(to_print)
def apalache_pure_cmd_demo():
"""
Call Apalache, encapsulated to remove side effects.
"""
cmd = ApalachePureCmd
cmd.jar = apa_path()
cmd.files = read_file("Hello.tla") | read_file("Hello.cfg")
cmd.args = ApalacheArgs()
cmd.args.cmd = "check"
cmd.args.nworkers = 4
cmd.args.file = "Hello.tla"
cmd.args.config = "Hello.cfg"
result = apalache_pure(cmd=cmd)
# That's it. Now print for demo purposes.
to_print = stdjson.dumps(result, indent=4, sort_keys=True)
print(to_print)
def apalache_raw_json_demo():
"""
Call Apalache directly without encapsulation.
"""
data = {
"jar": apa_path(),
"cwd": os.getcwd(),
"args": {
"cmd": "check",
"nworkers": 4,
"file": "Hello.tla",
"config": "Hello.cfg",
},
}
result = apalache_raw(json=data)
# That's it. Now print for demo purposes.
stdout_pretty = result.stdout.decode()
stderr_pretty = result.stderr.decode()
obj_to_print = {}
obj_to_print["shell_cmd"] = result.args
obj_to_print["return_code"] = result.returncode
obj_to_print["stdout"] = stdout_pretty
obj_to_print["stderr"] = stderr_pretty
to_print = stdjson.dumps(obj_to_print, indent=4, sort_keys=True)
print(to_print)
def apalache_raw_cmd_demo():
"""
Call Apalache directly without encapsulation.
"""
cmd = ApalacheRawCmd
cmd.jar = apa_path()
cmd.cwd = os.getcwd()
cmd.args = ApalacheArgs()
cmd.args.cmd = "check"
cmd.args.nworkers = 4
cmd.args.file = "Hello.tla"
cmd.args.config = "Hello.cfg"
result = apalache_raw(cmd=cmd)
# That's it. Now print for demo purposes.
stdout_pretty = result.stdout.decode()
stderr_pretty = result.stderr.decode()
obj_to_print = {}
obj_to_print["shell_cmd"] = result.args
obj_to_print["return_code"] = result.returncode
obj_to_print["stdout"] = stdout_pretty
obj_to_print["stderr"] = stderr_pretty
to_print = stdjson.dumps(obj_to_print, indent=4, sort_keys=True)
print(to_print)
def tlc_pure_json_demo():
"""
Call TLC, encapsulated to remove side effects.
"""
data = {
"jar": tlc_path(),
"args": {
"workers": "auto",
"file": "Hello.tla",
"config": "Hello.cfg",
},
"files": read_file("Hello.tla") | read_file("Hello.cfg"),
}
result = tlc_pure(json=data)
# That's it. Now print for demo purposes.
to_print = stdjson.dumps(result, indent=4, sort_keys=True)
print(to_print)
def tlc_pure_cmd_demo():
"""
Call TLC, encapsulated to remove side effects.
"""
cmd = TlcPureCmd()
cmd.jar = tlc_path()
cmd.files = read_file("Hello.tla") | read_file("Hello.cfg")
cmd.args = TlcArgs()
cmd.args.workers = "auto"
cmd.args.file = "Hello.tla"
cmd.args.config = "Hello.cfg"
result = tlc_pure(cmd=cmd)
# That's it. Now print for demo purposes.
to_print = stdjson.dumps(result, indent=4, sort_keys=True)
print(to_print)
def tlc_raw_json_demo():
"""
Call TLC directly without encapsulation.
"""
data = {
"jar": tlc_path(),
"cwd": os.getcwd(),
"args": {
"workers": "auto",
"file": "Hello.tla",
"config": "Hello.cfg",
},
}
result = tlc_raw(json=data)
# That's it. Now print for demo purposes.
stdout_pretty = result.stdout.decode()
stderr_pretty = result.stderr.decode()
obj_to_print = {}
obj_to_print["shell_cmd"] = result.args
obj_to_print["return_code"] = result.returncode
obj_to_print["stdout"] = stdout_pretty
obj_to_print["stderr"] = stderr_pretty
to_print = stdjson.dumps(obj_to_print, indent=4, sort_keys=True)
print(to_print)
def tlc_raw_cmd_demo():
"""
Call TLC directly without encapsulation.
"""
cmd = TlcRawCmd
cmd.jar = tlc_path()
cmd.cwd = os.getcwd()
cmd.args = TlcArgs()
cmd.args.workers = "auto"
cmd.args.file = "Hello.tla"
cmd.args.config = "Hello.cfg"
result = tlc_raw(cmd=cmd)
# That's it. Now print for demo purposes.
stdout_pretty = result.stdout.decode()
stderr_pretty = result.stderr.decode()
obj_to_print = {}
obj_to_print["shell_cmd"] = result.args
obj_to_print["return_code"] = result.returncode
obj_to_print["stdout"] = stdout_pretty
obj_to_print["stderr"] = stderr_pretty
to_print = stdjson.dumps(obj_to_print, indent=4, sort_keys=True)
print(to_print)
def tlc_itf_json_demo():
"""
Extract traces in ITF format from the stdout of a TLC run
"""
# See TlcTraces.out for example TLC output
data = {
"stdout": read_file("TlcTraces.out")["TlcTraces.out"],
}
result = tlc_itf(json=data)
to_print = stdjson.dumps(result, indent=4, sort_keys=True)
print(to_print)
def tlc_itf_cmd_demo():
"""
Extract traces in ITF format from the stdout of a TLC run
"""
# See TlcTraces.out for example TLC output
cmd = TlcITFCmd()
cmd.stdout = read_file("TlcTraces.out")["TlcTraces.out"]
result = tlc_itf(cmd=cmd)
to_print = stdjson.dumps(result, indent=4, sort_keys=True)
print(to_print)
if __name__ == "__main__":
if sys.argv[1] == "apalache_pure_json":
apalache_pure_json_demo()
if sys.argv[1] == "apalache_pure_cmd":
apalache_pure_cmd_demo()
if sys.argv[1] == "apalache_raw_json":
apalache_raw_json_demo()
if sys.argv[1] == "apalache_raw_cmd":
apalache_raw_cmd_demo()
if sys.argv[1] == "tlc_pure_json":
tlc_pure_json_demo()
if sys.argv[1] == "tlc_pure_cmd":
tlc_pure_cmd_demo()
if sys.argv[1] == "tlc_raw_json":
tlc_raw_json_demo()
if sys.argv[1] == "tlc_raw_cmd":
tlc_raw_cmd_demo()
if sys.argv[1] == "tlc_itf_json":
tlc_itf_json_demo()
if sys.argv[1] == "tlc_itf_cmd":
tlc_itf_cmd_demo()
if sys.argv[1] == "all":
for fun in [
apalache_pure_json_demo,
apalache_pure_cmd_demo,
apalache_raw_json_demo,
apalache_raw_cmd_demo,
tlc_pure_json_demo,
tlc_pure_cmd_demo,
tlc_raw_json_demo,
tlc_raw_cmd_demo,
tlc_itf_json_demo,
tlc_itf_cmd_demo,
]:
with open(f"{fun.__name__}.json", "w") as fd:
with redirect_stdout(fd):
fun()