1
0
mirror of https://github.com/deadc0de6/dotdrop.git synced 2026-02-09 16:24:16 +00:00

flat tree comparison

This commit is contained in:
deadc0de6
2024-01-26 23:02:08 +01:00
committed by deadc0de
parent b305b2d434
commit f54788b0e7
2 changed files with 58 additions and 0 deletions

45
dotdrop/ftree.py Normal file
View File

@@ -0,0 +1,45 @@
"""
author: deadc0de6 (https://github.com/deadc0de6)
Copyright (c) 2024, deadc0de6
filesystem tree for directories
"""
import os
# local imports
from dotdrop.utils import must_ignore
class FTreeDir:
def __init__(self, path, ignores=None, debug=False):
self.path = path
self.ignores
self.debug = debug
self.entries = []
if os.path.exists(path) and os.path.isdir(path):
self._walk()
def _walk(self):
for root, _, files in os.walk(self.path):
for f in files:
fpath = os.path.join(root, f)
if must_ignore([fpath], ignores=self.ignores,
debug=self.debug):
continue
self.entries.append(fpath)
self.entries.sort()
def compare(self, other):
"""
compare two trees and returns
- left_only (only in self)
- right_only (only in other)
- in_both (in both)
"""
left_only = set(self.entries) - set(other.entries)
right_only = set(other.entries) - set(self.entries)
in_both = set(self.entries) & set(other.entries)
return left_only, right_only, in_both