]> mj.ucw.cz Git - bex.git/blob - brun
Bits of documentation
[bex.git] / brun
1 #!/usr/bin/perl
2 # Batch EXecutor 2.0 -- Run Queued Jobs
3 # (c) 2011 Martin Mares <mj@ucw.cz>
4
5 use strict;
6 use warnings;
7 use Getopt::Long;
8
9 use lib 'lib';
10 use BEX;
11
12 my $given_job;
13 my $queue_name;
14 my $status_fifo;
15
16 GetOptions(
17         "j|job=s" => \$given_job,
18         "q|queue=s" => \$queue_name,
19         "s|status-fifo=s" => \$status_fifo,
20 ) or die <<AMEN ;
21 Usage: brun [<options>] [[!]<machine-or-class> ...]
22
23 Options:
24 -j, --job=<id>          Run only the specified job
25 -q, --queue=<name>      Select job queue
26     --status-fifo=<f>   Send status updates to the given named pipe
27 AMEN
28
29 my $status_fd;
30 if (defined $status_fifo) {
31         open $status_fd, '>>', $status_fifo or die "Cannot open status FIFO: $!";
32         autoflush $status_fd, 1;
33 }
34
35 sub update_status($$$$;$) {
36         my ($mach, $job, $status, $log_on_queue, $msg) = @_;
37         if ($status_fd) {
38                 print $status_fd "! $mach $job $status\n";
39         }
40         if ($log_on_queue) {
41                 $log_on_queue->log($mach, $job, $status, $msg);
42         }
43 }
44
45 sub ping_machine($) {
46         my ($mach) = @_;
47         update_status($mach, '-', 'PING', undef);
48         `ping -c1 -n $mach >/dev/null 2>/dev/null`;
49         return !$?;
50 }
51
52 sub run_job($$$) {
53         my ($job, $queue, $mach) = @_;
54         my $jid = $job->{'ID'};
55
56         my $tmp = $queue->temp_file($mach, $jid);
57         open T, '>', $tmp or die;
58         if (defined $BEX::Config::job_prolog) {
59                 open P, $BEX::Config::job_prolog or return ('INTERR', "Cannot open prolog: $!");
60                 while (<P>) { print T; }
61                 close P;
62         } else {
63                 print T "#!/bin/sh\n";
64         }
65         print T "# BEX job ", $jid, "\n";
66         print T $job->{'body'};
67         if (defined $BEX::Config::job_epilog) {
68                 open E, $BEX::Config::job_epilog or return ('INTERR', "Cannot open epilog: $!");
69                 while (<E>) { print T; }
70                 close E;
71         }
72         close T;
73
74         update_status($mach, $jid, 'SEND', undef);
75         my $cmd = 't=$(mktemp -t bex-XXXXXXXX) && cat >$t && chmod u+x $t && echo $t';
76         my $rtmp = `ssh <$tmp $mach '$cmd'`;
77         !$? && defined($rtmp) && $rtmp ne '' or return ('NOXFER', 'Transfer failed');
78         chomp $rtmp;
79
80         update_status($mach, $jid, 'RUN', $queue);
81         system 'ssh', '-t', $mach, "$rtmp ; e=\$? ; rm -f $rtmp ; exit \$e";
82         if ($?) {
83                 return ('FAILED', 'Job failed');
84         } else {
85                 return ('OK', undef);
86         }
87 }
88
89 my @machines = BEX::Config::parse_machine_list(@ARGV ? @ARGV : '*');
90 my $queue = BEX::Queue->new($queue_name);
91
92 for my $mach (@machines) {
93         my @q = $queue->scan($mach) or next;
94         update_status($mach, '-', 'INIT', undef);
95         my $ping;
96         for my $jid (@q) {
97                 if (defined $given_job) {
98                         $jid eq $given_job or next;
99                 }
100                 my $job = BEX::Job->new_from_file($queue->job_file($jid));
101                 my $stat = {
102                         'Time' => time,
103                 };
104                 print "### Running $jid (", $job->attr('Subject'), ") on $mach ###\n";
105                 $ping //= ping_machine($mach);
106                 my ($s, $msg);
107                 if (!$ping) {
108                         ($s, $msg) = ('NOPING', 'Does not ping');
109                 } else {
110                         ($s, $msg) = run_job($job, $queue, $mach);
111                 }
112                 update_status($mach, $jid, $s, $queue, $msg);
113
114                 if ($s eq 'OK') {
115                         print "+++ OK\n";
116                         $queue->remove($mach, $jid);
117                 } else {
118                         print "--- $s: $msg\n";
119                         $stat->{'Status'} = $s;
120                         $stat->{'Message'} = $msg;
121                         $queue->write_job_status($mach, $jid, $stat);
122                 }
123         }
124         update_status($mach, '-', 'DONE', undef);
125 }