source: trunk/MagicSoft/Mars/datacenter/scripts/copyscript@ 7944

Last change on this file since 7944 was 7944, checked in by Daniela Dorner, 18 years ago
*** empty log message ***
  • Property svn:executable set to *
File size: 11.4 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-2006
23#
24#
25# ========================================================================
26#
27#
28# This script handles the subsystem logfiles, which are copied every
29# day automatically from /local/ on pc15 in La Palma to
30# /home/lapalma/transfer/ on coma in the datacenter in Wuerzburg
31# The structure in this directory is: subsystem/date/logfile.*
32# The logfiles are from CC (*.rep, CC*.dbg, CC*.rbk, CC*.rep, CC*.run,
33# CC*.run.html), Cosy (cosy*.log, cosy*.rep, tpoint*.txt/starg*.txt)
34# AMC (AMC*.log, AMC*.info, AMC*.lut) and CaCo (dc*.txt)
35#
36# the script performs the following steps:
37# ----------------------------------------
38# - filling the information from the *.rbk and *.run files into the DB
39# using the macros filldotrbk.C and filldotrun.C
40# - copying all logfiles to the correct directory:
41# /subsystemdata/subsystem/YYYY/MM/DD/file.*
42# - building the sequences for the standard analysis in the database
43# (for each day of which a file was copied)
44# - if a new catalogfile has been copied, it is installed as standard in the
45# setup directory /magic/datacenter/setup and the new lines are sent to
46# the adresses specified in the script
47#
48# -- to make sure that no file is copied twice there's a textfile
49# (.processed), to which every file, that was processed, is added
50# .processed is copied to La Palma, so that it is possible to copy
51# only new files
52# -- to make sure that a file was copied completely before it is
53# processed, a file with the checksum of all files is also copied from
54# La Palma and the checksum is checked with this script for each file
55# before processing it.
56#
57#
58
59source `dirname $0`/sourcefile
60printprocesslog "INFO starting $0"
61program=copyscript
62
63set -C
64
65umask 0002
66
67transdir=/home/lapalma/transfer
68char=24
69datetime=`date +%F-%H-%M-%S`
70lockfile=$lockpath/lock-$program.txt
71
72scriptlog=$runlogpath/$program-$datetime.log
73date >> $scriptlog 2>&1
74
75# check if the script is already running
76checklock >> $scriptlog 2>&1
77
78cd $transdir
79
80#check the checksums, write output into file
81md5sum -c .checksums | tee $transdir/.check >> $scriptlog 2>&1
82
83if ! test -e $transdir/.check
84then
85 echo "couldn't create checkfile -> exit script" >> $scriptlog 2>&1
86 finish >> $scriptlog 2>&1
87else
88 echo "checkfile created" >> $scriptlog 2>&1
89fi
90
91
92ssh lapalma@apollo chmod -R g+w $transdir/* >> $scriptlog 2>&1
93
94
95cd $mars
96
97echo "remove empty directories: " >> $scriptlog 2>&1
98rmdir -pv $transdir/*/* >> $scriptlog 2>&1
99
100#find all dates in transfer-directory
101#dates=`ls $transdir/*/ -1 | grep --regexp=20[0-9][0-9]_*[0-1][0-9]_*[0-3][0-9] | grep -v '.tgz'`
102dates=`ls $transdir/*/ -1 | grep --regexp=20[0-9][0-9]_[0-1][0-9]_[0-3][0-9] | grep -v '.tgz'` >> $scriptlog 2>&1
103if [ "$dates" = "" ]
104then
105 echo "nothing to do -> exit" >> $scriptlog 2>&1
106 finish >> $scriptlog 2>&1
107fi
108
109echo "dates found: "$dates >> $scriptlog 2>&1
110#loop over dates
111for date in ${dates[@]}
112do
113 printprocesslog "INFO processing files for $date"
114 #find all files for this date
115 files=`find $transdir/*/$date/ -name "*.*"` >> $scriptlog 2>&1
116 if [ "$files" = "" ]
117 then
118 echo "no files found for $date" >> $scriptlog 2>&1
119 continue
120 else
121 echo "files found for $date" >> $scriptlog 2>&1
122 fi
123
124 date2=`echo $date | sed -e 's/_/\//g'`
125 copylogpath=$logpath/$program/$date2
126 echo "copylogpath: "$copylogpath >> $scriptlog 2>&1
127 makedir $copylogpath >> $scriptlog 2>&1
128
129 #loop over all files in the directories for this date
130 for file in $files
131 do
132 echo "file: "$file >> $scriptlog 2>&1
133 filename=`basename $file`
134
135 #check for each file whether it has to be processed
136 if grep -i "$filename: OK" $transdir/.check >> $scriptlog 2>&1
137 then
138 newfile=`echo $file | sed -e 's/home\/lapalma\/transfer/magic\/subsystemdata/' -e 's/ccdata/cc/' -e 's/cacodata/caco/' -e 's/drivelogs/drive/' -e 's/_/\//1' -e 's/_/\//1' `
139 echo "file (new path): "$newfile >> $scriptlog 2>&1
140 newpath=`dirname $newfile`
141 #make sure, that the needed directories are available
142 makedir $newpath >> $scriptlog 2>&1
143
144 #run macros if the file is a *.rbk or a *.run file to
145 #fill the information into the db
146 if echo $filename | grep \\\.rbk$ >> $scriptlog 2>&1
147 then
148 echo "found rbk-file $filename" >> $scriptlog 2>&1
149 checkfillrbk=`root -q -b $macrospath/filldotrbk.C+\("\"$file\""\,kFALSE\) | tee $copylogpath/filldotrbk-$filename-log.txt | grep int | sed -e 's/(int)//'`
150 case $checkfillrbk in
151 1) echo " checkfillrbk=$checkfillrbk -> everything ok " >> $scriptlog 2>&1
152 echo " -> go on with copying file" >> $scriptlog 2>&1
153 ;;
154 *) echo " checkfillrbk=$checkfillrbk - Error -> go on with next file" >> $scriptlog 2>&1
155 printprocesslog "ERROR filldotrbk.C failed for $file"
156 continue
157 ;;
158 esac
159 fi
160 if echo $file | grep 'CC_.*.run' >> $scriptlog 2>&1 && ! echo $file | grep .run.html >> $scriptlog 2>&1
161 then
162 echo "found run-file $filename" >> $scriptlog 2>&1
163 checkfillrun=`root -q -b $macrospath/filldotrun.C+\("\"$file\""\,kFALSE\) | tee $copylogpath/filldotrun-$filename-log.txt | grep int | sed -e 's/(int)//'`
164 case $checkfillrun in
165 1) echo " checkfillrun=$checkfillrun -> everything ok " >> $scriptlog 2>&1
166 echo " -> insert date in SequenceBuildStatus for $date" >> $scriptlog 2>&1
167
168 checkinsertdate=`root -q -b $macrospath/insertdate.C+\("\"$date\""\) | tee $copylogpath/insertdate-$date-log.txt | grep int | sed -e 's/(int)//'`
169 case $checkinsertdate in
170 1) echo "date inserted" >> $scriptlog 2>&1 ;;
171 *) echo " checkinsertdate=$checkinsertdate -> ERROR - insert date didn't work" >> $scriptlog 2>&1
172 printprocesslog "ERROR insertdate.C failed for $date"
173 continue
174 ;;
175 esac
176 echo " -> go on with copying file" >> $scriptlog 2>&1
177 ;;
178 *) echo " checkfillrun=$checkfillrun Error -> go on with next file" >> $scriptlog 2>&1
179 printprocesslog "ERROR filldotrun.C failed for $file"
180 continue
181 ;;
182 esac
183 fi
184
185 if mv -v $file $newpath >> $scriptlog 2>&1
186 then
187 #add file to donelist
188 filename3=`echo $file | cut -c $char-999`
189 echo "$filename3 processed" >> $transdir/.processed
190 echo $filename" moved and added to .processed" >> $scriptlog 2>&1
191 else
192 echo $file" couldn't be moved!!!!!" >> $scriptlog 2>&1
193 printprocesslog "WARN moving of file $file didn't work"
194 fi
195
196 else
197 #if the checksum for the file is not ok or the file was
198 #already processed (entry in donelist) -> go on with next file
199 echo $file": checksum not ok " >> $scriptlog 2>&1
200 printprocesslog "WARN checksum for file $file is not ok"
201 fi
202 done
203done
204
205echo "remove empty directories: " >> $scriptlog 2>&1
206rmdir -pv $transdir/*/* >> $scriptlog 2>&1
207
208rm -v $transdir/.check >> $scriptlog 2>&1
209
210
211
212#second part of the script:
213#update the catalog file magic_favorites.edb
214printprocesslog "INFO processing new catalog files"
215magfav=magic_favorites.edb #catalog filename
216catalog=$setuppath/$magfav #current catalogfile
217diff=$setuppath/.diff #file to store difference
218
219#getting new catalogfiles
220catfiles=`find $subsystempath/cc/ -name $magfav -newer $catalog | sort`
221
222for catfile in ${catfiles[@]}
223do
224 printprocesslog "INFO processing catalog file $catfile"
225 #write information into .diff
226 echo "diff $catfile $catalog" >| $diff
227 diff $catfile $catalog >> $diff
228 #getting differences
229 ins=`cat $diff | grep '>'` #what has been inserted
230 outs=`cat $diff | grep '<'` #what has been removed
231
232 #check if lines have been inserted
233 if ! [ "$ins" == "" ]
234 then
235 echo "--> catalogfile: "$catfile >> $scriptlog 2>&1
236 echo "the following lines were added:" >> $scriptlog 2>&1
237 cat $diff | grep '>' >> $scriptlog 2>&1
238
239 #check if lines have been removed
240 if ! [ "$outs" == "" ]
241 then
242 echo "the following lines have been removed" >> $scriptlog 2>&1
243 cat $diff | grep '<' >> $scriptlog 2>&1
244 echo " -> please check the file $catfile" >> $scriptlog 2>&1
245 #inform $adrs about removed lines
246 nail -s 'catalogfile - removed lines' $adrs < $diff
247 printprocesslog "NEWS catalog file: lines have been removed ($catfile)"
248 finish >> $scriptlog 2>&1
249 fi
250
251 #getting date of new catalogfile from path
252 date=`echo $catfile | cut -d/ -f5-7 | sed -e 's/\///g'`
253
254 oldcatalogpath=$setuppath/oldcatalogs
255 makedir $oldcatalogpath
256 #rsync current catalogfile to directory with old catalogfiles including the date of the new catalogfile into the filename
257 if ! rsync -av $catalog $oldcatalogpath/$magfav.$date >> $scriptlog 2>&1
258 then
259 echo "could not do 'rsync -av $catalog $setuppath/oldcatalogs/$magfav.$date' -> exit" >> $scriptlog 2>&1
260 printprocesslog "ERROR rsync of catalog file ($catalog -> $oldcatalogpath/$magfav.$date) didn't work"
261 finish >> $scriptlog 2>&1
262 fi
263 #rsync new catalogfile to current catalogfile
264 if ! rsync -av $catfile $catalog >> $scriptlog 2>&1
265 then
266 echo "could not do 'rsync -av $catfile $catalog' -> exit" >> $scriptlog 2>&1
267 printprocesslog "ERROR rsync of catalog file ($catfile -> $catalog) didn't work"
268 finish >> $scriptlog 2>&1
269 fi
270 #inform $adrs about changes
271 echo "file has been rsynced sucessfully -> sending email" >> $scriptlog 2>&1
272 nail -s 'new catalogfile installed - new lines' $adrs < $diff
273 printprocesslog "NEWS there are new lines in the catalogfile (see $catalog)"
274 continue
275 fi
276 #check if lines have been removed
277 if ! [ "$outs" == "" ]
278 then
279 echo "the following lines have been removed" >> $scriptlog 2>&1
280 cat $diff | grep '<' >> $scriptlog 2>&1
281 echo " -> please check the file $catfile" >> $scriptlog 2>&1
282 #inform $adrs about removed lines
283 nail -s 'catalogfile - removed lines' $adrs < $diff
284 printprocesslog "NEWS catalog file: lines have been removed ($catfile)"
285 finish >> $scriptlog 2>&1
286 fi
287# echo "nothing has changed ($catfile)" >> $scriptlog 2>&1
288done
289
290finish >> $scriptlog 2>&1
291
Note: See TracBrowser for help on using the repository browser.