#!/bin/sh # # ======================================================================== # # * # * This file is part of MARS, the MAGIC Analysis and Reconstruction # * Software. It is distributed to you in the hope that it can be a useful # * and timesaving tool in analysing Data of imaging Cerenkov telescopes. # * It is distributed WITHOUT ANY WARRANTY. # * # * Permission to use, copy, modify and distribute this software and its # * documentation for any purpose is hereby granted without fee, # * provided that the above copyright notice appear in all copies and # * that both that copyright notice and this permission notice appear # * in supporting documentation. It is provided "as is" without express # * or implied warranty. # * # # # Author(s): Daniela Dorner 08/2004 # # Copyright: MAGIC Software Development, 2000-2006 # # # ======================================================================== # # # This script handles the subsystem logfiles, which are copied every # day automatically from /local/ on pc15 in La Palma to # /home/lapalma/transfer/ on coma in the datacenter in Wuerzburg # The structure in this directory is: subsystem/date/logfile.* # The logfiles are from CC (*.rep, CC*.dbg, CC*.rbk, CC*.rep, CC*.run, # CC*.run.html), Cosy (cosy*.log, cosy*.rep, tpoint*.txt/starg*.txt) # AMC (AMC*.log, AMC*.info, AMC*.lut) and CaCo (dc*.txt) # # the script performs the following steps: # ---------------------------------------- # - filling the information from the *.rbk and *.run files into the DB # using the macros filldotrbk.C and filldotrun.C # - copying all logfiles to the correct directory: # /subsystemdata/subsystem/YYYY/MM/DD/file.* # - building the sequences for the standard analysis in the database # (for each day of which a file was copied) # - if a new catalogfile has been copied, it is installed as standard in the # setup directory /magic/datacenter/setup and the new lines are sent to # the adresses specified in the script # # -- to make sure that no file is copied twice there's a textfile # (.processed), to which every file, that was processed, is added # .processed is copied to La Palma, so that it is possible to copy # only new files # -- to make sure that a file was copied completely before it is # processed, a file with the checksum of all files is also copied from # La Palma and the checksum is checked with this script for each file # before processing it. # # user=`whoami` program=copyscript source /home/$user/Mars/datacenter/scripts/sourcefile set -C umask 0002 transdir=/home/lapalma/transfer char=24 datetime=`date +%F-%H-%M-%S` lockfile=$lockpath/lock-copyscript.txt scriptlogpath=$logpath/run/copyscript/`date +%Y/%m/%d` makedir $scriptlogpath scriptlog=$scriptlogpath/copyscript-$datetime.log date >> $scriptlog 2>&1 # check if the script is already running checklock >> $scriptlog 2>&1 cd $transdir #check the checksums, write output into file md5sum -c .checksums | tee $transdir/.check >> $scriptlog 2>&1 if ! test -e $transdir/.check then echo "couldn't create checkfile -> exit script" >> $scriptlog 2>&1 rm -v $lockfile >> $scriptlog 2>&1 date >> $scriptlog 2>&1 exit else echo "checkfile created" >> $scriptlog 2>&1 fi cd $mars echo "remove empty directories: " >> $scriptlog 2>&1 rmdir -pv $transdir/*/* >> $scriptlog 2>&1 #find all dates in transfer-directory #dates=`ls $transdir/*/ -1 | grep --regexp=20[0-9][0-9]_*[0-1][0-9]_*[0-3][0-9] | grep -v '.tgz'` dates=`ls $transdir/*/ -1 | grep --regexp=20[0-9][0-9]_[0-1][0-9]_[0-3][0-9] | grep -v '.tgz'` >> $scriptlog 2>&1 if [ "$dates" = "" ] then echo "nothing to do -> exit" >> $scriptlog 2>&1 rm -v $lockfile >> $scriptlog 2>&1 date >> $scriptlog 2>&1 exit fi echo "dates found: "$dates >> $scriptlog 2>&1 #loop over dates for date in ${dates[@]} do #find all files for this date files=`find $transdir/*/$date/ -name "*.*"` >> $scriptlog 2>&1 if [ "$files" = "" ] then echo "no files found for $date" >> $scriptlog 2>&1 continue else echo "files found for $date" >> $scriptlog 2>&1 fi date2=`echo $date | sed -e 's/_/\//g'` copylogpath=$logpath/copyscript/$date2 echo "copylogpath: "$copylogpath >> $scriptlog 2>&1 makedir $copylogpath >> $scriptlog 2>&1 #loop over all files in the directories for this date for file in $files do echo "file: "$file >> $scriptlog 2>&1 filename=`basename $file` #check for each file whether it has to be processed if grep "$filename: OK" $transdir/.check >> $scriptlog 2>&1 then 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' ` echo "file (new path): "$newfile >> $scriptlog 2>&1 newpath=`dirname $newfile` #make sure, that the needed directories are available makedir $newpath >> $scriptlog 2>&1 #run macros if the file is a *.rbk or a *.run file to #fill the information into the db if echo $filename | grep .rbk >> $scriptlog 2>&1 then echo "found rbk-file $filename" >> $scriptlog 2>&1 checkfillrbk=`root -q -b $macrospath/filldotrbk.C+\("\"$file\""\,kFALSE\) | tee $copylogpath/filldotrbk-$filename-log.txt | grep int | sed -e 's/(int)//'` case $checkfillrbk in 1) echo "checkfillrbk=$checkfillrbk -> everything ok " >> $scriptlog 2>&1 echo " -> go on with copying file" >> $scriptlog 2>&1 ;; *) echo "checkfillrbk=$checkfillrbk - Error -> go on with next file" >> $scriptlog 2>&1 continue;; esac fi if echo $file | grep 'CC_.*.run' >> $scriptlog 2>&1 && ! echo $file | grep .run.html >> $scriptlog 2>&1 then echo "found run-file $filename" >> $scriptlog 2>&1 checkfillrun=`root -q -b $macrospath/filldotrun.C+\("\"$file\""\,kFALSE\) | tee $copylogpath/filldotrun-$filename-log.txt | grep int | sed -e 's/(int)//'` case $checkfillrun in 1) echo "checkfillrun=$checkfillrun -> everything ok " >> $scriptlog 2>&1 echo "-> insert date in SequenceBuildStatus for $date" >> $scriptlog 2>&1 checkinsertdate=`root -q -b $macrospath/insertdate.C+\("\"$date\""\) | tee $copylogpath/insertdate-$date-log.txt | grep int | sed -e 's/(int)//'` case $checkinsertdate in 1) echo "date inserted" >> $scriptlog 2>&1 ;; *) echo "checkinsertdate=$checkinsertdate -> ERROR - insert date didn't work" >> $scriptlog 2>&1 continue;; esac echo " -> go on with copying file" >> $scriptlog 2>&1 ;; *) echo "checkfillrun=$checkfillrun Error -> go on with next file" >> $scriptlog 2>&1 continue;; esac fi #copy file totapefile=`echo $file | sed -e 's/home\/lapalma\/transfer/magic\/datacenter\/totape/'` totapepath=`dirname $totapefile` makedir $totapepath >> $scriptlog 2>&1 if ! cp -v $file $totapepath >> $scriptlog 2>&1 then echo $file" couldn't be copied!!!!!" >> $scriptlog 2>&1 fi if mv -v $file $newpath >> $scriptlog 2>&1 then #add file to donelist filename3=`echo $file | cut -c $char-999` echo "$filename3 processed" >> $transdir/.processed echo $filename" moved and added to .processed" >> $scriptlog 2>&1 else echo $file" couldn't be moved!!!!!" >> $scriptlog 2>&1 fi else #if the checksum for the file is not ok or the file was #already processed (entry in donelist) -> go on with next file echo $file": checksum not ok " >> $scriptlog 2>&1 fi done done echo "remove empty directories: " >> $scriptlog 2>&1 rmdir -pv $transdir/*/* >> $scriptlog 2>&1 rm -v $transdir/.check >> $scriptlog 2>&1 #second part of the script: #update the catalog file magic_favorites.edb magfav=magic_favorites.edb #catalog filename catalog=$setuppath/$magfav #current catalogfile diff=$setuppath/.diff #file to store difference #addresses to which the changes are sent adrs="dorner@astro.uni-wuerzburg.de, tbretz@astro.uni-wuerzburg.de, hoehne@astro.uni-wuerzburg.de" #getting new catalogfiles catfiles=`find $subsystempath/cc/ -name $magfav -cnewer $catalog | sort` for catfile in ${catfiles[@]} do #write information into .diff echo "file: "$catfile >| $diff diff $catalog $catfile >> $diff #getting differences ins=`cat $diff| grep '>'` #what has been inserted outs=`cat $diff | grep '<'`#what has been removed #check if lines have been inserted if ! [ "$ins" == "" ] then echo "--> catalogfile: "$catfile >> $scriptlog 2>&1 echo "the following lines were added:" >> $scriptlog 2>&1 cat $diff | grep '>' >> $scriptlog 2>&1 #check if lines have been removed if ! [ "$outs" == "" ] then echo "the following lines have been removed" >> $scriptlog 2>&1 cat $diff | grep '<' >> $scriptlog 2>&1 echo " -> please check the file $catfile" >> $scriptlog 2>&1 #inform $adr about removed lines nail -s 'catalogfile - removed lines' $adrs < $diff exit fi #getting date of new catalogfile from path date=`echo $catfile | cut -d/ -f5-7 | sed -e 's/\///g'` #rsync current catalogfile to directory with old catalogfiles including the date of the new catalogfile into the filename if ! rsync -av $catalog $setuppath/oldcatalogs/$magfav.$date >> $scriptlog 2>&1 then echo "could not do 'rsync -av $catalog $setuppath/oldcatalogs/$magfav.$date' -> exit" >> $scriptlog 2>&1 exit fi #rsync new catalogfile to current catalogfile if ! rsync -av $catfile $catalog >> $scriptlog 2>&1 then echo "could not do 'rsync -av $catfile $catalog' -> exit" >> $scriptlog 2>&1 exit fi #inform $adr about changes echo "file has been rsynced sucessfully -> sending email" >> $scriptlog 2>&1 nail -s 'new catalogfile installed - new lines' $adrs < $diff continue fi #check if lines have been removed if ! [ "$outs" == "" ] then echo "the following lines have been removed" >> $scriptlog 2>&1 cat $diff | grep '<' >> $scriptlog 2>&1 echo " -> please check the file $catfile" >> $scriptlog 2>&1 #inform $adr about removed lines nail -s 'catalogfile - removed lines' $adrs < $diff exit fi # echo "nothing has changed ($catfile)" >> $scriptlog 2>&1 done rm -v $lockfile >> $scriptlog 2>&1 date >> $scriptlog 2>&1 set +C