Salome HOME
Copyright update 2021
[modules/kernel.git] / src / SALOMEDS / SALOMEDS_Server.cxx
1 // Copyright (C) 2007-2021  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 SALOMEDS : data structure of SALOME and sources of Salome data server 
24 //  File   : SALOMEDS_Server.cxx
25 //  Author : Yves FRICAUD
26 //  Module : SALOME
27 //  $Header$
28 //
29 #include "utilities.h"
30 #include "Utils_SINGLETON.hxx"
31
32 #include "SALOME_NamingService.hxx"
33 #include "SALOMEDS_Study_i.hxx"
34
35 #include <SALOMEconfig.h>
36 #include CORBA_SERVER_HEADER(SALOMEDS)
37
38 #ifdef CHECKTIME
39 #include <Utils_Timer.hxx>
40 #endif
41
42 // extern "C"
43 // { // for ccmalloc memory debug
44 // void ccmalloc_static_initialization(void);
45 // }
46
47 ///////////////////////////// MAIN ///////////////////////////////////////
48 //////////////////////////////////////////////////////////////////////////
49 int main(int argc, char** argv)
50 {
51   //   ccmalloc_static_initialization();
52
53   MESSAGE("SALOMEDS_Server - main");
54   try 
55     {
56       // Initialise the ORB.
57 #if OMNIORB_VERSION >= 4
58       CORBA::ORB_var orb = CORBA::ORB_init( argc, argv, "omniORB4" ) ;
59 #else
60       CORBA::ORB_var orb = CORBA::ORB_init( argc, argv, "omniORB3" );
61 #endif
62       SALOME_NamingService* NS = 0;
63       // Obtain a reference to the root POA.
64       long TIMESleep = 500000000;
65       int NumberOfTries = 40;
66       timespec ts_req;
67       ts_req.tv_nsec=TIMESleep;
68       ts_req.tv_sec=0;
69       timespec ts_rem;
70       ts_rem.tv_nsec=0;
71       ts_rem.tv_sec=0;
72       CosNaming::NamingContext_var inc;
73       PortableServer::POA_var defaultPoa;
74       PortableServer::POA_var poa;
75       CORBA::Object_var theObj;
76       CORBA::Object_var obj;
77       CORBA::Object_var object;
78       int SALOMEDS=0;
79       const char * Env = getenv("USE_LOGGER");
80       int EnvL =0;
81       if ((Env!=NULL) && (strlen(Env)))
82         EnvL=1;
83       CosNaming::Name name;
84       name.length(1);
85       name[0].id=CORBA::string_dup("Logger");    
86       PortableServer::POAManager_var pman; 
87       for (int i = 1; i<=NumberOfTries; i++)
88         {
89           if (i!=1) 
90 #ifndef WIN32
91             nanosleep(&ts_req,&ts_rem);
92 #else
93             Sleep(TIMESleep/1000000);
94 #endif
95           try
96             { 
97               obj = orb->resolve_initial_references("RootPOA");
98               if(!CORBA::is_nil(obj))
99                 defaultPoa = PortableServer::POA::_narrow(obj);
100               if(!CORBA::is_nil(defaultPoa))
101                 pman = defaultPoa->the_POAManager();
102
103               PortableServer::POAManager_var pman = defaultPoa->the_POAManager();
104               CORBA::PolicyList policies;
105               policies.length(2);
106               //PortableServer::ThreadPolicy_var threadPol(defaultPoa->create_thread_policy(PortableServer::SINGLE_THREAD_MODEL));
107               PortableServer::ThreadPolicy_var threadPol(defaultPoa->create_thread_policy(PortableServer::ORB_CTRL_MODEL)); // default for all POAs
108               PortableServer::ImplicitActivationPolicy_var implicitPol(defaultPoa->create_implicit_activation_policy(PortableServer::IMPLICIT_ACTIVATION)); // default for Root_POA, NO for others
109               policies[0] = PortableServer::ThreadPolicy::_duplicate(threadPol);
110               policies[1] = PortableServer::ImplicitActivationPolicy::_duplicate(implicitPol);
111               poa = defaultPoa->create_POA("KERNELStandaloneStudySingleThreadPOA",pman,policies);
112               threadPol->destroy();
113               SALOMEDS_Study_i::SetThePOA(poa);
114
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                 if(!CORBA::is_nil(inc))
120                   {
121                     MESSAGE( "SalomeDS Server: Naming Service was found" );
122                     if(EnvL==1)
123                       {
124                         CORBA::ORB_var orb1 = CORBA::ORB_init(argc,argv) ;
125                         NS = SINGLETON_<SALOME_NamingService>::Instance() ;
126                         NS->init_orb( orb1 ) ;
127                         for(int j=1; j<=NumberOfTries; j++)
128                           {
129                             if (j!=1) 
130 #ifndef WIN32
131                               nanosleep(&ts_req, &ts_rem);
132 #else
133                               Sleep(TIMESleep/1000000);
134 #endif
135                             try
136                               {
137                                 object = inc->resolve(name);
138                               }
139                             catch(CosNaming::NamingContext::NotFound&)
140                               { 
141                                 MESSAGE( "SalomeDS Server: Logger Server wasn't found" ); }
142
143                             catch(...)
144                               {
145                                 MESSAGE( "SalomeDS Server: Unknown exception" );
146                               }
147                             if (!CORBA::is_nil(object))
148                               {
149                                 MESSAGE( "SalomeDS Server: Logger Server was found" );
150                                 SALOMEDS=1;
151                                 break;
152                               }
153                           }
154                       }
155                   }
156               }
157         
158             }
159           catch( const SALOME_Exception &ex )
160             {
161               MESSAGE( "Communication Error : " << ex.what() );
162               return EXIT_FAILURE ;
163             }
164           if ((SALOMEDS==1)||((EnvL==0)&&(!CORBA::is_nil(inc))))
165             break;
166         }
167     
168       // We allocate the objects on the heap.  Since these are reference
169       // counted objects, they will be deleted by the POA when they are no
170       // longer needed.    
171       SALOMEDS_Study_i * myStudy_i = new  SALOMEDS_Study_i(orb);
172  
173       // Activate the objects.  This tells the POA that the objects are
174       // ready to accept requests.
175       PortableServer::ObjectId_var myStudy_iid = poa->activate_object(myStudy_i);
176       SALOMEDS::Study_var Study = myStudy_i->_this();
177       if (!NS)
178       {
179         NS = SINGLETON_<SALOME_NamingService>::Instance();
180         NS->init_orb( orb );
181       }
182       NS->Register(Study, "/Study");
183       myStudy_i->_remove_ref();
184        
185       // Obtain a POAManager, and tell the POA to start accepting
186       // requests on its objects.
187       pman = poa->the_POAManager();
188       pman->activate();
189
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       MESSAGE( "end of SALOME_DS server" );
199       NS->Destroy_Name("/Study");
200       orb->destroy();
201     }
202   catch(CORBA::SystemException&)
203     {
204       MESSAGE( "Caught CORBA::SystemException." );
205     }
206   catch(CORBA::Exception&)
207     {
208       MESSAGE( "Caught CORBA::Exception." );
209     }
210   catch(omniORB::fatalException& fe)
211     {
212       MESSAGE( "Caught omniORB::fatalException:" );
213       MESSAGE( "  file: " << fe.file() );
214       MESSAGE( "  line: " << fe.line() );
215       MESSAGE( "  mesg: " << fe.errmsg() );
216     }
217   catch(...) 
218     {
219       MESSAGE( "Caught unknown exception." );
220     }
221   return 0;
222 }