1 | #!/bin/sh
|
---|
2 | #
|
---|
3 | # ========================================================================
|
---|
4 | #
|
---|
5 | # *
|
---|
6 | # * This file is part of MARS, the MAGIC Analysis and Reconstruction
|
---|
7 | # * Software. It is distributed to you in the hope that it can be a useful
|
---|
8 | # * and timesaving tool in analysing Data of imaging Cerenkov telescopes.
|
---|
9 | # * It is distributed WITHOUT ANY WARRANTY.
|
---|
10 | # *
|
---|
11 | # * Permission to use, copy, modify and distribute this software and its
|
---|
12 | # * documentation for any purpose is hereby granted without fee,
|
---|
13 | # * provided that the above copyright notice appear in all copies and
|
---|
14 | # * that both that copyright notice and this permission notice appear
|
---|
15 | # * in supporting documentation. It is provided "as is" without express
|
---|
16 | # * or implied warranty.
|
---|
17 | # *
|
---|
18 | #
|
---|
19 | #
|
---|
20 | # Author(s): Daniela Dorner 08/2004 <mailto:dorner@astro.uni-wuerzburg.de>
|
---|
21 | #
|
---|
22 | # Copyright: MAGIC Software Development, 2000-2004
|
---|
23 | #
|
---|
24 | #
|
---|
25 | # ========================================================================
|
---|
26 | #
|
---|
27 | #
|
---|
28 |
|
---|
29 | user=`whoami`
|
---|
30 | source /home/$user/Mars/datacenter/scripts/sourcefile
|
---|
31 |
|
---|
32 | table=SequenceProcessStatus
|
---|
33 | column=fAllFilesAvail
|
---|
34 | date=NULL
|
---|
35 | datetime=`date +%F-%H-%M-%S`
|
---|
36 | year=`date +%Y`
|
---|
37 |
|
---|
38 | todofile=$listpath/ToDo-$table-$column.txt
|
---|
39 | getstatuslogpath=$logpath/getstatus/checkfileavail/$year
|
---|
40 | getstatuslog=$getstatuslogpath/getstatus-$table-$column-$datetime.log
|
---|
41 |
|
---|
42 | scriptlogpath=$logpath/run/checkfilesavail/`date +%Y/%m/%d`
|
---|
43 | makedir $scriptlogpath
|
---|
44 |
|
---|
45 | scriptlog=$scriptlogpath/checkfilesforsequenceavail-$datetime.log
|
---|
46 |
|
---|
47 | date >> $scriptlog 2>&1
|
---|
48 |
|
---|
49 | makedir $getstatuslogpath >> $scriptlog 2>&1
|
---|
50 |
|
---|
51 | cd $mars
|
---|
52 |
|
---|
53 | if [ -e $todofile ]
|
---|
54 | then
|
---|
55 | echo "checkfilesforsequenceavail is already running -> exit" >> $scriptlog 2>&1
|
---|
56 | exit
|
---|
57 | fi
|
---|
58 |
|
---|
59 | echo "getting list..." >> $scriptlog 2>&1
|
---|
60 | check0=`root -q -b $macrospath/getdolist.C+\("\"$table\""\,"\"$column\""\,"\"$date\""\,"\"$listpath\""\) | tee $getstatuslog | grep int | sed -e 's/(int)//'`
|
---|
61 |
|
---|
62 | case $check0 in
|
---|
63 | 1) echo "check0=$check0 -> everthing ok -> do step" >> $scriptlog 2>&1 ;;
|
---|
64 | *) echo "check0=$check0 -> ERROR -> step has to be repeated" >> $scriptlog 2>&1 ;;
|
---|
65 | esac
|
---|
66 |
|
---|
67 | sequences=(`cat $todofile`)
|
---|
68 |
|
---|
69 | if [ "$sequences" = "" ]
|
---|
70 | then
|
---|
71 | echo "nothing to do -> exit" >> $scriptlog 2>&1
|
---|
72 | rm -v $todofile >> $scriptlog 2>&1
|
---|
73 | rm -v $lockpath/lock-$table-$column.txt >> $scriptlog 2>&1
|
---|
74 | date >> $scriptlog 2>&1
|
---|
75 | exit
|
---|
76 | fi
|
---|
77 |
|
---|
78 | echo "sequences: "${sequences[@]} >> $scriptlog 2>&1
|
---|
79 |
|
---|
80 | for sequence in ${sequences[@]}
|
---|
81 | do
|
---|
82 | echo "checking files for sequence $sequence..." >> $scriptlog 2>&1
|
---|
83 | no=`printf %08d $sequence | cut -c 0-4`
|
---|
84 | outpath=$logpath/checkfileavail/$no
|
---|
85 | echo "outpath: "$outpath >> $scriptlog 2>&1
|
---|
86 | makedir $outpath >> $scriptlog 2>&1
|
---|
87 |
|
---|
88 | check1=`root -q -b $macrospath/checkfileavail.C+\(\""$sequence\""\) | tee $outpath/checkfileavail-$sequence.log | grep int | sed -e 's/(int)//'`
|
---|
89 |
|
---|
90 | case $check1 in
|
---|
91 | 1) echo "check1=$check1 -> everthing ok -> setting status..." >> $scriptlog 2>&1
|
---|
92 | setstatuslogpath=$logpath/setstatus/checkfileavail/$no
|
---|
93 | makedir $setstatuslogpath >> $scriptlog 2>&1
|
---|
94 |
|
---|
95 | check2=`root -q -b $macrospath/setstatus.C+\("\"$sequence\""\,"\"$table\""\,"\"$column\""\,"\"Now()\""\) | tee $setstatuslogpath/setstatus-checkfileavail-$sequence.log | grep int | sed -e 's/(int)//'`
|
---|
96 | case $check2 in
|
---|
97 | 1) echo "check2=$check2 -> everthing ok, status has been set" >> $scriptlog 2>&1 ;;
|
---|
98 | *) echo "check2=$check2 -> ERROR -> step could not be set" >> $scriptlog 2>&1 ;;
|
---|
99 | esac
|
---|
100 | ;;
|
---|
101 | *) echo "check1=$check1 -> ERROR -> step has to be repeated" >> $scriptlog 2>&1 ;;
|
---|
102 | esac
|
---|
103 | done
|
---|
104 |
|
---|
105 | rm -v $todofile >> $scriptlog 2>&1
|
---|
106 | rm -v $lockpath/lock-$table-$column.txt >> $scriptlog 2>&1
|
---|
107 |
|
---|
108 | date >> $scriptlog 2>&1
|
---|
109 |
|
---|