source: trunk/MagicSoft/Mars/datacenter/scripts/movingrawfiles@ 9082

Last change on this file since 9082 was 9081, checked in by snruegam, 16 years ago
*** empty log message ***
  • Property svn:executable set to *
File size: 3.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# Author(s): Stefan Ruegamer 02/2007 <mailto:snruegam@astro.uni-wuerzburg.de>
22#
23# Copyright: MAGIC Software Development, 2000-2008
24#
25#
26# ========================================================================
27#
28# This script is moving the rawfiles from the directory
29# /magic/datacenter/fromtape/rawdata to the structure
30# /magic/data/rawfiles/YYYY/MM/DD
31#
32# As the data transfer is at the moment not working via .finished files,
33# you have to use the script movingrawfiles_OK for moving these data
34#
35
36source `dirname $0`/sourcefile
37printprocesslog "INFO starting $0"
38program=movingrawfiles
39
40set -C
41umask 0002
42
43scriptlog=$runlogpath/$program-$datetime.log
44date >> $scriptlog 2>&1
45
46# check whether script is already running
47lockfile=$lockpath/lock-$program.txt
48checklock >> $scriptlog 2>&1
49
50# change permission for files
51ssh tape@dc07 chmod -R g+w /magic/datacenter/fromtape/rawdata/* >> $scriptlog 2>&1
52
53printprocesslog "INFO moving directories from muxdata to rawdata"
54# find directories which have to be copied
55days=`find /magic/datacenter/fromtape/muxdata/* -type d`
56if [ ! "$days" == "" ]
57then
58 # move directories to the tapedirectory
59 mv -v $days /magic/datacenter/fromtape/rawdata/ >> $scriptlog 2>&1
60fi
61
62# find rawfiles
63rawfiles=`find /magic/{datacenter,data/rawfiles}/fromtape/*data/ -regextype posix-egrep -regex '.*/20[01][0-9]{5}_(M[12]_)?[0-9]{8}(\.[0-9]{3})?_.*.raw' -type f`
64
65if [ "$rawfiles" == "" ]
66then
67 echo "no files to move -> exit" >> $scriptlog 2>&1
68 finish >> $scriptlog 2>&1
69fi
70
71printprocesslog "INFO moving rawfiles to $datapath/rawfiles"
72for rawfile in $rawfiles
73do
74# workaround for rawfiles with wrong timing
75# newrawfile=`echo $rawfile | sed -e 's/center\/fromtape\/rawdata/\/rawfiles-wrong-timing/g' -e 's/_/\//1' -e 's/_/\//1'`
76 path=`dirname $rawfile | cut -d/ -f3`
77 if [ "$path" == "datacenter" ]
78 then
79 newrawfile=`echo $rawfile | sed -e 's/center\/fromtape\/rawdata/\/rawfiles/g' -e 's/_/\//1' -e 's/_/\//1'`
80 elif [ "$path" == "data" ]
81 then
82 newrawfile=`echo $rawfile | sed -e 's/\/fromtape\/muxdata//g' -e 's/_/\//1' -e 's/_/\//1'`
83 else
84 echo "ERROR something is wrong with the path of file $rawfile -> continue" >> $scriptlog 2>&1
85 printprocesslog "ERROR moving rawfile $rawfile failed"
86 continue
87 fi
88
89 newdir=`dirname $newrawfile`
90 makedir $newdir >> $scriptlog 2>&1
91
92 mv -v $rawfile $newrawfile >> $scriptlog 2>&1
93done
94
95rmdir -v /magic/{datacenter,data/rawfiles}/fromtape/*data/* >> $scriptlog 2>&1
96
97printprocesslog "INFO launching filesondisk"
98echo "launching filesondisk" >> $scriptlog 2>&1
99$scriptspath/filesondisk &
100
101finish >> $scriptlog 2>&1
Note: See TracBrowser for help on using the repository browser.