X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/807125b8423058d336165f069bf5d618f77845b7..60d986b8908487c086eb4e402ac69669cb26108b:/sdk/cwl/arvados_cwl/pathmapper.py diff --git a/sdk/cwl/arvados_cwl/pathmapper.py b/sdk/cwl/arvados_cwl/pathmapper.py index 73c81ceb0f..a6b3d15e2c 100644 --- a/sdk/cwl/arvados_cwl/pathmapper.py +++ b/sdk/cwl/arvados_cwl/pathmapper.py @@ -6,6 +6,8 @@ import os import arvados.commands.run import arvados.collection +from schema_salad.sourceline import SourceLine + from cwltool.pathmapper import PathMapper, MapperEnt, abspath, adjustFileObjs, adjustDirObjs from cwltool.workflow import WorkflowException @@ -38,17 +40,20 @@ class ArvPathMapper(PathMapper): # mount. ab = abspath(src, self.input_basedir) st = arvados.commands.run.statfile("", ab, fnPattern="keep:%s/%s") - if isinstance(st, arvados.commands.run.UploadFile): - uploadfiles.add((src, ab, st)) - elif isinstance(st, arvados.commands.run.ArvFile): - self._pathmap[src] = MapperEnt(st.fn, self.collection_pattern % st.fn[5:], "File") - elif src.startswith("_:"): - if "contents" in srcobj: - pass + with SourceLine(srcobj, "location", WorkflowException): + if isinstance(st, arvados.commands.run.UploadFile): + uploadfiles.add((src, ab, st)) + elif isinstance(st, arvados.commands.run.ArvFile): + self._pathmap[src] = MapperEnt(st.fn, self.collection_pattern % st.fn[5:], "File") + elif src.startswith("_:"): + if "contents" in srcobj: + pass + else: + raise WorkflowException("File literal '%s' is missing contents" % src) + elif src.startswith("arvwf:"): + self._pathmap[src] = MapperEnt(src, src, "File") else: - raise WorkflowException("File literal '%s' is missing contents" % src) - else: - raise WorkflowException("Input file path '%s' is invalid" % st) + raise WorkflowException("Input file path '%s' is invalid" % st) if "secondaryFiles" in srcobj: for l in srcobj["secondaryFiles"]: self.visit(l, uploadfiles) @@ -74,7 +79,7 @@ class ArvPathMapper(PathMapper): with c.open(path + "/" + obj["basename"], "w") as f: f.write(obj["contents"].encode("utf-8")) else: - raise WorkflowException("Don't know what to do with '%s'" % obj["location"]) + raise SourceLine(obj, "location", WorkflowException).makeError("Don't know what to do with '%s'" % obj["location"]) def setup(self, referenced_files, basedir): # type: (List[Any], unicode) -> None @@ -150,27 +155,31 @@ class ArvPathMapper(PathMapper): else: return super(ArvPathMapper, self).reversemap(target) -class InitialWorkDirPathMapper(PathMapper): +class StagingPathMapper(PathMapper): + _follow_dirs = True def visit(self, obj, stagedir, basedir, copy=False): # type: (Dict[unicode, Any], unicode, unicode, bool) -> None loc = obj["location"] + tgt = os.path.join(stagedir, obj["basename"]) if obj["class"] == "Directory": - self._pathmap[loc] = MapperEnt(obj["location"], stagedir, "Directory") - self.visitlisting(obj.get("listing", []), stagedir, basedir) + self._pathmap[loc] = MapperEnt(loc, tgt, "Directory") + if loc.startswith("_:") or self._follow_dirs: + self.visitlisting(obj.get("listing", []), tgt, basedir) elif obj["class"] == "File": if loc in self._pathmap: return - tgt = os.path.join(stagedir, obj["basename"]) - if "contents" in obj and obj["location"].startswith("_:"): + if "contents" in obj and loc.startswith("_:"): self._pathmap[loc] = MapperEnt(obj["contents"], tgt, "CreateFile") else: if copy: - self._pathmap[loc] = MapperEnt(obj["path"], tgt, "WritableFile") + self._pathmap[loc] = MapperEnt(loc, tgt, "WritableFile") else: - self._pathmap[loc] = MapperEnt(obj["path"], tgt, "File") + self._pathmap[loc] = MapperEnt(loc, tgt, "File") self.visitlisting(obj.get("secondaryFiles", []), stagedir, basedir) + +class InitialWorkDirPathMapper(StagingPathMapper): def setup(self, referenced_files, basedir): # type: (List[Any], unicode) -> None @@ -183,19 +192,8 @@ class InitialWorkDirPathMapper(PathMapper): self._pathmap[path] = MapperEnt("$(task.keep)/%s" % ab[5:], tgt, type) -class FinalOutputPathMapper(PathMapper): - def visit(self, obj, stagedir, basedir, copy=False): - # type: (Dict[unicode, Any], unicode, unicode, bool) -> None - loc = obj["location"] - if obj["class"] == "Directory": - self._pathmap[loc] = MapperEnt(loc, stagedir, "Directory") - elif obj["class"] == "File": - if loc in self._pathmap: - return - tgt = os.path.join(stagedir, obj["basename"]) - self._pathmap[loc] = MapperEnt(loc, tgt, "File") - self.visitlisting(obj.get("secondaryFiles", []), stagedir, basedir) - +class FinalOutputPathMapper(StagingPathMapper): + _follow_dirs = False def setup(self, referenced_files, basedir): # type: (List[Any], unicode) -> None self.visitlisting(referenced_files, self.stagedir, basedir)