qdo revision 11828:36b064696175
111507SCurtis.Dunham@arm.com#! /usr/bin/env python2 211507SCurtis.Dunham@arm.com 311507SCurtis.Dunham@arm.com# Copyright (c) 2004-2005, 2007 The Regents of The University of Michigan 411507SCurtis.Dunham@arm.com# All rights reserved. 511507SCurtis.Dunham@arm.com# 611507SCurtis.Dunham@arm.com# Redistribution and use in source and binary forms, with or without 711507SCurtis.Dunham@arm.com# modification, are permitted provided that the following conditions are 811507SCurtis.Dunham@arm.com# met: redistributions of source code must retain the above copyright 911507SCurtis.Dunham@arm.com# notice, this list of conditions and the following disclaimer; 1011507SCurtis.Dunham@arm.com# redistributions in binary form must reproduce the above copyright 1111507SCurtis.Dunham@arm.com# notice, this list of conditions and the following disclaimer in the 1211507SCurtis.Dunham@arm.com# documentation and/or other materials provided with the distribution; 1311507SCurtis.Dunham@arm.com# neither the name of the copyright holders nor the names of its 1411507SCurtis.Dunham@arm.com# contributors may be used to endorse or promote products derived from 1511507SCurtis.Dunham@arm.com# this software without specific prior written permission. 1611507SCurtis.Dunham@arm.com# 1711507SCurtis.Dunham@arm.com# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 1811507SCurtis.Dunham@arm.com# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 1911507SCurtis.Dunham@arm.com# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 2011507SCurtis.Dunham@arm.com# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 2111507SCurtis.Dunham@arm.com# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 2211507SCurtis.Dunham@arm.com# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 2311507SCurtis.Dunham@arm.com# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 2411507SCurtis.Dunham@arm.com# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 2511507SCurtis.Dunham@arm.com# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 2611507SCurtis.Dunham@arm.com# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 2711507SCurtis.Dunham@arm.com# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 2811507SCurtis.Dunham@arm.com# 2911507SCurtis.Dunham@arm.com# Authors: Steve Reinhardt 3011507SCurtis.Dunham@arm.com# Ali Saidi 3111507SCurtis.Dunham@arm.com 3211507SCurtis.Dunham@arm.com# Important! 3311507SCurtis.Dunham@arm.com# This script expects a simple $ prompt, if you are using a shell other than 3411507SCurtis.Dunham@arm.com# sh which defaults to this you'll need to add something like the following 3511507SCurtis.Dunham@arm.com# to your bashrc/bash_profile script: 3611507SCurtis.Dunham@arm.com#if [ "$OAR_USER" = "xxxx" ]; then 3711507SCurtis.Dunham@arm.com# PS1='$ ' 3811507SCurtis.Dunham@arm.com 3911507SCurtis.Dunham@arm.com 4011507SCurtis.Dunham@arm.comimport sys 4111507SCurtis.Dunham@arm.comimport os 4211507SCurtis.Dunham@arm.comimport re 4311507SCurtis.Dunham@arm.comimport time 4411507SCurtis.Dunham@arm.comimport optparse 4511507SCurtis.Dunham@arm.com 4611507SCurtis.Dunham@arm.comimport pexpect 4711507SCurtis.Dunham@arm.com 4811507SCurtis.Dunham@arm.comprogname = os.path.basename(sys.argv[0]) 4911507SCurtis.Dunham@arm.com 5011507SCurtis.Dunham@arm.comusage = "%prog [options] command [command arguments]" 5111507SCurtis.Dunham@arm.comoptparser = optparse.OptionParser(usage=usage) 5211507SCurtis.Dunham@arm.comoptparser.allow_interspersed_args=False 5311507SCurtis.Dunham@arm.comoptparser.add_option('-e', dest='stderr_file', 5411507SCurtis.Dunham@arm.com help='command stderr output file') 5511507SCurtis.Dunham@arm.comoptparser.add_option('-o', dest='stdout_file', 5611507SCurtis.Dunham@arm.com help='command stdout output file') 5711507SCurtis.Dunham@arm.comoptparser.add_option('-l', dest='save_log', action='store_true', 5811507SCurtis.Dunham@arm.com help='save oarsub output log file') 5911507SCurtis.Dunham@arm.comoptparser.add_option('-N', dest='job_name', 6011507SCurtis.Dunham@arm.com help='oarsub job name') 6111507SCurtis.Dunham@arm.comoptparser.add_option('-q', dest='dest_queue', 6211507SCurtis.Dunham@arm.com help='oarsub destination queue') 6311507SCurtis.Dunham@arm.comoptparser.add_option('--qwait', dest='oarsub_timeout', type='int', 6411507SCurtis.Dunham@arm.com help='oarsub queue wait timeout', default=30*60) 6511507SCurtis.Dunham@arm.comoptparser.add_option('-t', dest='cmd_timeout', type='int', 6611507SCurtis.Dunham@arm.com help='command execution timeout', default=600*60) 6711507SCurtis.Dunham@arm.com 6811507SCurtis.Dunham@arm.com(options, cmd) = optparser.parse_args() 6911507SCurtis.Dunham@arm.com 7011507SCurtis.Dunham@arm.comif cmd == []: 7111507SCurtis.Dunham@arm.com print >>sys.stderr, "%s: missing command" % progname 7211507SCurtis.Dunham@arm.com sys.exit(1) 7311507SCurtis.Dunham@arm.com 7411507SCurtis.Dunham@arm.com# If we want to do this, need to add check here to make sure cmd[0] is 7511507SCurtis.Dunham@arm.com# a valid PBS job name, else oarsub will die on us. 7611507SCurtis.Dunham@arm.com# 7711507SCurtis.Dunham@arm.com#if not options.job_name: 7811507SCurtis.Dunham@arm.com# options.job_name = cmd[0] 7911507SCurtis.Dunham@arm.com 8011507SCurtis.Dunham@arm.comcwd = os.getcwd() 8111507SCurtis.Dunham@arm.com 8211507SCurtis.Dunham@arm.com# Deal with systems where /n is a symlink to /.automount 8311507SCurtis.Dunham@arm.comif cwd.startswith('/.automount/'): 8411507SCurtis.Dunham@arm.com cwd = cwd.replace('/.automount/', '/n/', 1) 8511507SCurtis.Dunham@arm.com 8611507SCurtis.Dunham@arm.comif not cwd.startswith('/n/poolfs/'): 8711507SCurtis.Dunham@arm.com print >>sys.stderr, "Error: current directory must be under /n/poolfs." 8811507SCurtis.Dunham@arm.com sys.exit(1) 8911507SCurtis.Dunham@arm.com 9011507SCurtis.Dunham@arm.com# The Shell class wraps pexpect.spawn with some handy functions that 9111507SCurtis.Dunham@arm.com# assume the thing on the other end is a Bourne/bash shell. 9211507SCurtis.Dunham@arm.comclass Shell(pexpect.spawn): 9311507SCurtis.Dunham@arm.com # Regexp to match the shell prompt. We change the prompt to 9411507SCurtis.Dunham@arm.com # something fixed and distinctive to make it easier to match 9511507SCurtis.Dunham@arm.com # reliably. 9611507SCurtis.Dunham@arm.com prompt_re = re.compile('qdo\$ ') 9711507SCurtis.Dunham@arm.com 9811507SCurtis.Dunham@arm.com def __init__(self, cmd): 9911507SCurtis.Dunham@arm.com # initialize base pexpect.spawn object 10011507SCurtis.Dunham@arm.com try: 10111507SCurtis.Dunham@arm.com pexpect.spawn.__init__(self, cmd) 10211507SCurtis.Dunham@arm.com except pexpect.ExceptionPexpect, exc: 10311507SCurtis.Dunham@arm.com print "%s:" % progname, exc 10411507SCurtis.Dunham@arm.com sys.exit(1) 10511507SCurtis.Dunham@arm.com # full_output accumulates the full output of the session 10611507SCurtis.Dunham@arm.com self.full_output = "" 10711507SCurtis.Dunham@arm.com self.quick_timeout = 15 10811507SCurtis.Dunham@arm.com # wait for a prompt, then change it 10911507SCurtis.Dunham@arm.com try: 11011507SCurtis.Dunham@arm.com self.expect('\$ ', options.oarsub_timeout) 11111507SCurtis.Dunham@arm.com except pexpect.TIMEOUT: 11211507SCurtis.Dunham@arm.com print >>sys.stderr, "%s: oarsub timed out." % progname 11311507SCurtis.Dunham@arm.com self.kill(9) 11411507SCurtis.Dunham@arm.com self.safe_close() 11511507SCurtis.Dunham@arm.com sys.exit(1) 11611507SCurtis.Dunham@arm.com self.do_command('unset PROMPT_COMMAND; PS1="qdo$ "') 11711507SCurtis.Dunham@arm.com 11811507SCurtis.Dunham@arm.com # version of expect that updates full_output too 11911507SCurtis.Dunham@arm.com def expect(self, regexp, timeout = -1): 12011507SCurtis.Dunham@arm.com pexpect.spawn.expect(self, regexp, timeout) 12111507SCurtis.Dunham@arm.com self.full_output += self.before + self.after 12211507SCurtis.Dunham@arm.com 12311507SCurtis.Dunham@arm.com # Just issue a command and wait for the next prompt. 12411507SCurtis.Dunham@arm.com # Returns a string containing the output of the command. 12511507SCurtis.Dunham@arm.com def do_bare_command(self, cmd, timeout = -1): 12611507SCurtis.Dunham@arm.com global full_output 12711507SCurtis.Dunham@arm.com self.sendline(cmd) 12811507SCurtis.Dunham@arm.com # read back the echo of the command 12911507SCurtis.Dunham@arm.com self.readline() 13011507SCurtis.Dunham@arm.com # wait for the next prompt 13111507SCurtis.Dunham@arm.com self.expect(self.prompt_re, timeout) 13211507SCurtis.Dunham@arm.com output = self.before.rstrip() 13311507SCurtis.Dunham@arm.com return output 13411507SCurtis.Dunham@arm.com 13511507SCurtis.Dunham@arm.com # Issue a command, then query its exit status. 13611507SCurtis.Dunham@arm.com # Returns a (string, int) tuple with the command output and the status. 13711507SCurtis.Dunham@arm.com def do_command(self, cmd, timeout = -1): 13811507SCurtis.Dunham@arm.com # do the command itself 13911507SCurtis.Dunham@arm.com output = self.do_bare_command(cmd, timeout) 14011507SCurtis.Dunham@arm.com # collect status 14111507SCurtis.Dunham@arm.com status = int(self.do_bare_command("echo $?", self.quick_timeout)) 14211507SCurtis.Dunham@arm.com return (output, status) 14311507SCurtis.Dunham@arm.com 14411507SCurtis.Dunham@arm.com # Check to see if the given directory exists. 14511507SCurtis.Dunham@arm.com def dir_exists(self, dirname): 14611507SCurtis.Dunham@arm.com (output, status) = shell.do_command('[ -d %s ]' % dirname, 14711507SCurtis.Dunham@arm.com self.quick_timeout) 14811507SCurtis.Dunham@arm.com return status == 0 14911507SCurtis.Dunham@arm.com 15011507SCurtis.Dunham@arm.com # Don't actually try to close it.. just wait until it closes by itself 15111507SCurtis.Dunham@arm.com # We can't actually kill the pid which is what it's trying to do, and if 15211507SCurtis.Dunham@arm.com # we call wait we could be in an unfortunate situation of it printing input 15311507SCurtis.Dunham@arm.com # right as we call wait, so the input is never read and the process never ends 15411507SCurtis.Dunham@arm.com def safe_close(self): 15511507SCurtis.Dunham@arm.com count = 0 15611507SCurtis.Dunham@arm.com while self.isalive() and count < 10: 15711507SCurtis.Dunham@arm.com time.sleep(1) 15811507SCurtis.Dunham@arm.com self.close(force=False) 15911507SCurtis.Dunham@arm.com 16011507SCurtis.Dunham@arm.com# Spawn the interactive pool job. 16111507SCurtis.Dunham@arm.com 16211507SCurtis.Dunham@arm.com# Hack to do link on poolfs... disabled for now since 16311507SCurtis.Dunham@arm.com# compiler/linker/library versioning problems between poolfs and 16411507SCurtis.Dunham@arm.com# nodes. May never work since poolfs is x86-64 and nodes are 32-bit. 16511507SCurtis.Dunham@arm.comif False and len(cmd) > 50: 16611507SCurtis.Dunham@arm.com shell_cmd = 'ssh -t poolfs /bin/sh -l' 16711507SCurtis.Dunham@arm.com print "%s: running %s on poolfs" % (progname, cmd[0]) 16811507SCurtis.Dunham@arm.comelse: 16911507SCurtis.Dunham@arm.com shell_cmd = 'oarsub -I' 17011507SCurtis.Dunham@arm.com if options.job_name: 17111507SCurtis.Dunham@arm.com shell_cmd += ' -n "%s"' % options.job_name 17211507SCurtis.Dunham@arm.com if options.dest_queue: 17311507SCurtis.Dunham@arm.com shell_cmd += ' -q ' + options.dest_queue 17411507SCurtis.Dunham@arm.com shell_cmd += ' -d %s' % cwd 17511507SCurtis.Dunham@arm.com 17611507SCurtis.Dunham@arm.comshell = Shell(shell_cmd) 17711507SCurtis.Dunham@arm.com 17811507SCurtis.Dunham@arm.comtry: 17911507SCurtis.Dunham@arm.com # chdir to cwd 18011507SCurtis.Dunham@arm.com (output, status) = shell.do_command('cd ' + cwd) 18111507SCurtis.Dunham@arm.com 18211507SCurtis.Dunham@arm.com if status != 0: 18311507SCurtis.Dunham@arm.com raise OSError, "Can't chdir to %s" % cwd 18411507SCurtis.Dunham@arm.com 18511507SCurtis.Dunham@arm.com # wacky hack: sometimes scons will create an output directory then 18611507SCurtis.Dunham@arm.com # fork a job to generate files in that directory, and the job will 18711507SCurtis.Dunham@arm.com # get run before the directory creation propagates through NFS. 18811507SCurtis.Dunham@arm.com # This hack looks for a '-o' option indicating an output file and 18911507SCurtis.Dunham@arm.com # waits for the corresponding directory to appear if necessary. 19011507SCurtis.Dunham@arm.com try: 19111507SCurtis.Dunham@arm.com if 'cc' in cmd[0] or 'g++' in cmd[0]: 19211507SCurtis.Dunham@arm.com output_dir = os.path.dirname(cmd[cmd.index('-o')+1]) 19311507SCurtis.Dunham@arm.com elif 'm5' in cmd[0]: 19411507SCurtis.Dunham@arm.com output_dir = cmd[cmd.index('-d')+1] 19511507SCurtis.Dunham@arm.com else: 19611507SCurtis.Dunham@arm.com output_dir = None 19711507SCurtis.Dunham@arm.com except (ValueError, IndexError): 19811507SCurtis.Dunham@arm.com # no big deal if there's no '-o'/'-d' or if it's the final argument 19911507SCurtis.Dunham@arm.com output_dir = None 20011507SCurtis.Dunham@arm.com 20111507SCurtis.Dunham@arm.com if output_dir: 20211507SCurtis.Dunham@arm.com secs_waited = 0 20311507SCurtis.Dunham@arm.com while not shell.dir_exists(output_dir) and secs_waited < 90: 20411507SCurtis.Dunham@arm.com time.sleep(5) 20511507SCurtis.Dunham@arm.com secs_waited += 5 20611507SCurtis.Dunham@arm.com if secs_waited > 30: 20711507SCurtis.Dunham@arm.com print "waited", secs_waited, "seconds for", output_dir 20811507SCurtis.Dunham@arm.com 20911507SCurtis.Dunham@arm.com # run command 21011507SCurtis.Dunham@arm.com if options.stdout_file: 21111507SCurtis.Dunham@arm.com cmd += ['>', options.stdout_file] 21211507SCurtis.Dunham@arm.com if options.stderr_file: 21311507SCurtis.Dunham@arm.com cmd += ['2>', options.stderr_file] 21411507SCurtis.Dunham@arm.com try: 21511507SCurtis.Dunham@arm.com (output, status) = shell.do_command(' '.join(cmd), options.cmd_timeout) 21611507SCurtis.Dunham@arm.com except pexpect.TIMEOUT: 21711507SCurtis.Dunham@arm.com print >>sys.stderr, "%s: command timed out after %d seconds." \ 21811507SCurtis.Dunham@arm.com % (progname, options.cmd_timeout) 21911507SCurtis.Dunham@arm.com shell.sendline('~.') # oarsub/ssh termination escape sequence 22011507SCurtis.Dunham@arm.com shell.safe_close() 22111507SCurtis.Dunham@arm.com status = 3 22211507SCurtis.Dunham@arm.com if output: 22311507SCurtis.Dunham@arm.com print output 22411507SCurtis.Dunham@arm.comfinally: 22511507SCurtis.Dunham@arm.com # end job 22611507SCurtis.Dunham@arm.com if shell.isalive(): 22711507SCurtis.Dunham@arm.com shell.sendline('exit') 22811507SCurtis.Dunham@arm.com shell.expect('Disconnected from OAR job .*') 22911507SCurtis.Dunham@arm.com shell.safe_close() 23011507SCurtis.Dunham@arm.com 23111507SCurtis.Dunham@arm.com # if there was an error, log the output even if not requested 23211507SCurtis.Dunham@arm.com if status != 0 or options.save_log: 23311507SCurtis.Dunham@arm.com log = file('qdo-log.' + str(os.getpid()), 'w') 23411507SCurtis.Dunham@arm.com log.write(shell.full_output) 23511507SCurtis.Dunham@arm.com log.close() 23611507SCurtis.Dunham@arm.comdel shell 23711507SCurtis.Dunham@arm.com 23811507SCurtis.Dunham@arm.comsys.exit(status) 23911507SCurtis.Dunham@arm.com