]> SALOME platform Git repositories - tools/hxx2salome.git/blob - scripts/hxx2salome
Salome HOME
Implement the management of exceptions
[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 "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 > tmpfile
244     mv tmpfile ${CLASS_NAME}_SRC/src/${CLASS_NAME}/Makefile.am
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=tmp.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 tmp.xml ]
259     then
260        cat tmp.xml | sed 's/_Gen//g' | sed 's?SALOME/vectorOfDouble?dblevec?g' | sed 's?SALOME/vectorOfLong?intvec?g' > ${CLASS_NAME}Catalog.xml
261     else
262        echo Error with runIDLparser - the catalog was not generated
263        exit
264     fi
265     rm tmp.xml
266 #
267 }
268
269 compile()
270 {
271     echo "----------------- Configure -------------------"
272     
273     echo "----------------- Compile ---------------------"
274     make 
275     if [ $? -eq 0 ]
276     then
277         # compilation succeeded : we make install
278         echo
279         echo "----------------- Install ---------------------"
280         make install
281     else
282         exit 1
283     fi
284 }
285
286 update_environment()
287 {
288     if [ -z ${ENVIRON_FILE} ]
289     then
290         ENVIRON_FILE="${NEW_COMPONENT_SRC_DIR}/env_${CLASS_NAME}.${SHELL_EXT}"
291     fi
292
293     echo -e "\nEnvironment file : ", $ENVIRON_FILE
294     if [ -e ${ENVIRON_FILE} ]
295     then
296         cp ${ENVIRON_FILE} ${ENVIRON_FILE}.old
297     fi
298     touch ${ENVIRON_FILE}
299
300     if [ "${SHELL_EXT}" == "csh" ]
301     then
302         grep -q " ${CLASS_NAME}_SRC_DIR" ${ENVIRON_FILE}
303         res=$?
304         if [ $res == 1 ]
305         then
306             echo -e "###\n#------ ${CLASS_NAME}-Src ------" >>  ${ENVIRON_FILE}
307             echo -e "setenv ${CLASS_NAME}_BASE ${INSTALL_DIR}" >> ${ENVIRON_FILE}
308             echo -e "setenv ${CLASS_NAME}_SRC_DIR \${${CLASS_NAME}_BASE}/${CLASS_NAME}_SRC\n" >> ${ENVIRON_FILE}
309         fi
310         
311         grep -q " ${CLASS_NAME}_ROOT_DIR" ${ENVIRON_FILE}
312         res=$?
313         if [ $res == 1 ]
314         then
315             echo -e "###\n#------ ${CLASS_NAME}-Bin ------" >>  ${ENVIRON_FILE}
316             echo -e "setenv ${CLASS_NAME}_ROOT_DIR \${${CLASS_NAME}_BASE}/${CLASS_NAME}_INSTALL" >> ${ENVIRON_FILE}
317             echo -e "setenv ${CLASS_NAME}CPP_ROOT_DIR ${CPP_ROOT_DIR}" >> ${ENVIRON_FILE}
318             echo -e "setenv LD_LIBRARY_PATH \${${CLASS_NAME}CPP_ROOT_DIR}${lib_dir#${CPP_ROOT_DIR}}:\${LD_LIBRARY_PATH}" >> ${ENVIRON_FILE}
319         fi
320     fi
321     if [ "${SHELL_EXT}" == "sh" ]
322     then
323         grep -q " ${CLASS_NAME}_SRC_DIR=" ${ENVIRON_FILE}
324         res=$?
325         if [ $res == 1 ]
326         then
327             echo -e "###\n#------ ${CLASS_NAME}-Src ------" >>  ${ENVIRON_FILE}
328             echo -e "export ${CLASS_NAME}_BASE=${INSTALL_DIR}" >> ${ENVIRON_FILE}
329             echo -e "export ${CLASS_NAME}_SRC_DIR=\${${CLASS_NAME}_BASE}/${CLASS_NAME}_SRC\n" >> ${ENVIRON_FILE}
330         fi
331         
332         grep -q " ${CLASS_NAME}_ROOT_DIR=" ${ENVIRON_FILE}
333         res=$?
334         if [ $res == 1 ]
335         then
336             echo -e "###\n#------ ${CLASS_NAME}-Bin ------" >>  ${ENVIRON_FILE}
337             echo -e "export ${CLASS_NAME}_ROOT_DIR=\${${CLASS_NAME}_BASE}/${CLASS_NAME}_INSTALL" >> ${ENVIRON_FILE}
338             echo -e "export ${CLASS_NAME}CPP_ROOT_DIR=${CPP_ROOT_DIR}" >> ${ENVIRON_FILE}
339             echo -e "export LD_LIBRARY_PATH=\${${CLASS_NAME}CPP_ROOT_DIR}${lib_dir#${CPP_ROOT_DIR}}:\${LD_LIBRARY_PATH}" \
340             >> ${ENVIRON_FILE}
341         fi
342         
343     fi
344 }
345
346 copy_component_source()
347 {
348     mv ${tmp_dir}/${CLASS_NAME}_SRC/* ${NEW_COMPONENT_SRC_DIR}
349     mkdir -p ${NEW_COMPONENT_BUILD_DIR}
350     mkdir -p ${NEW_COMPONENT_ROOT_DIR}
351 }
352
353 good_bye()
354 {
355     echo -e "\n\nModule was created in ${NEW_COMPONENT_SRC_DIR}"
356     echo -e "\nTo compile it, do the following : \n"
357     echo -e "\tsource ${ENVIRON_FILE}"
358     echo -e "\tcd \${${CLASS_NAME}_SRC_DIR}"
359     echo -e "\t./build_configure"
360     echo -e "\tmkdir -p \${${CLASS_NAME}_BUILD_DIR}"
361     echo -e "\tcd \${${CLASS_NAME}_BUILD_DIR}"
362     echo -e "\t\${${CLASS_NAME}_SRC_DIR}/configure ${CONFIGURE_OPTION} --prefix=\${${CLASS_NAME}_ROOT_DIR}"
363     echo -e "\tmake"
364     echo -e "\tmake install"
365     echo -e "\nTo use it :\n"
366     echo -e "\tsource the Salome environment"
367     echo -e "\tsource the component environment file (${ENVIRON_FILE})"
368     echo -e "\trun Salome"
369     echo -e "\tadd ${CLASS_NAME} to the Salome modules list"
370     echo -e "\t\t(with the --modules option of the runSalome command or"
371     echo -e "\t\tby editing your own per-user configuration file ~/.SalomeApprc.3.x.x)"
372     echo -e "\nIf the header of your component includes other headers that are not in the same directories,"
373     echo -e "or if your library has dependencies you want to specify,"
374     echo -e "you'll have to modify the following files Makefile.am: "
375     echo -e "\t\${${CLASS_NAME}_SRC_DIR}/src/${CLASS_NAME}/Makefile.am"
376     echo -e "\t\${${CLASS_NAME}_SRC_DIR}/src/${CLASS_NAME}GUI/Makefile.am"
377 }
378
379 launch_salome()
380 {
381     ${KERNEL_ROOT_DIR}/bin/salome/runSalome --gui --modules=GEOM,SMESH,VISU,SUPERV,MED,`echo ${CLASS_NAME}`  --containers=cpp,python --killall
382 }
383
384 compile_module()
385 {
386     if [ ! -d ${NEW_COMPONENT_BUILD_DIR} ]
387     then
388         mkdir -p ${NEW_COMPONENT_BUILD_DIR}
389     fi
390     if [ ! -d ${NEW_COMPONENT_ROOT_DIR} ]
391     then
392         mkdir -p ${NEW_COMPONENT_ROOT_DIR}
393     fi
394     \rm -rf ${NEW_COMPONENT_ROOT_DIR}/* ${NEW_COMPONENT_BUILD_DIR}/*
395
396 #    source ${ENVIRON_FILE}
397     echo 
398     echo -e "\n-> Build Configure"
399     cd ${NEW_COMPONENT_SRC_DIR}
400     ./build_configure
401     cd ${NEW_COMPONENT_BUILD_DIR}
402     echo -e "\n-> Configure in ${NEW_COMPONENT_BUILD_DIR}"
403     echo -e "\n-> Install in ${NEW_COMPONENT_ROOT_DIR}"
404     ${NEW_COMPONENT_SRC_DIR}/configure ${CONFIGURE_OPTION} --prefix=${NEW_COMPONENT_ROOT_DIR}
405     echo
406
407     if [[ $do_compile -eq 1 ]]
408     then
409         compile
410     fi
411     
412     if [[ $do_launch -eq 1 ]]
413     then
414         launch_salome
415     fi
416 }
417 #
418 #
419 # ------------------------------------------------------------------------
420 # --------------------------- MAIN PROGRAM -------------------------------
421 # ------------------------------------------------------------------------
422 #
423 CPP_ROOT_DIR=
424 NEW_COMPONENT_ROOT_DIR=
425 NEW_COMPONENT_SRC_DIR=
426 NEW_COMPONENT_BUILD_DIR=
427 SHELL_EXT=sh
428 do_compile=0
429 do_launch=0
430 make_gui=0
431 #
432 welcome # print some welcome info
433 #
434 gene_dir=`dirname $0`
435 if [ ! -f ${gene_dir}/parse3.awk -o ! -f ${gene_dir}/template_src.tgz ] # final check
436 then
437     echo -e "\nError : scripts parse3.awk or template_src.tgz not present in hxx2salome directory  : $gene_dir"
438     usage
439 fi
440 #
441 while getopts "cs:e:h:lg" Option
442 do
443    case $Option in
444      h) usage
445         exit;;
446      e) ENVIRON_FILE=$OPTARG;;
447      s) case $OPTARG in
448             bash) SHELL_EXT=sh;;
449             csh)  SHELL_EXT=csh;;      
450             *)    SHELL_EXT=sh;;
451         esac;;
452      g) make_gui=1;;
453      c) do_compile=1;;
454      l) do_launch=1;;
455      *) echo "Unimplemented option chosen : $Option."
456         usage
457         exit;;   # DEFAULT
458    esac
459 done
460
461 shift $(($OPTIND - 1))
462
463 # check number of other arguments
464 #
465 if [ $# -ne 4 ]
466 then
467    echo -e "\nBad number of arguments\n\n"
468    usage
469    exit
470 fi
471
472 check_arguments $1 $2 $3 $4
473
474 # if there is a sh compatible environment file, source it
475 if [[ -n ${ENVIRON_FILE} && -f ${ENVIRON_FILE} ]]
476 then
477    # analyse extension of environment file
478    case ${ENVIRON_FILE##*\.} in 
479        bash) SHELL_EXT=sh;;
480        ksh)  SHELL_EXT=sh;;
481        csh)  SHELL_EXT=csh;;
482        sh)   SHELL_EXT=sh;;
483    esac
484 fi
485
486 # Environment policy :
487 #   - an existing sh file was specified : we source environment file
488 #   - else (no file or csh syntax)      : we don't source environment file, and do compile 
489 #                                         only if KERNEL_ROOT_DIR and MED_ROOT_DIR are defined
490 if [ "${SHELL_EXT}" == "sh" ] && [ ${ENVIRON_FILE} ] && [ -f ${ENVIRON_FILE} ]
491 then
492    echo -e "\n    Environment file with sh syntax specified => we source ${ENVIRON_FILE}"
493    source ${ENVIRON_FILE}
494 else
495    if [ ${KERNEL_ROOT_DIR} ] && [ -d ${KERNEL_ROOT_DIR} ] && [ ${MED_ROOT_DIR} ] && [ -d ${MED_ROOT_DIR} ]
496    then
497        # if KERNEL_ROOT_DIR and MED_ROOT_DIR are defined, we consider that environment is set
498        echo -e "\n    Environment already set (KERNEL_ROOT_DIR and MED_ROOT_DIR are defined)"
499    else
500        if [ $do_compile -eq 1 ]
501        then 
502           echo -e "\n    Warning - Cannot compile : Environment shoud be set up before, or specify a environment file with sh syntax!\n"
503           do_compile=0
504        fi
505    fi
506 fi
507 #
508 # get class name
509 #
510 CLASS_NAME=`awk '$1 == "class" && $0 !~ /;/ {print $2}' ${hxx_file}|awk -F: '{print $1}'`
511 echo "    Name of class :" $CLASS_NAME
512 class_name=`echo ${CLASS_NAME} | awk '{print tolower($0)}'`
513 echo class_name = ${class_name}
514
515 if [ ! $CLASS_NAME ]
516 then
517     echo -e "\nError:\n  Sorry - No class definition was found!\n  Please check your header file\n"
518     exit
519 fi
520
521 #
522 # create temporary working directory
523 #
524 tmp_dir="/tmp/${USER}/${CLASS_NAME}"
525 if [ -d ${tmp_dir} ]
526 then
527     rm -rf ${tmp_dir}/*
528 else
529     mkdir -p ${tmp_dir}
530 fi
531
532 #
533 # ---------------------  Generation of module source from template ------------------------------------------
534 #
535 get_info_makefile
536 generate_module_source
537
538 #
539 # ---------------------- Installation of new module sources  ------------------------------------------------
540 #
541 create_component_tree
542
543 #
544 # ---------------------- Modification of Salome environment file  -------------------------------------------
545 #
546 update_environment
547 export `echo ${CLASS_NAME}`_ROOT_DIR=${NEW_COMPONENT_ROOT_DIR}  # to avoid resource env for compiling and launching salome
548 export `echo ${CLASS_NAME}`CPP_ROOT_DIR=${CPP_ROOT_DIR}  # idem
549 #
550 # ---------------------- Copy the generated source from temp dir  -------------------------------------------
551 #
552 copy_component_source
553
554 #
555 # ---------------------- If requested, compilation of the Salome component ----------------------------------
556 if [ ${do_compile} -eq 1 ]
557 then
558     compile_module
559 else
560     good_bye
561 fi
562
563 echo -e "\nGeneration done\n"