Salome HOME
sources v1.2
[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 <unistd.h>
36 # include <time.h>
37 # include <sys/utsname.h>
38 }
39
40 class Identity
41 {
42
43 protected :
44         const char* const       _name ;
45         const struct utsname    _hostid;
46         const char* const       _adip; // Internet address
47         const uid_t             _uid ;
48         const char* const       _pwname ;
49         const char* const       _dir ;
50         const pid_t             _pid ;
51         const time_t            _start;
52         const char* const       _cstart ;
53
54
55 private :
56         Identity( void );
57         Identity( const Identity &monid );
58
59
60 public :
61         Identity(const char *name);
62         ~Identity();
63         friend std::ostream & operator<< ( std::ostream& os , const Identity& monid );
64
65         const char* const       name( void ) const;
66         const pid_t&            pid(void) const;
67         const struct utsname&   hostid(void) const;
68         const char* const       adip(void) const;
69         const uid_t&            uid(void) const;
70         const char* const       pwname(void) const;
71         const time_t&           start(void) const;
72         const char* const       rep (void) const;
73
74         const char*             host_char(void ) const;
75         const char*             start_char(void) const;
76
77 } ;
78 # endif         /* # if !defined(  __IDENTITE_H__ ) */