mirror of
https://github.com/deadc0de6/dotdrop.git
synced 2026-02-04 20:19:46 +00:00
183 lines
5.1 KiB
Python
183 lines
5.1 KiB
Python
"""
|
|
author: deadc0de6 (https://github.com/deadc0de6)
|
|
Copyright (c) 2017, deadc0de6
|
|
|
|
represent an action or transformation
|
|
in dotdrop
|
|
"""
|
|
|
|
import subprocess
|
|
import os
|
|
|
|
# local imports
|
|
from dotdrop.dictparser import DictParser
|
|
from dotdrop.exceptions import UndefinedException
|
|
|
|
|
|
class Cmd(DictParser):
|
|
"""A command to execute"""
|
|
|
|
args = []
|
|
eq_ignore = ('log',)
|
|
descr = 'command'
|
|
|
|
def __init__(self, key, action):
|
|
"""constructor
|
|
@key: action key
|
|
@action: action string
|
|
@silent: action silent
|
|
"""
|
|
self.key = key
|
|
self.action = action
|
|
self.silent = key.startswith('_')
|
|
|
|
def _get_action(self, templater, debug):
|
|
action = None
|
|
try:
|
|
action = templater.generate_string(self.action)
|
|
except UndefinedException as exc:
|
|
err = f'undefined variable for {self.descr}: \"{exc}\"'
|
|
self.log.warn(err)
|
|
return False
|
|
if debug:
|
|
self.log.dbg(f'{self.descr}:')
|
|
self.log.dbg(f' - raw \"{self.action}\"')
|
|
self.log.dbg(f' - templated \"{action}\"')
|
|
return action
|
|
|
|
def _get_args(self, templater):
|
|
args = []
|
|
if not self.args:
|
|
return args
|
|
args = self.args
|
|
if templater:
|
|
try:
|
|
args = [templater.generate_string(a) for a in args]
|
|
except UndefinedException as exc:
|
|
err = f'undefined arguments for {self.descr}: {exc}'
|
|
self.log.warn(err)
|
|
return False
|
|
return args
|
|
|
|
def execute(self, templater=None, debug=False):
|
|
"""execute the command in the shell"""
|
|
ret = 1
|
|
action = self.action
|
|
if templater:
|
|
action = self._get_action(templater, debug)
|
|
args = self._get_args(templater)
|
|
if debug and args:
|
|
self.log.dbg('action args:')
|
|
for cnt, arg in enumerate(args):
|
|
self.log.dbg(f'\targs[{cnt}]: {arg}')
|
|
try:
|
|
cmd = action.format(*args)
|
|
except IndexError as exc:
|
|
err = f'index error for {self.descr}: \"{action}\"'
|
|
err += f' with \"{args}\"'
|
|
err += f': {exc}'
|
|
self.log.warn(err)
|
|
return False
|
|
except KeyError as exc:
|
|
err = f'key error for {self.descr}: \"{action}\": {exc}'
|
|
err += f' with \"{args}\"'
|
|
self.log.warn(err)
|
|
return False
|
|
if self.silent:
|
|
self.log.sub(f'executing silent action \"{self.key}\"')
|
|
if debug:
|
|
self.log.dbg('action cmd silenced')
|
|
else:
|
|
if debug:
|
|
self.log.dbg(f'action cmd: \"{cmd}\"')
|
|
self.log.sub(f'executing \"{cmd}\"')
|
|
try:
|
|
ret = subprocess.call(cmd, shell=True)
|
|
except KeyboardInterrupt:
|
|
self.log.warn(f'{self.descr} interrupted')
|
|
if ret != 0:
|
|
self.log.warn(f'{self.descr} returned code {ret}')
|
|
return ret == 0
|
|
|
|
@classmethod
|
|
def _adjust_yaml_keys(cls, value):
|
|
return {'action': value}
|
|
|
|
def __str__(self):
|
|
return f'key:{self.key} -> \"{self.action}\"'
|
|
|
|
|
|
class Action(Cmd):
|
|
"""An action to execute"""
|
|
|
|
pre = 'pre'
|
|
post = 'post'
|
|
descr = 'action'
|
|
|
|
def __init__(self, key, kind, action):
|
|
"""constructor
|
|
@key: action key
|
|
@kind: type of action (pre or post)
|
|
@action: action string
|
|
"""
|
|
super().__init__(key, action)
|
|
self.kind = kind
|
|
self.args = []
|
|
|
|
def copy(self, args):
|
|
"""return a copy of this object with arguments"""
|
|
action = Action(self.key, self.kind, self.action)
|
|
action.args = args
|
|
return action
|
|
|
|
@classmethod
|
|
def parse(cls, key, value):
|
|
"""parse key value into object"""
|
|
val = {}
|
|
val['kind'], val['action'] = value
|
|
return cls(key=key, **val)
|
|
|
|
def __str__(self):
|
|
out = f'{self.key}: [{self.kind}] \"{self.action}\"'
|
|
return out
|
|
|
|
def __repr__(self):
|
|
return f'action({self.__str__()})'
|
|
|
|
|
|
class Transform(Cmd):
|
|
"""A transformation on a dotfile"""
|
|
|
|
descr = 'transformation'
|
|
|
|
def __init__(self, key, action):
|
|
"""constructor
|
|
@key: action key
|
|
@trans: action string
|
|
"""
|
|
super().__init__(key, action)
|
|
self.args = []
|
|
|
|
def copy(self, args):
|
|
"""return a copy of this object with arguments"""
|
|
trans = Transform(self.key, self.action)
|
|
trans.args = args
|
|
return trans
|
|
|
|
def transform(self, arg0, arg1, templater=None, debug=False):
|
|
"""
|
|
execute transformation with {0} and {1}
|
|
where {0} is the file to transform
|
|
and {1} is the result file
|
|
"""
|
|
if os.path.exists(arg1):
|
|
msg = f'transformation \"{self.key}\": destination exists: {arg1}'
|
|
self.log.warn(msg)
|
|
return False
|
|
|
|
if not self.args:
|
|
self.args = []
|
|
self.args.insert(0, arg1)
|
|
self.args.insert(0, arg0)
|
|
return self.execute(templater=templater, debug=debug)
|