Compare commits
3 Commits
Author | SHA1 | Date | |
---|---|---|---|
eb047921ea | |||
eb09216a8a | |||
b8f095e1a9 |
@ -3,7 +3,12 @@ from typing import Iterator
|
|||||||
|
|
||||||
|
|
||||||
def subprocess_readlines(cmd, cwd=None) -> Iterator[str]:
|
def subprocess_readlines(cmd, cwd=None) -> Iterator[str]:
|
||||||
process = subprocess.Popen(cmd, cwd=cwd, stdout=subprocess.PIPE, text=True)
|
process = subprocess.Popen(cmd,
|
||||||
|
cwd=cwd,
|
||||||
|
stdout=subprocess.PIPE,
|
||||||
|
text=True,
|
||||||
|
encoding='utf-8',
|
||||||
|
errors='replace')
|
||||||
|
|
||||||
for line in process.stdout:
|
for line in process.stdout:
|
||||||
line = line.rstrip('\n')
|
line = line.rstrip('\n')
|
||||||
|
@ -29,7 +29,7 @@ class ShiftedLines(Sized, Iterable):
|
|||||||
|
|
||||||
class LineShiftChecker:
|
class LineShiftChecker:
|
||||||
SUBMODULE_MODE = '160000'
|
SUBMODULE_MODE = '160000'
|
||||||
DIFF_BLOCK_REGEX = r'@@ -(\d+),(\d+) \+(\d+),(\d+) @@'
|
DIFF_BLOCK_REGEX = r'@@ -(\d+)(?:,\d+)? \+(\d+)(?:,\d+)? @@'
|
||||||
|
|
||||||
def __init__(self, revision_since: str, revision_until: str) -> None:
|
def __init__(self, revision_since: str, revision_until: str) -> None:
|
||||||
self.revision_since = revision_since
|
self.revision_since = revision_since
|
||||||
@ -55,8 +55,8 @@ class LineShiftChecker:
|
|||||||
for line in process_output:
|
for line in process_output:
|
||||||
matches = re.search(LineShiftChecker.DIFF_BLOCK_REGEX, line)
|
matches = re.search(LineShiftChecker.DIFF_BLOCK_REGEX, line)
|
||||||
if matches:
|
if matches:
|
||||||
diff_block_src_start = int(matches.group(1))
|
diff_block_src_start = max(int(matches.group(1)), 1) # line number should never be 0
|
||||||
diff_block_dst_start = int(matches.group(3))
|
diff_block_dst_start = max(int(matches.group(2)), 1) # line number should never be 0
|
||||||
|
|
||||||
# fill shifted lines between 2 diff blocks
|
# fill shifted lines between 2 diff blocks
|
||||||
for i in range(0, diff_block_src_start - src_line_index):
|
for i in range(0, diff_block_src_start - src_line_index):
|
||||||
|
Loading…
x
Reference in New Issue
Block a user