source: trunk/MagicSoft/Mars/datacenter/scripts/buildsequenceentries@ 7232

Last change on this file since 7232 was 7232, checked in by Daniela Dorner, 19 years ago
*** empty log message ***
  • Property svn:executable set to *
File size: 4.9 KB
Line 
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
29user=`whoami`
30source /home/$user/Mars/datacenter/scripts/sourcefile
31
32set -C
33
34cd $mars
35
36table=SequenceBuildStatus
37column=fSequenceEntriesBuilt
38date=NULL
39datetime=`date +%F-%H-%M-%S`
40year=`date +%Y`
41
42todofile=$listpath/ToDo-$table-$column.txt
43getstatuslogpath=$logpath/getstatus/buildsequenceentries/$year
44getstatuslog=$getstatuslogpath/getstatus-buildsequenceentries-$datetime.log
45
46scriptlogpath=$logpath/run/buildsequenceentries/`date +%Y/%m`
47if [ ! -d $scriptlogpath ]
48then
49 mkdir -pv $scriptlogpath
50 if [ ! -d $scriptlogpath ]
51 then
52 echo "could not make scriptlogpath "$scriptlogpath
53 exit
54 fi
55fi
56
57scriptlog=$scriptlogpath/buildsequenceentries-$datetime.log
58
59date >> $scriptlog 2>&1
60
61if [ ! -d $getstatuslogpath ]
62then
63 mkdir -pv $getstatuslogpath >> $scriptlog 2>&1
64 if [ ! -d $getstatuslogpath ]
65 then
66 echo "could not make getstatuslogpath "$getstatuslogpath >> $scriptlog 2>&1
67 date >> $scriptlog 2>&1
68 exit
69 fi
70fi
71
72date > $lockpath/lock-buildsequenceentries.txt >> $scriptlog 2>&1
73checklock0=$?
74case $checklock0 in
75 0) echo "checklock0=$checklock0 -> continue " >> $scriptlog 2>&1;;
76 1) echo "checklock0=$checklock0 -> file exists " >> $scriptlog 2>&1
77 echo "-> getting list for callisto is running -> exit" >> $scriptlog 2>&1
78 date >> $scriptlog 2>&1
79 exit;;
80 *) echo "checklock0=$checklock0 -> something went completely wrong" >> $scriptlog 2>&1;;
81esac
82
83
84echo "getting list..." >> $scriptlog 2>&1
85check0=`root -q -b $macrospath/getdolist.C+\("\"$table\""\,"\"$column\""\,"\"$date\""\,"\"$listpath\""\) | tee $getstatus.log | grep int | sed -e 's/(int)//'`
86
87case $check0 in
88 1) echo "check0=$check0 -> everthing ok -> do step" >> $scriptlog 2>&1;;
89 *) echo "check0=$check0 -> ERROR -> step has to be repeated" >> $scriptlog 2>&1;;
90esac
91
92dates=(`cat $todofile`)
93
94if [ "$dates" = "" ]
95then
96 echo "nothing to do -> exit" >> $scriptlog 2>&1
97 rm -v $todofile >> $scriptlog 2>&1
98 rm -v $lockpath/lock-buildsequenceentries.txt >> $scriptlog 2>&1
99 date >> $scriptlog 2>&1
100 exit
101fi
102
103echo "dates: "${dates[@]} >> $scriptlog 2>&1
104
105for date in ${dates[@]}
106do
107 echo "building sequence entries for date $date..." >> $scriptlog 2>&1
108 year2=`echo $date | cut -c 1-4`
109 buildsequentriespath=$logpath/buildsequenceentries/$year2
110 if [ ! -d $buildsequentriespath ]
111 then
112 mkdir -pv $buildsequentriespath >> $scriptlog 2>&1
113 if [ ! -d $buildsequentriespath ]
114 then
115 echo "could not make buildsequentriespath "$buildsequentriespath >> $scriptlog 2>&1
116 continue
117 fi
118 fi
119 check1=`root -q -b $macrospath/buildsequenceentries.C+\("\"$date\""\,"\"$datapath\""\,"\"$sequpath\""\,kFALSE\) | tee $buildsequentriespath/buildsequenceentries-$date.log | grep int | sed -e 's/(int)//'`
120
121 case $check1 in
122 1) echo "check1=$check1 -> everthing ok -> setting status..." >> $scriptlog 2>&1
123 setstatuslogpath=$logpath/setstatus/buildsequenceentries/$year2
124 if [ ! -d $setstatuslogpath ]
125 then
126 mkdir -pv $setstatuslogpath >> $scriptlog 2>&1
127 if [ ! -d $setstatuslogpath ]
128 then
129 echo "could not make setstatuslogpath "$setstatuslogpath >> $scriptlog 2>&1
130 continue
131 fi
132 fi
133 check2=`root -q -b $macrospath/setstatus.C+\("\"$date\""\,"\"$table\""\,"\"$column\""\,"\"Now()\""\) | tee $setstatuslogpath/setstatus-buildsequenceentries-$date.log | grep int | sed -e 's/(int)//'`
134 case $check2 in
135 1) echo "check2=$check2 -> everthing ok, status has been set" >> $scriptlog 2>&1;;
136 *) echo "check2=$check2 -> ERROR -> step could not be set" >> $scriptlog 2>&1;;
137 esac
138 ;;
139 *) echo "check1=$check1 -> ERROR -> step has to be repeated" >> $scriptlog 2>&1;;
140 esac
141done
142
143rm -v $todofile >> $scriptlog 2>&1
144rm -v $lockpath/lock-buildsequenceentries.txt >> $scriptlog 2>&1
145
146set +C
147
148date >> $scriptlog 2>&1
149
Note: See TracBrowser for help on using the repository browser.