Salome HOME
PR: mergefrom_BSEC_br1_14Mar04
[modules/kernel.git] / src / Registry / RegistryConnexion.cxx
1 //  SALOME Registry : Registry server implementation
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   : 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
44 Registry::Components_var Connexion( int argc , char **argv , const char *ptrSessionName ) throw( CommException )
45 {
46         Registry::Components_var varComponents = 0 ;
47         ASSERT(ptrSessionName) ;
48         ASSERT(strlen(ptrSessionName)>0) ;
49         const char *registryName = "Registry" ;
50
51         try
52         {
53                 ORB_INIT &init = *SINGLETON_<ORB_INIT>::Instance() ;
54                 ASSERT(SINGLETON_<ORB_INIT>::IsAlreadyExisting()) ;
55                 CORBA::ORB_var &orb = init( argc , argv ) ;
56         
57                 SALOME_NamingService &naming = *SINGLETON_<SALOME_NamingService>::Instance() ;
58                 ASSERT(SINGLETON_<SALOME_NamingService>::IsAlreadyExisting()) ;
59                 naming.init_orb( orb ) ;
60
61                 // Recuperation de la reference de l'objet
62                 CORBA::Object_var object = naming.Resolve( registryName ) ;
63                 if(CORBA::is_nil(object)) throw CommException( "unable to find the RegistryService" ) ;
64
65                 // Specialisation de l'objet generique
66                 varComponents = Registry::Components::_narrow( object ) ;
67                 ASSERT(! CORBA::is_nil(varComponents)) ;
68         }
69         catch( ... )
70         {
71                 throw CommException ( "NamingService Connexion Error" ) ;
72         }
73         return varComponents ;
74 }
75
76
77 RegistryConnexion::RegistryConnexion( int argc , char **argv , const char *ior , const char *ptrSessionName, const char *componentName ): \
78         _Ior(duplicate(ior)), _VarComponents( Connexion(argc,argv,ptrSessionName) ), _SessionName(ptrSessionName),_Name(""), _Id(0)
79 {
80         this->add( componentName ) ;
81 }
82
83
84 RegistryConnexion::RegistryConnexion( void ): _Ior(0), _VarComponents( 0 ), _Name(""), _Id(0)
85 {
86         INTERRUPTION(EXIT_FAILURE) ;
87 }
88
89
90 RegistryConnexion::~RegistryConnexion()
91 {
92         BEGIN_OF("RegistryConnexion::~RegistryConnexion()" ) ;
93         if( _Id != 0 )
94         {
95                 ASSERT(_SessionName!="" ) ;
96                 ASSERT(_Name!="" ) ;
97                 _VarComponents->remove( _Id ) ;
98         }
99         _Id   = 0 ;
100         delete [] _Ior;
101         _Ior = 0;
102         _SessionName = "";
103         _Name = "" ;
104         END_OF("RegistryConnexion::~RegistryConnexion()" ) ;
105 }
106
107
108 void RegistryConnexion::add( const char *aName )
109 {
110         ASSERT(_SessionName!="" ) ;
111         ASSERT(_Name=="" ) ;
112         ASSERT(_Id==0 ) ;
113         ASSERT(aName) ;
114         SCRUTE(aName) ;
115         ASSERT(strlen( aName )>0) ;
116
117         const Identity lesInfos( aName ) ;
118         Registry::Infos infos ;
119                 infos.name      = CORBA::string_dup( lesInfos.name() ) ;
120                 infos.pid       = lesInfos.pid() ;
121                 infos.machine   = CORBA::string_dup( lesInfos.host_char() ) ;
122                 infos.adip      = CORBA::string_dup( lesInfos.adip() ) ;
123                 infos.uid       = lesInfos.uid() ;
124                 infos.pwname    = CORBA::string_dup( lesInfos.pwname() ) ;
125                 infos.tc_start  = lesInfos.start() ;
126                 infos.tc_hello  = 0 ;
127                 infos.tc_end    = 0 ;
128                 infos.difftime  = 0 ;
129                 infos.cdir      = CORBA::string_dup( lesInfos.rep() ) ;
130                 infos.status    = -1 ;
131                 infos.ior       = CORBA::string_dup(_Ior);
132
133         ASSERT(!CORBA::is_nil(this->_VarComponents)) ;
134
135         CORBA::ULong id = _VarComponents->add( infos ) ;
136
137         SCRUTE(aName) ; SCRUTE(id) ;
138         ASSERT(id) ;
139
140         _Id   = id ;
141         _Name = aName ;
142
143         return ;
144 }
145
146
147 void RegistryConnexion::remove( void )
148 {
149         ASSERT(_Id>0) ;
150         ASSERT(!CORBA::is_nil(this->_VarComponents)) ;
151         _VarComponents->remove( _Id ) ;
152
153         _Name = "" ;
154         _Id   = 0 ;
155
156         return ;
157 }