Warning
This document is for an old release of Galaxy. You can alternatively view this page in the latest release if it exists or view the top of the latest release's documentation.
Source code for cwltool.stdfsaccess
"""Abstracted IO access."""
import glob
import os
import urllib
from typing import IO, Any, List
from schema_salad.ref_resolver import file_uri, uri_file_path
def abspath(src: str, basedir: str) -> str:
if src.startswith("file://"):
abpath = uri_file_path(src)
elif urllib.parse.urlsplit(src).scheme in ["http", "https"]:
return src
else:
if basedir.startswith("file://"):
abpath = src if os.path.isabs(src) else basedir + "/" + src
else:
abpath = src if os.path.isabs(src) else os.path.join(basedir, src)
return abpath
[docs]class StdFsAccess:
"""Local filesystem implementation."""
[docs] def __init__(self, basedir: str) -> None:
"""Perform operations with respect to a base directory."""
self.basedir = basedir
def _abs(self, p: str) -> str:
return abspath(p, self.basedir)
[docs] def glob(self, pattern: str) -> List[str]:
return [
file_uri(str(self._abs(line))) for line in glob.glob(self._abs(pattern))
]
[docs] def listdir(self, fn: str) -> List[str]:
return [
abspath(urllib.parse.quote(entry), fn)
for entry in os.listdir(self._abs(fn))
]