1 #! /usr/bin/env python3
2 # Copyright (C) 2007-2021 CEA/DEN, EDF R&D, OPEN CASCADE
4 # Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
5 # CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
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.
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.
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
21 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
25 # Create a %SALOME application (virtual Salome installation)
27 usage = """%(prog)s [options]
30 Typical use with options is:
31 python %(prog)s --verbose --prefix=<install directory> --config=<configuration file>
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"
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"
58 # --- names of attributes in XML configuration file
62 version_att = "version"
64 # -----------------------------------------------------------------------------
66 # --- xml reader for SALOME application configuration file
69 def __init__(self, fileName ):
70 print("Configure parser: processing %s ..." % fileName)
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)
82 def boolValue( self, text):
83 if text in ("yes", "y", "1"):
85 elif text in ("no", "n", "0"):
91 def startElement(self, name, attrs):
92 self.space.append(name)
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 )
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 )
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 )
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 )
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 )
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 )
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 )
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 )
129 if gui_att in attrs.getNames():
130 gui = self.boolValue(attrs.getValue( gui_att ))
132 self.config["modules"].append(nam)
133 self.config[nam]=path
135 self.config["guimodules"].append(nam)
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)
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
155 def endElement(self, name):
160 def characters(self, content):
163 def processingInstruction(self, target, data):
166 def setDocumentLocator(self, locator):
169 def startDocument(self):
173 def endDocument(self):
177 # -----------------------------------------------------------------------------
182 # -----------------------------------------------------------------------------
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
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))
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)
204 except xml.sax.SAXException as inst:
206 print("Configure parser: error in configuration file %s" % filename)
209 print("Configure parser: Error : can not read configuration file %s, check existence and rights" % filename)
213 for cle,val in _config.items():
217 # Remove CTestTestfile.cmake; this file will be filled by successive calls to link_module and link_extra_test
219 ctest_file = os.path.join(home_dir, 'bin', 'salome', 'test', "CTestTestfile.cmake")
220 os.remove(ctest_file)
224 for module in _config.get("modules", []):
225 if module in _config:
226 print("--- add module ", module, _config[module])
228 options.verbose = verbose
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
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"))
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])
249 options.verbose = verbose
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)
258 # Sort test labels by name in generated CTestTestfile.cmake
259 with open(ctest_file) as f:
260 lines = f.readlines()
262 with open(ctest_file, "w") as f:
263 f.write("".join(lines))
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")
271 appliskel_dir = os.path.join(prefix, 'bin', 'salome', 'appliskel')
275 'kill_remote_containers.py',
278 'update_catalogs.py',
281 virtual_salome.symlink( os.path.join( appliskel_dir, fn ), os.path.join( home_dir, fn) )
284 if filename != os.path.join(home_dir,"config_appli.xml"):
285 shutil.copyfile(filename, os.path.join(home_dir,"config_appli.xml"))
289 # Copy salome / salome_mesa scripts:
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)
295 os.remove(salome_file)
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)
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"))
308 # Creation of env.d directory
309 virtual_salome.mkdir(os.path.join(home_dir,'env.d'))
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'))
316 print("WARNING: prerequisite file does not exist")
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'))
324 print("WARNING: context file does not exist")
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'))
332 print("WARNING: sha1 collections file does not exist")
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'))
340 # Create environment file: configSalome.sh
342 if "python_version" in _config:
343 versionPython_split = _config["python_version"].split('.')
344 versionPython = versionPython_split[0] + "." + versionPython_split[1]
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")
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'
354 if "samples_path" in _config:
355 command = 'export DATA_DIR=' + _config["samples_path"] +'\n'
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'
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
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"
374 # Create environment for plugins GEOM
375 command = "export GEOM_PluginsList=BREPPlugin:STEPPlugin:IGESPlugin:STLPlugin:XAOPlugin:VTKPlugin:AdvancedGEOM\n"
377 # Create environment for Healing
378 command = "export CSF_ShHealingDefaults=${HOME}/${APPLI}/share/salome/resources/geom\n"
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"
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"
388 for module in _config.get("modules", []):
389 command = module + '_ROOT_DIR=${HOME}/${APPLI}\n'
392 if "samples_path" in _config:
393 command = 'DATA_DIR=' + _config["samples_path"] +'\n'
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'
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
405 for module in _config.get("modules", []):
406 command = "ADD_TO_LD_LIBRARY_PATH: ${HOME}/${APPLI}/bin/salome/test/" + module + "/lib\n"
409 # Create environment for plugins GEOM
410 command = "GEOM_PluginsList=BREPPlugin:STEPPlugin:IGESPlugin:STLPlugin:XAOPlugin:VTKPlugin:AdvancedGEOM\n"
412 # Create environment for Healing
413 command = "CSF_ShHealingDefaults=${HOME}/${APPLI}/share/salome/resources/geom\n"
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"
420 # Create environment file: configGUI.sh
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
436 export MMGT_REENTRANT=1
440 # Create configuration file: configGUI.cfg
442 with open(os.path.join(home_dir, 'env.d', 'configGUI.cfg'),'w') as f:
443 command = """[SALOME GUI Configuration]\n"""
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
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=""/>
484 #Keep all modules except KERNEL and GUI
485 for module in _config.get("modules", []):
486 if module in ("KERNEL","GUI"):
489 f.write(command % ",".join(mods))
491 #Add USERS directory with 777 permission to store users configuration files
492 users_dir = os.path.join(home_dir,'USERS')
494 os.chmod(users_dir, 0o777)
497 parser = optparse.OptionParser(usage=usage)
499 parser.add_option('--prefix', dest="prefix", default='.',
500 help="Installation directory (default .)")
502 parser.add_option('--config', dest="config", default='config_appli.xml',
503 help="XML configuration file (default config_appli.xml)")
505 parser.add_option('-v', '--verbose', action='count', dest='verbose',
506 default=0, help="Increase verbosity")
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)
513 install(prefix=options.prefix, config_file=options.config, verbose=options.verbose)
516 # -----------------------------------------------------------------------------
518 if __name__ == '__main__':