Salome HOME
PR: merge from branch BR_UnitTests tag mergeto_trunk_17oct05
[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>
31 #include <fstream>
32
33 extern "C"
34 {
35 # include <stdio.h>
36 }
37
38 #include "utilities.h"
39 #include "SALOMETraceCollector.hxx"
40 #include "Utils_ORB_INIT.hxx"
41 #include "Utils_SINGLETON.hxx"
42 #include "Utils_SALOME_Exception.hxx"
43 #include "Utils_CommException.hxx"
44 #include "ServiceUnreachable.hxx"
45 #include "SALOME_NamingService.hxx"
46 #include "RegistryService.hxx"
47
48 #ifdef CHECKTIME
49 #include <Utils_Timer.hxx>
50 #endif
51 using namespace std;
52
53 int main( int argc , char **argv )
54 {
55   ORB_INIT &init = *SINGLETON_<ORB_INIT>::Instance() ;
56   CORBA::ORB_var &orb = init( argc , argv ) ;
57   //  LocalTraceCollector *myThreadTrace = SALOMETraceCollector::instance(orb);
58   BEGIN_OF( argv[0] )
59     INFOS_COMPILATION 
60     SCRUTE(argc) 
61     if( argc<3 )
62       {
63         MESSAGE("you must provide the Salome session name when you call SALOME_Registry_Server") ;
64         throw CommException("you must provide the Salome session name when you call SALOME_Registry_Server") ;
65       }
66   const char *ptrSessionName=0 ;
67
68   int k=0 ;
69   for ( k=1 ; k<argc ; k++ )
70     {
71       if( strcmp(argv[k],"--salome_session")==0 )
72         {
73           ptrSessionName=argv[k+1] ;
74           break ;
75         }
76     }
77   ASSERT(ptrSessionName) ;
78   ASSERT(strlen( ptrSessionName )>0) ;
79   const char *registryName = "Registry" ;
80   long TIMESleep = 250000000;
81   int NumberOfTries = 40;
82   int a;
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 WNT
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 WNT
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       varComponents = ptrRegistry->_this() ;
173       // The RegistryService must not already exist.
174             
175       try
176         {
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 ) ;
181         }
182       catch( const ServiceUnreachable &ex )
183         {
184         }
185       catch( const CORBA::Exception &exx )
186         {
187         }
188       string absoluteName = string("/") + registryName;
189       naming.Register( varComponents , absoluteName.c_str() ) ;
190       MESSAGE("On attend les requetes des clients") ;
191       try
192         {
193           // Activation du POA
194           MESSAGE("Activation du POA") ;
195           manager->activate() ;
196                 
197           // Lancement de l'ORB
198           MESSAGE("Lancement de l'ORB") ;
199 #ifdef CHECKTIME
200           Utils_Timer timer;
201           timer.Start();
202           timer.Stop();
203           MESSAGE("SALOME_Registry_Server.cxx - orb->run()");
204           timer.ShowAbsolute();
205 #endif
206           orb->run() ;
207         }
208       catch( const CORBA::Exception &ex )
209         {
210           MESSAGE("Erreur systeme") ;
211           return EXIT_FAILURE ;
212         }
213             
214     }
215   catch( const SALOME_Exception &ex )
216     {
217       MESSAGE( "Communication Error : " << ex.what() )
218         return EXIT_FAILURE ;
219     }
220         
221   END_OF( argv[0] ) ;
222   //  delete myThreadTrace;
223   return 0 ;
224 }