mirror of
https://github.com/deadc0de6/dotdrop.git
synced 2026-02-04 21:29:43 +00:00
399 lines
10 KiB
Python
399 lines
10 KiB
Python
"""
|
|
author: deadc0de6 (https://github.com/deadc0de6)
|
|
Copyright (c) 2017, deadc0de6
|
|
|
|
utilities
|
|
"""
|
|
|
|
import subprocess
|
|
import tempfile
|
|
import os
|
|
import uuid
|
|
import fnmatch
|
|
import inspect
|
|
import importlib
|
|
import filecmp
|
|
import itertools
|
|
from shutil import rmtree, which
|
|
|
|
# local import
|
|
from dotdrop.logger import Logger
|
|
|
|
LOG = Logger()
|
|
STAR = '*'
|
|
# the environment variable for temporary
|
|
ENV_TEMP = 'DOTDROP_TMPDIR'
|
|
# the temporary directory
|
|
TMPDIR = None
|
|
|
|
# files dotdrop refuses to remove
|
|
DONOTDELETE = [
|
|
os.path.expanduser('~'),
|
|
os.path.expanduser('~/.config'),
|
|
]
|
|
NOREMOVE = [os.path.normpath(p) for p in DONOTDELETE]
|
|
|
|
|
|
def run(cmd, debug=False):
|
|
"""run a command (expects a list)"""
|
|
if debug:
|
|
LOG.dbg('exec: {}'.format(' '.join(cmd)))
|
|
p = subprocess.Popen(cmd, shell=False,
|
|
stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
|
|
out, _ = p.communicate()
|
|
ret = p.returncode
|
|
out = out.splitlines(keepends=True)
|
|
lines = ''.join([x.decode('utf-8', 'replace') for x in out])
|
|
return ret == 0, lines
|
|
|
|
|
|
def write_to_tmpfile(content):
|
|
"""write some content to a tmp file"""
|
|
path = get_tmpfile()
|
|
with open(path, 'wb') as f:
|
|
f.write(content)
|
|
return path
|
|
|
|
|
|
def shell(cmd, debug=False):
|
|
"""
|
|
run a command in the shell (expects a string)
|
|
returns True|False, output
|
|
"""
|
|
if debug:
|
|
LOG.dbg('shell exec: \"{}\"'.format(cmd))
|
|
ret, out = subprocess.getstatusoutput(cmd)
|
|
if debug:
|
|
LOG.dbg('shell result ({}): {}'.format(ret, out))
|
|
return ret == 0, out
|
|
|
|
|
|
def fastdiff(left, right):
|
|
"""fast compare files and returns True if different"""
|
|
return not filecmp.cmp(left, right, shallow=False)
|
|
|
|
|
|
def diff(original, modified,
|
|
diff_cmd='', debug=False):
|
|
"""compare two files, returns '' if same"""
|
|
if not diff_cmd:
|
|
diff_cmd = 'diff -r -u {0} {1}'
|
|
|
|
replacements = {
|
|
"{0}": original,
|
|
"{original}": original,
|
|
"{1}": modified,
|
|
"{modified}": modified,
|
|
}
|
|
cmd = [replacements.get(x, x) for x in diff_cmd.split()]
|
|
_, out = run(cmd, debug=debug)
|
|
return out
|
|
|
|
|
|
def get_tmpdir():
|
|
"""create and return the temporary directory"""
|
|
global TMPDIR
|
|
if TMPDIR:
|
|
return TMPDIR
|
|
t = _get_tmpdir()
|
|
TMPDIR = t
|
|
return t
|
|
|
|
|
|
def _get_tmpdir():
|
|
"""create the tmpdir"""
|
|
try:
|
|
if ENV_TEMP in os.environ:
|
|
t = os.environ[ENV_TEMP]
|
|
t = os.path.expanduser(t)
|
|
t = os.path.abspath(t)
|
|
t = os.path.normpath(t)
|
|
os.makedirs(t, exist_ok=True)
|
|
return t
|
|
except Exception:
|
|
pass
|
|
return tempfile.mkdtemp(prefix='dotdrop-')
|
|
|
|
|
|
def get_tmpfile():
|
|
"""create a temporary file"""
|
|
tmpdir = get_tmpdir()
|
|
return tempfile.NamedTemporaryFile(prefix='dotdrop-',
|
|
dir=tmpdir, delete=False).name
|
|
|
|
|
|
def get_unique_tmp_name():
|
|
"""get a unique file name (not created)"""
|
|
unique = str(uuid.uuid4())
|
|
tmpdir = get_tmpdir()
|
|
return os.path.join(tmpdir, unique)
|
|
|
|
|
|
def removepath(path, logger=None):
|
|
"""
|
|
remove a file/directory/symlink
|
|
if logger is defined, OSError are catched
|
|
and printed to logger.warn instead of being forwarded
|
|
as OSError
|
|
"""
|
|
if not path:
|
|
return
|
|
if not os.path.lexists(path):
|
|
err = 'File not found: {}'.format(path)
|
|
if logger:
|
|
logger.warn(err)
|
|
return
|
|
raise OSError(err)
|
|
if os.path.normpath(os.path.expanduser(path)) in NOREMOVE:
|
|
err = 'Dotdrop refuses to remove {}'.format(path)
|
|
if logger:
|
|
logger.warn(err)
|
|
return
|
|
LOG.err(err)
|
|
raise OSError(err)
|
|
try:
|
|
if os.path.islink(path) or os.path.isfile(path):
|
|
os.unlink(path)
|
|
elif os.path.isdir(path):
|
|
rmtree(path)
|
|
else:
|
|
err = 'Unsupported file type for deletion: {}'.format(path)
|
|
raise OSError(err)
|
|
except Exception as e:
|
|
err = str(e)
|
|
if logger:
|
|
logger.warn(err)
|
|
return
|
|
raise OSError(err)
|
|
|
|
|
|
def samefile(path1, path2):
|
|
"""return True if represent the same file"""
|
|
if not os.path.exists(path1):
|
|
return False
|
|
if not os.path.exists(path2):
|
|
return False
|
|
return os.path.samefile(path1, path2)
|
|
|
|
|
|
def header():
|
|
"""return dotdrop header"""
|
|
return 'This dotfile is managed using dotdrop'
|
|
|
|
|
|
def content_empty(string):
|
|
"""return True if is empty or only one CRLF"""
|
|
if not string:
|
|
return True
|
|
if string == b'\n':
|
|
return True
|
|
return False
|
|
|
|
|
|
def strip_home(path):
|
|
"""properly strip $HOME from path"""
|
|
home = os.path.expanduser('~') + os.sep
|
|
if path.startswith(home):
|
|
path = path[len(home):]
|
|
return path
|
|
|
|
|
|
def must_ignore(paths, ignores, debug=False):
|
|
"""return true if any paths in list matches any ignore patterns"""
|
|
if not ignores:
|
|
return False
|
|
if debug:
|
|
LOG.dbg('must ignore? \"{}\" against {}'.format(paths, ignores))
|
|
ignored_negative, ignored = categorize(
|
|
lambda ign: ign.startswith('!'), ignores)
|
|
for p in paths:
|
|
ignore_matches = []
|
|
# First ignore dotfiles
|
|
for i in ignored:
|
|
if fnmatch.fnmatch(p, i):
|
|
if debug:
|
|
LOG.dbg('ignore \"{}\" match: {}'.format(i, p))
|
|
ignore_matches.append(p)
|
|
# Then remove any matches that actually shouldn't be ignored
|
|
for ni in ignored_negative:
|
|
# Each of these will start with an '!' so we need to remove that
|
|
ni = ni[1:]
|
|
if fnmatch.fnmatch(p, ni):
|
|
if debug:
|
|
LOG.dbg('negative ignore \"{}\" match: {}'.format(ni, p))
|
|
try:
|
|
ignore_matches.remove(p)
|
|
except ValueError:
|
|
LOG.warn('no files that are currently being ignored match '
|
|
'\"{}\". In order for a negative ignore pattern '
|
|
'to work, it must match a file that is being '
|
|
'ignored by a previous ignore pattern.'.format(ni)
|
|
)
|
|
if ignore_matches:
|
|
return True
|
|
if debug:
|
|
LOG.dbg('NOT ignoring {}'.format(paths))
|
|
return False
|
|
|
|
|
|
def uniq_list(a_list):
|
|
"""unique elements of a list while preserving order"""
|
|
new = []
|
|
for a in a_list:
|
|
if a not in new:
|
|
new.append(a)
|
|
return new
|
|
|
|
|
|
def patch_ignores(ignores, prefix, debug=False):
|
|
"""allow relative ignore pattern"""
|
|
new = []
|
|
if debug:
|
|
LOG.dbg('ignores before patching: {}'.format(ignores))
|
|
for ignore in ignores:
|
|
negative = ignore.startswith('!')
|
|
if negative:
|
|
ignore = ignore[1:]
|
|
|
|
if os.path.isabs(ignore):
|
|
# is absolute
|
|
if negative:
|
|
new.append('!' + ignore)
|
|
else:
|
|
new.append(ignore)
|
|
continue
|
|
if STAR in ignore:
|
|
if ignore.startswith(STAR) or ignore.startswith(os.sep):
|
|
# is glob
|
|
if negative:
|
|
new.append('!' + ignore)
|
|
else:
|
|
new.append(ignore)
|
|
continue
|
|
# patch ignore
|
|
path = os.path.join(prefix, ignore)
|
|
if negative:
|
|
new.append('!' + path)
|
|
else:
|
|
new.append(path)
|
|
if debug:
|
|
LOG.dbg('ignores after patching: {}'.format(new))
|
|
return new
|
|
|
|
|
|
def get_module_functions(mod):
|
|
"""return a list of fonction from a module"""
|
|
funcs = []
|
|
for m in inspect.getmembers(mod):
|
|
name, func = m
|
|
if not inspect.isfunction(func):
|
|
continue
|
|
funcs.append((name, func))
|
|
return funcs
|
|
|
|
|
|
def get_module_from_path(path):
|
|
"""get module from path"""
|
|
if not path or not os.path.exists(path):
|
|
return None
|
|
module_name = os.path.basename(path).rstrip('.py')
|
|
loader = importlib.machinery.SourceFileLoader(module_name, path)
|
|
mod = loader.load_module()
|
|
return mod
|
|
|
|
|
|
def dependencies_met():
|
|
"""make sure all dependencies are met"""
|
|
# check unix tools deps
|
|
deps = ['file', 'diff']
|
|
err = 'The tool \"{}\" was not found in the PATH!'
|
|
for dep in deps:
|
|
if not which(dep):
|
|
raise Exception(err.format(dep))
|
|
# check python deps
|
|
err = 'missing python module \"{}\"'
|
|
|
|
# python-magic
|
|
try:
|
|
import magic
|
|
assert(magic)
|
|
if not hasattr(magic, 'from_file'):
|
|
LOG.warn(err.format('python-magic'))
|
|
except ImportError:
|
|
LOG.warn(err.format('python-magic'))
|
|
|
|
# docopt
|
|
try:
|
|
from docopt import docopt
|
|
assert(docopt)
|
|
except ImportError:
|
|
raise Exception(err.format('docopt'))
|
|
|
|
# jinja2
|
|
try:
|
|
import jinja2
|
|
assert(jinja2)
|
|
except ImportError:
|
|
raise Exception(err.format('jinja2'))
|
|
|
|
# ruamel.yaml
|
|
try:
|
|
from ruamel.yaml import YAML
|
|
assert(YAML)
|
|
except ImportError:
|
|
raise Exception(err.format('ruamel.yaml'))
|
|
|
|
|
|
def mirror_file_rights(src, dst):
|
|
"""mirror file rights of src to dst (can rise exc)"""
|
|
if not os.path.exists(src) or not os.path.exists(dst):
|
|
return
|
|
rights = get_file_perm(src)
|
|
os.chmod(dst, rights)
|
|
|
|
|
|
def get_umask():
|
|
"""return current umask value"""
|
|
cur = os.umask(0)
|
|
os.umask(cur)
|
|
# return 0o777 - cur
|
|
return cur
|
|
|
|
|
|
def get_default_file_perms(path, umask):
|
|
"""get default rights for a file"""
|
|
base = 0o666
|
|
if os.path.isdir(path):
|
|
base = 0o777
|
|
return base - umask
|
|
|
|
|
|
def get_file_perm(path):
|
|
"""return file permission"""
|
|
return os.stat(path).st_mode & 0o777
|
|
|
|
|
|
def chmod(path, mode, debug=False):
|
|
if debug:
|
|
LOG.dbg('chmod {} {}'.format(oct(mode), path))
|
|
os.chmod(path, mode)
|
|
return get_file_perm(path) == mode
|
|
|
|
|
|
def adapt_workers(options, logger):
|
|
if options.safe and options.workers > 1:
|
|
logger.warn('workers set to 1 when --force is not used')
|
|
options.workers = 1
|
|
if options.dry and options.workers > 1:
|
|
logger.warn('workers set to 1 when --dry is used')
|
|
options.workers = 1
|
|
|
|
|
|
def categorize(function, iterable):
|
|
"""separate an iterable into elements for which
|
|
function(element) is true for each element and
|
|
for which function(element) is false for each
|
|
element"""
|
|
return (tuple(filter(function, iterable)),
|
|
tuple(itertools.filterfalse(function, iterable)))
|