X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/a9988d4cde254df59d1790ef1e3768d14e2a812e..add09f355520b2bd1214b8c74d5a8d6c8e76dc88:/sdk/cwl/arvados_cwl/__init__.py diff --git a/sdk/cwl/arvados_cwl/__init__.py b/sdk/cwl/arvados_cwl/__init__.py index 2b2acd5688..dcbe03a057 100644 --- a/sdk/cwl/arvados_cwl/__init__.py +++ b/sdk/cwl/arvados_cwl/__init__.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # Copyright (C) The Arvados Authors. All rights reserved. # # SPDX-License-Identifier: Apache-2.0 @@ -16,43 +16,6 @@ import sys import re import pkg_resources # part of setuptools -### begin monkey patch ### -# Monkey patch solution for bug #16169 -# -# There is a bug in upstream cwltool where the version updater needs -# to replace the document fragments in the loader index with the -# updated ones, but actually it only does it for the root document. -# Normally we just fix the bug in upstream but that's challenging -# because current cwltool dropped support for Python 2.7 and we're -# still supporting py2 in Arvados 2.0 (although py2 support will most -# likely be dropped in Arvados 2.1). Making a bugfix fork comes with -# its own complications (it would need to be added to PyPi) so monkey -# patching is the least disruptive fix (and is relatively safe because -# our cwltool dependency is pinned to a specific version). This -# should be removed as soon as a bugfix goes into upstream cwltool and -# we upgrade to it. -# -import cwltool.load_tool -from cwltool.utils import visit_class -from six.moves import urllib -original_resolve_and_validate_document = cwltool.load_tool.resolve_and_validate_document -def wrapped_resolve_and_validate_document( - loadingContext, # type: LoadingContext - workflowobj, # type: Union[CommentedMap, CommentedSeq] - uri, # type: Text - preprocess_only=False, # type: bool - skip_schemas=None, # type: Optional[bool] - ): - loadingContext, uri = original_resolve_and_validate_document(loadingContext, workflowobj, uri, preprocess_only, skip_schemas) - if loadingContext.do_update in (True, None): - fileuri = urllib.parse.urldefrag(uri)[0] - def update_index(pr): - loadingContext.loader.idx[pr["id"]] = pr - visit_class(loadingContext.loader.idx[fileuri], ("CommandLineTool", "Workflow", "ExpressionTool"), update_index) - return loadingContext, uri -cwltool.load_tool.resolve_and_validate_document = wrapped_resolve_and_validate_document -### end monkey patch ### - from schema_salad.sourceline import SourceLine import schema_salad.validate as validate import cwltool.main @@ -60,7 +23,7 @@ import cwltool.workflow import cwltool.process import cwltool.argparser from cwltool.process import shortname, UnsupportedRequirement, use_custom_schema -from cwltool.pathmapper import adjustFileObjs, adjustDirObjs, get_listing +from cwltool.utils import adjustFileObjs, adjustDirObjs, get_listing import arvados import arvados.config @@ -213,7 +176,7 @@ def arg_parser(): # type: () -> argparse.ArgumentParser parser.add_argument("--enable-dev", action="store_true", help="Enable loading and running development versions " - "of CWL spec.", default=False) + "of the CWL standards.", default=False) parser.add_argument('--storage-classes', default="default", help="Specify comma separated list of storage classes to be used when saving workflow output to Keep.") @@ -239,6 +202,14 @@ def arg_parser(): # type: () -> argparse.ArgumentParser parser.add_argument("--http-timeout", type=int, default=5*60, dest="http_timeout", help="API request timeout in seconds. Default is 300 seconds (5 minutes).") + parser.add_argument( + "--skip-schemas", + action="store_true", + help="Skip loading of schemas", + default=False, + dest="skip_schemas", + ) + exgroup = parser.add_mutually_exclusive_group() exgroup.add_argument("--trash-intermediate", action="store_true", default=False, dest="trash_intermediate", @@ -255,15 +226,12 @@ def arg_parser(): # type: () -> argparse.ArgumentParser def add_arv_hints(): cwltool.command_line_tool.ACCEPTLIST_EN_RELAXED_RE = re.compile(r".*") cwltool.command_line_tool.ACCEPTLIST_RE = cwltool.command_line_tool.ACCEPTLIST_EN_RELAXED_RE - res10 = pkg_resources.resource_stream(__name__, 'arv-cwl-schema-v1.0.yml') - res11 = pkg_resources.resource_stream(__name__, 'arv-cwl-schema-v1.1.yml') - customschema10 = res10.read() - customschema11 = res11.read() - use_custom_schema("v1.0", "http://arvados.org/cwl", customschema10) - use_custom_schema("v1.1.0-dev1", "http://arvados.org/cwl", customschema11) - use_custom_schema("v1.1", "http://arvados.org/cwl", customschema11) - res10.close() - res11.close() + supported_versions = ["v1.0", "v1.1", "v1.2"] + for s in supported_versions: + res = pkg_resources.resource_stream(__name__, 'arv-cwl-schema-%s.yml' % s) + customschema = res.read().decode('utf-8') + use_custom_schema(s, "http://arvados.org/cwl", customschema) + res.close() cwltool.process.supportedProcessRequirements.extend([ "http://arvados.org/cwl#RunInSingleContainer", "http://arvados.org/cwl#OutputDirType",