Salome HOME
Compilation under Windows: add missing header
[modules/kernel.git] / bin / appli_gen.py
1 #! /usr/bin/env python3
2 # Copyright (C) 2007-2021  CEA/DEN, EDF R&D, OPEN CASCADE
3 #
4 # Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
5 # CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
6 #
7 # This library is free software; you can redistribute it and/or
8 # modify it under the terms of the GNU Lesser General Public
9 # License as published by the Free Software Foundation; either
10 # version 2.1 of the License, or (at your option) any later version.
11 #
12 # This library is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 # Lesser General Public License for more details.
16 #
17 # You should have received a copy of the GNU Lesser General Public
18 # License along with this library; if not, write to the Free Software
19 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
20 #
21 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
22 #
23
24 ## \file appli_gen.py
25 #  Create a %SALOME application (virtual Salome installation)
26 #
27 usage = """%(prog)s [options]
28 Typical use is:
29   python %(prog)s
30 Typical use with options is:
31   python %(prog)s --verbose --prefix=<install directory> --config=<configuration file>
32 """
33
34 import os
35 import sys
36 import shutil
37 import virtual_salome
38 import xml.sax
39 import optparse
40 import subprocess
41
42 # --- names of tags in XML configuration file
43 appli_tag   = "application"
44 prereq_tag  = "prerequisites"
45 context_tag = "context"
46 sha1_collect_tag = "sha1_collections"
47 system_conf_tag  = "system_conf"
48 modules_tag = "modules"
49 module_tag  = "module"
50 samples_tag = "samples"
51 extra_tests_tag = "extra_tests"
52 extra_test_tag = "extra_test"
53 resources_tag = "resources"
54 env_modules_tag = "env_modules"
55 env_module_tag = "env_module"
56 python_tag = "python"
57
58 # --- names of attributes in XML configuration file
59 nam_att  = "name"
60 path_att = "path"
61 gui_att  = "gui"
62 version_att = "version"
63
64 # -----------------------------------------------------------------------------
65
66 # --- xml reader for SALOME application configuration file
67
68 class xml_parser:
69     def __init__(self, fileName ):
70         print("Configure parser: processing %s ..." % fileName)
71         self.space = []
72         self.config = {}
73         self.config["modules"] = []
74         self.config["guimodules"] = []
75         self.config["extra_tests"] = []
76         self.config["env_modules"] = []
77         parser = xml.sax.make_parser()
78         parser.setContentHandler(self)
79         parser.parse(fileName)
80         pass
81
82     def boolValue( self, text):
83         if text in ("yes", "y", "1"):
84             return 1
85         elif text in ("no", "n", "0"):
86             return 0
87         else:
88             return text
89         pass
90
91     def startElement(self, name, attrs):
92         self.space.append(name)
93         self.current = None
94         # --- if we are analyzing "prerequisites" element then store its "path" attribute
95         if self.space == [appli_tag, prereq_tag] and path_att in attrs.getNames():
96             self.config["prereq_path"] = attrs.getValue( path_att )
97             pass
98         # --- if we are analyzing "context" element then store its "path" attribute
99         if self.space == [appli_tag, context_tag] and path_att in attrs.getNames():
100             self.config["context_path"] = attrs.getValue( path_att )
101             pass
102         # --- if we are analyzing "sha1_collection" element then store its "path" attribute
103         if self.space == [appli_tag, sha1_collect_tag] and path_att in attrs.getNames():
104             self.config["sha1_collect_path"] = attrs.getValue( path_att )
105             pass
106         # --- if we are analyzing "python" element then store its "version" attribute
107         if self.space == [appli_tag, python_tag] and version_att in attrs.getNames():
108             self.config["python_version"] = attrs.getValue( version_att )
109             pass
110         # --- if we are analyzing "system_conf" element then store its "path" attribute
111         if self.space == [appli_tag, system_conf_tag] and path_att in attrs.getNames():
112             self.config["system_conf_path"] = attrs.getValue( path_att )
113             pass
114         # --- if we are analyzing "resources" element then store its "path" attribute
115         if self.space == [appli_tag, resources_tag] and path_att in attrs.getNames():
116             self.config["resources_path"] = attrs.getValue( path_att )
117             pass
118         # --- if we are analyzing "samples" element then store its "path" attribute
119         if self.space == [appli_tag, samples_tag] and path_att in attrs.getNames():
120             self.config["samples_path"] = attrs.getValue( path_att )
121             pass
122         # --- if we are analyzing "module" element then store its "name" and "path" attributes
123         elif self.space == [appli_tag,modules_tag,module_tag] and \
124             nam_att in attrs.getNames() and \
125             path_att in attrs.getNames():
126             nam = attrs.getValue( nam_att )
127             path = attrs.getValue( path_att )
128             gui = 1
129             if gui_att in attrs.getNames():
130                 gui = self.boolValue(attrs.getValue( gui_att ))
131                 pass
132             self.config["modules"].append(nam)
133             self.config[nam]=path
134             if gui:
135                 self.config["guimodules"].append(nam)
136                 pass
137             pass
138         # --- if we are analyzing "env_module" element then store its "name" attribute
139         elif self.space == [appli_tag, env_modules_tag, env_module_tag] and \
140                 nam_att in attrs.getNames():
141             nam = attrs.getValue( nam_att )
142             self.config["env_modules"].append(nam)
143             pass
144         # --- if we are analyzing "extra_test" element then store its "name" and "path" attributes
145         elif self.space == [appli_tag,extra_tests_tag,extra_test_tag] and \
146             nam_att in attrs.getNames() and \
147             path_att in attrs.getNames():
148             nam = attrs.getValue( nam_att )
149             path = attrs.getValue( path_att )
150             self.config["extra_tests"].append(nam)
151             self.config[nam]=path
152             pass
153         pass
154
155     def endElement(self, name):
156         self.space.pop()
157         self.current = None
158         pass
159
160     def characters(self, content):
161         pass
162
163     def processingInstruction(self, target, data):
164         pass
165
166     def setDocumentLocator(self, locator):
167         pass
168
169     def startDocument(self):
170         self.read = None
171         pass
172
173     def endDocument(self):
174         self.read = None
175         pass
176
177 # -----------------------------------------------------------------------------
178
179 class params:
180     pass
181
182 # -----------------------------------------------------------------------------
183
184 def makedirs(namedir):
185   if os.path.exists(namedir):
186     dirbak = namedir+".bak"
187     if os.path.exists(dirbak):
188       shutil.rmtree(dirbak)
189     os.rename(namedir, dirbak)
190     os.listdir(dirbak) #sert seulement a mettre a jour le systeme de fichier sur certaines machines
191   os.makedirs(namedir)
192
193 def install(prefix, config_file, verbose=0):
194     home_dir = os.path.abspath(os.path.expanduser(prefix))
195     filename = os.path.abspath(os.path.expanduser(config_file))
196     _config = {}
197     try:
198         parser = xml_parser(filename)
199         _config = parser.config
200     except xml.sax.SAXParseException as inst:
201         print(inst.getMessage())
202         print("Configure parser: parse error in configuration file %s" % filename)
203         pass
204     except xml.sax.SAXException as inst:
205         print(inst.args)
206         print("Configure parser: error in configuration file %s" % filename)
207         pass
208     except:
209         print("Configure parser: Error : can not read configuration file %s, check existence and rights" % filename)
210         pass
211
212     if verbose:
213         for cle,val in _config.items():
214             print(cle, val)
215             pass
216
217     # Remove CTestTestfile.cmake; this file will be filled by successive calls to link_module and link_extra_test
218     try:
219       ctest_file = os.path.join(home_dir, 'bin', 'salome', 'test', "CTestTestfile.cmake")
220       os.remove(ctest_file)
221     except:
222       pass
223
224     for module in _config.get("modules", []):
225         if module in _config:
226             print("--- add module ", module, _config[module])
227             options = params()
228             options.verbose = verbose
229             options.clear = 0
230             options.prefix = home_dir
231             options.module_name = module
232             options.module_path = _config[module]
233             virtual_salome.link_module(options)
234             # To fix GEOM_TestXAO issue https://codev-tuleap.cea.fr/plugins/tracker/?aid=16599
235             if module == "GEOM":
236                 # link <appli_path>/bin/salome/test/<module> to <module_path>/bin/salome/test
237                 test_dir=os.path.join(home_dir,'bin','salome', 'test')
238                 module_dir=os.path.abspath(options.module_path)
239                 xao_link=os.path.join(module_dir,'bin','salome', 'test', "xao")
240                 print("link %s --> %s"%(os.path.join(test_dir, "xao"), xao_link))
241                 virtual_salome.symlink(xao_link, os.path.join(test_dir, "xao"))
242             pass
243         pass
244
245     for extra_test in _config.get("extra_tests", []):
246         if extra_test in _config:
247             print("--- add extra test ", extra_test, _config[extra_test])
248             options = params()
249             options.verbose = verbose
250             options.clear = 0
251             options.prefix = home_dir
252             options.extra_test_name = extra_test
253             options.extra_test_path = _config[extra_test]
254             virtual_salome.link_extra_test(options)
255             pass
256         pass
257
258     # Sort test labels by name in generated CTestTestfile.cmake
259     with open(ctest_file) as f:
260         lines = f.readlines()
261     lines.sort()
262     with open(ctest_file, "w") as f:
263         f.write("".join(lines))
264
265     # Generate CTestCustom.cmake to handle long output
266     ctest_custom = os.path.join(home_dir, 'bin', 'salome', 'test', "CTestCustom.cmake")
267     with open(ctest_custom, 'w') as f:
268       f.write("SET(CTEST_CUSTOM_MAXIMUM_PASSED_TEST_OUTPUT_SIZE 1048576) # 1MB\n")
269       f.write("SET(CTEST_CUSTOM_MAXIMUM_FAILED_TEST_OUTPUT_SIZE 1048576) # 1MB\n")
270
271     appliskel_dir = os.path.join(prefix, 'bin', 'salome', 'appliskel')
272
273     for fn in ('envd',
274                'getAppliPath.py',
275                'kill_remote_containers.py',
276                'runRemote.sh',
277                '.salome_run',
278                'update_catalogs.py',
279                '.bashrc',
280                ):
281         virtual_salome.symlink( os.path.join( appliskel_dir, fn ), os.path.join( home_dir, fn) )
282         pass
283
284     if filename != os.path.join(home_dir,"config_appli.xml"):
285         shutil.copyfile(filename, os.path.join(home_dir,"config_appli.xml"))
286         pass
287
288
289     # Copy salome / salome_mesa scripts:
290
291     for scripts in ('salome', 'salome_mesa', 'salome_common.py'):
292         salome_script = open(os.path.join(appliskel_dir, scripts)).read()
293         salome_file = os.path.join(home_dir, scripts)
294         try:
295             os.remove(salome_file)
296         except:
297             pass
298         env_modules = _config.get('env_modules', [])
299         with open(salome_file, 'w') as fd:
300             fd.write(salome_script.replace('MODULES = []', 'MODULES = {}'.format(env_modules)))
301             os.chmod(salome_file, 0o755)
302
303     # Add .salome-completion.sh file
304     shutil.copyfile(os.path.join(appliskel_dir, ".salome-completion.sh"),
305                     os.path.join(home_dir, ".salome-completion.sh"))
306
307
308     # Creation of env.d directory
309     virtual_salome.mkdir(os.path.join(home_dir,'env.d'))
310
311     if "prereq_path" in _config and os.path.isfile(_config["prereq_path"]):
312         shutil.copyfile(_config["prereq_path"],
313                         os.path.join(home_dir, 'env.d', 'envProducts.sh'))
314         pass
315     else:
316         print("WARNING: prerequisite file does not exist")
317         pass
318
319     if "context_path" in _config and os.path.isfile(_config["context_path"]):
320         shutil.copyfile(_config["context_path"],
321                         os.path.join(home_dir, 'env.d', 'envProducts.cfg'))
322         pass
323     else:
324         print("WARNING: context file does not exist")
325         pass
326
327     if "sha1_collect_path" in _config and os.path.isfile(_config["sha1_collect_path"]):
328         shutil.copyfile(_config["sha1_collect_path"],
329                         os.path.join(home_dir, 'sha1_collections.txt'))
330         pass
331     else:
332         print("WARNING: sha1 collections file does not exist")
333         pass
334
335     if "system_conf_path" in _config and os.path.isfile(_config["system_conf_path"]):
336         shutil.copyfile(_config["system_conf_path"],
337                         os.path.join(home_dir, 'env.d', 'envConfSystem.sh'))
338         pass
339
340     # Create environment file: configSalome.sh
341
342     if "python_version" in _config:
343        versionPython_split = _config["python_version"].split('.')
344        versionPython = versionPython_split[0] + "." + versionPython_split[1]
345     else:
346        cmd='source %s && python3 -c "import sys ; sys.stdout.write(\\"{}.{}\\".format(sys.version_info.major,sys.version_info.minor))"' %(_config["prereq_path"])
347        versionPython=subprocess.check_output(['/bin/bash', '-l' ,'-c',cmd]).decode("utf-8")
348
349     with open(os.path.join(home_dir, 'env.d', 'configSalome.sh'),'w') as f:
350         for module in _config.get("modules", []):
351             command = 'export '+ module + '_ROOT_DIR=${HOME}/${APPLI}\n'
352             f.write(command)
353             pass
354         if "samples_path" in _config:
355             command = 'export DATA_DIR=' + _config["samples_path"] +'\n'
356             f.write(command)
357             pass
358         if "resources_path" in _config and os.path.isfile(_config["resources_path"]):
359             command = 'export USER_CATALOG_RESOURCES_FILE=' + os.path.abspath(_config["resources_path"]) +'\n'
360             f.write(command)
361         # Note: below, PYTHONPATH should not be extended to bin/salome! Python modules must be installed in lib/pythonX.Y, to be fixed (e.g. Kernel SALOME_Container.py)
362         command ="""export PATH=${HOME}/${APPLI}/bin/salome:$PATH
363 export PYTHONPATH=${HOME}/${APPLI}/lib/python%s/site-packages/salome:$PYTHONPATH
364 export PYTHONPATH=${HOME}/${APPLI}/lib/salome:$PYTHONPATH
365 export PYTHONPATH=${HOME}/${APPLI}/bin/salome:$PYTHONPATH
366 export LD_LIBRARY_PATH=${HOME}/${APPLI}/lib/salome:$LD_LIBRARY_PATH
367 """ %versionPython
368         f.write(command)
369         # Create environment variable for the salome test
370         for module in _config.get("modules", []):
371             command = "export LD_LIBRARY_PATH=${HOME}/${APPLI}/bin/salome/test/" + module + "/lib:$LD_LIBRARY_PATH\n"
372             f.write(command)
373             pass
374         # Create environment for plugins GEOM
375         command = "export GEOM_PluginsList=BREPPlugin:STEPPlugin:IGESPlugin:STLPlugin:XAOPlugin:VTKPlugin:AdvancedGEOM\n"
376         f.write(command)
377         # Create environment for Healing
378         command = "export CSF_ShHealingDefaults=${HOME}/${APPLI}/share/salome/resources/geom\n"
379         f.write(command)
380         # Create environment for Meshers
381         command = "export SMESH_MeshersList=StdMeshers:HYBRIDPlugin:HexoticPLUGIN:GMSHPlugin:GHS3DPlugin:NETGENPlugin:HEXABLOCKPlugin:BLSURFPlugin:GHS3DPRLPlugin\nexport SALOME_StdMeshersResources=${HOME}/${APPLI}/share/salome/resources/smesh\n"
382         f.write(command)
383
384     # Create configuration file: configSalome.cfg
385     with open(os.path.join(home_dir, 'env.d', 'configSalome.cfg'),'w') as f:
386         command = "[SALOME ROOT_DIR (modules) Configuration]\n"
387         f.write(command)
388         for module in _config.get("modules", []):
389             command = module + '_ROOT_DIR=${HOME}/${APPLI}\n'
390             f.write(command)
391             pass
392         if "samples_path" in _config:
393             command = 'DATA_DIR=' + _config["samples_path"] +'\n'
394             f.write(command)
395             pass
396         if "resources_path" in _config and os.path.isfile(_config["resources_path"]):
397             command = 'USER_CATALOG_RESOURCES_FILE=' + os.path.abspath(_config["resources_path"]) +'\n'
398             f.write(command)
399         command ="""ADD_TO_PATH: ${HOME}/${APPLI}/bin/salome
400 ADD_TO_PYTHONPATH: ${HOME}/${APPLI}/lib/python%s/site-packages/salome
401 ADD_TO_PYTHONPATH: ${HOME}/${APPLI}/lib/salome
402 ADD_TO_LD_LIBRARY_PATH: ${HOME}/${APPLI}/lib/salome
403 """%versionPython
404         f.write(command)
405         for module in _config.get("modules", []):
406             command = "ADD_TO_LD_LIBRARY_PATH: ${HOME}/${APPLI}/bin/salome/test/" + module + "/lib\n"
407             f.write(command)
408             pass
409         # Create environment for plugins GEOM
410         command = "GEOM_PluginsList=BREPPlugin:STEPPlugin:IGESPlugin:STLPlugin:XAOPlugin:VTKPlugin:AdvancedGEOM\n"
411         f.write(command)
412         # Create environment for Healing
413         command = "CSF_ShHealingDefaults=${HOME}/${APPLI}/share/salome/resources/geom\n"
414         f.write(command)
415         # Create environment for Meshers
416         command = "SMESH_MeshersList=StdMeshers:HYBRIDPlugin:HexoticPLUGIN:GMSHPlugin:GHS3DPlugin:NETGENPlugin:HEXABLOCKPlugin:BLSURFPlugin:GHS3DPRLPlugin\nSALOME_StdMeshersResources=${HOME}/${APPLI}/share/salome/resources/smesh\n"
417         f.write(command)
418
419
420     # Create environment file: configGUI.sh
421     dirs_ress_icon = []
422     salomeappname  = "SalomeApp"
423     with open(os.path.join(home_dir, 'env.d', 'configGUI.sh'),'w') as f:
424         for module in _config.get("modules", []):
425             if module not in ["KERNEL", "GUI", ""]:
426                 d = os.path.join(_config[module],"share","salome","resources",module.lower())
427                 d_appli = os.path.join("${HOME}","${APPLI}","share","salome","resources",module.lower())
428                 if os.path.exists( os.path.join(d,"{0}.xml".format(salomeappname)) ):
429                    dirs_ress_icon.append( d_appli )
430         AppConfig="export SalomeAppConfig=${HOME}/${APPLI}:${HOME}/${APPLI}/share/salome/resources/gui/"
431         for dir_module in dirs_ress_icon:
432              AppConfig=AppConfig+":"+dir_module
433         f.write(AppConfig+"\n")
434         command = """export SUITRoot=${HOME}/${APPLI}/share/salome
435 export DISABLE_FPE=1
436 export MMGT_REENTRANT=1
437 """
438         f.write(command)
439
440     # Create configuration file: configGUI.cfg
441     dirs_ress_icon = []
442     with open(os.path.join(home_dir, 'env.d', 'configGUI.cfg'),'w') as f:
443         command = """[SALOME GUI Configuration]\n"""
444         f.write(command)
445         for module in _config.get("modules", []):
446             if module not in ["KERNEL", "GUI", ""]:
447                 d = os.path.join(_config[module],"share","salome","resources",module.lower())
448                 d_appli = os.path.join("${HOME}","${APPLI}","share","salome","resources",module.lower())
449                 if os.path.exists( os.path.join(d,"{0}.xml".format(salomeappname)) ):
450                    dirs_ress_icon.append( d_appli )
451         AppConfig="SalomeAppConfig=${HOME}/${APPLI}:${HOME}/${APPLI}/share/salome/resources/gui/"
452         for dir_module in dirs_ress_icon:
453              AppConfig=AppConfig+":"+dir_module
454         f.write(AppConfig+"\n")
455         command = """SUITRoot=${HOME}/${APPLI}/share/salome
456 DISABLE_FPE=1
457 MMGT_REENTRANT=1
458 """
459         f.write(command)
460
461     #SalomeApp.xml file
462     with open(os.path.join(home_dir,'SalomeApp.xml'),'w') as f:
463         command = """<document>
464   <section name="launch">
465     <!-- SALOME launching parameters -->
466     <parameter name="gui"        value="yes"/>
467     <parameter name="splash"     value="yes"/>
468     <parameter name="file"       value="no"/>
469     <parameter name="key"        value="no"/>
470     <parameter name="interp"     value="no"/>
471     <parameter name="logger"     value="no"/>
472     <parameter name="xterm"      value="no"/>
473     <parameter name="portkill"   value="no"/>
474     <parameter name="killall"    value="no"/>
475     <parameter name="noexcepthandler"  value="no"/>
476     <parameter name="modules"    value="%s"/>
477     <parameter name="pyModules"  value=""/>
478     <parameter name="embedded"   value="SalomeAppEngine,study,cppContainer,registry,moduleCatalog"/>
479     <parameter name="standalone" value=""/>
480   </section>
481 </document>
482 """
483         mods = []
484         #Keep all modules except KERNEL and GUI
485         for module in _config.get("modules", []):
486             if module in ("KERNEL","GUI"):
487                 continue
488             mods.append(module)
489         f.write(command % ",".join(mods))
490
491     #Add USERS directory with 777 permission to store users configuration files
492     users_dir = os.path.join(home_dir,'USERS')
493     makedirs(users_dir)
494     os.chmod(users_dir, 0o777)
495
496 def main():
497     parser = optparse.OptionParser(usage=usage)
498
499     parser.add_option('--prefix', dest="prefix", default='.',
500                       help="Installation directory (default .)")
501
502     parser.add_option('--config', dest="config", default='config_appli.xml',
503                       help="XML configuration file (default config_appli.xml)")
504
505     parser.add_option('-v', '--verbose', action='count', dest='verbose',
506                       default=0, help="Increase verbosity")
507
508     options, args = parser.parse_args()
509     if not os.path.exists(options.config):
510         print("ERROR: config file %s does not exist. It is mandatory." % options.config)
511         sys.exit(1)
512
513     install(prefix=options.prefix, config_file=options.config, verbose=options.verbose)
514     pass
515
516 # -----------------------------------------------------------------------------
517
518 if __name__ == '__main__':
519     main()
520     pass