X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/c3734153c799a79136683093c21f64a7f1fa4e80..e8a76617eeec9429ddf7879048a310ba6e15e0d8:/sdk/cwl/arvados_cwl/pathmapper.py?ds=sidebyside diff --git a/sdk/cwl/arvados_cwl/pathmapper.py b/sdk/cwl/arvados_cwl/pathmapper.py index 0fd9a0ed33..73c81ceb0f 100644 --- a/sdk/cwl/arvados_cwl/pathmapper.py +++ b/sdk/cwl/arvados_cwl/pathmapper.py @@ -37,11 +37,11 @@ class ArvPathMapper(PathMapper): # Local FS ref, may need to be uploaded or may be on keep # mount. ab = abspath(src, self.input_basedir) - st = arvados.commands.run.statfile("", ab, fnPattern=self.file_pattern) + 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(ab, st.fn, "File") + self._pathmap[src] = MapperEnt(st.fn, self.collection_pattern % st.fn[5:], "File") elif src.startswith("_:"): if "contents" in srcobj: pass @@ -78,9 +78,11 @@ class ArvPathMapper(PathMapper): def setup(self, referenced_files, basedir): # type: (List[Any], unicode) -> None - self._pathmap = self.arvrunner.get_uploaded() uploadfiles = set() + for k,v in self.arvrunner.get_uploaded().iteritems(): + self._pathmap[k] = MapperEnt(v.resolved, self.collection_pattern % v.resolved[5:], "File") + for srcobj in referenced_files: self.visit(srcobj, uploadfiles) @@ -89,18 +91,19 @@ class ArvPathMapper(PathMapper): self.arvrunner.api, dry_run=False, num_retries=self.arvrunner.num_retries, - fnPattern=self.file_pattern, + fnPattern="keep:%s/%s", name=self.name, project=self.arvrunner.project_uuid) for src, ab, st in uploadfiles: - self._pathmap[src] = MapperEnt("keep:" + st.keepref, st.fn, "File") + self._pathmap[src] = MapperEnt(st.fn, self.collection_pattern % st.fn[5:], "File") self.arvrunner.add_uploaded(src, self._pathmap[src]) for srcobj in referenced_files: if srcobj["class"] == "Directory": if srcobj["location"] not in self._pathmap: c = arvados.collection.Collection(api_client=self.arvrunner.api, + keep_client=self.arvrunner.keep_client, num_retries=self.arvrunner.num_retries) subdirs = [] for l in srcobj["listing"]: @@ -119,6 +122,7 @@ class ArvPathMapper(PathMapper): (srcobj["location"].startswith("_:") and "contents" in srcobj)): c = arvados.collection.Collection(api_client=self.arvrunner.api, + keep_client=self.arvrunner.keep_client, num_retries=self.arvrunner.num_retries ) subdirs = [] self.addentry(srcobj, c, ".", subdirs) @@ -150,11 +154,11 @@ class InitialWorkDirPathMapper(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[obj["location"]] = MapperEnt(obj["location"], stagedir, "Directory") + self._pathmap[loc] = MapperEnt(obj["location"], stagedir, "Directory") self.visitlisting(obj.get("listing", []), stagedir, basedir) elif obj["class"] == "File": - loc = obj["location"] if loc in self._pathmap: return tgt = os.path.join(stagedir, obj["basename"]) @@ -172,10 +176,26 @@ class InitialWorkDirPathMapper(PathMapper): # Go through each file and set the target to its own directory along # with any secondary files. - stagedir = self.stagedir - for fob in referenced_files: - self.visit(fob, stagedir, basedir) + self.visitlisting(referenced_files, self.stagedir, basedir) for path, (ab, tgt, type) in self._pathmap.items(): if type in ("File", "Directory") and ab.startswith("keep:"): 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) + + def setup(self, referenced_files, basedir): + # type: (List[Any], unicode) -> None + self.visitlisting(referenced_files, self.stagedir, basedir)