|
| 1 | +from typing import List, Optional |
| 2 | +from selfie_lib.CommentTracker import SnapshotFileLayout |
| 3 | +import inspect |
| 4 | +from functools import total_ordering |
| 5 | + |
| 6 | + |
| 7 | +@total_ordering |
| 8 | +class CallLocation: |
| 9 | + def __init__(self, file_name: Optional[str], line: int): |
| 10 | + self._file_name = file_name |
| 11 | + self._line = line |
| 12 | + |
| 13 | + @property |
| 14 | + def file_name(self) -> Optional[str]: |
| 15 | + return self._file_name |
| 16 | + |
| 17 | + @property |
| 18 | + def line(self) -> int: |
| 19 | + return self._line |
| 20 | + |
| 21 | + def with_line(self, line: int) -> "CallLocation": |
| 22 | + return CallLocation(self._file_name, line) |
| 23 | + |
| 24 | + def ide_link(self, layout: "SnapshotFileLayout") -> str: |
| 25 | + return f"File: {self._file_name}, Line: {self._line}" |
| 26 | + |
| 27 | + def same_path_as(self, other: "CallLocation") -> bool: |
| 28 | + if not isinstance(other, CallLocation): |
| 29 | + return False |
| 30 | + return self._file_name == other.file_name |
| 31 | + |
| 32 | + def source_filename_without_extension(self) -> str: |
| 33 | + if self._file_name is not None: |
| 34 | + return self._file_name.rsplit(".", 1)[0] |
| 35 | + return "" |
| 36 | + |
| 37 | + def __lt__(self, other) -> bool: |
| 38 | + if not isinstance(other, CallLocation): |
| 39 | + return NotImplemented |
| 40 | + return (self._file_name, self._line) < (other.file_name, other.line) |
| 41 | + |
| 42 | + def __eq__(self, other) -> bool: |
| 43 | + if not isinstance(other, CallLocation): |
| 44 | + return NotImplemented |
| 45 | + return (self._file_name, self._line) == (other.file_name, other.line) |
| 46 | + |
| 47 | + |
| 48 | +class CallStack: |
| 49 | + def __init__(self, location: CallLocation, rest_of_stack: List[CallLocation]): |
| 50 | + self.location = location |
| 51 | + self.rest_of_stack = rest_of_stack |
| 52 | + |
| 53 | + def ide_link(self, layout: "SnapshotFileLayout") -> str: |
| 54 | + links = [self.location.ide_link(layout)] + [ |
| 55 | + loc.ide_link(layout) for loc in self.rest_of_stack |
| 56 | + ] |
| 57 | + return "\n".join(links) |
| 58 | + |
| 59 | + |
| 60 | +def recordCall(callerFileOnly: bool = False) -> CallStack: |
| 61 | + stack_frames = inspect.stack()[1:] |
| 62 | + |
| 63 | + if callerFileOnly: |
| 64 | + caller_file = stack_frames[0].filename |
| 65 | + stack_frames = [ |
| 66 | + frame for frame in stack_frames if frame.filename == caller_file |
| 67 | + ] |
| 68 | + |
| 69 | + call_locations = [ |
| 70 | + CallLocation(frame.filename, frame.lineno) for frame in stack_frames |
| 71 | + ] |
| 72 | + |
| 73 | + location = call_locations[0] |
| 74 | + rest_of_stack = call_locations[1:] |
| 75 | + |
| 76 | + return CallStack(location, rest_of_stack) |
0 commit comments