Merge branch '8784-dir-listings'
[arvados.git] / sdk / cwl / arvados_cwl / arvdocker.py
1 # Copyright (C) The Arvados Authors. All rights reserved.
2 #
3 # SPDX-License-Identifier: Apache-2.0
4
5 import logging
6 import sys
7 import threading
8 import copy
9
10 from schema_salad.sourceline import SourceLine
11
12 import cwltool.docker
13 from cwltool.errors import WorkflowException
14 import arvados.commands.keepdocker
15
16 logger = logging.getLogger('arvados.cwl-runner')
17
18 cached_lookups = {}
19 cached_lookups_lock = threading.Lock()
20
21 def arv_docker_get_image(api_client, dockerRequirement, pull_image, project_uuid):
22     """Check if a Docker image is available in Keep, if not, upload it using arv-keepdocker."""
23
24     if "dockerImageId" not in dockerRequirement and "dockerPull" in dockerRequirement:
25         dockerRequirement = copy.deepcopy(dockerRequirement)
26         dockerRequirement["dockerImageId"] = dockerRequirement["dockerPull"]
27         if hasattr(dockerRequirement, 'lc'):
28             dockerRequirement.lc.data["dockerImageId"] = dockerRequirement.lc.data["dockerPull"]
29
30     global cached_lookups
31     global cached_lookups_lock
32     with cached_lookups_lock:
33         if dockerRequirement["dockerImageId"] in cached_lookups:
34             return dockerRequirement["dockerImageId"]
35
36     with SourceLine(dockerRequirement, "dockerImageId", WorkflowException):
37         sp = dockerRequirement["dockerImageId"].split(":")
38         image_name = sp[0]
39         image_tag = sp[1] if len(sp) > 1 else None
40
41         images = arvados.commands.keepdocker.list_images_in_arv(api_client, 3,
42                                                                 image_name=image_name,
43                                                                 image_tag=image_tag)
44
45         if not images:
46             # Fetch Docker image if necessary.
47             cwltool.docker.get_image(dockerRequirement, pull_image)
48
49             # Upload image to Arvados
50             args = []
51             if project_uuid:
52                 args.append("--project-uuid="+project_uuid)
53             args.append(image_name)
54             if image_tag:
55                 args.append(image_tag)
56             logger.info("Uploading Docker image %s", ":".join(args[1:]))
57             try:
58                 arvados.commands.keepdocker.main(args, stdout=sys.stderr)
59             except SystemExit as e:
60                 if e.code:
61                     raise WorkflowException("keepdocker exited with code %s" % e.code)
62
63             images = arvados.commands.keepdocker.list_images_in_arv(api_client, 3,
64                                                                     image_name=image_name,
65                                                                     image_tag=image_tag)
66
67         if not images:
68             raise WorkflowException("Could not find Docker image %s:%s" % (image_name, image_tag))
69
70         with cached_lookups_lock:
71             cached_lookups[dockerRequirement["dockerImageId"]] = True
72
73     return dockerRequirement["dockerImageId"]
74
75 def arv_docker_clear_cache():
76     global cached_lookups
77     global cached_lookups_lock
78     with cached_lookups_lock:
79         cached_lookups = {}