X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/0b187b107128a57c1f0c00057d39979ab53d4137..2f953026bc4baeccb78ca82acc4d07cad37625b8:/sdk/cwl/arvados_cwl/fsaccess.py diff --git a/sdk/cwl/arvados_cwl/fsaccess.py b/sdk/cwl/arvados_cwl/fsaccess.py index ae4532bec8..b249da77dd 100644 --- a/sdk/cwl/arvados_cwl/fsaccess.py +++ b/sdk/cwl/arvados_cwl/fsaccess.py @@ -1,20 +1,28 @@ import fnmatch import os import errno +import urlparse +import re + +import ruamel.yaml as yaml import cwltool.stdfsaccess from cwltool.pathmapper import abspath +import cwltool.resolver import arvados.util import arvados.collection import arvados.arvfile +from schema_salad.ref_resolver import DefaultFetcher + class CollectionFsAccess(cwltool.stdfsaccess.StdFsAccess): """Implement the cwltool FsAccess interface for Arvados Collections.""" - def __init__(self, basedir, api_client=None): + def __init__(self, basedir, api_client=None, keep_client=None): super(CollectionFsAccess, self).__init__(basedir) self.api_client = api_client + self.keep_client = keep_client self.collections = {} def get_collection(self, path): @@ -22,7 +30,8 @@ class CollectionFsAccess(cwltool.stdfsaccess.StdFsAccess): if p[0].startswith("keep:") and arvados.util.keep_locator_pattern.match(p[0][5:]): pdh = p[0][5:] if pdh not in self.collections: - self.collections[pdh] = arvados.collection.CollectionReader(pdh, api_client=self.api_client) + self.collections[pdh] = arvados.collection.CollectionReader(pdh, api_client=self.api_client, + keep_client=self.keep_client) return (self.collections[pdh], "/".join(p[1:])) else: return (None, path) @@ -84,7 +93,7 @@ class CollectionFsAccess(cwltool.stdfsaccess.StdFsAccess): collection, rest = self.get_collection(fn) if collection: if rest: - return isinstance(collection.find(rest), arvados.collection.Collection) + return isinstance(collection.find(rest), arvados.collection.RichCollectionBase) else: return True else: @@ -99,7 +108,7 @@ class CollectionFsAccess(cwltool.stdfsaccess.StdFsAccess): dir = collection if dir is None: raise IOError(errno.ENOENT, "Directory '%s' in '%s' not found" % (rest, collection.portable_data_hash())) - if not isinstance(dir, arvados.collection.Collection): + if not isinstance(dir, arvados.collection.RichCollectionBase): raise IOError(errno.ENOENT, "Path '%s' in '%s' is not a Directory" % (rest, collection.portable_data_hash())) return [abspath(l, fn) for l in dir.keys()] else: @@ -118,3 +127,82 @@ class CollectionFsAccess(cwltool.stdfsaccess.StdFsAccess): return path else: return os.path.realpath(path) + +class CollectionFetcher(DefaultFetcher): + def __init__(self, cache, session, api_client=None, keep_client=None): + super(CollectionFetcher, self).__init__(cache, session) + self.api_client = api_client + self.fsaccess = CollectionFsAccess("", api_client=api_client, keep_client=keep_client) + + def fetch_text(self, url): + if url.startswith("keep:"): + with self.fsaccess.open(url, "r") as f: + return f.read() + if url.startswith("arvwf:"): + record = self.api_client.workflows().get(uuid=url[6:]).execute() + definition = record["definition"] + ('\nlabel: "%s"\n' % record["name"].replace('"', '\\"')) + return definition + return super(CollectionFetcher, self).fetch_text(url) + + def check_exists(self, url): + if url.startswith("keep:"): + return self.fsaccess.exists(url) + if url.startswith("arvwf:"): + if self.fetch_text(url): + return True + return super(CollectionFetcher, self).check_exists(url) + + def urljoin(self, base_url, url): + if not url: + return base_url + + urlsp = urlparse.urlsplit(url) + if urlsp.scheme or not base_url: + return url + + basesp = urlparse.urlsplit(base_url) + if basesp.scheme in ("keep", "arvwf"): + if not basesp.path: + raise IOError(errno.EINVAL, "Invalid Keep locator", base_url) + + baseparts = basesp.path.split("/") + urlparts = urlsp.path.split("/") if urlsp.path else [] + + pdh = baseparts.pop(0) + + if basesp.scheme == "keep" and not arvados.util.keep_locator_pattern.match(pdh): + raise IOError(errno.EINVAL, "Invalid Keep locator", base_url) + + if urlsp.path.startswith("/"): + baseparts = [] + urlparts.pop(0) + + if baseparts and urlsp.path: + baseparts.pop() + + path = "/".join([pdh] + baseparts + urlparts) + return urlparse.urlunsplit((basesp.scheme, "", path, "", urlsp.fragment)) + + return super(CollectionFetcher, self).urljoin(base_url, url) + +workflow_uuid_pattern = re.compile(r'[a-z0-9]{5}-7fd4e-[a-z0-9]{15}') +pipeline_template_uuid_pattern = re.compile(r'[a-z0-9]{5}-p5p6p-[a-z0-9]{15}') + +def collectionResolver(api_client, document_loader, uri): + if workflow_uuid_pattern.match(uri): + return "arvwf:%s#main" % (uri) + + if pipeline_template_uuid_pattern.match(uri): + pt = api_client.pipeline_templates().get(uuid=uri).execute() + return "keep:" + pt["components"].values()[0]["script_parameters"]["cwl:tool"] + + p = uri.split("/") + if arvados.util.keep_locator_pattern.match(p[0]): + return "keep:%s" % (uri) + + if arvados.util.collection_uuid_pattern.match(p[0]): + return "keep:%s%s" % (api_client.collections(). + get(uuid=p[0]).execute()["portable_data_hash"], + uri[len(p[0]):]) + + return cwltool.resolver.tool_resolver(document_loader, uri)