-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvm_types.py
475 lines (393 loc) · 13.5 KB
/
vm_types.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
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
import unittest
from dataclasses import dataclass
from typing import Any, Callable, Dict, List, NewType, Tuple, Optional
import instr_types as t
from helpers import Tree
@dataclass
class Array:
"""Michelson list. Called array not to conflict with `typing.List`
used in type annotations.
Parameters
----------
els: python list representing the Michelson list"""
els: List[Any]
@dataclass
class Pair:
"""Michelson pair.
Parameters
----------
car: first element
cdr: second element"""
car: Any
cdr: Any
annotation: Optional[str] = None
@dataclass
class Some:
"""Michelson `option.some` type"""
value: Any
def __eq__(self, o):
if type(o) == type(self):
return self.value == o.value and self.value == o.value
else:
return False
@dataclass
class Or:
"""Michelson `or` type"""
left: Any
right: Any
def __eq__(self, o):
if type(o) == type(self):
return self.left == o.left and self.right == o.right
else:
return False
@dataclass
class Left:
"""Michelson `LEFT` data type"""
value: Any
def __eq__(self, o):
return type(o) == type(self) and self.value == o.value
@dataclass
class Right:
"""Michelson `RIGHT` data type"""
value: Any
def __eq__(self, o):
return type(o) == type(self) and self.value == o.value
@dataclass
class FunctionPrototype:
arg_type: t.Type
return_type: t.Type
@dataclass
class Instr:
name: str
args: List[Any]
kwargs: Dict[str, Any]
@dataclass
class Entrypoint:
prototype: FunctionPrototype
instructions: List[Instr]
class ParameterTree(Tree):
def make_node(self, left, right):
return Or(left, right)
def get_left(self, tree_node):
return tree_node.left
def get_right(self, tree_node):
return tree_node.right
def set_right(self, tree_node, value):
tree_node.right = value
def left_side_tree_height(self, tree, height=0):
if type(tree) is not Or:
return height
else:
return self.left_side_tree_height(self.get_left(tree), height + 1)
def navigate_to_tree_leaf(self, tree, leaf_number, param):
if type(tree) is not Or:
return param
left_max_leaf_number = 2 ** self.left_side_tree_height(tree.left)
if leaf_number <= left_max_leaf_number:
return Left(self.navigate_to_tree_leaf(tree.left, leaf_number, param))
else:
return Right(
self.navigate_to_tree_leaf(
tree.right, leaf_number - left_max_leaf_number, param
)
)
class EntrypointTree(Tree):
def make_node(self, left=None, right=None):
if not left:
left = []
if not right:
right = []
return Instr("IF_LEFT", [left, right], {})
def get_left(self, tree_node):
return tree_node.args[0]
def get_right(self, tree_node):
return tree_node.args[1]
def set_right(self, tree_node, value):
tree_node.args[1] = value
def get_leaf_from_element(self, element):
return element.instructions
def format_leaf(self, leaf):
return leaf if type(leaf) == list else [leaf]
@dataclass
class Contract:
storage: Any
storage_type: t.Type
entrypoints: Dict[str, Entrypoint]
instructions: List[Instr]
def add_entrypoint(self, name: str, entrypoint: Entrypoint):
self.entrypoints[name] = entrypoint
def make_contract_param(self, entrypoint_name, entrypoint_param):
entrypoint_names = sorted(self.entrypoints.keys())
if len(entrypoint_names) == 1:
return entrypoint_param
parameter_tree = ParameterTree()
tree = parameter_tree.list_to_tree(entrypoint_names)
entrypoint_index = entrypoint_names.index(entrypoint_name)
return parameter_tree.navigate_to_tree_leaf(
tree, entrypoint_index + 1, entrypoint_param
)
def get_storage_type(self):
return self.storage_type
def get_parameter_type(self):
entrypoint_names = self.entrypoints.keys()
if len(entrypoint_names) == 1:
return self.entrypoints[entrypoint_names[0]].arg_type
else:
parameter_tree = ParameterTree()
entrypoints = [
self.entrypoints[name].prototype.arg_type
for name in sorted(entrypoint_names)
]
for i, entrypoint in enumerate(entrypoints):
entrypoint.annotation = "%" + sorted(list(entrypoint_names))[i]
return parameter_tree.list_to_tree(entrypoints)
def get_contract_body(self):
entrypoints = [
self.entrypoints[name] for name in sorted(self.entrypoints.keys())
]
entrypoint_tree = EntrypointTree()
return entrypoint_tree.list_to_tree(entrypoints)
class TestContract(unittest.TestCase):
def test_get_contract_body(self):
contract = Contract(
storage=10,
storage_type=t.Int(),
entrypoints={
"add": Entrypoint(
FunctionPrototype(t.Int(), t.Int()),
[
Instr("PUSH", [t.Int(), 1], {}),
],
),
"sub": Entrypoint(
FunctionPrototype(t.Int(), t.Int()),
[
Instr("PUSH", [t.Int(), 2], {}),
],
),
"div": Entrypoint(
FunctionPrototype(t.Int(), t.Int()),
[
Instr("PUSH", [t.Int(), 3], {}),
],
),
},
instructions=[],
)
contract_body = contract.get_contract_body()
sorted_entrypoints = [
contract.entrypoints[name] for name in sorted(contract.entrypoints.keys())
]
entrypoint_tree = EntrypointTree()
expected_result = entrypoint_tree.list_to_tree(sorted_entrypoints)
self.assertEqual(contract_body, expected_result)
def test_entrypoints_to_tree(self):
contract = Contract(
storage=10,
storage_type=t.Int(),
entrypoints={
"add": Entrypoint(
FunctionPrototype(t.Int(), t.Int()),
[
Instr("PUSH", [t.Int(), 1], {}),
],
),
"sub": Entrypoint(
FunctionPrototype(t.Int(), t.Int()),
[
Instr("PUSH", [t.Int(), 2], {}),
],
),
"div": Entrypoint(
FunctionPrototype(t.Int(), t.Int()),
[
Instr("PUSH", [t.Int(), 3], {}),
],
),
},
instructions=[],
)
entrypoints = [
contract.entrypoints[name] for name in sorted(contract.entrypoints.keys())
]
entrypoint_tree = EntrypointTree()
contract_body = entrypoint_tree.list_to_tree(entrypoints)
expected_result = Instr(
"IF_LEFT",
[
[
Instr(
"IF_LEFT",
[
contract.entrypoints["add"].instructions,
contract.entrypoints["div"].instructions,
],
{},
)
],
contract.entrypoints["sub"].instructions,
],
{},
)
self.assertEqual(contract_body, expected_result)
def test_navigate_to_tree_leaf(self):
entrypoint_list = ["add", "div", "mul", "sub", "modulo"]
param_tree = ParameterTree()
tree = param_tree.list_to_tree(entrypoint_list)
entrypoint_param = 111
entrypoint_index = entrypoint_list.index("add")
contract_param = param_tree.navigate_to_tree_leaf(
tree, entrypoint_index + 1, entrypoint_param
)
self.assertEqual(contract_param, Left(Left(Left(entrypoint_param))))
entrypoint_index = entrypoint_list.index("div")
contract_param = param_tree.navigate_to_tree_leaf(
tree, entrypoint_index + 1, entrypoint_param
)
self.assertEqual(contract_param, Left(Left(Right(entrypoint_param))))
entrypoint_index = entrypoint_list.index("mul")
contract_param = param_tree.navigate_to_tree_leaf(
tree, entrypoint_index + 1, entrypoint_param
)
self.assertEqual(contract_param, Left(Right(Left(entrypoint_param))))
entrypoint_index = entrypoint_list.index("sub")
contract_param = param_tree.navigate_to_tree_leaf(
tree, entrypoint_index + 1, entrypoint_param
)
self.assertEqual(contract_param, Left(Right(Right(entrypoint_param))))
entrypoint_index = entrypoint_list.index("modulo")
contract_param = param_tree.navigate_to_tree_leaf(
tree, entrypoint_index + 1, entrypoint_param
)
self.assertEqual(contract_param, Right(entrypoint_param))
def test_left_side_tree_height(self):
param_tree = ParameterTree()
self.assertEqual(
param_tree.left_side_tree_height(param_tree.list_to_tree([1, 2, 3, 4])), 2
)
self.assertEqual(
param_tree.left_side_tree_height(param_tree.list_to_tree([1, 2, 3, 4, 5])),
3,
)
self.assertEqual(
param_tree.left_side_tree_height(
param_tree.list_to_tree([1, 2, 3, 4, 5]).left
),
2,
)
def test_list_to_tree(self):
l = [1, 2]
param_tree = ParameterTree()
tree = param_tree.list_to_tree(l)
self.assertEqual(Or(left=1, right=2), tree)
l = [1, 2, 3]
tree = param_tree.list_to_tree(l)
self.assertEqual(Or(left=Or(left=1, right=2), right=3), tree)
l = [1, 2, 3, 4]
tree = param_tree.list_to_tree(l)
self.assertEqual(Or(left=Or(left=1, right=2), right=Or(left=3, right=4)), tree)
l = [1, 2, 3, 4, 5]
tree = param_tree.list_to_tree(l)
self.assertEqual(
Or(left=Or(left=Or(left=1, right=2), right=Or(left=3, right=4)), right=5),
tree,
)
l = [1, 2, 3, 4, 5, 6]
tree = param_tree.list_to_tree(l)
self.assertEqual(
Or(
left=Or(left=Or(left=1, right=2), right=Or(left=3, right=4)),
right=Or(left=5, right=6),
),
tree,
)
l = [1, 2, 3, 4, 5, 6, 7]
tree = param_tree.list_to_tree(l)
self.assertEqual(
Or(
left=Or(left=Or(left=1, right=2), right=Or(left=3, right=4)),
right=Or(left=Or(left=5, right=6), right=7),
),
tree,
)
l = [1, 2, 3, 4, 5, 6, 7, 8]
tree = param_tree.list_to_tree(l)
self.assertEqual(
Or(
left=Or(left=Or(left=1, right=2), right=Or(left=3, right=4)),
right=Or(left=Or(left=5, right=6), right=Or(left=7, right=8)),
),
tree,
)
l = [1, 2, 3, 4, 5, 6, 7, 8, 9]
tree = param_tree.list_to_tree(l)
self.assertEqual(
Or(
left=Or(
left=Or(left=Or(left=1, right=2), right=Or(left=3, right=4)),
right=Or(left=Or(left=5, right=6), right=Or(left=7, right=8)),
),
right=9,
),
tree,
)
def test_make_contract_param(self):
contract = Contract(
storage=10,
storage_type=t.Int(),
entrypoints={
"add": Entrypoint(
FunctionPrototype(t.Int(), t.Int()),
[],
),
"sub": Entrypoint(
FunctionPrototype(t.Int(), t.Int()),
[],
),
"div": Entrypoint(
FunctionPrototype(t.Int(), t.Int()),
[],
),
},
instructions=[],
)
self.assertEqual(
Left(Left(1)),
contract.make_contract_param("add", 1),
)
self.assertEqual(
Left(Right(1)),
contract.make_contract_param("div", 1),
)
self.assertEqual(
Right(1),
contract.make_contract_param("sub", 1),
)
def test_contract_parameter_type(self):
contract = Contract(
storage=10,
storage_type=t.Int(),
entrypoints={
"add": Entrypoint(
FunctionPrototype(t.Int(), t.Int()),
[],
),
"sub": Entrypoint(
FunctionPrototype(t.Int(), t.Int()),
[],
),
"div": Entrypoint(
FunctionPrototype(t.Int(), t.Int()),
[],
),
},
instructions=[],
)
self.assertEqual(
Or(Or(t.Int(), t.Int()), t.Int()),
contract.get_parameter_type(),
)
suite = unittest.defaultTestLoader.loadTestsFromTestCase(TestContract)
unittest.TextTestRunner().run(suite)
if __name__ == "__main__":
unittest.main()