some fixes + gliner first implementation

This commit is contained in:
Priler
2026-02-11 07:21:50 +05:00
parent b9d5f41bbd
commit a8ff3442ff
36 changed files with 1079 additions and 73 deletions

View File

@@ -7,6 +7,7 @@ import os
from pathlib import Path
import shutil
import sys
import filecmp
# some config vars
# format: (source, destination_name)
@@ -37,8 +38,87 @@ TARGET_DIRS = (
ABS_PATH = os.getcwd() + "/"
# check for force flag
force_overwrite = "-force" in sys.argv
# flags
force_overwrite = "--force" in sys.argv
sync_mode = "--sync" in sys.argv
if sync_mode:
print("[*] Sync mode: will update changed files and remove orphans")
def files_differ(src, dst):
"""check if two files differ by size or content"""
if not os.path.isfile(dst):
return True
# quick check: size
if os.path.getsize(src) != os.path.getsize(dst):
return True
# compare modification time (src newer = needs update)
if os.path.getmtime(src) > os.path.getmtime(dst):
return True
return False
def sync_directory(src_dir, dst_dir):
"""sync dst_dir to match src_dir: copy new/changed, remove orphans"""
copied = 0
updated = 0
removed = 0
# walk source, copy new/changed files
for root, dirs, files in os.walk(src_dir):
rel_root = os.path.relpath(root, src_dir)
dst_root = os.path.join(dst_dir, rel_root) if rel_root != "." else dst_dir
# ensure dir exists
os.makedirs(dst_root, exist_ok=True)
for f in files:
src_file = os.path.join(root, f)
dst_file = os.path.join(dst_root, f)
if not os.path.exists(dst_file):
shutil.copy2(src_file, dst_file)
copied += 1
elif files_differ(src_file, dst_file):
shutil.copy2(src_file, dst_file)
updated += 1
# walk destination, remove files/dirs not in source
for root, dirs, files in os.walk(dst_dir, topdown=False):
rel_root = os.path.relpath(root, dst_dir)
src_root = os.path.join(src_dir, rel_root) if rel_root != "." else src_dir
for f in files:
dst_file = os.path.join(root, f)
src_file = os.path.join(src_root, f)
if not os.path.exists(src_file):
os.remove(dst_file)
print(f" [-] Removed orphan file: {os.path.relpath(dst_file, dst_dir)}")
removed += 1
for d in dirs:
dst_sub = os.path.join(root, d)
src_sub = os.path.join(src_root, d)
if not os.path.exists(src_sub):
shutil.rmtree(dst_sub)
print(f" [-] Removed orphan dir: {os.path.relpath(dst_sub, dst_dir)}")
removed += 1
return copied, updated, removed
def sync_file(src_path, dst_path):
"""sync a single file, returns (copied, updated)"""
if not os.path.exists(dst_path):
os.makedirs(os.path.dirname(dst_path), exist_ok=True)
shutil.copy2(src_path, dst_path)
return 1, 0
elif files_differ(src_path, dst_path):
shutil.copy2(src_path, dst_path)
return 0, 1
return 0, 0
for tdir in TARGET_DIRS:
tdir = ABS_PATH + tdir
@@ -47,7 +127,6 @@ for tdir in TARGET_DIRS:
print("Skipping target, not a directory: ", tdir)
continue
# copy lib files
for entry in SOURCE:
if isinstance(entry, tuple):
src, dest_name = entry
@@ -57,11 +136,22 @@ for tdir in TARGET_DIRS:
src_path = ABS_PATH + src
if os.path.isdir(src_path):
# copy the whole directory
target_name = dest_name if dest_name else os.path.basename(src.rstrip('/'))
full_target_dir_path = os.path.join(tdir, target_name)
if os.path.isdir(full_target_dir_path):
if sync_mode:
# sync: update changed, add new, remove orphans
if os.path.isdir(full_target_dir_path):
c, u, r = sync_directory(src_path, full_target_dir_path)
if c or u or r:
print(f"[~] Synced: {src} -> {target_name} (+{c} new, ~{u} updated, -{r} removed)")
else:
print(f"[=] Up to date: {src} -> {target_name}")
else:
shutil.copytree(src_path, full_target_dir_path)
print("[+] Directory copied: ", src, "->", target_name)
elif os.path.isdir(full_target_dir_path):
if force_overwrite:
shutil.rmtree(full_target_dir_path)
shutil.copytree(src_path, full_target_dir_path)
@@ -73,11 +163,19 @@ for tdir in TARGET_DIRS:
print("[+] Directory copied: ", src, "->", target_name)
elif os.path.isfile(src_path):
# copy file
target_name = dest_name if dest_name else os.path.basename(src)
full_target_file_path = os.path.join(tdir, target_name)
if os.path.isfile(full_target_file_path):
if sync_mode:
c, u = sync_file(src_path, full_target_file_path)
if c:
print("[+] File copied: ", src, "->", target_name)
elif u:
print("[~] File updated: ", src, "->", target_name)
else:
print("[=] Up to date: ", src, "->", target_name)
elif os.path.isfile(full_target_file_path):
if force_overwrite:
os.remove(full_target_file_path)
shutil.copy(src_path, full_target_file_path)
@@ -90,4 +188,4 @@ for tdir in TARGET_DIRS:
else:
print("[?] Unknown entity to copy: ", src)
print("Post compile build done.")
print("Post compile build done.")