11 import arvados.commands.put as put
16 t = arvados.current_task().tmpdir
18 api = arvados.api('v1')
20 os.chdir(arvados.current_task().tmpdir)
26 if len(arvados.current_task()['parameters']) > 0:
27 p = arvados.current_task()['parameters']
29 p = arvados.current_job()['script_parameters']
34 r = os.path.basename(v)
35 os.symlink(os.path.join(os.environ['TASK_KEEPMOUNT'], v) , r)
40 return os.path.join(arvados.current_task().tmpdir, 'tmpdir')
43 return os.environ['CRUNCH_NODE_SLOTS']
45 subst.default_subs["link "] = sub_link
46 subst.default_subs["tmpdir"] = sub_tmpdir
47 subst.default_subs["node.cores"] = sub_cores
51 def machine_progress(bytes_written, bytes_expected):
52 return "run-command: wrote {} total {}\n".format(
53 bytes_written, -1 if (bytes_expected is None) else bytes_expected)
55 class SigHandler(object):
59 def send_signal(self, sp, signum):
60 sp.send_signal(signum)
65 for c in p["command"]:
66 cmd.append(subst.do_substitution(p, c))
71 stdoutname = subst.do_substitution(p, p["stdout"])
72 stdoutfile = open(stdoutname, "wb")
74 print("run-command: {}{}".format(' '.join(cmd), (" > " + stdoutname) if stdoutname != None else ""))
76 sp = subprocess.Popen(cmd, shell=False, stdout=stdoutfile)
79 # forward signals to the process.
80 signal.signal(signal.SIGINT, lambda signum, frame: sig.send_signal(sp, signum))
81 signal.signal(signal.SIGTERM, lambda signum, frame: sig.send_signal(sp, signum))
82 signal.signal(signal.SIGQUIT, lambda signum, frame: sig.send_signal(sp, signum))
84 # wait for process to complete.
88 print("run-command: terminating on signal %s" % sig.sig)
91 print("run-command: completed with exit code %i (%s)" % (rcode, "success" if rcode == 0 else "failed"))
93 except Exception as e:
94 print("run-command: caught exception: {}".format(e))
96 # restore default signal handlers.
97 signal.signal(signal.SIGINT, signal.SIG_DFL)
98 signal.signal(signal.SIGTERM, signal.SIG_DFL)
99 signal.signal(signal.SIGQUIT, signal.SIG_DFL)
104 print("run-command: the follow output files will be saved to keep:")
106 subprocess.call(["find", ".", "-type", "f", "-printf", "run-command: %12.12s %h/%f\\n"])
108 print("run-command: start writing output to keep")
111 resume_cache = put.ResumeCache(os.path.join(arvados.current_task().tmpdir, "upload-output-checkpoint"))
112 reporter = put.progress_writer(machine_progress)
113 bytes_expected = put.expected_bytes_for(".")
116 out = put.ArvPutCollectionWriter.from_cache(resume_cache, reporter, bytes_expected)
118 out.write_directory_tree(".", max_manifest_depth=0)
119 outuuid = out.finish()
120 api.job_tasks().update(uuid=arvados.current_task()['uuid'],
123 'success': (rcode == 0),
127 except KeyboardInterrupt:
128 print("run-command: terminating on signal 2")
130 except Exception as e:
131 print("run-command: caught exception: {}".format(e))