Salome HOME
W64 package dirname for windows, bug fix
[tools/sat.git] / src / architecture.py
1 #!/usr/bin/env python
2 #-*- coding:utf-8 -*-
3 #  Copyright (C) 2010-2013  CEA/DEN
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.
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 '''
20 In this file : all the stuff that can change with the architecture 
21 on which SAT is running
22 '''
23
24 import os, sys, platform
25
26 def is_windows():
27     '''method that checks windows OS
28       
29     :rtype: boolean
30     '''
31     return platform.system() == 'Windows'
32
33 def get_user():
34     '''method that gets the username that launched sat  
35     
36     :rtype: str
37     '''
38     # In windows case, the USERNAME environment variable has to be set
39     if is_windows():
40         if not 'USERNAME' in os.environ:
41             raise Exception('USERNAME environment variable not set')
42         return os.environ['USERNAME']
43     else: # linux
44         import pwd
45         return pwd.getpwuid(os.getuid())[0]
46
47         
48 def get_distribution(codes):
49     '''Gets the code for the distribution
50     
51     :param codes L{Mapping}: The map containing distribution correlation table.
52     :return: The distribution on which salomeTools is running, regarding the 
53              distribution correlation table contained in codes variable.
54     :rtype: str
55     '''
56     if is_windows():
57         return "W"
58
59     # else get linux distribution description from platform, and encode it with code
60     lin_distrib = platform.dist()[0].lower()
61     distrib="not found"
62     for dist in codes:
63         if dist in lin_distrib:
64             distrib = codes[dist]
65             break
66     if distrib=="not found":
67         sys.stderr.write(_(u"Unknown distribution: '%s'\n") % distrib)
68         sys.stderr.write(_(u"Please add your distribution to src/internal_config/distrib.pyconf\n"))
69         sys.exit(-1)
70
71     return distrib
72
73 def get_version_XY():
74     """
75     Return major and minor version of the distribution
76     from a CentOS example, returns '7.6'
77     extracted from platform.dist()
78     """
79     dist_version=platform.dist()[1].split('.')
80     if len(dist_version)==1:
81         version = dist_version[0]
82     else:
83         version = dist_version[0] + "." + dist_version[1]
84     return version 
85
86
87 def get_distrib_version(distrib):
88     '''Return the sat encoded version of the distribution
89        This code is used in config to apend the name of the application directories
90        withdistribution info"
91     
92     :param distrib str: The distribution on which the version will be found.
93     :return: The version of the distribution on which salomeTools is running, 
94              regarding the distribution correlation table contained in codes 
95              variable.
96     :rtype: str
97     '''
98
99     if is_windows():
100         return "64"
101
102     # get version from platform
103     dist_version=platform.dist()[1].split('.')
104
105     # encode it (conform to src/internal_config/distrib.pyconf VERSIONS dist
106     if distrib == "CO":
107         version=dist_version[0] # for centos, we only care for major version
108     elif distrib == "UB":
109         # for ubuntu, we care for major + minor version
110         version=dist_version[0] + "." + dist_version[1] 
111     elif distrib == "DB":
112         if len(dist_version[0]) == 1:
113             version="0"+dist_version[0]
114         else:
115             version=dist_version[0]  # unstable, and version >= 10
116     elif distrib == "MG":
117         version="0"+dist_version[0]
118     else:
119         version=dist_version[0]
120         
121     return version
122
123 def get_python_version():
124     '''Gets the version of the running python.
125     
126     :return: the version of the running python.
127     :rtype: str
128     '''
129     
130     # The platform python module gives the answer
131     return platform.python_version()
132
133 def get_nb_proc():
134     '''Gets the number of processors of the machine 
135        on which salomeTools is running.
136     
137     :return: the number of processors.
138     :rtype: str
139     '''
140     
141     try :
142         import multiprocessing
143         nb_proc=multiprocessing.cpu_count()
144     except :
145         nb_proc=int(os.sysconf('SC_NPROCESSORS_ONLN'))
146     return nb_proc