]> AND Private Git Repository - loba.git/blob - Experimentations/run-all
Logo AND Algorithmique Numérique Distribuée

Private GIT Repository
run-all: check executable.
[loba.git] / Experimentations / run-all
1 #!/bin/bash
2
3 set -e
4 #set -x
5
6 usage() {
7     cat >&2 <<EOF
8 Usage: $0 [OPTION] <parameters file>
9 Options:
10     -h  print this help
11     -n  dry-run mode (for debugging)
12     -c  (continue) do not overwrite previous results
13     -z  compress output files with gzip
14 EOF
15     exit $1
16 }
17
18 log() {
19     echo "-#- $@" >&2
20 }
21
22 die() {
23     echo "ERROR: $@" >&2
24     exit 2
25 }
26
27 variable_check() {
28     eval test -n "\${$1}" || die "undefined $1"
29 }
30
31 array_check() {
32     eval test "\${#$1}" -gt 0 || die "undefined $1"
33 }
34
35 # read args
36 overwrite=1
37 debug=0
38 compress=0
39 while getopts "chnz" c; do
40     case "$c" in
41         'c') overwrite=0 ;;
42         'h') usage 0 ;;
43         'n') debug=1 ;;
44         'z') compress=1 ;;
45         '?') usage 1 ;;
46     esac
47 done
48 shift $((OPTIND - 1))
49 [ $# -eq 1 ] || usage 1
50 parameters="$1"
51
52 log "Running: $0 $@"
53 log "Hostname: $(hostname -f)"
54
55 declare -a TOPOLOGIES ALGORITHMS PLATFORMS COMMON_OPTS MORE_ARGS
56
57 # read parameters
58 log "Reading parameters from \"$1\"."
59 source "$parameters" || die "cannot read parameters file: \"$parameters\""
60
61 array_check TOPOLOGIES
62 array_check ALGORITHMS
63 array_check PLATFORMS
64 variable_check NHOSTS
65 variable_check LOAD
66 variable_check DEADLINE
67
68 # default values
69 : ${RESULTS:=$PWD/results}
70 : ${LOBA:=$PWD/loba}
71
72 COMMON_OPTS=(
73     "${MORE_ARGS[@]}"
74 )
75
76 test -x "$LOBA" || die "command not found: \"$LOBA\""
77
78 log "Results put in: \"$RESULTS\"."
79
80 [ $debug = 1 ] && log "Running in dry-run mode"
81
82 outfile() {
83     echo "$*" | sed 's,[^ ]*/,,g;s/\.xml//;y/ /_/'
84 }
85
86 summary() {
87     gzip -cdf "$@" \
88     | sed -n '\!^\[main/INFO\] ,----\[ Results \]!,${
89         /send\|recv\|wall clock\|Simulation succeeded/d;p;
90       }'
91 }
92
93 if [ $compress = 1 ]; then
94     outsuffix=".gz"
95 else
96     outsuffix=""
97 fi
98
99 for plat in "${PLATFORMS[@]}"; do
100     tmp=$(basename "$plat" ".xml")
101     plat_output="$RESULTS/plat_$tmp"
102     for topo in "${TOPOLOGIES[@]}"; do
103         topo_output="$plat_output/topo_$topo"
104         [ $debug = 0 ] && mkdir -p "$topo_output"
105         for algo in "${ALGORITHMS[@]}"; do
106             algo_output="$topo_output/algo_$algo"
107             args=(
108                 -T"$topo"
109                 -a"$algo"
110                 -N"$NHOSTS"
111                 -L"$LOAD"
112                 -t"$DEADLINE"
113                 "$plat"
114             )
115             for bk in "plain" "bookkeeping"; do
116                 cmd=( "$LOBA" "${COMMON_OPTS[@]}" )
117                 case "$bk" in
118                     "plain") : ;;
119                     "bookkeeping") cmd+=( "-b" ) ;;
120                     *) die "internal error (bk = \"$bk\")" ;;
121                 esac
122                 out="${algo_output}_${bk}.out"
123                 outf="$out$outsuffix"
124                 cmd+=( "${args[@]}" )
125                 log "Run: ${cmd[@]}"$'\n'"... &> $outf"
126                 if [ $overwrite = 0 -a -e "$outf" ]; then
127                     log "already run !"
128                     summary "$outf"
129                     continue
130                 fi
131                 if [ $debug = 1 ]; then
132                     log "skipped (dry-run)"
133                     continue
134                 fi
135                 rm -f "$outf";
136                 echo "# ${cmd[@]}" > "$out"
137                 if "${cmd[@]}" >> "$out" 2>&1; then
138                     summary "$out"
139                 else
140                     grep -v '/INFO\]' "$out"
141                 fi
142                 if [ $compress = 1 ]; then
143                     log "Compress output file."
144                     gzip --best "$out"
145                 fi
146             done
147         done
148     done
149 done