5 logger = logging.getLogger('run-command')
6 log_handler = logging.StreamHandler()
7 log_handler.setFormatter(logging.Formatter("run-command: %(message)s"))
8 logger.addHandler(log_handler)
9 logger.setLevel(logging.INFO)
17 import crunchutil.subst as subst
19 import arvados.commands.put as put
25 import multiprocessing
26 import crunchutil.robust_put as robust_put
27 import crunchutil.vwd as vwd
31 t = arvados.current_task().tmpdir
33 api = arvados.api('v1')
35 os.chdir(arvados.current_task().tmpdir)
44 jobp = arvados.current_job()['script_parameters']
45 if len(arvados.current_task()['parameters']) > 0:
46 taskp = arvados.current_task()['parameters']
51 return os.path.join(arvados.current_task().tmpdir, 'tmpdir')
57 return str(multiprocessing.cpu_count())
60 return os.environ['JOB_UUID']
63 return os.environ['TASK_UUID']
66 return os.environ['CRUNCH_SRC']
68 subst.default_subs["task.tmpdir"] = sub_tmpdir
69 subst.default_subs["task.outdir"] = sub_outdir
70 subst.default_subs["job.srcdir"] = sub_jobsrc
71 subst.default_subs["node.cores"] = sub_cores
72 subst.default_subs["job.uuid"] = sub_jobid
73 subst.default_subs["task.uuid"] = sub_taskid
75 class SigHandler(object):
79 def send_signal(self, sp, signum):
80 sp.send_signal(signum)
83 def expand_item(p, c):
84 if isinstance(c, dict):
85 if "foreach" in c and "command" in c:
87 items = get_items(p, p[var])
92 r.extend(expand_list(params, c["command"]))
94 elif isinstance(c, list):
95 return expand_list(p, c)
96 elif isinstance(c, str) or isinstance(c, unicode):
97 return [subst.do_substitution(p, c)]
101 def expand_list(p, l):
102 return [exp for arg in l for exp in expand_item(p, arg)]
104 def get_items(p, value):
105 if isinstance(value, list):
106 return expand_list(p, value)
108 fn = subst.do_substitution(p, value)
109 mode = os.stat(fn).st_mode
110 prefix = fn[len(os.environ['TASK_KEEPMOUNT'])+1:]
112 if stat.S_ISDIR(mode):
113 items = ["$(dir %s/%s/)" % (prefix, l) for l in os.listdir(fn)]
114 elif stat.S_ISREG(mode):
116 items = [line.rstrip("\r\n") for line in f]
127 def recursive_foreach(params, fvars):
130 items = get_items(params, params[var])
131 logger.info("parallelizing on %s with items %s" % (var, items))
132 if items is not None:
134 params = copy.copy(params)
137 recursive_foreach(params, fvars)
139 arvados.api().job_tasks().create(body={
140 'job_uuid': arvados.current_job()['uuid'],
141 'created_by_job_task_uuid': arvados.current_task()['uuid'],
147 logger.error("parameter %s with value %s in task.foreach yielded no items" % (var, params[var]))
151 if "task.foreach" in jobp:
152 if arvados.current_task()['sequence'] == 0:
153 # This is the first task to start the other tasks and exit
154 fvars = jobp["task.foreach"]
155 if isinstance(fvars, basestring):
157 if not isinstance(fvars, list) or len(fvars) == 0:
158 logger.error("value of task.foreach must be a string or non-empty list")
160 recursive_foreach(jobp, jobp["task.foreach"])
161 if "task.vwd" in jobp:
162 # Set output of the first task to the base vwd collection so it
163 # will be merged with output fragments from the other tasks by
165 arvados.current_task().set_output(subst.do_substitution(jobp, jobp["task.vwd"]))
167 arvados.current_task().set_output(None)
170 # This is the only task so taskp/jobp are the same
173 if "task.vwd" in taskp:
174 # Populate output directory with symlinks to files in collection
175 vwd.checkout(subst.do_substitution(taskp, taskp["task.vwd"]), outdir)
177 if "task.cwd" in taskp:
178 os.chdir(subst.do_substitution(taskp, taskp["task.cwd"]))
180 cmd = expand_list(taskp, taskp["command"])
182 if "task.stdin" in taskp:
183 stdinname = subst.do_substitution(taskp, taskp["task.stdin"])
184 stdinfile = open(stdinname, "rb")
186 if "task.stdout" in taskp:
187 stdoutname = subst.do_substitution(taskp, taskp["task.stdout"])
188 stdoutfile = open(stdoutname, "wb")
190 logger.info("{}{}{}".format(' '.join(cmd), (" < " + stdinname) if stdinname is not None else "", (" > " + stdoutname) if stdoutname is not None else ""))
191 except subst.SubstitutionError as e:
193 logger.error("task parameters were:")
194 logger.error(pprint.pformat(taskp))
196 except Exception as e:
197 logger.exception("caught exception")
198 logger.error("task parameters were:")
199 logger.error(pprint.pformat(taskp))
203 sp = subprocess.Popen(cmd, shell=False, stdin=stdinfile, stdout=stdoutfile)
206 # forward signals to the process.
207 signal.signal(signal.SIGINT, lambda signum, frame: sig.send_signal(sp, signum))
208 signal.signal(signal.SIGTERM, lambda signum, frame: sig.send_signal(sp, signum))
209 signal.signal(signal.SIGQUIT, lambda signum, frame: sig.send_signal(sp, signum))
211 # wait for process to complete.
214 if sig.sig is not None:
215 logger.critical("terminating on signal %s" % sig.sig)
218 logger.info("completed with exit code %i (%s)" % (rcode, "success" if rcode == 0 else "failed"))
220 except Exception as e:
221 logger.exception("caught exception")
223 # restore default signal handlers.
224 signal.signal(signal.SIGINT, signal.SIG_DFL)
225 signal.signal(signal.SIGTERM, signal.SIG_DFL)
226 signal.signal(signal.SIGQUIT, signal.SIG_DFL)
231 logger.info("the following output files will be saved to keep:")
233 subprocess.call(["find", ".", "-type", "f", "-printf", "run-command: %12.12s %h/%f\\n"], stdout=sys.stderr)
235 logger.info("start writing output to keep")
237 if "task.vwd" in taskp:
238 if "task.foreach" in jobp:
239 # This is a subtask, so don't merge with the original collection, that will happen at the end
240 outcollection = vwd.checkin(subst.do_substitution(taskp, taskp["task.vwd"]), outdir, merge=False).manifest_text()
242 # Just a single task, so do merge with the original collection
243 outcollection = vwd.checkin(subst.do_substitution(taskp, taskp["task.vwd"]), outdir, merge=True).manifest_text()
245 outcollection = robust_put.upload(outdir, logger)
247 api.job_tasks().update(uuid=arvados.current_task()['uuid'],
249 'output': outcollection,
250 'success': (rcode == 0),