Salome HOME
DCQ : Merge with Ecole_ete_a6.
[modules/kernel.git] / src / Registry / SALOME_Registry_Server.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   : SALOME_Registry_Server.cxx
25 //  Author : Pascale NOYRET - Antoine YESSAYAN, EDF
26 //  Module : SALOME
27 //  $Header$
28
29 #include <stdlib.h>
30 #include <iostream.h>
31 #include <fstream.h>
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 using namespace std;
51
52 int main( int argc , char **argv )
53 {
54   BEGIN_OF( argv[0] )
55     INFOS_COMPILATION 
56     SCRUTE(argc) 
57     if( argc<3 )
58       {
59         MESSAGE("you must provide the Salome session name when you call SALOME_Registry_Server") ;
60         throw CommException("you must provide the Salome session name when you call SALOME_Registry_Server") ;
61       }
62   const char *ptrSessionName=0 ;
63
64   int k=0 ;
65   for ( k=1 ; k<argc ; k++ )
66     {
67       if( strcmp(argv[k],"--salome_session")==0 )
68         {
69           ptrSessionName=argv[k+1] ;
70           break ;
71         }
72     }
73   ASSERT(ptrSessionName) ;
74   ASSERT(strlen( ptrSessionName )>0) ;
75   const char *registryName = "Registry" ;
76   ORB_INIT &init = *SINGLETON_<ORB_INIT>::Instance() ;
77   CORBA::ORB_var &orb = init( argc , argv ) ;
78   //
79   long TIMESleep = 250000000;
80   int NumberOfTries = 40;
81   int a;
82   timespec ts_req;
83   ts_req.tv_nsec=TIMESleep;
84   ts_req.tv_sec=0;
85   timespec ts_rem;
86   ts_rem.tv_nsec=0;
87   ts_rem.tv_sec=0;
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;
95   int REGISTRY=0;
96   const char * Env = getenv("USE_LOGGER");
97   int EnvL =0;
98   if ((Env!=NULL) && (strlen(Env)))
99     EnvL=1;
100   CosNaming::Name name;
101   name.length(1);
102   name[0].id=CORBA::string_dup("Logger");  
103   PortableServer::POAManager_var manager; 
104   for (int i = 1; i<=NumberOfTries; i++)
105     {
106       if (i!=1) 
107         a=nanosleep(&ts_req,&ts_rem);
108       try
109         { 
110           obj = orb->resolve_initial_references("RootPOA");
111           if(!CORBA::is_nil(obj))
112             poa = PortableServer::POA::_narrow(obj);
113           if(!CORBA::is_nil(poa))
114             manager = poa->the_POAManager();
115           if(!CORBA::is_nil(orb)) 
116             theObj = orb->resolve_initial_references("NameService");
117           if (!CORBA::is_nil(theObj))
118             inc = CosNaming::NamingContext::_narrow(theObj);
119         }
120       catch( CORBA::COMM_FAILURE& )
121         {
122           MESSAGE( "Registry Server: CORBA::COMM_FAILURE: Unable to contact the Naming Service" );
123         }
124       if(!CORBA::is_nil(inc))
125         {
126           MESSAGE( "Registry Server: Naming Service was found" );
127           if(EnvL==1)
128             {
129               for(int j=1; j<=NumberOfTries; j++)
130                 {
131                   if (j!=1) 
132                     a=nanosleep(&ts_req, &ts_rem);
133                   try
134                     {
135                       object = inc->resolve(name);
136                     }
137                   catch(CosNaming::NamingContext::NotFound)
138                     {
139                       MESSAGE( "Registry Server: Logger Server wasn't found" );
140                     }
141                   catch(...)
142                     {
143                       MESSAGE( "Registry Server: Unknown exception" );
144                     }
145                   if (!CORBA::is_nil(object))
146                     {
147                       MESSAGE( "Module Catalog Server: Logger Server was found" );
148                       REGISTRY=1;
149                       break;
150                     }
151                 }
152             }
153         }
154       if ((REGISTRY==1)||((EnvL==0)&&(!CORBA::is_nil(inc))))
155         break;
156     }
157
158   try
159     {
160       naming.init_orb( orb ) ;
161       RegistryService *ptrRegistry = SINGLETON_<RegistryService>::Instance() ;
162       ptrRegistry->SessionName( ptrSessionName ) ;
163       varComponents = ptrRegistry->_this() ;
164       // The RegistryService must not already exist.
165             
166       try
167         {
168           CORBA::Object_var pipo = naming.Resolve( registryName ) ;
169           if (CORBA::is_nil(pipo) )  throw ServiceUnreachable() ;
170           MESSAGE("RegistryService servant already existing" ) ;
171           exit( EXIT_FAILURE ) ;
172         }
173       catch( const ServiceUnreachable &ex )
174         {
175         }
176       catch( const CORBA::Exception &exx )
177         {
178         }
179       string absoluteName = string("/") + registryName;
180       naming.Register( varComponents , absoluteName.c_str() ) ;
181       MESSAGE("On attend les requetes des clients") ;
182       try
183         {
184           // Activation du POA
185           MESSAGE("Activation du POA") ;
186           manager->activate() ;
187                 
188           // Lancement de l'ORB
189           MESSAGE("Lancement de l'ORB") ;
190 #ifdef CHECKTIME
191           Utils_Timer timer;
192           timer.Start();
193           timer.Stop();
194           MESSAGE("SALOME_Registry_Server.cxx - orb->run()");
195           timer.ShowAbsolute();
196 #endif
197           orb->run() ;
198         }
199       catch( const CORBA::Exception &ex )
200         {
201           MESSAGE("Erreur systeme") ;
202           return EXIT_FAILURE ;
203         }
204             
205     }
206   catch( const SALOME_Exception &ex )
207     {
208       MESSAGE( "Communication Error : " << ex.what() )
209         return EXIT_FAILURE ;
210     }
211         
212   END_OF( argv[0] ) ;
213   return 0 ;
214 }