Salome HOME
#18963 Minimize compiler warnings
[modules/kernel.git] / src / Registry / RegistryConnexion.cxx
1 // Copyright (C) 2007-2020  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  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, or (at your option) any later version.
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.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 //  SALOME Registry : Registry server implementation
24 //  File   : RegistryConnexion.cxx
25 //  Author : Pascale NOYRET - Antoine YESSAYAN, EDF
26 //  Module : SALOME
27 //  $Header$
28 //
29 # include "Utils_ORB_INIT.hxx"
30 # include "RegistryConnexion.hxx"
31 # include "SALOME_NamingService.hxx"
32 # include "Utils_Identity.hxx"
33 # include "Utils_SINGLETON.hxx"
34 # include "Utils_CommException.hxx"
35 # include "OpUtil.hxx"
36 # include "utilities.h"
37
38 extern "C"
39 {
40 # include <stdio.h>
41 }
42
43 Registry::Components_var Connexion( int argc , char **argv , const char */*ptrSessionName*/ )
44 {
45         Registry::Components_var varComponents = 0 ;
46         const char *registryName = "Registry" ;
47
48         try
49         {
50                 ORB_INIT &init = *SINGLETON_<ORB_INIT>::Instance() ;
51                 ASSERT(SINGLETON_<ORB_INIT>::IsAlreadyExisting()) ;
52                 CORBA::ORB_var &orb = init( argc , argv ) ;
53         
54                 SALOME_NamingService &naming = *SINGLETON_<SALOME_NamingService>::Instance() ;
55                 ASSERT(SINGLETON_<SALOME_NamingService>::IsAlreadyExisting()) ;
56                 naming.init_orb( orb ) ;
57
58                 // Recuperation de la reference de l'objet
59                 CORBA::Object_var object = naming.Resolve( registryName ) ;
60                 if(CORBA::is_nil(object)) throw CommException( "unable to find the RegistryService" ) ;
61
62                 // Specialisation de l'objet generique
63                 varComponents = Registry::Components::_narrow( object ) ;
64                 ASSERT(! CORBA::is_nil(varComponents)) ;
65         }
66         catch( ... )
67         {
68                 throw CommException ( "NamingService Connexion Error" ) ;
69         }
70         return varComponents ;
71 }
72
73
74 RegistryConnexion::RegistryConnexion( int argc , char **argv , const char *ior , const char *ptrSessionName, const char *componentName ): \
75         _Ior(duplicate(ior)), _VarComponents( Connexion(argc,argv,ptrSessionName) ), _SessionName(ptrSessionName),_Name(""), _Id(0)
76 {
77         this->add( componentName ) ;
78 }
79
80
81 RegistryConnexion::RegistryConnexion( void ): _Ior(0), _VarComponents( 0 ), _Name(""), _Id(0)
82 {
83         INTERRUPTION(EXIT_FAILURE) ;
84 }
85
86
87 RegistryConnexion::~RegistryConnexion()
88 {
89         BEGIN_OF("RegistryConnexion::~RegistryConnexion()" ) ;
90         if( _Id != 0 )
91         {
92                 ASSERT(_SessionName!="" ) ;
93                 ASSERT(_Name!="" ) ;
94                 _VarComponents->remove( _Id ) ;
95         }
96         _Id   = 0 ;
97         delete [] (char*) _Ior;
98         _Ior = 0;
99         _SessionName = "";
100         _Name = "" ;
101         END_OF("RegistryConnexion::~RegistryConnexion()" ) ;
102 }
103
104
105 void RegistryConnexion::add( const char *aName )
106 {
107         ASSERT(_SessionName!="" ) ;
108         ASSERT(_Name=="" ) ;
109         ASSERT(_Id==0 ) ;
110         ASSERT(aName) ;
111         SCRUTE(aName) ;
112         ASSERT(strlen( aName )>0) ;
113
114         const Identity lesInfos( aName ) ;
115         Registry::Infos infos ;
116                 infos.name        = CORBA::string_dup( lesInfos.name() ) ;
117                 infos.pid         = lesInfos.pid() ;
118                 infos.machine     = CORBA::string_dup( lesInfos.host_char() ) ;
119                 infos.adip        = CORBA::string_dup( lesInfos.adip() ) ;
120                 infos.uid         = (CORBA::Long)lesInfos.uid() ; //!< TODO: pointer truncation from const PSID to long
121                 infos.pwname      = CORBA::string_dup( lesInfos.pwname() ) ;
122                 infos.tc_start    = (CORBA::Long)lesInfos.start() ; //!< TODO: conversation from const time_t to CORBA::Long
123                 infos.tc_hello    = 0 ;
124                 infos.tc_end      = 0 ;
125                 infos.difftime    = 0 ;
126                 infos.cdir        = CORBA::string_dup( lesInfos.rep() ) ;
127                 infos.status      = -1 ;
128                 infos.ior         = CORBA::string_dup(_Ior);
129
130         ASSERT(!CORBA::is_nil(this->_VarComponents)) ;
131
132         CORBA::ULong id = _VarComponents->add( infos ) ;
133
134         SCRUTE(aName) ; SCRUTE(id) ;
135         ASSERT(id) ;
136
137         _Id   = id ;
138         _Name = aName ;
139
140         return ;
141 }
142
143
144 void RegistryConnexion::remove( void )
145 {
146         ASSERT(_Id>0) ;
147         ASSERT(!CORBA::is_nil(this->_VarComponents)) ;
148         _VarComponents->remove( _Id ) ;
149
150         _Name = "" ;
151         _Id   = 0 ;
152
153         return ;
154 }