Salome HOME
PR: mergefrom_PRAS_br2_14Jan04
[modules/kernel.git] / src / Session / SALOME_Session_Server.cxx
1 //  SALOME Session : implementation of Session.idl
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_Session_Server.cxx
25 //  Author : Paul RASCLE, EDF
26 //  Module : SALOME
27 //  $Header$
28
29 #include "Utils_ORB_INIT.hxx"
30 #include "Utils_SINGLETON.hxx"
31 #include "SALOME_NamingService.hxx"
32 #include <iostream>
33 #include <unistd.h>
34 using namespace std;
35
36 #include <SALOMEconfig.h>
37 #include CORBA_SERVER_HEADER(SALOME_Session)
38
39 #include "utilities.h"
40
41 #include "SALOME_Session_i.hxx"
42
43 //! CORBA server for SALOME Session
44 /*!
45  *  SALOME_Session Server launches a SALOME session servant.
46  *  The servant registers to the Naming Service.
47  *  See SALOME_Session.idl for interface specification.
48  *
49  *  Main services offered by the servant are:
50  *   - launch GUI
51  *   - stop Session (must be idle)
52  *   - get session state
53  */
54
55 int main(int argc, char **argv)
56 {
57
58   try
59     {
60       ORB_INIT &init = *SINGLETON_<ORB_INIT>::Instance() ;
61       ASSERT(SINGLETON_<ORB_INIT>::IsAlreadyExisting()) ;
62       CORBA::ORB_var &orb = init( argc , argv ) ;
63
64       //
65       long TIMESleep = 250000000;
66       int NumberOfTries = 40;
67       int a;
68       timespec ts_req;
69       ts_req.tv_nsec=TIMESleep;
70       ts_req.tv_sec=0;
71       timespec ts_rem;
72       ts_rem.tv_nsec=0;
73       ts_rem.tv_sec=0;
74       CosNaming::NamingContext_var inc;
75       PortableServer::POA_var poa;
76       CORBA::Object_var theObj;
77       CORBA::Object_var obj;
78       CORBA::Object_var object;
79       SALOME_NamingService &naming = *SINGLETON_<SALOME_NamingService>::Instance() ;
80       int SESSION=0;
81       const char * Env = getenv("USE_LOGGER"); 
82       int EnvL =0;
83       if ((Env!=NULL) && (strlen(Env)))
84         EnvL=1;
85       CosNaming::Name name;
86       name.length(1);
87       name[0].id=CORBA::string_dup("Logger");    
88       PortableServer::POAManager_var pman; 
89       for (int i = 1; i<=NumberOfTries; i++){
90         if (i!=1) 
91           a=nanosleep(&ts_req,&ts_rem);
92         try
93           { 
94             obj = orb->resolve_initial_references("RootPOA");
95             if(!CORBA::is_nil(obj))
96               poa = PortableServer::POA::_narrow(obj);
97             if(!CORBA::is_nil(poa))
98               pman = poa->the_POAManager();
99             if(!CORBA::is_nil(orb)) 
100               theObj = orb->resolve_initial_references("NameService");
101             if (!CORBA::is_nil(theObj))
102               inc = CosNaming::NamingContext::_narrow(theObj);
103           }
104         catch( CORBA::COMM_FAILURE& )
105           {
106             MESSAGE( "Session Server: CORBA::COMM_FAILURE: Unable to contact the Naming Service" );
107           }
108         if(!CORBA::is_nil(inc))
109           {
110             MESSAGE( "Session Server: Naming Service was found" );
111             if(EnvL==1)
112               {
113                 for(int j=1; j<=NumberOfTries; j++)
114                   {
115                     if (j!=1) 
116                       a=nanosleep(&ts_req, &ts_rem);
117                     try
118                       {
119                         object = inc->resolve(name);
120                       }
121                     catch(CosNaming::NamingContext::NotFound)
122                       { MESSAGE( "Session Server: Logger Server wasn't found" );
123                       }
124                     catch(...)
125                       {
126                         MESSAGE( "Session Server: Unknown exception" ); 
127                       }
128                     if (!CORBA::is_nil(object))
129                       {
130                         MESSAGE( "Session Server: Loger Server was found" );
131                         SESSION=1;
132                         break;
133                       }
134                   }
135               }
136           }
137         if ((SESSION==1)||((EnvL==0)&&(!CORBA::is_nil(inc))))
138           break;
139       }
140    
141       // servant
142       SALOME_Session_i * mySALOME_Session = new SALOME_Session_i(argc, argv, orb, poa) ;
143       PortableServer::ObjectId_var mySALOME_Sessionid = poa->activate_object(mySALOME_Session) ;
144       MESSAGE("poa->activate_object(mySALOME_Session)")
145
146         obj = mySALOME_Session->_this() ;
147       CORBA::String_var sior(orb->object_to_string(obj)) ;
148
149       mySALOME_Session->NSregister();
150
151       mySALOME_Session->_remove_ref() ;
152
153       //DECOMMENT PortableServer::POAManager_var pman = poa->the_POAManager() ;
154       pman->activate() ;
155       MESSAGE("pman->activate()")
156
157         orb->run() ;
158       orb->destroy() ;
159     }
160   catch (CORBA::SystemException&)
161     {
162       INFOS("Caught CORBA::SystemException.");
163     }
164   catch (CORBA::Exception&)
165     {
166       INFOS("Caught CORBA::Exception.");
167     }
168   catch (...)
169     {
170       INFOS("Caught unknown exception.");
171     }
172   return 0 ;
173 }