1 # Copyright (C) The Arvados Authors. All rights reserved.
3 # SPDX-License-Identifier: Apache-2.0
7 from functools import partial
12 from StringIO import StringIO
14 from schema_salad.sourceline import SourceLine
16 import cwltool.draft2tool
17 from cwltool.draft2tool import CommandLineTool
18 import cwltool.workflow
19 from cwltool.process import get_feature, scandeps, UnsupportedRequirement, normalizeFilesDirs, shortname
20 from cwltool.load_tool import fetch_document
21 from cwltool.pathmapper import adjustFileObjs, adjustDirObjs, visit_class
22 from cwltool.utils import aslist
23 from cwltool.builder import substitute
24 from cwltool.pack import pack
26 import arvados.collection
27 import ruamel.yaml as yaml
29 from .arvdocker import arv_docker_get_image
30 from .pathmapper import ArvPathMapper, trim_listing
31 from ._version import __version__
34 logger = logging.getLogger('arvados.cwl-runner')
36 def trim_anonymous_location(obj):
37 """Remove 'location' field from File and Directory literals.
39 To make internal handling easier, literals are assigned a random id for
40 'location'. However, when writing the record back out, this can break
41 reproducibility. Since it is valid for literals not have a 'location'
46 if obj.get("location", "").startswith("_:"):
49 def remove_redundant_fields(obj):
50 for field in ("path", "nameext", "nameroot", "dirname"):
54 def find_defaults(d, op):
55 if isinstance(d, list):
58 elif isinstance(d, dict):
62 for i in d.itervalues():
65 def upload_dependencies(arvrunner, name, document_loader,
66 workflowobj, uri, loadref_run, include_primary=True):
67 """Upload the dependencies of the workflowobj document to Keep.
69 Returns a pathmapper object mapping local paths to keep references. Also
70 does an in-place update of references in "workflowobj".
72 Use scandeps to find $import, $include, $schemas, run, File and Directory
73 fields that represent external references.
75 If workflowobj has an "id" field, this will reload the document to ensure
76 it is scanning the raw document prior to preprocessing.
81 joined = document_loader.fetcher.urljoin(b, u)
82 defrg, _ = urlparse.urldefrag(joined)
83 if defrg not in loaded:
85 # Use fetch_text to get raw file (before preprocessing).
86 text = document_loader.fetch_text(defrg)
87 if isinstance(text, bytes):
88 textIO = StringIO(text.decode('utf-8'))
90 textIO = StringIO(text)
91 return yaml.safe_load(textIO)
96 loadref_fields = set(("$import", "run"))
98 loadref_fields = set(("$import",))
100 scanobj = workflowobj
101 if "id" in workflowobj:
102 # Need raw file content (before preprocessing) to ensure
103 # that external references in $include and $mixin are captured.
104 scanobj = loadref("", workflowobj["id"])
106 sc = scandeps(uri, scanobj,
108 set(("$include", "$schemas", "location")),
109 loadref, urljoin=document_loader.fetcher.urljoin)
111 normalizeFilesDirs(sc)
113 if include_primary and "id" in workflowobj:
114 sc.append({"class": "File", "location": workflowobj["id"]})
116 if "$schemas" in workflowobj:
117 for s in workflowobj["$schemas"]:
118 sc.append({"class": "File", "location": s})
120 def capture_default(obj):
123 if "location" not in f and "path" in f:
124 f["location"] = f["path"]
126 if "location" in f and not arvrunner.fs_access.exists(f["location"]):
128 sc[:] = [x for x in sc if x["location"] != f["location"]]
129 # Delete "default" from workflowobj
131 visit_class(obj["default"], ("File", "Directory"), add_default)
135 find_defaults(workflowobj, capture_default)
137 mapper = ArvPathMapper(arvrunner, sc, "",
141 single_collection=True)
144 if "location" in p and (not p["location"].startswith("_:")) and (not p["location"].startswith("keep:")):
145 p["location"] = mapper.mapper(p["location"]).resolved
146 adjustFileObjs(workflowobj, setloc)
147 adjustDirObjs(workflowobj, setloc)
149 if "$schemas" in workflowobj:
151 for s in workflowobj["$schemas"]:
152 sch.append(mapper.mapper(s).resolved)
153 workflowobj["$schemas"] = sch
158 def upload_docker(arvrunner, tool):
159 """Uploads Docker images used in CommandLineTool objects."""
161 if isinstance(tool, CommandLineTool):
162 (docker_req, docker_is_req) = get_feature(tool, "DockerRequirement")
164 if docker_req.get("dockerOutputDirectory"):
165 # TODO: can be supported by containers API, but not jobs API.
166 raise SourceLine(docker_req, "dockerOutputDirectory", UnsupportedRequirement).makeError(
167 "Option 'dockerOutputDirectory' of DockerRequirement not supported.")
168 arv_docker_get_image(arvrunner.api, docker_req, True, arvrunner.project_uuid)
170 arv_docker_get_image(arvrunner.api, {"dockerPull": "arvados/jobs"}, True, arvrunner.project_uuid)
171 elif isinstance(tool, cwltool.workflow.Workflow):
173 upload_docker(arvrunner, s.embedded_tool)
175 def packed_workflow(arvrunner, tool):
176 """Create a packed workflow.
178 A "packed" workflow is one where all the components have been combined into a single document."""
180 return pack(tool.doc_loader, tool.doc_loader.fetch(tool.tool["id"]),
181 tool.tool["id"], tool.metadata)
183 def tag_git_version(packed):
184 if tool.tool["id"].startswith("file://"):
185 path = os.path.dirname(tool.tool["id"][7:])
187 githash = subprocess.check_output(['git', 'log', '--first-parent', '--max-count=1', '--format=%H'], stderr=subprocess.STDOUT, cwd=path).strip()
188 except (OSError, subprocess.CalledProcessError):
191 packed["http://schema.org/version"] = githash
194 def upload_job_order(arvrunner, name, tool, job_order):
195 """Upload local files referenced in the input object and return updated input
196 object with 'location' updated to the proper keep references.
199 for t in tool.tool["inputs"]:
200 def setSecondary(fileobj):
201 if isinstance(fileobj, dict) and fileobj.get("class") == "File":
202 if "secondaryFiles" not in fileobj:
203 fileobj["secondaryFiles"] = [{"location": substitute(fileobj["location"], sf), "class": "File"} for sf in t["secondaryFiles"]]
205 if isinstance(fileobj, list):
209 if shortname(t["id"]) in job_order and t.get("secondaryFiles"):
210 setSecondary(job_order[shortname(t["id"])])
212 jobmapper = upload_dependencies(arvrunner,
216 job_order.get("id", "#"),
219 if "id" in job_order:
222 # Need to filter this out, gets added by cwltool when providing
223 # parameters on the command line.
224 if "job_order" in job_order:
225 del job_order["job_order"]
229 def upload_workflow_deps(arvrunner, tool, override_tools):
230 # Ensure that Docker images needed by this workflow are available
232 upload_docker(arvrunner, tool)
234 document_loader = tool.doc_loader
236 def upload_tool_deps(deptool):
238 upload_dependencies(arvrunner,
239 "%s dependencies" % (shortname(deptool["id"])),
244 include_primary=False)
245 document_loader.idx[deptool["id"]] = deptool
246 override_tools[deptool["id"]] = json.dumps(deptool)
248 tool.visit(upload_tool_deps)
250 def arvados_jobs_image(arvrunner, img):
251 """Determine if the right arvados/jobs image version is available. If not, try to pull and upload it."""
254 arv_docker_get_image(arvrunner.api, {"dockerPull": img}, True, arvrunner.project_uuid)
255 except Exception as e:
256 raise Exception("Docker image %s is not available\n%s" % (img, e) )
259 def upload_workflow_collection(arvrunner, name, packed):
260 collection = arvados.collection.Collection(api_client=arvrunner.api,
261 keep_client=arvrunner.keep_client,
262 num_retries=arvrunner.num_retries)
263 with collection.open("workflow.cwl", "w") as f:
264 f.write(json.dumps(packed, indent=2, sort_keys=True, separators=(',',': ')))
266 filters = [["portable_data_hash", "=", collection.portable_data_hash()],
267 ["name", "like", name+"%"]]
268 if arvrunner.project_uuid:
269 filters.append(["owner_uuid", "=", arvrunner.project_uuid])
270 exists = arvrunner.api.collections().list(filters=filters).execute(num_retries=arvrunner.num_retries)
273 logger.info("Using collection %s", exists["items"][0]["uuid"])
275 collection.save_new(name=name,
276 owner_uuid=arvrunner.project_uuid,
277 ensure_unique_name=True,
278 num_retries=arvrunner.num_retries)
279 logger.info("Uploaded to %s", collection.manifest_locator())
281 return collection.portable_data_hash()
284 class Runner(object):
285 """Base class for runner processes, which submit an instance of
286 arvados-cwl-runner and wait for the final result."""
288 def __init__(self, runner, tool, job_order, enable_reuse,
289 output_name, output_tags, submit_runner_ram=0,
290 name=None, on_error=None, submit_runner_image=None,
291 intermediate_output_ttl=0):
292 self.arvrunner = runner
294 self.job_order = job_order
297 # If reuse is permitted by command line arguments but
298 # disabled by the workflow itself, disable it.
299 reuse_req, _ = get_feature(self.tool, "http://arvados.org/cwl#ReuseRequirement")
301 enable_reuse = reuse_req["enableReuse"]
302 self.enable_reuse = enable_reuse
304 self.final_output = None
305 self.output_name = output_name
306 self.output_tags = output_tags
308 self.on_error = on_error
309 self.jobs_image = submit_runner_image or "arvados/jobs:"+__version__
310 self.intermediate_output_ttl = intermediate_output_ttl
312 if submit_runner_ram:
313 self.submit_runner_ram = submit_runner_ram
315 self.submit_runner_ram = 3000
317 if self.submit_runner_ram <= 0:
318 raise Exception("Value of --submit-runner-ram must be greater than zero")
320 def update_pipeline_component(self, record):
323 def done(self, record):
324 """Base method for handling a completed runner."""
327 if record["state"] == "Complete":
328 if record.get("exit_code") is not None:
329 if record["exit_code"] == 33:
330 processStatus = "UnsupportedRequirement"
331 elif record["exit_code"] == 0:
332 processStatus = "success"
334 processStatus = "permanentFail"
336 processStatus = "success"
338 processStatus = "permanentFail"
342 if processStatus == "permanentFail":
343 logc = arvados.collection.CollectionReader(record["log"],
344 api_client=self.arvrunner.api,
345 keep_client=self.arvrunner.keep_client,
346 num_retries=self.arvrunner.num_retries)
347 done.logtail(logc, logger, "%s error log:" % self.arvrunner.label(self), maxlen=40)
349 self.final_output = record["output"]
350 outc = arvados.collection.CollectionReader(self.final_output,
351 api_client=self.arvrunner.api,
352 keep_client=self.arvrunner.keep_client,
353 num_retries=self.arvrunner.num_retries)
354 if "cwl.output.json" in outc:
355 with outc.open("cwl.output.json") as f:
357 outputs = json.load(f)
358 def keepify(fileobj):
359 path = fileobj["location"]
360 if not path.startswith("keep:"):
361 fileobj["location"] = "keep:%s/%s" % (record["output"], path)
362 adjustFileObjs(outputs, keepify)
363 adjustDirObjs(outputs, keepify)
364 except Exception as e:
365 logger.exception("[%s] While getting final output object: %s", self.name, e)
366 self.arvrunner.output_callback({}, "permanentFail")
368 self.arvrunner.output_callback(outputs, processStatus)
370 if record["uuid"] in self.arvrunner.processes:
371 del self.arvrunner.processes[record["uuid"]]