1 // SALOME Registry : Registry server implementation
3 // Copyright (C) 2003 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.
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
24 // File : SALOME_Registry_Server.cxx
25 // Author : Pascale NOYRET - Antoine YESSAYAN, EDF
38 #include "utilities.h"
39 #include "Utils_ORB_INIT.hxx"
40 #include "Utils_SINGLETON.hxx"
41 #include "Utils_SALOME_Exception.hxx"
42 #include "Utils_CommException.hxx"
43 #include "ServiceUnreachable.hxx"
44 #include "SALOME_NamingService.hxx"
45 #include "RegistryService.hxx"
48 #include <Utils_Timer.hxx>
52 int main( int argc , char **argv )
54 ORB_INIT &init = *SINGLETON_<ORB_INIT>::Instance() ;
55 CORBA::ORB_var &orb = init( argc , argv ) ;
56 // LocalTraceCollector *myThreadTrace = SALOMETraceCollector::instance(orb);
62 MESSAGE("you must provide the Salome session name when you call SALOME_Registry_Server") ;
63 throw CommException("you must provide the Salome session name when you call SALOME_Registry_Server") ;
65 const char *ptrSessionName=0 ;
68 for ( k=1 ; k<argc ; k++ )
70 if( strcmp(argv[k],"--salome_session")==0 )
72 ptrSessionName=argv[k+1] ;
76 ASSERT(ptrSessionName) ;
77 ASSERT(strlen( ptrSessionName )>0) ;
78 const char *registryName = "Registry" ;
79 long TIMESleep = 250000000;
80 int NumberOfTries = 40;
83 ts_req.tv_nsec=TIMESleep;
88 CosNaming::NamingContext_var inc;
89 PortableServer::POA_var poa;
90 CORBA::Object_var theObj;
91 CORBA::Object_var obj;
92 CORBA::Object_var object;
93 SALOME_NamingService &naming = *SINGLETON_<SALOME_NamingService>::Instance() ;
94 Registry::Components_var varComponents;
96 const char * Env = getenv("USE_LOGGER");
98 if ((Env!=NULL) && (strlen(Env)))
100 CosNaming::Name name;
102 name[0].id=CORBA::string_dup("Logger");
103 PortableServer::POAManager_var manager;
104 for (int i = 1; i<=NumberOfTries; i++)
108 a=nanosleep(&ts_req,&ts_rem);
110 Sleep(TIMESleep/1000000);
114 obj = orb->resolve_initial_references("RootPOA");
115 if(!CORBA::is_nil(obj))
116 poa = PortableServer::POA::_narrow(obj);
117 if(!CORBA::is_nil(poa))
118 manager = poa->the_POAManager();
119 if(!CORBA::is_nil(orb))
120 theObj = orb->resolve_initial_references("NameService");
121 if (!CORBA::is_nil(theObj))
122 inc = CosNaming::NamingContext::_narrow(theObj);
124 catch( CORBA::SystemException& )
126 MESSAGE( "Registry Server: CORBA::SystemException: Unable to contact the Naming Service" );
128 if(!CORBA::is_nil(inc))
130 MESSAGE( "Registry Server: Naming Service was found" );
133 for(int j=1; j<=NumberOfTries; j++)
137 a=nanosleep(&ts_req, &ts_rem);
139 Sleep(TIMESleep/1000000);
143 object = inc->resolve(name);
145 catch(CosNaming::NamingContext::NotFound)
147 MESSAGE( "Registry Server: Logger Server wasn't found" );
151 MESSAGE( "Registry Server: Unknown exception" );
153 if (!CORBA::is_nil(object))
155 MESSAGE( "Module Catalog Server: Logger Server was found" );
162 if ((REGISTRY==1)||((EnvL==0)&&(!CORBA::is_nil(inc))))
168 naming.init_orb( orb ) ;
169 RegistryService *ptrRegistry = SINGLETON_<RegistryService>::Instance() ;
170 ptrRegistry->SessionName( ptrSessionName ) ;
171 ptrRegistry->SetOrb(orb);
172 varComponents = ptrRegistry->_this() ;
173 // The RegistryService must not already exist.
177 CORBA::Object_var pipo = naming.Resolve( registryName ) ;
178 if (CORBA::is_nil(pipo) ) throw ServiceUnreachable() ;
179 MESSAGE("RegistryService servant already existing" ) ;
180 exit( EXIT_FAILURE ) ;
182 catch( const ServiceUnreachable &ex )
185 catch( const CORBA::Exception &exx )
188 string absoluteName = string("/") + registryName;
189 naming.Register( varComponents , absoluteName.c_str() ) ;
190 MESSAGE("Wait client requests") ;
194 MESSAGE("POA activation") ;
195 manager->activate() ;
197 // Lancement de l'ORB
198 MESSAGE("ORB launching") ;
203 MESSAGE("SALOME_Registry_Server.cxx - orb->run()");
204 timer.ShowAbsolute();
208 catch( const CORBA::Exception &ex )
210 MESSAGE("System error") ;
211 return EXIT_FAILURE ;
215 catch( const SALOME_Exception &ex )
217 MESSAGE( "Communication Error : " << ex.what() )
218 return EXIT_FAILURE ;
222 // delete myThreadTrace;