Salome HOME
Update copyrights 2014.
[modules/geom.git] / bin / geom_setenv.py
1 #! /usr/bin/env python
2 #  -*- coding: iso-8859-1 -*-
3 # Copyright (C) 2007-2014  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
23 from salome_utils import getTmpDir, 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 = getTmpDir()
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_file in csf_list:
40        uniteFiles( os.path.join( res_dir, csf_file ), os.path.join( env_dir, csf_file ) )
41        pass
42
43     for csf_string in csf_list:
44         csf_var = "CSF_" + csf_string + "Defaults"
45         if not os.getenv( csf_var ):
46             os.environ[ csf_var ] = env_dir
47             pass
48         pass
49
50     # find plugins
51     plugin_list = []
52     resource_path_list = []
53     for env_var in os.environ.keys():
54         value = os.environ[env_var]
55         if env_var[-9:] == "_ROOT_DIR" and value:
56             plugin_root = value
57             plugin = env_var[:-9] # plugin name may have wrong case
58
59             # look for NAMEOFPlugin.xml file among resource files
60             resource_dir = os.path.join(plugin_root,"share",salome_subdir,"resources",plugin.lower())
61             if not os.access( resource_dir, os.F_OK ): continue
62             for resource_file in os.listdir( resource_dir ):
63                 if not resource_file.endswith( ".xml") or \
64                    resource_file.lower() != plugin.lower() + ".xml":
65                     continue
66                 # use "name" attribute of "geom-plugin" as name of plugin in a right case
67                 from xml.dom.minidom import parse
68                 xml_doc = parse( os.path.join( resource_dir, resource_file ))
69                 plugin_nodes = xml_doc.getElementsByTagName("geom-plugin")
70                 if not plugin_nodes or not plugin_nodes[0].hasAttribute("name"): continue
71                 plugin = plugin_nodes[0].getAttribute("name")
72                 if plugin in plugin_list: continue
73
74                 # add paths of plugin
75                 plugin_list.append(plugin)
76                 if not os.environ.has_key("SALOME_"+plugin+"Resources"):
77                     resource_path = os.path.join(plugin_root,"share",salome_subdir,"resources",plugin.lower())
78                     os.environ["SALOME_"+plugin+"Resources"] = resource_path
79                     resource_path_list.append( resource_path )
80                     add_path(os.path.join(plugin_root,get_lib_dir(),python_version, "site-packages",salome_subdir), "PYTHONPATH")
81                     add_path(os.path.join(plugin_root,get_lib_dir(),salome_subdir), "PYTHONPATH")
82
83                     if sys.platform == "win32":
84                         add_path(os.path.join(plugin_root,get_lib_dir(),salome_subdir), "PATH")
85                         add_path(os.path.join(plugin_root,"bin",salome_subdir), "PYTHONPATH")
86                     else:
87                         add_path(os.path.join(plugin_root,get_lib_dir(),salome_subdir), "LD_LIBRARY_PATH")
88                         add_path(os.path.join(plugin_root,"bin",salome_subdir), "PYTHONPATH")
89                         add_path(os.path.join(plugin_root,"bin",salome_subdir), "PATH")
90                         pass
91                     pass
92                 break
93     plugin_list.append("GEOMActions")
94     os.environ["GEOM_PluginsList"] = ":".join(plugin_list)
95     os.environ["SalomeAppConfig"] = os.environ["SalomeAppConfig"] + psep + psep.join(resource_path_list)