vimtabdiff/vimtabdiff.py

96 lines
2.6 KiB
Python
Raw Normal View History

2022-11-30 11:59:52 -05:00
#!/usr/bin/python3
2022-12-05 21:01:46 -05:00
import os
2022-12-04 18:22:45 -05:00
import argparse
import pathlib
2022-12-04 19:21:14 -05:00
import itertools
2022-12-05 13:55:05 -05:00
import tempfile
import subprocess
import shlex
2022-12-09 19:05:14 -05:00
2022-12-05 20:13:31 -05:00
def star(f):
""" see https://stackoverflow.com/q/21892989 """
return lambda args: f(*args)
2022-12-09 19:05:14 -05:00
2022-12-04 18:22:45 -05:00
def parse_args():
2022-12-09 19:05:14 -05:00
parser = argparse.ArgumentParser(
description="Show diff of files from two directories in vim tabs",
epilog="See https://github.com/balki/vimtabdiff for more info")
2022-12-04 18:22:45 -05:00
parser.add_argument("pathA")
parser.add_argument("pathB")
2022-12-05 20:13:31 -05:00
parser.add_argument("--vim", help="vim command to run", default="vim")
2022-12-04 18:22:45 -05:00
return parser.parse_args()
2022-12-09 19:05:14 -05:00
2022-12-05 13:55:05 -05:00
def get_dir_info(dirname):
2022-12-04 18:22:45 -05:00
if not dirname:
2022-12-09 19:05:14 -05:00
return [], []
2022-12-04 18:22:45 -05:00
dirs, files = [], []
2022-12-05 13:55:05 -05:00
dirp = pathlib.Path(dirname)
for p in dirp.iterdir():
2022-12-04 18:22:45 -05:00
if p.is_dir():
dirs.append(p)
else:
files.append(p)
return dirs, files
2022-12-09 19:05:14 -05:00
2022-12-04 19:36:51 -05:00
def get_pairs(aItems, bItems):
2022-12-04 19:21:14 -05:00
aItems = [(item, 'A') for item in aItems]
bItems = [(item, 'B') for item in bItems]
2022-12-05 13:55:05 -05:00
abItems = aItems + bItems
2022-12-05 20:13:31 -05:00
abItems.sort(key=star(lambda item, tag: (item.name, tag)))
2022-12-09 19:05:14 -05:00
for _, items in itertools.groupby(abItems,
key=star(lambda item, _: item.name)):
items = list(items)
# NOTE: python 3.10's match expression can make this better
2022-12-04 19:21:14 -05:00
if len(items) == 2:
2022-12-04 19:36:51 -05:00
(aItem, _), (bItem, _) = items
2022-12-04 19:21:14 -05:00
yield aItem, bItem
else:
2022-12-04 19:36:51 -05:00
(item, tag), = items
2022-12-04 19:21:14 -05:00
if tag == 'A':
yield item, None
else:
yield None, item
2022-12-09 19:05:14 -05:00
2022-12-04 18:22:45 -05:00
def get_file_pairs(a, b):
2022-12-05 13:55:05 -05:00
aDirs, aFiles = get_dir_info(a)
bDirs, bFiles = get_dir_info(b)
2022-12-04 19:36:51 -05:00
yield from get_pairs(aFiles, bFiles)
for aDir, bDir in get_pairs(aDirs, bDirs):
2022-12-04 19:21:14 -05:00
yield from get_file_pairs(aDir, bDir)
2022-11-30 11:59:52 -05:00
2022-12-09 19:05:14 -05:00
2022-11-30 11:59:52 -05:00
def main():
2022-12-04 18:22:45 -05:00
args = parse_args()
2022-12-05 13:55:05 -05:00
vimCmdFile = tempfile.NamedTemporaryFile(mode='w', delete=False)
with vimCmdFile:
cmds = f"""
let s:spr = &splitright
set splitright
"""
print(cmds, file=vimCmdFile)
2022-12-05 13:55:05 -05:00
for a, b in get_file_pairs(args.pathA, args.pathB):
2022-12-05 21:01:46 -05:00
aPath = a.resolve() if a else os.devnull
bPath = b.resolve() if b else os.devnull
2022-12-09 19:05:14 -05:00
print(
f"tabedit {aPath} | vsp {bPath}",
2022-12-09 19:05:14 -05:00
file=vimCmdFile)
2022-12-07 18:04:27 -05:00
cmds = f"""
let &splitright = s:spr
tabdo windo :1
tabdo windo diffthis
tabdo windo diffupdate
2022-12-07 18:04:27 -05:00
tabfirst | tabclose
call delete("{vimCmdFile.name}")
"""
print(cmds, file=vimCmdFile)
subprocess.run(shlex.split(args.vim) + ["-S", vimCmdFile.name])
2022-11-30 11:59:52 -05:00
2022-12-09 19:05:14 -05:00
2022-11-30 11:59:52 -05:00
if __name__ == '__main__':
main()