X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/a3222e35cda68c8e48a17921c33ac37ecb5c3bac..8a504ad561c1ffbafee8a7bc8da551f9d4b9a29e:/crunch_scripts/crunchutil/subst.py?ds=sidebyside diff --git a/crunch_scripts/crunchutil/subst.py b/crunch_scripts/crunchutil/subst.py index b3526883fc..fad9b060ee 100644 --- a/crunch_scripts/crunchutil/subst.py +++ b/crunch_scripts/crunchutil/subst.py @@ -1,5 +1,12 @@ -import os import glob +import os +import re +import stat + +BACKSLASH_ESCAPE_RE = re.compile(r'\\(.)') + +class SubstitutionError(Exception): + pass def search(c): DEFAULT = 0 @@ -28,17 +35,27 @@ def search(c): state = DEFAULT i += 1 if depth != 0: - raise Exception("Substitution error, mismatched parentheses {}".format(c)) + raise SubstitutionError("Substitution error, mismatched parentheses {}".format(c)) return None def sub_file(v): - return os.path.join(os.environ['TASK_KEEPMOUNT'], v) + path = os.path.join(os.environ['TASK_KEEPMOUNT'], v) + st = os.stat(path) + if st and stat.S_ISREG(st.st_mode): + return path + else: + raise SubstitutionError("$(file {}) is not accessible or is not a regular file".format(path)) def sub_dir(v): d = os.path.dirname(v) if d == '': d = v - return os.path.join(os.environ['TASK_KEEPMOUNT'], d) + path = os.path.join(os.environ['TASK_KEEPMOUNT'], d) + st = os.stat(path) + if st and stat.S_ISDIR(st.st_mode): + return path + else: + raise SubstitutionError("$(dir {}) is not accessible or is not a directory".format(path)) def sub_basename(v): return os.path.splitext(os.path.basename(v))[0] @@ -46,7 +63,7 @@ def sub_basename(v): def sub_glob(v): l = glob.glob(v) if len(l) == 0: - raise Exception("$(glob): No match on '%s'" % v) + raise SubstitutionError("$(glob {}) no match fonud".format(v)) else: return l[0] @@ -57,19 +74,25 @@ default_subs = {"file ": sub_file, def do_substitution(p, c, subs=default_subs): while True: - #print("c is", c) m = search(c) - if m is not None: - v = do_substitution(p, c[m[0]+2 : m[1]]) - var = True - for sub in subs: - if v.startswith(sub): - r = subs[sub](v[len(sub):]) - var = False - break - if var: + if m is None: + return BACKSLASH_ESCAPE_RE.sub(r'\1', c) + + v = do_substitution(p, c[m[0]+2 : m[1]]) + var = True + for sub in subs: + if v.startswith(sub): + r = subs[sub](v[len(sub):]) + var = False + break + if var: + if v in p: r = p[v] + else: + raise SubstitutionError("Unknown variable or function '%s' while performing substitution on '%s'" % (v, c)) + if r is None: + raise SubstitutionError("Substitution for '%s' is null while performing substitution on '%s'" % (v, c)) + if not isinstance(r, basestring): + raise SubstitutionError("Substitution for '%s' must be a string while performing substitution on '%s'" % (v, c)) - c = c[:m[0]] + r + c[m[1]+1:] - else: - return c + c = c[:m[0]] + r + c[m[1]+1:]