]> SALOME platform Git repositories - tools/install.git/blob - config_files/common.sh
Salome HOME
23b188473f67682876ba74fee5be6763674a6b0f
[tools/install.git] / config_files / common.sh
1 #!/bin/sh
2
3 # This script installs a subset of products necessary for SALOME application
4 #
5 # Usage: install <target-directory> [all]
6 #        install <target-directory> <product> ... <product>
7 #
8 # Type 'install --help' to get more information
9 #
10 # Important note: 
11 #   <target-directory> must be an absolute path
12 #
13 # The script is the part of the SALOME PRO installation procedure.
14 #
15 # Copyright : 2003 CEA/DEN, EDF R&D
16 ####################################################################################
17
18 export DELIM="------"
19 export SHRC="salome.sh"
20 export CSHRC="salome.csh"
21 export DEBUG=1
22
23 #this function takes several parameters
24 #first parameter contains descriptor of output file
25 #next parameters is command for execution
26 #in case of bad result of execution ask user about furher steps
27 #(user can cancel installation procedure)
28 check_job()
29 {
30   out=$1
31   shift
32   echo -e "`pwd` -> $* >> $out" 
33   if [ $DEBUG == 0 ] ; then
34     $* | tee $out
35   else
36     if [ $out == "1" ] ; then
37       $*
38     else
39       $* >> $out 2>&1
40     fi 
41   fi
42   if [ "$?" -ne "0" ] ; then
43     if [ $out != "1" ] ; then
44       cat $out
45     fi
46     echo -n " " >&2
47     echo -e "NOT DONE !!! => $*"
48     echo -n "Would you like to continue to install this product: (Y,N) [Y] : "
49     read rep;
50     rep=`echo $rep  | tr "[A-Z]" "[a-z]"`
51     if test -z $rep || [ $rep = "y" ] ; then
52       return 1
53     fi
54     exit 1
55   fi
56   return 0
57 }
58
59 #invoke check_job function
60 #all output will be put into terminal
61 check_jb()
62 {
63   check_job 1 $*
64   return
65 }
66
67 # make directory
68 makedir()
69 {
70   rm -rf "$1" > /dev/null
71   mkdir -p "$1"
72 }
73
74 #create environment for sh and csh
75 make_env()
76 {
77 install_root=$1;  shift
78 install_work=$1; 
79 for i in $SHRC $CSHRC ; do
80     if [ -e ${install_work}/$i ]; then
81         rm ${install_work}/$i
82     fi
83     touch ${install_work}/$i
84 done
85
86 if [ $# -eq 3 ] ; then
87     product_name=$3;
88     product_env=${install_work}/env_${product_name}.sh
89     (test -e ${product_env} && rm ${product_env} )
90 fi
91
92 cat >> ${install_work}/$SHRC <<EOF
93 export INSTALL_ROOT=${install_root}
94 EOF
95 product_sequence="$2"
96 #for i in `ls -a ${install_work} | grep -E "..*" | grep -v ".salome.*"` ; do
97 for i in $product_sequence ; do
98     cat ${install_work}/env_${i}.sh >> ${install_work}/$SHRC 2>/dev/null
99 done 
100
101 sed -e 's%^export \([[:alnum:]_[:blank:]]*\)\=%setenv \1 %g' -e 's%^#csh-specific  %%g' ${INSTALL_WORK}/$SHRC > ${INSTALL_WORK}/_$CSHRC
102 pre_vars="PATH LD_LIBRARY_PATH LD_RUN_PATH PYTHONPATH"
103 for i in $pre_vars ; do
104 cat >> ${install_work}/$CSHRC <<EOF
105 if (! (\$?${i}) ) then
106   setenv $i
107 endif
108 EOF
109 done
110 cat ${INSTALL_WORK}/_$CSHRC >> ${INSTALL_WORK}/$CSHRC
111 rm -f ${INSTALL_WORK}/_$CSHRC
112
113 if [ $# -eq 4 ] ; then
114     product_dir=$4
115     cp -f ${install_work}/$SHRC ${install_work}/$CSHRC ${product_dir}/.
116 fi
117 cp -f ${install_work}/$CSHRC ${install_root}/env_products.csh
118 cp -f ${install_work}/$SHRC ${install_root}/env_products.sh
119 }
120
121 #try use already existing product
122 try_existing()
123 {
124 product_dir=$1;  install_root=$2;  install_work=$3;  product_sequence="$4";  product_type=$5
125 env_file=${product_dir}/env_${product_type}.sh
126 if [ -f ${env_file} ] ; then
127     cp -f ${env_file} ${install_work}
128     make_env ${install_root} ${install_work} "${product_sequence}"
129     source ${install_work}/$SHRC
130     check_version
131     if [ $? -eq 0 ] ; then
132         if [ -d ${product_dir} ] && [ -w ${product_dir} ] ; then
133             #makedir ${product_dir}
134             print_env
135             return 0    
136         fi
137     fi
138 fi
139 return 1;
140 }
141
142 #check existance of lib passed as first parameter
143 #return 0 if lib exists
144 #if you pass second parameter search will be done in it 
145 #otherwise search will be done in $LD_LIBRARY_PATH
146 #you should use : as dilimeter if you are going to pass second parameter
147 check_lib_version(){
148 if [ -n "$2" ]; then
149    whereIs=$2
150 else
151    whereIs=$LD_LIBRARY_PATH
152 fi
153 for L in `echo ${whereIs} | sed -e"s%:% %g"` ;  do
154     ret=`find $L -name $1 2>/dev/null`
155     if [ -n "$ret" ] ; then
156         #echo "The $1 exists on yours system in a $L folder"
157         return 0
158     fi
159 done
160 return 1
161 }
162
163 find_in_path(){
164 file=$1;  shift; 
165 path=$*
166 for i in `echo ${path} | sed -e"s%:% %g"` ; do 
167     ret=`find $i -name $file 2>/dev/null`
168     if [ -n "$ret" ] ; then
169         ret=`echo $ret | sed -e"s%/\$file$%%g"`
170         echo $ret
171         return 0
172     fi
173 done
174 return 1
175 }
176
177 sort_path(){
178 arg1=$1;  val1=$2;  arg2=$3;  val2=$4
179 tmp="^$val1$|^$val1:|:$val1$|:$val1:"
180 #echo $val2 | grep -E "$tmp" >/dev/null 2>&1
181 #if [ $? -eq 0 ] ; then 
182 #    echo "$arg2"
183 #    return
184 #fi
185 to_tail=1
186 exclude_list="usr lib bin sbin etc"
187 for i in ${exclude_list} ; do
188     tmp="^/$i/|^/$i\$"
189     echo ${val1} | grep -E "$tmp" >/dev/null 2>&1
190     if [ $? == 0 ] ; then to_tail=0; break; fi
191 done
192 if [ $to_tail -eq 0 ] ; then
193     echo $arg2:$arg1
194 else
195     echo $arg1:$arg2
196 fi
197 return $to_tail
198 }