Salome HOME
Reapply commit b31c8411.
[modules/kernel.git] / src / Registry / SALOME_Registry_Server.cxx
1 // Copyright (C) 2007-2016  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   : SALOME_Registry_Server.cxx
25 //  Author : Pascale NOYRET - Antoine YESSAYAN, EDF
26 //  Module : SALOME
27 //  $Header$
28 //
29 #include <stdlib.h>
30 #include <iostream>
31 #include <fstream>
32
33 extern "C"
34 {
35 # include <stdio.h>
36 }
37
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"
46
47 #ifdef CHECKTIME
48 #include <Utils_Timer.hxx>
49 #endif
50
51 int main( int argc , char **argv )
52 {
53   ORB_INIT &init = *SINGLETON_<ORB_INIT>::Instance() ;
54   CORBA::ORB_var &orb = init( argc , argv ) ;
55   //  LocalTraceCollector *myThreadTrace = SALOMETraceCollector::instance(orb);
56   BEGIN_OF( argv[0] )
57     INFOS_COMPILATION 
58     SCRUTE(argc) 
59     if( argc<3 )
60       {
61         MESSAGE("you must provide the Salome session name when you call SALOME_Registry_Server") ;
62         throw CommException("you must provide the Salome session name when you call SALOME_Registry_Server") ;
63       }
64   const char *ptrSessionName=0 ;
65
66   int k=0 ;
67   for ( k=1 ; k<argc ; k++ )
68     {
69       if( strcmp(argv[k],"--salome_session")==0 )
70         {
71           ptrSessionName=argv[k+1] ;
72           break ;
73         }
74     }
75   ASSERT(ptrSessionName) ;
76   ASSERT(strlen( ptrSessionName )>0) ;
77   const char *registryName = "Registry" ;
78   long TIMESleep = 250000000;
79   int NumberOfTries = 40;
80 #ifndef WIN32
81   int a;
82 #endif
83   timespec ts_req;
84   ts_req.tv_nsec=TIMESleep;
85   ts_req.tv_sec=0;
86   timespec ts_rem;
87   ts_rem.tv_nsec=0;
88   ts_rem.tv_sec=0;
89   CosNaming::NamingContext_var inc;
90   PortableServer::POA_var poa;
91   CORBA::Object_var theObj;
92   CORBA::Object_var obj;
93   CORBA::Object_var object;
94   SALOME_NamingService &naming = *SINGLETON_<SALOME_NamingService>::Instance() ;
95   Registry::Components_var varComponents;
96   int REGISTRY=0;
97   const char * Env = getenv("USE_LOGGER");
98   int EnvL =0;
99   if ((Env!=NULL) && (strlen(Env)))
100     EnvL=1;
101   CosNaming::Name name;
102   name.length(1);
103   name[0].id=CORBA::string_dup("Logger");  
104   PortableServer::POAManager_var manager; 
105   for (int i = 1; i<=NumberOfTries; i++)
106     {
107       if (i!=1) 
108 #ifndef WIN32
109         a=nanosleep(&ts_req,&ts_rem);
110 #else
111     Sleep(TIMESleep/1000000);
112 #endif
113       try
114         { 
115           obj = orb->resolve_initial_references("RootPOA");
116           if(!CORBA::is_nil(obj))
117             poa = PortableServer::POA::_narrow(obj);
118           if(!CORBA::is_nil(poa))
119             manager = poa->the_POAManager();
120           if(!CORBA::is_nil(orb)) 
121             theObj = orb->resolve_initial_references("NameService");
122           if (!CORBA::is_nil(theObj))
123             inc = CosNaming::NamingContext::_narrow(theObj);
124         }
125       catch( CORBA::SystemException& )
126         {
127           MESSAGE( "Registry Server: CORBA::SystemException: Unable to contact the Naming Service" );
128         }
129       if(!CORBA::is_nil(inc))
130         {
131           MESSAGE( "Registry Server: Naming Service was found" );
132           if(EnvL==1)
133             {
134               for(int j=1; j<=NumberOfTries; j++)
135                 {
136                   if (j!=1) 
137 #ifndef WIN32
138                     a=nanosleep(&ts_req, &ts_rem);
139 #else
140                         Sleep(TIMESleep/1000000);
141 #endif
142                   try
143                     {
144                       object = inc->resolve(name);
145                     }
146                   catch(CosNaming::NamingContext::NotFound)
147                     {
148                       MESSAGE( "Registry Server: Logger Server wasn't found" );
149                     }
150                   catch(...)
151                     {
152                       MESSAGE( "Registry Server: Unknown exception" );
153                     }
154                   if (!CORBA::is_nil(object))
155                     {
156                       MESSAGE( "Module Catalog Server: Logger Server was found" );
157                       REGISTRY=1;
158                       break;
159                     }
160                 }
161             }
162         }
163       if ((REGISTRY==1)||((EnvL==0)&&(!CORBA::is_nil(inc))))
164         break;
165     }
166
167   try
168     {
169       naming.init_orb( orb ) ;
170       RegistryService *ptrRegistry = SINGLETON_<RegistryService>::Instance() ;
171       ptrRegistry->SessionName( ptrSessionName ) ;
172       ptrRegistry->SetOrb(orb);
173       //
174       CORBA::PolicyList policies;
175       policies.length(1);
176       PortableServer::ThreadPolicy_var threadPol(poa->create_thread_policy(PortableServer::SINGLE_THREAD_MODEL));
177       policies[0]=PortableServer::ThreadPolicy::_duplicate(threadPol);
178       PortableServer::POA_var poa2(poa->create_POA("SingleThreadPOA4RegistryStandalone",manager,policies));
179       threadPol->destroy();
180       //
181       PortableServer::ObjectId_var id(poa2->activate_object(ptrRegistry));
182       CORBA::Object_var pipo=poa2->id_to_reference(id);
183       varComponents = Registry::Components::_narrow(pipo) ;
184       ptrRegistry->_remove_ref(); //let poa manage registryservice deletion
185       // The RegistryService must not already exist.
186             
187       try
188         {
189           CORBA::Object_var pipo = naming.Resolve( registryName ) ;
190           if (CORBA::is_nil(pipo) )  throw ServiceUnreachable() ;
191           MESSAGE("RegistryService servant already existing" ) ;
192           exit( EXIT_FAILURE ) ;
193         }
194       catch( const ServiceUnreachable & )
195         {
196         }
197       catch( const CORBA::Exception & )
198         {
199         }
200       std::string absoluteName = std::string("/") + registryName;
201       naming.Register( varComponents , absoluteName.c_str() ) ;
202       MESSAGE("Wait client requests") ;
203       try
204         {
205           // Activation du POA
206           MESSAGE("POA activation") ;
207           manager->activate() ;
208                 
209           // Lancement de l'ORB
210           MESSAGE("ORB launching") ;
211 #ifdef CHECKTIME
212           Utils_Timer timer;
213           timer.Start();
214           timer.Stop();
215           MESSAGE("SALOME_Registry_Server.cxx - orb->run()");
216           timer.ShowAbsolute();
217 #endif
218           orb->run() ;
219         }
220       catch( const CORBA::Exception & )
221         {
222           MESSAGE("System error") ;
223           return EXIT_FAILURE ;
224         }
225             
226     }
227   catch( const SALOME_Exception &ex )
228     {
229       MESSAGE( "Communication Error : " << ex.what() )
230         return EXIT_FAILURE ;
231     }
232         
233   END_OF( argv[0] ) ;
234   //  delete myThreadTrace;
235   return 0 ;
236 }