Merge branch '8784-dir-listings'
[arvados.git] / sdk / cwl / arvados_cwl / done.py
1 # Copyright (C) The Arvados Authors. All rights reserved.
2 #
3 # SPDX-License-Identifier: Apache-2.0
4
5 import re
6 from cwltool.errors import WorkflowException
7 from collections import deque
8
9 def done(self, record, tmpdir, outdir, keepdir):
10     cols = [
11         ("output", "Output %s of %s" % (record["output"][0:7], self.name), record["output"]),
12         ("log", "Log of %s" % (record["uuid"]), record["log"])
13     ]
14
15     for coltype, colname, colpdh in cols:
16         # check if collection already exists with same owner, name and content
17         collection_exists = self.arvrunner.api.collections().list(
18             filters=[["owner_uuid", "=", self.arvrunner.project_uuid],
19                      ['portable_data_hash', '=', colpdh],
20                      ["name", "=", colname]]
21         ).execute(num_retries=self.arvrunner.num_retries)
22
23         if not collection_exists["items"]:
24             # Create a collection located in the same project as the
25             # pipeline with the contents of the output/log.
26             # First, get output/log record.
27             collections = self.arvrunner.api.collections().list(
28                 limit=1,
29                 filters=[['portable_data_hash', '=', colpdh]],
30                 select=["manifest_text"]
31             ).execute(num_retries=self.arvrunner.num_retries)
32
33             if not collections["items"]:
34                 raise WorkflowException(
35                     "[job %s] %s '%s' cannot be found on API server" % (
36                         self.name, coltype, colpdh))
37
38             # Create new collection in the parent project
39             # with the output/log contents.
40             self.arvrunner.api.collections().create(body={
41                 "owner_uuid": self.arvrunner.project_uuid,
42                 "name": colname,
43                 "portable_data_hash": colpdh,
44                 "manifest_text": collections["items"][0]["manifest_text"]
45             }, ensure_unique_name=True).execute(
46                 num_retries=self.arvrunner.num_retries)
47
48     return done_outputs(self, record, tmpdir, outdir, keepdir)
49
50 def done_outputs(self, record, tmpdir, outdir, keepdir):
51     self.builder.outdir = outdir
52     self.builder.pathmapper.keepdir = keepdir
53     return self.collect_outputs("keep:" + record["output"])
54
55 crunchstat_re = re.compile(r"^\d{4}-\d\d-\d\d_\d\d:\d\d:\d\d [a-z0-9]{5}-8i9sb-[a-z0-9]{15} \d+ \d+ stderr crunchstat:")
56 timestamp_re = re.compile(r"^(\d{4}-\d\d-\d\dT\d\d:\d\d:\d\d\.\d+Z) (.*)")
57
58 def logtail(logcollection, logger, header, maxlen=25):
59     if len(logcollection) == 0:
60         logger.info(header)
61         logger.info("  ** log is empty **")
62         return
63
64     containersapi = ("crunch-run.txt" in logcollection)
65     mergelogs = {}
66
67     for log in logcollection.keys():
68         if not containersapi or log in ("crunch-run.txt", "stdout.txt", "stderr.txt"):
69             logname = log[:-4]
70             logt = deque([], maxlen)
71             mergelogs[logname] = logt
72             with logcollection.open(log) as f:
73                 for l in f:
74                     if containersapi:
75                         g = timestamp_re.match(l)
76                         logt.append((g.group(1), g.group(2)))
77                     elif not crunchstat_re.match(l):
78                         logt.append(l)
79
80     if containersapi:
81         keys = mergelogs.keys()
82         loglines = []
83         while True:
84             earliest = None
85             for k in keys:
86                 if mergelogs[k]:
87                     if earliest is None or mergelogs[k][0][0] < mergelogs[earliest][0][0]:
88                         earliest = k
89             if earliest is None:
90                 break
91             ts, msg = mergelogs[earliest].popleft()
92             loglines.append("%s %s %s" % (ts, earliest, msg))
93         loglines = loglines[-maxlen:]
94     else:
95         loglines = mergelogs.values()[0]
96
97     logtxt = "\n  ".join(l.strip() for l in loglines)
98     logger.info(header)
99     logger.info("\n  %s", logtxt)