1 | #!/bin/bash |
---|
2 | |
---|
3 | |
---|
4 | #on veut archiver les fichiers Debug. |
---|
5 | #Ils seront tous regroupes dans un repertoire DEBUG commun |
---|
6 | # on les renommes (repertoire DEBUG) de la meme maniere que les fichiers restart |
---|
7 | # puis on les archive via tar par periode |
---|
8 | #Creation des listes dans un repertoire debug_tar |
---|
9 | |
---|
10 | config_card=${1} |
---|
11 | LISTE_DMNFS=${2} |
---|
12 | |
---|
13 | |
---|
14 | export JOB_DIR=${JOB_DIR:-${PWD}} |
---|
15 | export IGCM_DEM=${IGCM_DEM:-${SCRATCHDIR}/IGCM_DEM} |
---|
16 | export IGCM_TMP=${IGCM_TMP:-${IGCM_DEM}/tmp} |
---|
17 | mkdir -p ${IGCM_DEM} |
---|
18 | mkdir -p ${IGCM_TMP} |
---|
19 | clean_tmp=${clean_tmp:-yes} |
---|
20 | EXE_DIR=$(dirname ${0}) |
---|
21 | SCRIPT_NAME=$(basename ${0} ) |
---|
22 | |
---|
23 | source ${EXE_DIR}/DEM_utilities.sh |
---|
24 | |
---|
25 | DEM_log -0 "Demarrage de ${SCRIPT_NAME}" |
---|
26 | |
---|
27 | |
---|
28 | #### 0- lecture de config.card |
---|
29 | #### on veut les renseignements suivants : |
---|
30 | #### JobName, PATH_SIMUL, DateBegin et DateEnd |
---|
31 | eval $(grep JobName ${config_card}) |
---|
32 | eval $(grep PATH_SIMUL_FULL ${config_card}) |
---|
33 | eval $(grep DateBegin ${config_card}) |
---|
34 | eval $(grep DateEnd ${config_card}) |
---|
35 | eval $(grep IGCM_DEM_SIMU ${config_card}) |
---|
36 | |
---|
37 | |
---|
38 | #### Preparation de l'environnement |
---|
39 | # repertoire dans lequel seront renommes les fichiers de debug |
---|
40 | STORE_DEBUG=$IGCM_DEM_SIMU/DEBUG |
---|
41 | mkdir -p ${STORE_DEBUG} |
---|
42 | |
---|
43 | # repertoire dans lequel nous stockerons les listes de debug a archiver |
---|
44 | DEBUG_TAR=$IGCM_DEM_SIMU/debug_tar |
---|
45 | mkdir -p ${DEBUG_TAR} |
---|
46 | STORE_CP=$IGCM_DEM_SIMU/store_cp |
---|
47 | mkdir -p ${STORE_CP} |
---|
48 | |
---|
49 | # lecture de periodpack dans ${IGCM_DEM_SIMU}/period_pack.txt |
---|
50 | period_pack=`awk '{print $0} ' ${IGCM_DEM_SIMU}/period_pack.txt` |
---|
51 | |
---|
52 | #### 1- renommer les fichiers ###### |
---|
53 | DEM_log -1 "Renommer les fichiers de Debug" |
---|
54 | |
---|
55 | cd ${STORE_DEBUG} |
---|
56 | rm -rf * |
---|
57 | |
---|
58 | # On copie les fichiers de Debug sur le scratchdir en changeant le nom et conservant la date |
---|
59 | grep ${PATH_SIMUL_FULL} ${LISTE_DMNFS} | grep Debug | awk '{print $3}' | sed '/^.*Debug$/d' >> ${IGCM_TMP}/${$}.liste_debug_files.txt |
---|
60 | |
---|
61 | # cas particulier : les fichiers Bands sont conserves sans etre archives |
---|
62 | grep ${JobName}_Bands ${IGCM_TMP}/${$}.liste_debug_files.txt >> ${STORE_CP}/cp_files.list |
---|
63 | sed "/${JobName}_Bands/d" ${IGCM_TMP}/${$}.liste_debug_files.txt > ${IGCM_TMP}/${$}.liste_debug_files.txt_tmp |
---|
64 | mv ${IGCM_TMP}/${$}.liste_debug_files.txt_tmp ${IGCM_TMP}/${$}.liste_debug_files.txt |
---|
65 | |
---|
66 | gawk -F/ '{dest_name=$(NF-2)("_") $(NF); system("ln -s " $0 " "dest_name)}' ${IGCM_TMP}/${$}.liste_debug_files.txt |
---|
67 | |
---|
68 | #on fait de meme avec les fichiers out_gcm.e stockes dans le repertoire Out/ qui seront prefixes par Out_ |
---|
69 | rm -f ${IGCM_TMP}/${$}.liste_debug_files.txt |
---|
70 | grep ${PATH_SIMUL_FULL} ${LISTE_DMNFS} | grep -w Out | awk '{print $3}' | sed '/^.*Out$/d' > ${IGCM_TMP}/${$}.liste_debug_files.txt |
---|
71 | gawk -F/ '{dest_name=$(NF-1)("_") $(NF); system("ln -s " $0 " "dest_name)}' ${IGCM_TMP}/${$}.liste_debug_files.txt |
---|
72 | |
---|
73 | |
---|
74 | ls -l ${STORE_DEBUG} > ${IGCM_TMP}/${$}.new_liste_debug_files.txt |
---|
75 | |
---|
76 | ### 2- creer les listes de fichiers par periode #### |
---|
77 | DEM_log -1 "Creation des listes de fichiers par periode" |
---|
78 | ### 2.1- extraire l'annee et le mois de DateBegin ### |
---|
79 | date_begin=${DateBegin} |
---|
80 | date_end=${DateEnd} |
---|
81 | |
---|
82 | year_begin=$(echo ${date_begin} | cut -c 1-4 ) |
---|
83 | month_begin=$(echo ${date_begin} | cut -c 5-6 ) |
---|
84 | year_end=$(echo ${date_end} | cut -c 1-4 ) |
---|
85 | month_end=$(echo ${date_end} | cut -c 5-6 ) |
---|
86 | |
---|
87 | |
---|
88 | ### 2.2- creation des listes ### |
---|
89 | date_begin_pack=${date_begin} |
---|
90 | date_end_simulation=${date_end} |
---|
91 | |
---|
92 | month_begin_pack=${month_begin} |
---|
93 | year_begin_pack=${year_begin} |
---|
94 | |
---|
95 | number_pack=1 |
---|
96 | |
---|
97 | while [ ${date_begin_pack} -le ${date_end_simulation} ] |
---|
98 | do |
---|
99 | |
---|
100 | DEM_log -1 "On calcule la date de fin du pack " |
---|
101 | |
---|
102 | month_end_pack=${month_begin_pack} |
---|
103 | year_end_pack=`expr ${year_begin_pack} + ${period_pack}` |
---|
104 | |
---|
105 | if [ ${month_end_pack} -le 9 ] |
---|
106 | then |
---|
107 | date_end_pack=${year_end_pack}0${month_end_pack}01 |
---|
108 | fi |
---|
109 | if [ ${month_end_pack} -gt 9 ] |
---|
110 | then |
---|
111 | date_end_pack=${year_end_pack}${month_end_pack}01 |
---|
112 | fi |
---|
113 | |
---|
114 | |
---|
115 | for file in `awk '{print $9}' ${IGCM_TMP}/${$}.new_liste_debug_files.txt`; do |
---|
116 | |
---|
117 | extract_date_file=`echo ${file} | sed -e "s/.*\${JobName}_//"` |
---|
118 | date_file=`echo ${extract_date_file}| sed 's/\([0-9]\{8\}\)_.*$/\1/g'` |
---|
119 | |
---|
120 | |
---|
121 | if [ ${date_file} -lt ${date_end_pack} ] |
---|
122 | then |
---|
123 | if [ ${date_file} -ge ${date_begin_pack} ] |
---|
124 | then |
---|
125 | echo ${file} >> ${IGCM_TMP}/${$}.liste_pack_debug_${number_pack}.txt |
---|
126 | fi |
---|
127 | fi |
---|
128 | |
---|
129 | done |
---|
130 | |
---|
131 | #on archive les debug - le nom de l'archive contiendra ${yearbegin}${monthbegin}_${yearend}${monthend} |
---|
132 | # end etant la date du dernier fichier contenu et non pas la premiere date suivant |
---|
133 | DEM_log -1 "Recherche de la date de fin reel pour nommer l'archive " |
---|
134 | #On classe par ordre alphabetique les fichiers contenus dans liste_pack_debug |
---|
135 | #la date du dernier fichier donnera la date de fin du pack |
---|
136 | sort ${IGCM_TMP}/${$}.liste_pack_debug_${number_pack}.txt > ${IGCM_TMP}/${$}.liste_pack_debug_${number_pack}.txt.tmp |
---|
137 | last_file=$(tail -n 1 ${IGCM_TMP}/${$}.liste_pack_debug_${number_pack}.txt.tmp ) |
---|
138 | extract_date_file=$( echo ${last_file} | sed -e "s/.*${JobName}_//" ) |
---|
139 | DateEnd_Debug=$( echo ${extract_date_file}| sed 's/\([0-9]\{8\}\)_.*$/\1/g' ) |
---|
140 | mv ${IGCM_TMP}/${$}.liste_pack_debug_${number_pack}.txt.tmp ${DEBUG_TAR}/${JobName}_debug_${date_begin_pack}_${DateEnd_Debug}.list |
---|
141 | |
---|
142 | |
---|
143 | DEM_log -1 "Passage de la commande Tar pour archiver la liste creee" |
---|
144 | # tar -cf ${JobName}_${date_begin_pack}_${DateEnd_Debug}_debug.tar --dereference --files-from ${DEBUG_TAR}/tar_debug_${date_begin_pack}_${DateEnd_Debug}.list |
---|
145 | # cat ${DEBUG_TAR}/tar_debug_${number_pack}.list | xargs rm |
---|
146 | |
---|
147 | |
---|
148 | DEM_log -1 "On defini le datebegin de la prochaine periode pack" |
---|
149 | #on defini la periode pack suivante |
---|
150 | month_begin_pack=${month_end_pack} |
---|
151 | year_begin_pack=${year_end_pack} |
---|
152 | |
---|
153 | if [ ${month_begin_pack} -le 9 ] |
---|
154 | then |
---|
155 | date_begin_pack=${year_begin_pack}0${month_begin_pack}01 |
---|
156 | fi |
---|
157 | if [ ${month_begin_pack} -gt 9 ] |
---|
158 | then |
---|
159 | date_begin_pack=${year_begin_pack}${month_begin_pack}01 |
---|
160 | fi |
---|
161 | |
---|
162 | |
---|
163 | number_pack=`expr ${number_pack} + 1` |
---|
164 | |
---|
165 | done |
---|
166 | |
---|
167 | |
---|
168 | cd ${EXE_DIR} |
---|