]> SALOME platform Git repositories - modules/kernel.git/blob - src/Utils/Utils_Identity.hxx
Salome HOME
9dd4db08025fd23c3b89db2aa4ac6b5a476c65e4
[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 #if defined UTILS_EXPORTS
45 #if defined WIN32
46 #define UTILS_EXPORT __declspec( dllexport )
47 #else
48 #define UTILS_EXPORT
49 #endif
50 #else
51 #if defined WNT
52 #define UTILS_EXPORT __declspec( dllimport )
53 #else
54 #define UTILS_EXPORT
55 #endif
56 #endif
57 class UTILS_EXPORT Identity
58 {
59
60 protected :
61         const char* const       _name ;
62         const char* const       _adip; // Internet address
63
64 #ifndef WNT
65         const struct utsname    _hostid;        
66         const pid_t             _pid ;
67         const uid_t             _uid ;
68 #else
69         const char* const       _hostid;
70         const DWORD             _pid ;
71         const PSID              _uid ;
72 #endif  
73         const char* const       _pwname ;
74         const char* const       _dir ;
75         const time_t            _start;
76         const char* const       _cstart ;
77
78 private :
79         Identity( void );
80         Identity( const Identity &monid );
81
82 public :
83         Identity(const char *name);
84         ~Identity();
85         friend std::ostream & operator<< ( std::ostream& os , const Identity& monid );
86
87 #ifndef WNT
88         const pid_t&            pid(void) const;
89         const struct utsname&   hostid(void) const;
90         const uid_t&            uid(void) const;
91 #else
92         const DWORD&            pid(void) const;
93         const char* const       hostid(void) const;
94         const PSID&             uid(void) const;
95 #endif
96
97         const char* const       name( void ) const;
98         const char* const       adip(void) const;
99         const char* const       pwname(void) const;
100         const time_t&           start(void) const;
101         const char* const       rep (void) const;
102
103         const char*             host_char(void ) const;
104         const char*             start_char(void) const;
105
106 } ;
107 # endif         /* # if !defined(  __IDENTITE_H__ ) */