1 // Copyright (C) 2007-2024 CEA, EDF, OPEN CASCADE
3 // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
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.
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.
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
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
23 // SALOME Registry : Registry server implementation
24 // File : RegistryConnexion.cxx
25 // Author : Pascale NOYRET - Antoine YESSAYAN, EDF
29 # include "RegistryConnexion.hxx"
30 # include "SALOME_NamingService.hxx"
31 # include "Utils_Identity.hxx"
32 # include "Utils_CommException.hxx"
33 # include "OpUtil.hxx"
34 # include "utilities.h"
38 Registry::Components_var Connexion(SALOME_NamingService_Abstract *naming)
40 Registry::Components_var varComponents = 0 ;
41 const char *registryName = "Registry" ;
45 // Recuperation de la reference de l'objet
46 CORBA::Object_var object = naming->Resolve( registryName ) ;
47 if(CORBA::is_nil(object)) throw CommException( "unable to find the RegistryService" ) ;
49 // Specialisation de l'objet generique
50 varComponents = Registry::Components::_narrow( object ) ;
51 ASSERT(! CORBA::is_nil(varComponents)) ;
55 throw CommException ( "NamingService Connexion Error" ) ;
57 return varComponents ;
61 RegistryConnexion::RegistryConnexion(const char *ior , const char *ptrSessionName, const char *componentName, SALOME_NamingService_Abstract *ns ): \
62 _Ior(duplicate(ior)), _VarComponents( Connexion(ns) ), _SessionName(ptrSessionName),_Name(""), _Id(0)
64 this->add( componentName ) ;
68 RegistryConnexion::RegistryConnexion( void ): _Ior(0), _VarComponents( 0 ), _Name(""), _Id(0)
70 INTERRUPTION(EXIT_FAILURE) ;
74 RegistryConnexion::~RegistryConnexion()
76 BEGIN_OF("RegistryConnexion::~RegistryConnexion()" ) ;
79 ASSERT(_SessionName!="" ) ;
81 _VarComponents->remove( _Id ) ;
84 delete [] (char*) _Ior;
88 END_OF("RegistryConnexion::~RegistryConnexion()" ) ;
92 void RegistryConnexion::add( const char *aName )
94 ASSERT(_SessionName!="" ) ;
99 ASSERT(strlen( aName )>0) ;
101 const Identity lesInfos( aName ) ;
102 Registry::Infos infos ;
103 infos.name = CORBA::string_dup( lesInfos.name() ) ;
104 infos.pid = lesInfos.pid() ;
105 infos.machine = CORBA::string_dup( lesInfos.host_char() ) ;
106 infos.adip = CORBA::string_dup( lesInfos.adip() ) ;
107 infos.uid = (CORBA::Long)lesInfos.uid() ; //!< TODO: pointer truncation from const PSID to long
108 infos.pwname = CORBA::string_dup( lesInfos.pwname() ) ;
109 infos.tc_start = (CORBA::Long)lesInfos.start() ; //!< TODO: conversation from const time_t to CORBA::Long
113 infos.cdir = CORBA::string_dup( lesInfos.rep() ) ;
115 infos.ior = CORBA::string_dup(_Ior);
117 ASSERT(!CORBA::is_nil(this->_VarComponents)) ;
119 CORBA::ULong id = _VarComponents->add( infos ) ;
121 SCRUTE(aName) ; SCRUTE(id) ;
131 void RegistryConnexion::remove( void )
134 ASSERT(!CORBA::is_nil(this->_VarComponents)) ;
135 _VarComponents->remove( _Id ) ;