-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstack_info.py
43 lines (31 loc) · 1.09 KB
/
stack_info.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
import inspect
from pathlib import Path
from bx_py_utils.path import assert_is_file
class FrameNotFound(LookupError):
def __init__(self, file_path: Path):
self.file_path = file_path
def __str__(self):
return f'Frame outside "{self.file_path}" not found!'
def last_frame_outside_path(file_path: Path | str):
"""
Returns the stack frame that is the direct successor of given "file_path".
The use case may be to find caller information.
raise FrameNotFound if the given file path is not in stack.
"""
if not isinstance(file_path, Path):
file_path = Path(file_path)
assert_is_file(file_path)
frames = inspect.stack()
if frames is None:
# Maybe we don't run via CPython?!?
raise RuntimeError(
'Can not get stack frame. Current interpreter has no support for them?'
)
match_path = False
for frame in frames:
frame_path = Path(frame.filename)
if frame_path == file_path:
match_path = True
elif match_path:
return frame
raise FrameNotFound(file_path)