|
|
|
@ -18,7 +18,7 @@ if TYPE_CHECKING: |
|
|
|
|
|
|
|
|
|
# pylint: disable=too-many-instance-attributes |
|
|
|
|
class Source: |
|
|
|
|
def __init__(self) -> None: |
|
|
|
|
def __init__(self, compilation_unit: "SlitherCompilationUnit") -> None: |
|
|
|
|
self.start: int = 0 |
|
|
|
|
self.length: int = 0 |
|
|
|
|
self.filename: Filename = Filename("", "", "", "") |
|
|
|
@ -27,7 +27,7 @@ class Source: |
|
|
|
|
self.starting_column: int = 0 |
|
|
|
|
self.ending_column: int = 0 |
|
|
|
|
self.end: int = 0 |
|
|
|
|
self.compilation_unit: Optional["SlitherCompilationUnit"] = None |
|
|
|
|
self.compilation_unit = compilation_unit |
|
|
|
|
|
|
|
|
|
def to_json(self) -> Dict: |
|
|
|
|
return { |
|
|
|
@ -51,17 +51,16 @@ class Source: |
|
|
|
|
filename_relative: str = self.filename.relative if self.filename.relative else "" |
|
|
|
|
return f"{markdown_root}{filename_relative}{lines}" |
|
|
|
|
|
|
|
|
|
def to_detailled_str(self) -> str: |
|
|
|
|
def to_detailed_str(self) -> str: |
|
|
|
|
lines = self._get_lines_str() |
|
|
|
|
filename_short: str = self.filename.short if self.filename.short else "" |
|
|
|
|
return f"{filename_short}{lines} ({self.starting_column} - {self.ending_column})" |
|
|
|
|
|
|
|
|
|
def _get_lines_str(self, line_descr=""): |
|
|
|
|
|
|
|
|
|
# If the compilation unit was not initialized, it means that the set_offset was never called |
|
|
|
|
# on the corresponding object, which should not happen |
|
|
|
|
assert self.compilation_unit is not None |
|
|
|
|
def span(self) -> str: |
|
|
|
|
with open (self.filename.absolute, "r") as f: |
|
|
|
|
return f.readlines()[self.start:self.end] |
|
|
|
|
|
|
|
|
|
def _get_lines_str(self, line_descr=""): |
|
|
|
|
line_prefix = self.compilation_unit.core.line_prefix |
|
|
|
|
|
|
|
|
|
lines = self.lines |
|
|
|
@ -105,6 +104,7 @@ def _compute_line( |
|
|
|
|
|
|
|
|
|
Not done in an efficient way |
|
|
|
|
""" |
|
|
|
|
|
|
|
|
|
start_line, starting_column = compilation_unit.core.crytic_compile.get_line_from_offset( |
|
|
|
|
filename, start |
|
|
|
|
) |
|
|
|
@ -127,7 +127,7 @@ def _convert_source_mapping( |
|
|
|
|
|
|
|
|
|
position = re.findall("([0-9]*):([0-9]*):([-]?[0-9]*)", offset) |
|
|
|
|
if len(position) != 1: |
|
|
|
|
return Source() |
|
|
|
|
return Source(compilation_unit) |
|
|
|
|
|
|
|
|
|
s, l, f = position[0] |
|
|
|
|
s = int(s) |
|
|
|
@ -135,7 +135,7 @@ def _convert_source_mapping( |
|
|
|
|
f = int(f) |
|
|
|
|
|
|
|
|
|
if f not in sourceUnits: |
|
|
|
|
new_source = Source() |
|
|
|
|
new_source = Source(compilation_unit) |
|
|
|
|
new_source.start = s |
|
|
|
|
new_source.length = l |
|
|
|
|
return new_source |
|
|
|
@ -149,7 +149,7 @@ def _convert_source_mapping( |
|
|
|
|
|
|
|
|
|
(lines, starting_column, ending_column) = _compute_line(compilation_unit, filename, s, l) |
|
|
|
|
|
|
|
|
|
new_source = Source() |
|
|
|
|
new_source = Source(compilation_unit) |
|
|
|
|
new_source.start = s |
|
|
|
|
new_source.length = l |
|
|
|
|
new_source.filename = filename |
|
|
|
@ -158,28 +158,22 @@ def _convert_source_mapping( |
|
|
|
|
new_source.starting_column = starting_column |
|
|
|
|
new_source.ending_column = ending_column |
|
|
|
|
new_source.end = new_source.start + l |
|
|
|
|
|
|
|
|
|
return new_source |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class SourceMapping(Context, metaclass=ABCMeta): |
|
|
|
|
def __init__(self) -> None: |
|
|
|
|
super().__init__() |
|
|
|
|
# self._source_mapping: Optional[Dict] = None |
|
|
|
|
self.source_mapping: Source = Source() |
|
|
|
|
self.source_mapping: Optional[Source] = None |
|
|
|
|
self.references: List[Source] = [] |
|
|
|
|
|
|
|
|
|
def set_offset( |
|
|
|
|
self, offset: Union["Source", str], compilation_unit: "SlitherCompilationUnit" |
|
|
|
|
) -> None: |
|
|
|
|
assert compilation_unit |
|
|
|
|
if isinstance(offset, Source): |
|
|
|
|
self.source_mapping.start = offset.start |
|
|
|
|
self.source_mapping.length = offset.length |
|
|
|
|
self.source_mapping.filename = offset.filename |
|
|
|
|
self.source_mapping.is_dependency = offset.is_dependency |
|
|
|
|
self.source_mapping.lines = offset.lines |
|
|
|
|
self.source_mapping.starting_column = offset.starting_column |
|
|
|
|
self.source_mapping.ending_column = offset.ending_column |
|
|
|
|
self.source_mapping.end = offset.end |
|
|
|
|
self.source_mapping = offset |
|
|
|
|
else: |
|
|
|
|
self.source_mapping = _convert_source_mapping(offset, compilation_unit) |
|
|
|
|
self.source_mapping.compilation_unit = compilation_unit |
|
|
|
|