Salome HOME
Merge branch 'master' into rnc/t_shape_plugin
[modules/geom.git] / bin / geom_setenv.py
1 #! /usr/bin/env python
2 #  -*- coding: iso-8859-1 -*-
3 # Copyright (C) 2007-2015  CEA/DEN, EDF R&D, OPEN CASCADE
4 #
5 # This library is free software; you can redistribute it and/or
6 # modify it under the terms of the GNU Lesser General Public
7 # License as published by the Free Software Foundation; either
8 # version 2.1 of the License, or (at your option) any later version.
9 #
10 # This library is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 # Lesser General Public License for more details.
14 #
15 # You should have received a copy of the GNU Lesser General Public
16 # License along with this library; if not, write to the Free Software
17 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
18 #
19 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
20 #
21
22 import os, sys, string
23 from salome_utils import getLogDir, generateFileName, uniteFiles
24 from setenv import add_path, get_lib_dir, salome_subdir
25
26 # -----------------------------------------------------------------------------
27
28 def set_env( args ):
29     """Add to the PATH-variables modules specific paths"""
30     psep = os.pathsep
31     python_version="python%d.%d" % sys.version_info[0:2]
32
33     tmp_dir = getLogDir()
34     env_dir = generateFileName( tmp_dir, prefix="env", with_port=True )
35     res_dir = os.path.join( os.getenv( "GEOM_ROOT_DIR" ), "share", salome_subdir, "resources", "geom" )
36
37     csf_list = ["Plugin", "GEOMDS_Resources", "ShHealing"]
38
39     for csf in csf_list:
40         uniteFiles( os.path.join( res_dir, csf ), os.path.join( env_dir, csf ) )
41         csf_var = "CSF_%sDefaults" % csf
42         if not os.getenv( csf_var ):
43             os.environ[ csf_var ] = env_dir
44             pass
45         pass
46
47     # collect plugins
48     plugin_list = []
49     resource_path_list = []
50
51     # standard plugins
52     plugin_list.append("BREPPlugin")
53     plugin_list.append("STEPPlugin")
54     plugin_list.append("IGESPlugin")
55     plugin_list.append("STLPlugin")
56     plugin_list.append("XAOPlugin")
57     plugin_list.append("VTKPlugin")
58     plugin_list.append("AdvancedGEOM")
59
60     # find additional plugins
61     for env_var in os.environ.keys():
62         value = os.environ[env_var]
63         if env_var[-9:] == "_ROOT_DIR" and value:
64             plugin_root = value
65             plugin = env_var[:-9] # plugin name may have wrong case
66
67             # look for NAMEOFPlugin.xml file among resource files
68             resource_dir = os.path.join(plugin_root, "share", salome_subdir, "resources", plugin.lower())
69             if not os.access(resource_dir, os.F_OK): continue
70
71             for resource_file in os.listdir(resource_dir):
72                 if resource_file.endswith(".xml") and \
73                    resource_file.lower() == plugin.lower() + ".xml":
74                     # use "name" attribute of "geom-plugin" as name of plugin in a right case
75                     try:
76                         from xml.dom.minidom import parse
77                         xml_doc = parse(os.path.join(resource_dir, resource_file))
78                         plugin_nodes = xml_doc.getElementsByTagName("geom-plugin")
79                         if not plugin_nodes or not plugin_nodes[0].hasAttribute("name"): continue
80
81                         plugin = plugin_nodes[0].getAttribute("name")
82                         if plugin in plugin_list: continue
83
84                         plugin_list.append(plugin)
85
86                         # add paths of plugin
87                         if not os.environ.has_key("SALOME_"+plugin+"Resources"):
88                             resource_path = os.path.join(plugin_root, "share", salome_subdir, "resources", plugin.lower())
89                             os.environ["SALOME_"+plugin+"Resources"] = resource_path
90                             resource_path_list.append(resource_path)
91                             add_path(os.path.join(plugin_root, get_lib_dir(), python_version, "site-packages", salome_subdir), "PYTHONPATH")
92                             add_path(os.path.join(plugin_root, get_lib_dir(), salome_subdir), "PYTHONPATH")
93                             if sys.platform == "win32":
94                                 add_path(os.path.join(plugin_root, get_lib_dir(), salome_subdir), "PATH")
95                                 add_path(os.path.join(plugin_root, "bin", salome_subdir), "PYTHONPATH")
96                             else:
97                                 add_path(os.path.join(plugin_root, get_lib_dir(), salome_subdir), "LD_LIBRARY_PATH")
98                                 add_path(os.path.join(plugin_root, "bin", salome_subdir), "PYTHONPATH")
99                                 add_path(os.path.join(plugin_root, "bin", salome_subdir), "PATH")
100                                 pass
101                             pass
102                         pass
103                     except:
104                         continue
105                     pass
106                 pass
107             pass
108         pass
109
110     os.environ["GEOM_PluginsList"] = ":".join(plugin_list)
111     os.environ["SalomeAppConfig"] = os.environ["SalomeAppConfig"] + psep + psep.join(resource_path_list)
112     pass