Salome HOME
4ee6ea453e8c30ba9745f05c36380e933811ee54
[modules/kernel.git] / src / Registry / SALOME_Registry_Server.cxx
1 // Copyright (C) 2007-2014  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       varComponents = ptrRegistry->_this() ;
174       ptrRegistry->_remove_ref(); //let poa manage registryservice deletion
175       // The RegistryService must not already exist.
176             
177       try
178         {
179           CORBA::Object_var pipo = naming.Resolve( registryName ) ;
180           if (CORBA::is_nil(pipo) )  throw ServiceUnreachable() ;
181           MESSAGE("RegistryService servant already existing" ) ;
182           exit( EXIT_FAILURE ) ;
183         }
184       catch( const ServiceUnreachable & )
185         {
186         }
187       catch( const CORBA::Exception & )
188         {
189         }
190       std::string absoluteName = std::string("/") + registryName;
191       naming.Register( varComponents , absoluteName.c_str() ) ;
192       MESSAGE("Wait client requests") ;
193       try
194         {
195           // Activation du POA
196           MESSAGE("POA activation") ;
197           manager->activate() ;
198                 
199           // Lancement de l'ORB
200           MESSAGE("ORB launching") ;
201 #ifdef CHECKTIME
202           Utils_Timer timer;
203           timer.Start();
204           timer.Stop();
205           MESSAGE("SALOME_Registry_Server.cxx - orb->run()");
206           timer.ShowAbsolute();
207 #endif
208           orb->run() ;
209         }
210       catch( const CORBA::Exception & )
211         {
212           MESSAGE("System error") ;
213           return EXIT_FAILURE ;
214         }
215             
216     }
217   catch( const SALOME_Exception &ex )
218     {
219       MESSAGE( "Communication Error : " << ex.what() )
220         return EXIT_FAILURE ;
221     }
222         
223   END_OF( argv[0] ) ;
224   //  delete myThreadTrace;
225   return 0 ;
226 }