Salome HOME
Move MEDWrapper to MED module
[modules/kernel.git] / src / Utils / Utils_Identity.hxx
1 //  SALOME Utils : general SALOME's definitions and tools
2 //
3 //  Copyright (C) 2003  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS 
5 // 
6 //  This library is free software; you can redistribute it and/or 
7 //  modify it under the terms of the GNU Lesser General Public 
8 //  License as published by the Free Software Foundation; either 
9 //  version 2.1 of the License. 
10 // 
11 //  This library is distributed in the hope that it will be useful, 
12 //  but WITHOUT ANY WARRANTY; without even the implied warranty of 
13 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
14 //  Lesser General Public License for more details. 
15 // 
16 //  You should have received a copy of the GNU Lesser General Public 
17 //  License along with this library; if not, write to the Free Software 
18 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
19 // 
20 //  See http://www.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
21 //
22 //
23 //
24 //  File   : Utils_Identity.hxx
25 //  Author : Pascale NOYRET, EDF
26 //  Module : SALOME
27 //  $Header$
28
29 # if !defined(  __IDENTITE_H__ )
30 # define __IDENTITE_H__
31
32 extern "C"
33 {
34 # include <stdlib.h>
35 # include <time.h>
36 #ifndef WNT
37 # include <unistd.h>
38 # include <sys/utsname.h>
39 #else
40 # include <windows.h>
41 #endif
42 }
43
44 class Identity
45 {
46
47 protected :
48         const char* const       _name ;
49         const char* const       _adip; // Internet address
50
51 #ifndef WNT
52         const struct utsname    _hostid;        
53         const pid_t             _pid ;
54         const uid_t             _uid ;
55 #else
56         const char* const       _hostid;
57         const DWORD             _pid ;
58         const PSID              _uid ;
59 #endif  
60         const char* const       _pwname ;
61         const char* const       _dir ;
62         const time_t            _start;
63         const char* const       _cstart ;
64
65 private :
66         Identity( void );
67         Identity( const Identity &monid );
68
69 public :
70         Identity(const char *name);
71         ~Identity();
72         friend std::ostream & operator<< ( std::ostream& os , const Identity& monid );
73
74 #ifndef WNT
75         const pid_t&            pid(void) const;
76         const struct utsname&   hostid(void) const;
77         const uid_t&            uid(void) const;
78 #else
79         const DWORD&            pid(void) const;
80         const char* const       hostid(void) const;
81         const PSID&             uid(void) const;
82 #endif
83
84         const char* const       name( void ) const;
85         const char* const       adip(void) const;
86         const char* const       pwname(void) const;
87         const time_t&           start(void) const;
88         const char* const       rep (void) const;
89
90         const char*             host_char(void ) const;
91         const char*             start_char(void) const;
92
93 } ;
94 # endif         /* # if !defined(  __IDENTITE_H__ ) */