]> mj.ucw.cz Git - bex.git/blob - bex
Creation of queues must be explicit
[bex.git] / bex
1 #!/usr/bin/perl
2 # Batch EXecutor 3.0 -- Master Program
3 # (c) 2012 Martin Mares <mj@ucw.cz>
4
5 use strict;
6 use warnings;
7 use Getopt::Long;
8
9 my $bex_home = $ENV{"BEX_HOME"} // ".";
10 my $bex_lib = $ENV{"BEX_LIB"} // "lib";
11
12 Getopt::Long::Configure('require_order');
13 GetOptions(
14         "home=s" => \$bex_home,
15         "lib=s" => \$bex_lib,
16         "help" => sub {
17                         print <<AMEN ;
18 Usage: bex <general-options> <command> <command-options> <args>
19
20 General options:
21 --home=<dir>    Home directory where all queues and config files reside
22 --lib=<dir>     Directory where BEX modules are installed
23
24 Commands (and aliases):
25 add (a)         Add new jobs to a queue
26 job             Operations on queued jobs
27 ls (l)          Show queues and jobs on them
28 mach            List known machines and groups
29 prun (pr)       Parallel version of `run'
30 queue           Operations on queues
31 run (r)         Run queued jobs
32 AMEN
33                         exit 0;
34                 },
35         "version" => sub {
36                         print "BEX 3.0 (c) 2011-2012 Martin Mares <mj\@ucw.cz>\n";
37                 },
38 ) or die "Try `bex --help' for more information.\n";
39 Getopt::Long::Configure('default');
40
41 if (!-d $bex_home) {
42         die "BEX home directory $bex_home does not exist.\n";
43 }
44 if (!-d "$bex_home/BEX") {
45         die "BEX home directory $bex_home does not contain the BEX subdirectory.\n";
46 }
47 if (!-f "$bex_lib/perl/BEX.pm") {
48         die "BEX library directory $bex_lib misconfigured.\n";
49 }
50
51 @ARGV or die "Missing subcommand.\n";
52 my $sub = shift @ARGV;
53 $sub =~ /^[0-9a-zA-Z]+$/ or die "Invalid subcommand $sub\n";
54
55 my %aliases = (
56         'a' => 'add',
57         'l' => 'ls',
58         'p' => 'prun',
59         'r' => 'run',
60 );
61 if (defined $aliases{$sub}) { $sub = $aliases{$sub}; }
62
63 my $sub_path = "$bex_lib/bin/$sub";
64 -x $sub_path or die "Unknown subcommand $sub\n";
65
66 $ENV{"BEX_HOME"} = $bex_home;
67 $ENV{"BEX_LIB"} = $bex_lib;
68 $ENV{"PERL5LIB"} = join(":", $bex_lib . "/perl", $ENV{"PERL5LIB"} // ());
69 exec $sub_path, @ARGV;
70 die "Cannot execute $sub_path: $!\n";