Salome HOME
add std::vector<std::string> for ICOCO compatibility
[tools/hxx2salome.git] / scripts / hxx2salome
1 #!/bin/bash
2 # --
3 # Copyright (C) CEA, EDF
4 # Author : Nicolas Crouzet (CEA)
5 # --
6 #
7 #
8 # salome2 environment file (.bash or .sh) - can also be specified with -e option
9 ENVIRON_FILE=
10 # if present, hxx2salome will try to compile new module, by sourcing ENVIRON_FILE file, and executing
11 # build_configure, configure, make & make install
12 # remark : hxx2salome has to be lanched with clean PATH, LD_LIBRARY_PATH & PYTHONPATH variables!
13 #
14 # options you want to pass to configure
15 CONFIGURE_OPTION=
16 #
17 #
18 usage()
19 {
20     echo -e "\n  Usage :\n"
21     echo -e "  Set HXX2SALOME_ROOT_DIR variable"
22     echo -e "  ${HXX2SALOME_ROOT_DIR}/hxx2salome [options] "
23     echo -e "             cppComponent_root_dir cppComponent.hxx"
24     echo -e "             libcppComponent.so salomeComponentRoot\n"
25     echo -e "     - cppComponent_root_dir : install directory (absolute path)"
26     echo -e "                               of the c++ component\n"
27     echo -e "     - cppComponent.hxx      : header of the component"
28     echo -e "     - libcppComponent.so    : library\n"
29     echo -e "       (cppComponent.hxx and libcppComponent.so have to be found"
30     echo -e "        in cppComponent_root_dir)\n"
31     echo -e "     - salomeComponentRoot   : directory of the source/build/install"
32     echo -e "                               of the Salome component\n"
33     echo -e "\n  Options :"
34     echo -e "    -h : help"
35     echo -e "    -e environment_script : to specify the name of a environment file that will be updated with new necessary commands"
36     echo -e "                            (this file is also used for sourcing environment before compilation if it has sh or bash syntax,"
37     echo -e "                             if the syntax is csh, it is not sourced and for compiling (-c option) environment must be set up before)"
38     echo -e "    -s script_extension   : to use if your environment file name doesn't have extension"
39     echo -e "    -g                    : to create a gui part in your component building tree"
40     echo -e "    -c                    : to compile after generation"
41     echo -e "                            (use this option only if you don't have dependencies in your header or libraries"
42     echo -e "                             if it is the case, you'll have to adapt your Makefile.am" 
43     echo -e "    -l                    : to launch salome "
44     exit
45 }
46 #
47 welcome()
48 {
49     echo -e "\n\n"
50     echo  "----------------------------------------------------------------------------"
51     echo
52     echo  "                              hxx2salome"
53     echo
54     echo  "     Automatic generation of a Salome2 component from a C++ component"
55     echo 
56     echo  "----------------------------------------------------------------------------"
57     echo 
58     echo 
59     echo 
60 }
61
62 check_arguments()
63 {
64
65     # check if $1 is a directory
66     echo -e "-> check arguments\n"
67     if [ ! -d $1 ]
68     then
69        echo -e "Error : directory $1 does not exist!\n"
70        usage
71     fi
72     CPP_ROOT_DIR=${1%%/} # remove trailing slash if present 
73     echo "    C++ Component directory : ${CPP_ROOT_DIR}"
74
75     # look for include file $2 - check number of files found and extension
76     nb=`find ${CPP_ROOT_DIR} -name $2 | wc -l` # number of files found, should be equal to 1
77     extension=${2##*\.}
78     if [ $nb -eq 0 ]
79     then
80           echo -e "\n  Error:\n  Include file $2 not found in $1 directory!\n"
81           usage
82     elif [ $nb -ge 2 ]
83     then
84          echo -e "\n  Error:\n  More than one file named $2 was found in $1!\n  Include file should be unique!"
85          usage
86     elif [ $extension != "hxx" -a $extension != "hh" -a $extension != "h" ]
87     then
88          echo -e "\n  Error:\n  Extension=$extension\n  Include file $2 should have extension .hxx .hh or .h !\n"
89          usage
90     fi
91     hxx_file=`find ${CPP_ROOT_DIR} -name $2` # name of c++ header we will parse to generate salome module
92     hxx=$2
93     echo "    C++ Component header    : ${hxx_file}"
94     hxx_dir=`dirname ${hxx_file}`
95
96     # look for library $3
97     nb=`find ${CPP_ROOT_DIR} -name $3 | wc -l` # number of files found, should be equal to 1
98     if [ $nb -eq 0 ]
99     then
100         echo -e "\n  Error:\n  Library file $3 not found in $1 directory!\n"
101         usage
102     elif [ $nb -ge 2 ]
103     then
104         echo -e "\n  Error:\n  More than one file named $3 was found in $1!\n  Library file should be unique!"
105         usage
106     fi
107     so_file=`find ${CPP_ROOT_DIR} -name $3` # absolute path of library containing c++ module
108     echo "    C++ Component library   : ${so_file}"
109     lib_dir=`dirname ${so_file}`
110     lib_file=${3%.so} # name without .so
111     lib_file=${lib_file#lib} # name of library without lib and .so (needed by makefile)
112
113     # installation directory
114     if [[ ! -d $4 ]]
115     then
116        mkdir -p $4
117     fi
118     salomeComponentRoot=${4%%/} # remove trailing slash
119     echo "    Salome Component directory : ${salomeComponentRoot}"
120 }
121
122 # retrieve python test file ending up with _test.py
123 get_python_test_file()
124 {
125     cd ${CPP_ROOT_DIR}
126     for file in `find . -name "*_test.py"`
127     do
128        cp $file ${tmp_dir}/${CLASS_NAME}_SRC/src/${CLASS_NAME}
129        python_test_file=${python_test_file}" "`basename $file`
130     done
131     echo -e "\nList of exported python file test : $python_test_file \n"
132     cd -
133 }
134
135 create_component_tree()
136 {
137     INSTALL_DIR=${salomeComponentRoot}/${CLASS_NAME}
138
139     export NEW_COMPONENT_SRC_DIR=${INSTALL_DIR}/${CLASS_NAME}_SRC
140     export NEW_COMPONENT_BUILD_DIR=${INSTALL_DIR}/${CLASS_NAME}_BUILD
141     export NEW_COMPONENT_ROOT_DIR=${INSTALL_DIR}/${CLASS_NAME}_INSTALL
142
143     \rm -rf ${NEW_COMPONENT_SRC_DIR}
144     mkdir -p ${NEW_COMPONENT_SRC_DIR}
145 }
146
147
148 get_info_makefile()
149 {
150     makefile_lib="-L\${${CLASS_NAME}CPP_ROOT_DIR}${lib_dir#${CPP_ROOT_DIR}} -l${lib_file}"
151     makefile_include="-I\${${CLASS_NAME}CPP_ROOT_DIR}${hxx_dir#${CPP_ROOT_DIR}}"
152     
153     echo -e "\nlinking option : $makefile_lib"
154     echo -e "include option : $makefile_include"
155 }
156
157 generate_module_source()
158 {
159 #
160 # go in temporary directory to work on code generation
161     cd ${tmp_dir}
162 #
163 #
164 # -------------------------  parse hxx file and generate code  ---------------------------------------
165 #
166     echo -e "\n-> Extract public functions\n"
167     # we get first rid of the c like comments (parse01), then of the excetion specification (sed filter), finnaly we extract public functions (parse1)
168     cat ${hxx_file} | awk -f ${gene_dir}/parse01.awk | sed 's/throw.*;/;/g' | awk -f ${gene_dir}/parse1.awk > ${CLASS_NAME}_public_functions
169     cat ${CLASS_NAME}_public_functions
170     if [ ! -s ${CLASS_NAME}_public_functions ]
171     then
172         echo -e "\nError:\n  Sorry - No compatible function was found!\n  Please check your header file\n"
173         exit
174     fi
175 #
176     echo -e "\n\n-> Parse public functions and generate Salome2 files\n\n  compatibility      function\n"
177     cat ${CLASS_NAME}_public_functions | awk -f ${gene_dir}/parse2.awk |\
178     awk -v class_name=${CLASS_NAME} -f ${gene_dir}/parse3.awk
179 #
180 # outputs
181     echo -e "\n  IDL file:"
182     cat parse_result > hxx2salome_journal
183     echo -e "\n----------------- IDL file ------------------\n" >> hxx2salome_journal
184     cat code_idl >> hxx2salome_journal
185     cat code_idl
186     echo -e "\n----------------- hxx file ------------------\n" >> hxx2salome_journal
187     cat code_hxx >> hxx2salome_journal
188     echo -e "\n----------------- cxx file ------------------\n" >> hxx2salome_journal
189     cat code_cxx >> hxx2salome_journal
190     echo
191 #
192 #
193 # -------------------  duplicates template module and insert generated code  ------------------------------
194 #
195     echo -e "\n-> Duplicate template module" | tee hxx2salome_journal
196     tar xvfz ${gene_dir}/template_src.tgz >> hxx2salome_journal
197     mv HXX2SALOME_GENERIC_CLASS_NAME_SRC ${CLASS_NAME}_SRC
198     ${gene_dir}/renameSalomeModule -i HXX2SALOME_GENERIC_CLASS_NAME ${CLASS_NAME} ${CLASS_NAME}_SRC 
199     ###>> hxx2salome_journal
200     ${gene_dir}/renameSalomeModule -i hxx2salome_generic_class_name ${class_name} ${CLASS_NAME}_SRC
201     ###>> hxx2salome_journal
202 #
203     if [ $make_gui -eq 0 ]
204     then
205         echo -e "\n-> Delete GUI part from the tree" >> hxx2salome_journal
206         'rm' -rf ${CLASS_NAME}_SRC/src/${CLASS_NAME}GUI
207         sed "s/${CLASS_NAME}GUI//" < ${CLASS_NAME}_SRC/src/Makefile.am > /tmp/h2smkf.$$
208         mv /tmp/h2smkf.$$ ${CLASS_NAME}_SRC/src/Makefile.am
209         cat ${CLASS_NAME}_SRC/configure.ac | awk ' $0 !~ "^.*GUI/Makefile"  { print $0}' > /tmp/h2scac.$$
210         mv /tmp/h2scac.$$  ${CLASS_NAME}_SRC/configure.ac
211     fi
212 #
213     echo -e "\n-> Substitute generated code in idl file"
214     echo "// this idl file was generated by hxx2salome" > tmpfile
215     cat ${CLASS_NAME}_SRC/idl/${CLASS_NAME}_Gen.idl |awk ' 
216         $0 ~ "HXX2SALOME_IDL_CODE" {system("cat code_idl >> tmpfile")} 
217         $0 != "HXX2SALOME_IDL_CODE" { print $0 >> "tmpfile" }'
218     mv tmpfile ${CLASS_NAME}_SRC/idl/${CLASS_NAME}_Gen.idl
219 #
220     echo -e "\n-> Substitute generated code in hxx file"
221     echo "// this hxx file was generated by hxx2salome" > tmpfile
222     cat ${CLASS_NAME}_SRC/src/${CLASS_NAME}/${CLASS_NAME}_i.hxx |awk '
223         $0 ~ "HXX2SALOME_HXX_CODE" {system("cat code_hxx >> tmpfile")}
224         $0 !~ "HXX2SALOME" { print $0 >> "tmpfile" }'
225     mv tmpfile ${CLASS_NAME}_SRC/src/${CLASS_NAME}/${CLASS_NAME}_i.hxx
226 #
227     echo -e "\n-> Substitute generated code in cxx file"
228     echo "// this cxx file was generated by hxx2salome" > tmpfile
229     cat ${CLASS_NAME}_SRC/src/${CLASS_NAME}/${CLASS_NAME}_i.cxx |awk -v cpp_include=$hxx '
230         $0 ~ "HXX2SALOME_CXX_CODE" {system("cat code_cxx >> tmpfile")}
231         $0 ~ "HXX2SALOME_CPP_INCLUDE" { printf "#include \"%s\"\n",cpp_include >> "tmpfile" }
232         $0 !~ "HXX2SALOME" { print $0 >> "tmpfile" }'
233     mv tmpfile ${CLASS_NAME}_SRC/src/${CLASS_NAME}/${CLASS_NAME}_i.cxx
234 #
235 # add flags in makefile
236     get_python_test_file
237     get_info_makefile
238     
239     echo -e "\n-> Substitute flags in Makefile.am"
240     sed -i "s?HXX2SALOME_INCLUDE?${makefile_include}?g
241             s?HXX2SALOME_PYTHON_FILE?${python_test_file}?g
242             s?HXX2SALOME_LIB?${makefile_lib}?g
243            " ${CLASS_NAME}_SRC/src/${CLASS_NAME}/Makefile.am
244            
245 #
246 # generate component catalog
247     echo -e "\n-> Generate component catalog" | tee hxx2salome_journal
248     if [ -f ${KERNEL_ROOT_DIR}/bin/salome/runIDLparser ]
249     then
250        idlparser=${KERNEL_ROOT_DIR}/bin/salome/runIDLparser
251     else
252        idlparser=${gene_dir}/runIDLparser
253     fi
254     cd ${CLASS_NAME}_SRC/resources
255     VER=`cat ${KERNEL_ROOT_DIR}/bin/salome/VERSION | awk ' { print $NF }'` # extract number of version 
256     export PYTHONPATH=${PYTHONPATH}:${KERNEL_ROOT_DIR}/bin/salome  # to be sure IDLparser is in PYTHONPATH
257     ${idlparser} -Wbcatalog=${CLASS_NAME}Catalog.xml,icon=${CLASS_NAME}.png,version=${VER} -I${KERNEL_ROOT_DIR}/idl/salome -I${MED_ROOT_DIR}/idl/salome ../idl/${CLASS_NAME}_Gen.idl >& /dev/null | tee  hxx2salome_journal
258     if [ -f ${CLASS_NAME}Catalog.xml ]
259     then
260         sed -i "s?_Gen??g
261                 s?SALOME/vectorOfDouble?dblevec?g
262                 s?SALOME/vectorOfLong?intvec?g
263                 s?${CLASS_NAME}_ORB/StrSeq?stringvec?g"  ${CLASS_NAME}Catalog.xml
264     else
265        echo Error with runIDLparser - the catalog was not generated
266        exit
267     fi
268 }
269
270 compile()
271 {
272     echo "----------------- Configure -------------------"
273     
274     echo "----------------- Compile ---------------------"
275     make 
276     if [ $? -eq 0 ]
277     then
278         # compilation succeeded : we make install
279         echo
280         echo "----------------- Install ---------------------"
281         make install
282     else
283         exit 1
284     fi
285 }
286
287 update_environment()
288 {
289     if [ -z ${ENVIRON_FILE} ]
290     then
291         ENVIRON_FILE="${NEW_COMPONENT_SRC_DIR}/env_${CLASS_NAME}.${SHELL_EXT}"
292     fi
293
294     echo -e "\nEnvironment file : ", $ENVIRON_FILE
295     if [ -e ${ENVIRON_FILE} ]
296     then
297         cp ${ENVIRON_FILE} ${ENVIRON_FILE}.old
298     fi
299     touch ${ENVIRON_FILE}
300
301     if [ "${SHELL_EXT}" == "csh" ]
302     then
303         grep -q " ${CLASS_NAME}_SRC_DIR" ${ENVIRON_FILE}
304         res=$?
305         if [ $res == 1 ]
306         then
307             echo -e "###\n#------ ${CLASS_NAME}-Src ------" >>  ${ENVIRON_FILE}
308             echo -e "setenv ${CLASS_NAME}_BASE ${INSTALL_DIR}" >> ${ENVIRON_FILE}
309             echo -e "setenv ${CLASS_NAME}_SRC_DIR \${${CLASS_NAME}_BASE}/${CLASS_NAME}_SRC\n" >> ${ENVIRON_FILE}
310         fi
311         
312         grep -q " ${CLASS_NAME}_ROOT_DIR" ${ENVIRON_FILE}
313         res=$?
314         if [ $res == 1 ]
315         then
316             echo -e "###\n#------ ${CLASS_NAME}-Bin ------" >>  ${ENVIRON_FILE}
317             echo -e "setenv ${CLASS_NAME}_ROOT_DIR \${${CLASS_NAME}_BASE}/${CLASS_NAME}_INSTALL" >> ${ENVIRON_FILE}
318             echo -e "setenv ${CLASS_NAME}CPP_ROOT_DIR ${CPP_ROOT_DIR}" >> ${ENVIRON_FILE}
319             echo -e "setenv LD_LIBRARY_PATH \${${CLASS_NAME}CPP_ROOT_DIR}${lib_dir#${CPP_ROOT_DIR}}:\${LD_LIBRARY_PATH}" >> ${ENVIRON_FILE}
320         fi
321     fi
322     if [ "${SHELL_EXT}" == "sh" ]
323     then
324         grep -q " ${CLASS_NAME}_SRC_DIR=" ${ENVIRON_FILE}
325         res=$?
326         if [ $res == 1 ]
327         then
328             echo -e "###\n#------ ${CLASS_NAME}-Src ------" >>  ${ENVIRON_FILE}
329             echo -e "export ${CLASS_NAME}_BASE=${INSTALL_DIR}" >> ${ENVIRON_FILE}
330             echo -e "export ${CLASS_NAME}_SRC_DIR=\${${CLASS_NAME}_BASE}/${CLASS_NAME}_SRC\n" >> ${ENVIRON_FILE}
331         fi
332         
333         grep -q " ${CLASS_NAME}_ROOT_DIR=" ${ENVIRON_FILE}
334         res=$?
335         if [ $res == 1 ]
336         then
337             echo -e "###\n#------ ${CLASS_NAME}-Bin ------" >>  ${ENVIRON_FILE}
338             echo -e "export ${CLASS_NAME}_ROOT_DIR=\${${CLASS_NAME}_BASE}/${CLASS_NAME}_INSTALL" >> ${ENVIRON_FILE}
339             echo -e "export ${CLASS_NAME}CPP_ROOT_DIR=${CPP_ROOT_DIR}" >> ${ENVIRON_FILE}
340             echo -e "export LD_LIBRARY_PATH=\${${CLASS_NAME}CPP_ROOT_DIR}${lib_dir#${CPP_ROOT_DIR}}:\${LD_LIBRARY_PATH}" \
341             >> ${ENVIRON_FILE}
342         fi
343         
344     fi
345 }
346
347 copy_component_source()
348 {
349     mv ${tmp_dir}/${CLASS_NAME}_SRC/* ${NEW_COMPONENT_SRC_DIR}
350     mkdir -p ${NEW_COMPONENT_BUILD_DIR}
351     mkdir -p ${NEW_COMPONENT_ROOT_DIR}
352 }
353
354 good_bye()
355 {
356     echo -e "\n\nModule was created in ${NEW_COMPONENT_SRC_DIR}"
357     echo -e "\nTo compile it, do the following : \n"
358     echo -e "\tsource ${ENVIRON_FILE}"
359     echo -e "\tcd \${${CLASS_NAME}_SRC_DIR}"
360     echo -e "\t./build_configure"
361     echo -e "\tmkdir -p \${${CLASS_NAME}_BUILD_DIR}"
362     echo -e "\tcd \${${CLASS_NAME}_BUILD_DIR}"
363     echo -e "\t\${${CLASS_NAME}_SRC_DIR}/configure ${CONFIGURE_OPTION} --prefix=\${${CLASS_NAME}_ROOT_DIR}"
364     echo -e "\tmake"
365     echo -e "\tmake install"
366     echo -e "\nTo use it :\n"
367     echo -e "\tsource the Salome environment"
368     echo -e "\tsource the component environment file (${ENVIRON_FILE})"
369     echo -e "\trun Salome"
370     echo -e "\tadd ${CLASS_NAME} to the Salome modules list"
371     echo -e "\t\t(with the --modules option of the runSalome command or"
372     echo -e "\t\tby editing your own per-user configuration file ~/.SalomeApprc.3.x.x)"
373     echo -e "\nIf the header of your component includes other headers that are not in the same directories,"
374     echo -e "or if your library has dependencies you want to specify,"
375     echo -e "you'll have to modify the following files Makefile.am: "
376     echo -e "\t\${${CLASS_NAME}_SRC_DIR}/src/${CLASS_NAME}/Makefile.am"
377     echo -e "\t\${${CLASS_NAME}_SRC_DIR}/src/${CLASS_NAME}GUI/Makefile.am"
378 }
379
380 launch_salome()
381 {
382     ${KERNEL_ROOT_DIR}/bin/salome/runSalome --gui --modules=GEOM,SMESH,VISU,SUPERV,MED,`echo ${CLASS_NAME}`  --containers=cpp,python --killall
383 }
384
385 compile_module()
386 {
387     if [ ! -d ${NEW_COMPONENT_BUILD_DIR} ]
388     then
389         mkdir -p ${NEW_COMPONENT_BUILD_DIR}
390     fi
391     if [ ! -d ${NEW_COMPONENT_ROOT_DIR} ]
392     then
393         mkdir -p ${NEW_COMPONENT_ROOT_DIR}
394     fi
395     \rm -rf ${NEW_COMPONENT_ROOT_DIR}/* ${NEW_COMPONENT_BUILD_DIR}/*
396
397 #    source ${ENVIRON_FILE}
398     echo 
399     echo -e "\n-> Build Configure"
400     cd ${NEW_COMPONENT_SRC_DIR}
401     ./build_configure
402     cd ${NEW_COMPONENT_BUILD_DIR}
403     echo -e "\n-> Configure in ${NEW_COMPONENT_BUILD_DIR}"
404     echo -e "\n-> Install in ${NEW_COMPONENT_ROOT_DIR}"
405     ${NEW_COMPONENT_SRC_DIR}/configure ${CONFIGURE_OPTION} --prefix=${NEW_COMPONENT_ROOT_DIR}
406     echo
407
408     if [[ $do_compile -eq 1 ]]
409     then
410         compile
411     fi
412     
413     if [[ $do_launch -eq 1 ]]
414     then
415         launch_salome
416     fi
417 }
418 #
419 #
420 # ------------------------------------------------------------------------
421 # --------------------------- MAIN PROGRAM -------------------------------
422 # ------------------------------------------------------------------------
423 #
424 CPP_ROOT_DIR=
425 NEW_COMPONENT_ROOT_DIR=
426 NEW_COMPONENT_SRC_DIR=
427 NEW_COMPONENT_BUILD_DIR=
428 SHELL_EXT=sh
429 do_compile=0
430 do_launch=0
431 make_gui=0
432 #
433 welcome # print some welcome info
434 #
435 gene_dir=`dirname $0`
436 if [ ! -f ${gene_dir}/parse3.awk -o ! -f ${gene_dir}/template_src.tgz ] # final check
437 then
438     echo -e "\nError : scripts parse3.awk or template_src.tgz not present in hxx2salome directory  : $gene_dir"
439     usage
440 fi
441 #
442 while getopts "cs:e:h:lg" Option
443 do
444    case $Option in
445      h) usage
446         exit;;
447      e) ENVIRON_FILE=$OPTARG;;
448      s) case $OPTARG in
449             bash) SHELL_EXT=sh;;
450             csh)  SHELL_EXT=csh;;      
451             *)    SHELL_EXT=sh;;
452         esac;;
453      g) make_gui=1;;
454      c) do_compile=1;;
455      l) do_launch=1;;
456      *) echo "Unimplemented option chosen : $Option."
457         usage
458         exit;;   # DEFAULT
459    esac
460 done
461
462 shift $(($OPTIND - 1))
463
464 # check number of other arguments
465 #
466 if [ $# -ne 4 ]
467 then
468    echo -e "\nBad number of arguments\n\n"
469    usage
470    exit
471 fi
472
473 check_arguments $1 $2 $3 $4
474
475 # if there is a sh compatible environment file, source it
476 if [[ -n ${ENVIRON_FILE} && -f ${ENVIRON_FILE} ]]
477 then
478    # analyse extension of environment file
479    case ${ENVIRON_FILE##*\.} in 
480        bash) SHELL_EXT=sh;;
481        ksh)  SHELL_EXT=sh;;
482        csh)  SHELL_EXT=csh;;
483        sh)   SHELL_EXT=sh;;
484    esac
485 fi
486
487 # Environment policy :
488 #   - an existing sh file was specified : we source environment file
489 #   - else (no file or csh syntax)      : we don't source environment file, and do compile 
490 #                                         only if KERNEL_ROOT_DIR and MED_ROOT_DIR are defined
491 if [ "${SHELL_EXT}" == "sh" ] && [ ${ENVIRON_FILE} ] && [ -f ${ENVIRON_FILE} ]
492 then
493    echo -e "\n    Environment file with sh syntax specified => we source ${ENVIRON_FILE}"
494    source ${ENVIRON_FILE}
495 else
496    if [ ${KERNEL_ROOT_DIR} ] && [ -d ${KERNEL_ROOT_DIR} ] && [ ${MED_ROOT_DIR} ] && [ -d ${MED_ROOT_DIR} ]
497    then
498        # if KERNEL_ROOT_DIR and MED_ROOT_DIR are defined, we consider that environment is set
499        echo -e "\n    Environment already set (KERNEL_ROOT_DIR and MED_ROOT_DIR are defined)"
500    else
501        if [ $do_compile -eq 1 ]
502        then 
503           echo -e "\n    Warning - Cannot compile : Environment shoud be set up before, or specify a environment file with sh syntax!\n"
504           do_compile=0
505        fi
506    fi
507 fi
508 #
509 # get class name
510 #
511 CLASS_NAME=`awk '$1 == "class" && $0 !~ /;/ {print $2}' ${hxx_file}|awk -F: '{print $1}'`
512 echo "    Name of class :" $CLASS_NAME
513 class_name=`echo ${CLASS_NAME} | awk '{print tolower($0)}'`
514 echo class_name = ${class_name}
515
516 if [ ! $CLASS_NAME ]
517 then
518     echo -e "\nError:\n  Sorry - No class definition was found!\n  Please check your header file\n"
519     exit
520 fi
521
522 #
523 # create temporary working directory
524 #
525 tmp_dir="/tmp/${USER}/${CLASS_NAME}"
526 if [ -d ${tmp_dir} ]
527 then
528     rm -rf ${tmp_dir}/*
529 else
530     mkdir -p ${tmp_dir}
531 fi
532
533 #
534 # ---------------------  Generation of module source from template ------------------------------------------
535 #
536 get_info_makefile
537 generate_module_source
538
539 #
540 # ---------------------- Installation of new module sources  ------------------------------------------------
541 #
542 create_component_tree
543
544 #
545 # ---------------------- Modification of Salome environment file  -------------------------------------------
546 #
547 update_environment
548 export `echo ${CLASS_NAME}`_ROOT_DIR=${NEW_COMPONENT_ROOT_DIR}  # to avoid resource env for compiling and launching salome
549 export `echo ${CLASS_NAME}`CPP_ROOT_DIR=${CPP_ROOT_DIR}  # idem
550 #
551 # ---------------------- Copy the generated source from temp dir  -------------------------------------------
552 #
553 copy_component_source
554
555 #
556 # ---------------------- If requested, compilation of the Salome component ----------------------------------
557 if [ ${do_compile} -eq 1 ]
558 then
559     compile_module
560 else
561     good_bye
562 fi
563
564 echo -e "\nGeneration done\n"