Salome HOME
Synchronize adm files
[modules/kernel.git] / src / Utils / Utils_Identity.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 # Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
6 # CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
7 #
8 # This library is free software; you can redistribute it and/or
9 # modify it under the terms of the GNU Lesser General Public
10 # License as published by the Free Software Foundation; either
11 # version 2.1 of the License, or (at your option) any later version.
12 #
13 # This library is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16 # Lesser General Public License for more details.
17 #
18 # You should have received a copy of the GNU Lesser General Public
19 # License along with this library; if not, write to the Free Software
20 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
21 #
22 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
23 #
24
25 #  SALOME Utils : general SALOME's definitions and tools
26 #  File   : Utils_Identity.py
27 #  Author : Estelle Deville, CEA
28 #  Module : SALOME
29 #  $Header$
30 ## @package Utils_Identity
31 # \brief Module to get information about user and version
32 #
33 import sys
34 import os
35 import socket
36
37 if not sys.platform == "win32":
38     import pwd
39
40 import time
41 import string
42
43 def getShortHostName():
44     """
45     gives Hostname without domain extension.
46
47     SALOME naming service needs short Hostnames (without domain extension).
48     HOSTNAME is not allways defined in environment,
49     socket.gethostname() gives short or complete Hostname, depending on
50     defined aliases.
51     """
52     return string.split(socket.gethostname(),'.')[0]
53
54 class Identity:
55     def __init__(self,name):
56         self._name = name
57         self._pid =  os.getpid()
58         self._machine = socket.gethostname()
59         self._adip =  socket.gethostbyname(self._machine) # IP adress        
60         if sys.platform == "win32":
61           self._uid  = os.getpid() 
62           self._pwname = os.environ["USERNAME"]
63         else:
64           self._uid = os.getuid()
65           list = pwd.getpwuid(self._uid)
66           self._pwname  = list[0] # user name
67
68         self._tc_start = time.time()
69         self._cstart    = time.ctime(self._tc_start)
70         self._cdir = os.getcwd()
71
72 def getapplipath():
73     """
74       Gives short application path (the complete path is $HOME/$APPLI)
75     """
76     return os.environ.get("APPLI",".salome_"+versnb)
77
78 try:
79   file = open(os.path.join(os.environ["KERNEL_ROOT_DIR"],"bin","salome","VERSION"), "r")
80   s = file.readline()
81   versnb = string.strip(string.split(s, ":")[1])
82   dirname=".salome_"+versnb
83   file.close()
84 except:
85   versnb = ""
86   dirname=".salome"
87
88 def version():
89     """
90       Gives salome version number
91     """
92     return versnb