1 // Copyright (C) 2007-2024 CEA, EDF, OPEN CASCADE
3 // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
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.
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.
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
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
23 // SALOME Container : implementation of container and engine for Kernel
24 // File : SALOME_Container.cxx
25 // Author : Paul RASCLE, EDF - MARC TAJCHMAN, CEA
29 #ifdef _MPI_SEQ_CONTAINER_
41 # include <sys/time.h>
51 #include "ArgvKeeper.hxx"
52 #include "SALOME_Container_Common.hxx"
53 #include "SALOME_Container_i.hxx"
54 #include "utilities.h"
56 #include "KernelBasis.hxx"
59 #include <Utils_Timer.hxx>
62 #include "Container_init_python.hxx"
64 extern "C" void HandleServerSideSignals(CORBA::ORB_ptr theORB);
68 #include <sys/types.h>
70 # include <sys/wait.h>
75 void AttachDebugger();
77 void terminateHandler();
78 void unexpectedHandler();
81 void (* setsig(int, void (*)(int)))(int);
83 typedef void (*sighandler_t)(int);
84 sighandler_t setsig(int sig, sighandler_t handler)
86 struct sigaction context, ocontext;
87 context.sa_handler = handler;
88 sigemptyset(&context.sa_mask);
90 if (sigaction(sig, &context, &ocontext) == -1)
92 return ocontext.sa_handler;
99 if(getenv ("DEBUGGER"))
101 std::stringstream exec;
102 exec << "$DEBUGGER SALOME_Container " << getpid() << "&";
103 std::cerr << exec.str() << std::endl;
104 system(exec.str().c_str());
110 void Handler(int theSigId)
112 std::cerr << "Signal= "<< theSigId << std::endl;
114 //to exit or not to exit
118 void terminateHandler(void)
120 std::cerr << "Terminate: not managed exception !" << std::endl;
124 void unexpectedHandler(void)
126 std::cerr << "Unexpected: unexpected exception !" << std::endl;
130 template<class ContainerServant>
131 int container_common_main(int argc, char* argv[], std::unique_ptr<SALOME_NamingService_Container_Abstract> ns)
133 setSSLMode(ns?!ns->IsTrueNS():false);
134 #ifdef _MPI_SEQ_CONTAINER_
136 MPI_Init(&argc,&argv);
141 if(getenv ("DEBUGGER"))
143 setsig(SIGSEGV,&Handler);
144 setsig(SIGFPE,&Handler);
145 std::set_terminate(&terminateHandler);
146 std::set_unexpected(&unexpectedHandler);
150 // Initialise the ORB.
151 //SRN: BugID: IPAL9541, it's necessary to set a size of one message to be at least 100Mb
152 //CORBA::ORB_var orb = CORBA::ORB_init( argc , argv ) ;
153 SetArgcArgv(argc, argv);
154 CORBA::ORB_ptr orb = KERNEL::GetRefToORB();
156 // LocalTraceCollector *myThreadTrace = SALOMETraceCollector::instance(orb);
163 KERNEL_PYTHON::init_python(argc,argv);
165 char *containerName = (char *)"";
168 containerName = argv[1] ;
173 CORBA::Object_var obj = orb->resolve_initial_references("RootPOA");
174 ASSERT(!CORBA::is_nil(obj));
175 PortableServer::POA_var root_poa = PortableServer::POA::_narrow(obj);
177 PortableServer::POAManager_var pman = root_poa->the_POAManager();
179 // add new container to the kill list
181 std::stringstream aCommand ;
182 aCommand << "addToKillList.py " << getpid() << " SALOME_Container" << std::ends ;
183 system(aCommand.str().c_str());
186 new ContainerServant(orb, root_poa, containerName , argc , argv, ns.get() );
195 timer.ShowAbsolute();
198 HandleServerSideSignals(orb);
200 //#define MEMORYLEAKS
203 //Destroy orb from python (for chasing memory leaks)
204 PyRun_SimpleString("from omniORB import CORBA");
205 PyRun_SimpleString("orb=CORBA.ORB_init([''], CORBA.ORB_ID)");
206 PyRun_SimpleString("orb.destroy()");
210 catch(CORBA::SystemException&)
212 INFOS("Caught CORBA::SystemException.");
214 catch(PortableServer::POA::ServantAlreadyActive&)
216 INFOS("Caught CORBA::ServantAlreadyActiveException");
218 catch(CORBA::Exception&)
220 INFOS("Caught CORBA::Exception.");
222 catch(std::exception& exc)
224 INFOS("Caught std::exception - "<<exc.what());
228 INFOS("Caught unknown exception.");
231 #ifdef _MPI_SEQ_CONTAINER_