-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathTraceAll.py
899 lines (737 loc) · 29.7 KB
/
TraceAll.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
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
import logging
from types import TracebackType
from typing import Any, Callable, Dict, List, Optional, Tuple, Union
import libcst as cst
import libcst.matchers as m
from .BaseAnalysis import BaseAnalysis
from ..utils.nodeLocator import get_node_by_location
class TraceAll(BaseAnalysis):
def __init__(self) -> None:
super().__init__()
logging.basicConfig(filename='output.log', format='%(message)s', level=logging.INFO)
def log(self, iid: int, *args, **kwargs):
res = ''
# for arg in args:
# if 'danger_of_recursion' in kwargs:
# res += ' ' + str(hex(id(arg)))
# else:
# res += ' ' + str(arg)
logging.info(str(iid) + ': ' + res[:80])
# Literals
def integer(self, dyn_ast: str, iid: int, val: Any) -> Any:
"""Hook for integer literals.
Parameters
----------
dyn_ast : str
The path to the original code. Can be used to extract the syntax tree.
iid : int
Unique ID of the syntax tree node.
val : Any
The value of the integer literal.
Returns
-------
Any
If provided, overwrites the value of the integer literal.
"""
self.log(iid, ' Integer', 'value:', val)
def _float(self, dyn_ast: str, iid: int, val: Any) -> Any:
"""Hook for floating point literals.
Parameters
----------
dyn_ast : str
The path to the original code. Can be used to extract the syntax tree.
iid : int
Unique ID of the syntax tree node.
val : Any
The value of the floating point literal.
Returns
-------
Any
If provided, overwrites the value of the float literal.
"""
self.log(iid, ' Float', 'value:', val)
def imaginary(self, dyn_ast: str, iid: int, val: Any) -> Any:
"""Hook for imaginary number literals.
Parameters
----------
dyn_ast : str
The path to the original code. Can be used to extract the syntax tree.
iid : int
Unique ID of the syntax tree node.
val : Any
The value of the imaginary number literal.
Returns
-------
Any
If provided, overwrites the value of the imaginary number literal.
"""
self.log(iid, ' Imaginary', 'value:', val)
def string(self, dyn_ast: str, iid: int, val: Any) -> Any:
"""Hook for string literals.
Parameters
----------
dyn_ast : str
The path to the original code. Can be used to extract the syntax tree.
iid : int
Unique ID of the syntax tree node.
val : Any
The value of the string literal.
Returns
-------
Any
If provided, overwrites the value of the string literal.
"""
self.log(iid, ' String', 'value:', val)
def boolean(self, dyn_ast: str, iid: int, val: Any) -> Any:
"""Hook for boolean literals.
Parameters
----------
dyn_ast : str
The path to the original code. Can be used to extract the syntax tree.
iid : int
Unique ID of the syntax tree node.
val : Any
The value of the boolean literal.
Returns
-------
Any
If provided, overwrites the value of the boolean literal.
"""
self.log(iid, ' Boolean', 'value:', val)
def literal(self, dyn_ast: str, iid: int, val: Any) -> Any:
"""Hook for all literals.
Parameters
----------
dyn_ast : str
The path to the original code. Can be used to extract the syntax tree.
iid : int
Unique ID of the syntax tree node.
val : Any
The value of the literal.
Returns
-------
Any
If provided, overwrites the value of the literal.
"""
self.log(iid, 'Literal ', 'value:', val)
def dictionary(self, dyn_ast: str, iid: int, items: List[Any], value: Dict) -> Dict:
"""Hook for a dictionary definition.
E.g. `{'a': 1, 'b': 2}`
or `{i: i for i in range(10)}`
Parameters
----------
dyn_ast : str
The path to the original code. Can be used to extract the syntax tree.
iid : int
Unique ID of the syntax tree node.
items : List[Any]
The lis of key-value pairs.
value : Dict
The dictionary itself.
Returns
-------
Dict
If provided, overwrites the value of the dictionary.
"""
self.log(iid, 'Dictionary', 'items:', items)
def _list(self, dyn_ast: str, iid: int, value: List) -> List:
"""Hook for a list definition.
E.g. `[1, 2, 3]`
or `[i for i in range(10)]`
Parameters
----------
dyn_ast : str
The path to the original code. Can be used to extract the syntax tree.
iid : int
Unique ID of the syntax tree node.
value : List
The list itself.
Returns
-------
List
If provided, overwrites the value of the list.
"""
self.log(iid, 'List', value)
def _tuple(self, dyn_ast: str, iid: int, items: List[Any], value: tuple) -> tuple:
"""Hook for a tuple.
E.g. `(1, 2, 3)`
or `(i for i in range(10))`
Parameters
----------
dyn_ast : str
The path to the original code. Can be used to extract the syntax tree.
iid : int
Unique ID of the syntax tree node.
items : List[Any]
The lis of items in the tuple.
value : tuple
The tuple itself.
Returns
-------
tuple
If provided, overwrites the value of the tuple.
"""
self.log(iid, 'Tuple', 'items:', items)
# Operations
def operation(self, dyn_ast: str, iid: int, operator: str, operands: List[Any], result: Any) -> Any:
"""Hook for any operation.
Parameters
----------
dyn_ast : str
The path to the original code. Can be used to extract the syntax tree.
iid : int
Unique ID of the syntax tree node.
operator : str
The operator of the operation.
operands : List[Any]
The operands of the operation.
result : Any
The result of the operation.
Returns
-------
Any
If provided, overwrites the result of the operation.
"""
pass
def binary_operation(self, dyn_ast: str, iid: int, op: str, left: Any, right: Any, result: Any) -> Any:
"""Hook for any binary operation.
Parameters
----------
dyn_ast : str
The path to the original code. Can be used to extract the syntax tree.
iid : int
Unique ID of the syntax tree node.
op : str
The operator of the operation.
left : Any
The left operand of the operation.
right : Any
The right operand of the operation.
result : Any
The result of the operation.
Returns
-------
Any
If provided, overwrites the result of the operation.
"""
self.log(iid, 'Binary Operation', left, op, right, '->', result)
def add(self, dyn_ast: str, iid: int, left: Any, right: Any, result: Any) -> Any:
self.log(iid, 'Binary Operation', left, right, '->', result)
def bit_and(self, dyn_ast: str, iid: int, left: Any, right: Any, result: Any) -> Any:
self.log(iid, 'Binary Operation', left, right, '->', result)
def bit_or(self, dyn_ast: str, iid: int, left: Any, right: Any, result: Any) -> Any:
self.log(iid, 'Binary Operation', left, right, '->', result)
def bit_xor(self, dyn_ast: str, iid: int, left: Any, right: Any, result: Any) -> Any:
self.log(iid, 'Binary Operation', left, right, '->', result)
def divide(self, dyn_ast: str, iid: int, left: Any, right: Any, result: Any) -> Any:
self.log(iid, 'Binary Operation', left, right, '->', result)
def floor_divide(self, dyn_ast: str, iid: int, left: Any, right: Any, result: Any) -> Any:
self.log(iid, 'Binary Operation', left, right, '->', result)
def left_shift(self, dyn_ast: str, iid: int, left: Any, right: Any, result: Any) -> Any:
self.log(iid, 'Binary Operation', left, right, '->', result)
def right_shift(self, dyn_ast: str, iid: int, left: Any, right: Any, result: Any) -> Any:
self.log(iid, 'Binary Operation', left, right, '->', result)
def matrix_multiply(self, dyn_ast: str, iid: int, left: Any, right: Any, result: Any) -> Any:
self.log(iid, 'Binary Operation', left, right, '->', result)
def modulo(self, dyn_ast: str, iid: int, left: Any, right: Any, result: Any) -> Any:
self.log(iid, 'Binary Operation', left, right, '->', result)
def multiply(self, dyn_ast: str, iid: int, left: Any, right: Any, result: Any) -> Any:
self.log(iid, 'Binary Operation', left, right, '->', result)
def power(self, dyn_ast: str, iid: int, left: Any, right: Any, result: Any) -> Any:
self.log(iid, 'Binary Operation', left, right, '->', result)
def subtract(self, dyn_ast: str, iid: int, left: Any, right: Any, result: Any) -> Any:
self.log(iid, 'Binary Operation', left, right, '->', result)
def _and(self, dyn_ast: str, iid: int, left: Any, right: Any, result: Any) -> Any:
self.log(iid, 'Binary Operation', left, right, '->', result)
def _or(self, dyn_ast: str, iid: int, left: Any, right: Any, result: Any) -> Any:
self.log(iid, 'Binary Operation', left, right, '->', result)
def unary_operation(self, dyn_ast: str, iid: int, opr: Any, arg: Any, result: Any) -> Any:
"""Hook for any unary operation.
Parameters
----------
dyn_ast : str
The path to the original code. Can be used to extract the syntax tree.
iid : int
Unique ID of the syntax tree node.
opr : str
The operator of the operation.
arg : Any
The operand of the operation.
result : Any
The result of the operation.
Returns
-------
Any
If provided, overwrites the result of the operation.
"""
self.log(iid, 'Unary Operation', arg, '->', result)
def bit_invert(self, dyn_ast: str, iid: int, arg: Any, result: Any) -> Any:
self.log(iid, 'Unary Operation', arg, '->', result)
def minus(self, dyn_ast: str, iid: int, arg: Any, result: Any) -> Any:
self.log(iid, 'Unary Operation', arg, '->', result)
def _not(self, dyn_ast: str, iid: int, arg: Any, result: Any) -> Any:
self.log(iid, 'Unary Operation', arg, '->', result)
def plus(self, dyn_ast: str, iid: int, arg: Any, result: Any) -> Any:
self.log(iid, 'Unary Operation', arg, '->', result)
def comparison(self, dyn_ast: str, iid: int, op: str, left: Any, right: Any, result: Any) -> Any:
"""Hook for the comparison operation.
Parameters
----------
dyn_ast : str
The path to the original code. Can be used to extract the syntax tree.
iid : int
Unique ID of the syntax tree node.
op : str
The operator of the operation.
left : Any
The left operand of the operation.
right : Any
The right operand of the operation.
result : Any
The result of the operation.
Returns
-------
Any
If provided, overwrites the result of the operation.
"""
self.log(iid, 'Comparison', left, op, right, '->', result)
def equal(self, dyn_ast: str, iid: int, left: Any, right: Any, result: Any) -> Any:
self.log(iid, 'Comparison', left, right, '->', result)
def greater_than(self, dyn_ast: str, iid: int, left: Any, right: Any, result: Any) -> Any:
self.log(iid, 'Comparison', left, right, '->', result)
def greater_than_equal(self, dyn_ast: str, iid: int, left: Any, right: Any, result: Any) -> Any:
self.log(iid, 'Comparison', left, right, '->', result)
def _in(self, dyn_ast: str, iid: int, left: Any, right: Any, result: Any) -> Any:
self.log(iid, 'Comparison', left, right, '->', result)
def _is(self, dyn_ast: str, iid: int, left: Any, right: Any, result: Any) -> Any:
self.log(iid, 'Comparison', left, right, '->', result)
def less_than(self, dyn_ast: str, iid: int, left: Any, right: Any, result: Any) -> Any:
self.log(iid, 'Comparison', left, right, '->', result)
def less_than_equal(self, dyn_ast: str, iid: int, left: Any, right: Any, result: Any) -> Any:
self.log(iid, 'Comparison', left, right, '->', result)
def not_equal(self, dyn_ast: str, iid: int, left: Any, right: Any, result: Any) -> Any:
self.log(iid, 'Comparison', left, right, '->', result)
def is_not(self, dyn_ast: str, iid: int, left: Any, right: Any, result: Any) -> Any:
self.log(iid, 'Comparison', left, right, '->', result)
def not_in(self, dyn_ast: str, iid: int, left: Any, right: Any, result: Any) -> Any:
self.log(iid, 'Comparison', left, right, '->', result)
# Memory access
def memory_access(self, dyn_ast: str, iid: int, val: Any) -> Any:
"""Hook for any memory access, currently, except some write operations.
Parameters
----------
dyn_ast : str
The path to the original code. Can be used to extract the syntax tree.
iid : int
Unique ID of the syntax tree node.
val : Any
The value accessed.
Returns
-------
Any
If provided, overwrites the returned value.
"""
self.log(iid, 'Accessing')
def read(self, dyn_ast: str, iid: int, val: Any) -> Any:
self.log(iid, ' Reading')
def read_identifier(self, dyn_ast: str, iid: int, val: Any) -> Any:
self.log(iid, ' Reading')
def write(self, dyn_ast: str, iid: int, old_vals: List[Callable], new_val: Any) -> Any:
"""Hook for writes.
Parameters
----------
dyn_ast : str
The path to the original code. Can be used to extract the syntax tree.
iid : int
Unique ID of the syntax tree node.
old_vals : Any
A list of old values before the write takes effect.
It's a list to support multiple assignments.
Each old value is wrapped into a lambda function, so that
the analysis writer can decide if and when to evaluate it.
new_val : Any
The value after the write takes effect.
Returns
-------
Any
If provided, overwrites the returned value.
"""
self.log(iid, ' Writing')
def delete(self, dyn_ast: str, iid: int, val: Any) -> Optional[bool]:
"""Hook for deletes.
Parameters
----------
dyn_ast : str
The path to the original code. Can be used to extract the syntax tree.
iid : int
Unique ID of the syntax tree node.
val : Any
The value deleted.
Returns
-------
Any
If True cancels the delete.
"""
self.log(iid, ' Deleting')
def read_attribute(self, dyn_ast: str, iid: int, base: Any, name: str, val: Any) -> Any:
"""Hook for reading an object attribute.
E.g. `obj.attr`
Parameters
----------
dyn_ast : str
The path to the original code. Can be used to extract the syntax tree.
iid : int
Unique ID of the syntax tree node.
base : Any
The object to which the attribute is attached.
name : str
The name of the attribute.
val : Any
The resulting value.
Returns
-------
Any
If provided, overwrites the returned value.
"""
self.log(iid, 'Attribute', name)
def read_subscript(self, dyn_ast: str, iid: int, base: Any, sl: List[Union[int, Tuple]], val: Any) -> Any:
"""Hook for reading a subscript, also known as a slice.
E.g. `obj[1, 2]`
Parameters
----------
dyn_ast : str
The path to the original code. Can be used to extract the syntax tree.
iid : int
Unique ID of the syntax tree node.
base : Any
The object to which the subscript is attached.
sl : List[Union[int, Tuple]]
The subscript.
val : Any
The resulting value.
Returns
-------
Any
If provided, overwrites the returned value.
"""
self.log(iid, 'Slice', sl)
# Instrumented function
def function_enter(self, dyn_ast: str, iid: int, args: List[Any], is_lambda: bool) -> None:
"""Hook for when an instrumented function is entered.
Parameters
----------
dyn_ast : str
The path to the original code. Can be used to extract the syntax tree.
iid : int
Unique ID of the syntax tree node.
args : List[Any]
The arguments passed to the function.
is_lambda : bool
Whether the function is a lambda function.
"""
tmp = self._get_ast(dyn_ast)
if tmp is not None:
ast, iids = tmp
else:
return
if (not is_lambda) and (get_node_by_location(ast, iids.iid_to_location[iid], m.FunctionDef()).name in ['__str__', '__repr__']):
self.log(iid, 'Entered function', danger_of_recursion=True)
def function_exit(self, dyn_ast: str, iid: int, result: Any) -> Any:
"""Hook for exiting an instrumented function.
Parameters
----------
dyn_ast : str
The path to the original code. Can be used to extract the syntax tree.
iid : int
Unique ID of the syntax tree node.
result : Any
The result of the function.
Returns
-------
Any
If provided, overwrites the returned value.
"""
self.log(iid, 'Exiting function')
def _return(self, dyn_ast: str, iid: int, value: Any) -> Any:
self.log(iid, ' Returning', value)
def _yield(self, dyn_ast: str, iid: int, value: Any) -> Any:
self.log(iid, ' Yielding', value)
# Function Call
def pre_call(self, dyn_ast: str, iid: int, pos_args: Tuple, kw_args: Dict):
"""Hook called before a function call happens.
Parameters
----------
dyn_ast : str
The path to the original code. Can be used to extract the syntax tree.
iid : int
Unique ID of the syntax tree node.
pos_args : Tuple
The positional arguments passed to the function.
kw_args : Dict
The keyword arguments passed to the function.
"""
self.log(iid, 'Before function call')
def post_call(self, dyn_ast: str, iid: int, val: Any, pos_args: Tuple, kw_args: Dict) -> Any:
"""Hook called after a function call.
Parameters
----------
dyn_ast : str
The path to the original code. Can be used to extract the syntax tree.
iid : int
Unique ID of the syntax tree node.
val : Any
The return value of the function.
pos_args : Tuple
The positional arguments passed to the function.
kw_args : Dict
The keyword arguments passed to the function.
Returns
-------
Any
If provided, overwrites the returned value.
"""
self.log(iid, 'After function call')
# Statements
def augmented_assignment(self, dyn_ast: str, iid: int, left: Any, op: str, right: Any) -> Any:
"""Hook for any augmented assignment.
E.g. `a += 1`
Parameters
----------
dyn_ast : str
The path to the original code. Can be used to extract the syntax tree.
iid : int
Unique ID of the syntax tree node.
left : Any
The left operand.
op : str
The operator.
right : Any
The right operand.
val : Any
The resulting value.
Returns
-------
Any
If provided, overwrites the result.
"""
self.log(iid, 'Augmented assignment', left, op, right)
def add_assign(self, dyn_ast: str, iid: int, left: Any, right: Any) -> Any:
self.log(iid, 'Augmented assignment', left, right)
def bit_and_assign(self, dyn_ast: str, iid: int, left: Any, right: Any) -> Any:
self.log(iid, 'Augmented assignment', left, right)
def bit_or_assign(self, dyn_ast: str, iid: int, left: Any, right: Any) -> Any:
self.log(iid, 'Augmented assignment', left, right)
def bit_xor_assign(self, dyn_ast: str, iid: int, left: Any, right: Any) -> Any:
self.log(iid, 'Augmented assignment', left, right)
def divide_assign(self, dyn_ast: str, iid: int, left: Any, right: Any) -> Any:
self.log(iid, 'Augmented assignment', left, right)
def floor_divide_assign(self, dyn_ast: str, iid: int, left: Any, right: Any) -> Any:
self.log(iid, 'Augmented assignment', left, right)
def left_shift_assign(self, dyn_ast: str, iid: int, left: Any, right: Any) -> Any:
self.log(iid, 'Augmented assignment', left, right)
def matrix_multiply_assign(self, dyn_ast: str, iid: int, left: Any, right: Any) -> Any:
self.log(iid, 'Augmented assignment', left, right)
def modulo_assign(self, dyn_ast: str, iid: int, left: Any, right: Any) -> Any:
self.log(iid, 'Augmented assignment', left, right)
def multiply_assign(self, dyn_ast: str, iid: int, left: Any, right: Any) -> Any:
self.log(iid, 'Augmented assignment', left, right)
def power_assign(self, dyn_ast: str, iid: int, left: Any, right: Any) -> Any:
self.log(iid, 'Augmented assignment', left, right)
def right_shift_assign(self, dyn_ast: str, iid: int, left: Any, right: Any) -> Any:
self.log(iid, 'Augmented assignment', left, right)
def subtract_assign(self, dyn_ast: str, iid: int, left: Any, right: Any) -> Any:
self.log(iid, 'Augmented assignment', left, right)
def _raise(self, dyn_ast: str, iid: int, exc: Exception, cause: Any) -> Optional[Exception]:
"""Hook for instrumented raise statement.
Parameters
----------
dyn_ast : str
The path to the original code. Can be used to extract the syntax tree.
iid : int
Unique ID of the syntax tree node.
exc : Exception
The exception raised.
cause : Any
The cause of the exception.
Returns
-------
Exception
If provided, changes the exception raised.
"""
self.log(iid, 'Exception raised', exc, 'because of', cause)
def _assert(self, dyn_ast: str, iid: int, condition: bool, message: str) -> Optional[bool]:
"""Hook for assert statement.
Parameters
----------
dyn_ast : str
The path to the original code. Can be used to extract the syntax tree.
iid : int
Unique ID of the syntax tree node.
condition : bool
The condition to assert.
message : str
The message to display if the condition is false.
Returns
-------
bool
If provided, changes the condition of assert.
"""
self.log(iid, 'Asserting', condition, 'with message', message)
# Control flow
def enter_control_flow(self, dyn_ast: str, iid: int, cond_value: bool) -> Optional[bool]:
"""Hook called when entering a control flow branch.
Parameters
----------
dyn_ast : str
The path to the original code. Can be used to extract the syntax tree.
iid : int
Unique ID of the syntax tree node.
cond_value : bool
The value of the condition.
Returns
-------
bool
If provided, changes the condition of the control flow.
"""
self.log(iid, 'Control-flow enter', 'with condition', cond_value)
def exit_control_flow(self, dyn_ast: str, iid: int) -> None:
"""Hook called when exiting a control flow branch.
Parameters
----------
dyn_ast : str
The path to the original code. Can be used to extract the syntax tree.
iid : int
Unique ID of the syntax tree node.
"""
self.log(iid, 'Control-flow exit')
def enter_if(self, dyn_ast: str, iid: int, cond_value: bool) -> Optional[bool]:
"""Hook called when entering an if conditional.
Parameters
----------
dyn_ast : str
The path to the original code. Can be used to extract the syntax tree.
iid : int
Unique ID of the syntax tree node.
cond_value : bool
Whether the condition is true or false.
Returns
-------
Optional[bool]
If provided, overwrites the condition (which may change the branch outcome).
"""
self.log(iid, ' If', cond_value)
def enter_for(self, dyn_ast: str, iid: int, next_value: Any) -> Optional[Any]:
"""Hook for entering a single iteration of a for loop.
Parameters
----------
dyn_ast : str
The path to the original code. Can be used to extract the syntax tree.
iid : int
Unique ID of the syntax tree node.
next_value : Any
The next value of the iterator.
Returns
-------
Any
If provided, overwrites the value of the iterator.
"""
self.log(iid, ' For', next_value)
def enter_while(self, dyn_ast: str, iid: int, cond_value: bool) -> Optional[bool]:
"""Hook for entering the next iteration of a while loop.
Parameters
----------
dyn_ast : str
The path to the original code. Can be used to extract the syntax tree.
iid : int
Unique ID of the syntax tree node.
cond_value : bool
The value of the condition (which may change the branch outcome).
Returns
-------
bool
If provided, overwrites the condition.
"""
self.log(iid, ' While', cond_value)
def _break(self, dyn_ast: str, iid: int) -> Optional[bool]:
"""Hook for break statement.
Parameters
----------
dyn_ast : str
The path to the original code. Can be used to extract the syntax tree.
iid : int
Unique ID of the syntax tree node.
Returns
-------
bool
If False, cancels the break.
"""
self.log(iid, 'Break')
def _continue(self, dyn_ast: str, iid: int) -> Optional[bool]:
"""Hook for continue statement.
Parameters
----------
dyn_ast : str
The path to the original code. Can be used to extract the syntax tree.
iid : int
Unique ID of the syntax tree node.
Returns
-------
bool
If False, cancels continue.
"""
self.log(iid, 'Continue')
def _try(self, dyn_ast: str, iid: int) -> None:
"""Hook for entering a try block.
Parameters
----------
dyn_ast : str
The path to the original code. Can be used to extract the syntax tree.
iid : int
Unique ID of the syntax tree node.
"""
self.log(iid, 'Entered try')
def exception(self, dyn_ast: str, iid: int, exceptions: List[Exception], caught: Exception) -> Optional[Exception]:
"""Hook for entering an except block.
Parameters
----------
dyn_ast : str
The path to the original code. Can be used to extract the syntax tree.
iid : int
Unique ID of the syntax tree node.
exceptions : List[Exception]
The exceptions to catch.
caught : Exception
The exception caught.
Returns
-------
Exception
If provided, overwrites the exception caught.
"""
self.log(iid, 'Caught', caught, 'from', exceptions)
# Top level
def runtime_event(self, dyn_ast: str, iid: int) -> None:
"""Hook for any runtime event.
Parameters
----------
dyn_ast : str
The path to the original code. Can be used to extract the syntax tree.
iid : int
Unique ID of the syntax tree node.
"""
pass
def uncaught_exception(self, exc: Exception, stack_trace: TracebackType) -> None:
"""Hook for any uncaught exceptions.
Parameters
----------
exc : Exception
The exception raised.
stack_trace : TracebackType
The stack trace of the exception.
"""
self.log(-1, 'Uncaught exception', exc, stack_trace)
def begin_execution(self) -> None:
"""Hook for the start of execution."""
self.log(-1, 'Execution started')
def end_execution(self) -> None:
"""Hook for the end of execution."""
self.log(-1, 'Execution ended')