Salome HOME
78f0f256f57b4050a039be46ecc1907c48600bcc
[tools/yacsgen.git] / component.py
1 # Copyright (C) 2009-2020  EDF R&D
2 #
3 # This library is free software; you can redistribute it and/or
4 # modify it under the terms of the GNU Lesser General Public
5 # License as published by the Free Software Foundation; either
6 # version 2.1 of the License, or (at your option) any later version.
7 #
8 # This library is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 # Lesser General Public License for more details.
12 #
13 # You should have received a copy of the GNU Lesser General Public
14 # License along with this library; if not, write to the Free Software
15 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 #
17 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 #
19
20 import os
21 from module_generator import Generator,Module,Service
22 from module_generator import CPPComponent,PYComponent,HXX2SALOMEComponent
23 class Invalid(Exception):
24     pass
25
26 kernel_root_dir=os.environ["KERNEL_ROOT_DIR"]
27 gui_root_dir=os.environ["GUI_ROOT_DIR"]
28 yacs_root_dir=os.environ["YACS_ROOT_DIR"]
29 med_root_dir=os.environ["MED_ROOT_DIR"]
30 geom_root_dir=os.environ["GEOM_ROOT_DIR"]
31 SALOME_ROOT=os.getenv("SALOME_DIR")
32 prereq_file=os.path.join(SALOME_ROOT, "salome_prerequisites.sh")
33
34 if not os.path.exists(prereq_file):
35     prereq_file=os.path.join(kernel_root_dir,"..","..","env_products.sh")
36 if not os.path.exists(prereq_file):
37     raise Invalid("prerequisite file env_products.sh not found. please replace it manually in component.py")
38
39 #import context from ..
40 context={'update':1,
41          "makeflags":"",
42          "prerequisites":prereq_file,
43          "kernel":kernel_root_dir,
44          "gui":gui_root_dir,
45          "geom":geom_root_dir,
46          "med":med_root_dir,
47          "yacs":yacs_root_dir,
48         }
49
50 cwd=os.getcwd()
51 cpppath=os.path.join(cwd,"COMPONENTCPP_INSTALL")
52
53     
54 # PUT HERE DEFINITIONS OF THE COMPONENTS AND THE SERVICES
55
56
57 os.environ["CALCULCPP_ROOT_DIR"]=cpppath
58 os.environ["ICOCOCPP_ROOT_DIR"]=cpppath
59 c1=HXX2SALOMEComponent("CALCUL.hxx","libCALCULCXX.so" , cpppath )
60 c4=HXX2SALOMEComponent("ICOCO.hxx","libICOCOCXX.so" , cpppath )
61
62
63 g=Generator(Module("hxxcompos",components=[c4,c1],prefix="./install"),context)
64 g.generate()
65 g.configure()
66 g.make()
67 g.install()
68 g.make_appli("appli",
69              restrict=["KERNEL","GUI","YACS","MED","GEOM"],
70 #             altmodules={"GUI":gui_root_dir,
71 #                         "MED":med_root_dir,
72 #                         "YACS":yacs_root_dir,
73 #                         "GEOM":geom_root_dir})
74             )
75 cppenv=""" export CALCULCPP_ROOT_DIR=%(cpppath)s
76 export ICOCOCPP_ROOT_DIR=%(cpppath)s """  % {"cpppath" : cpppath}
77
78 cppenvfile=open("appli/env.d/cppEnv.sh","w")
79 cppenvfile.write(cppenv)
80 cppenvfile.close()