1 // Copyright (C) 2007-2014 CEA/DEN, EDF R&D, 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 #include "SALOME_Launcher.hxx"
24 #include "utilities.h"
28 #include <libxml/parser.h>
30 void AttachDebugger();
31 void terminateHandler(void);
32 void unexpectedHandler(void);
37 if(getenv ("DEBUGGER"))
39 std::stringstream exec;
40 exec << "$DEBUGGER SALOME_LauncherServer " << getpid() << "&";
41 MESSAGE ( exec.str() );
42 system(exec.str().c_str());
48 void terminateHandler(void)
50 MESSAGE ( "Terminate: not managed exception !" );
54 void unexpectedHandler(void)
56 MESSAGE ( "Unexpected: unexpected exception !" );
61 int main(int argc, char* argv[])
63 if(getenv ("DEBUGGER"))
65 // setsig(SIGSEGV,&Handler);
66 std::set_terminate(&terminateHandler);
67 std::set_unexpected(&unexpectedHandler);
70 * To avoid memory leak, need to call xmlInitParser in the main thread
71 * and not call xmlCleanupParser later (cause implicit reinitialization in thread)
75 PortableServer::POA_var root_poa;
76 PortableServer::POAManager_var pman;
77 CORBA::Object_var obj;
79 CORBA::ORB_var orb = CORBA::ORB_init( argc , argv ) ;
80 // LocalTraceCollector *myThreadTrace = SALOMETraceCollector::instance(orb);
84 obj = orb->resolve_initial_references("RootPOA");
85 if(!CORBA::is_nil(obj))
86 root_poa = PortableServer::POA::_narrow(obj);
87 if(!CORBA::is_nil(root_poa))
88 pman = root_poa->the_POAManager();
90 catch(CORBA::COMM_FAILURE&){
91 MESSAGE( "Container: CORBA::COMM_FAILURE: Unable to contact the Naming Service" );
94 SALOME_Launcher *lServ=new SALOME_Launcher(orb,root_poa);
99 }catch(CORBA::SystemException&){
100 MESSAGE("Caught CORBA::SystemException.");
101 }catch(PortableServer::POA::WrongPolicy&){
102 MESSAGE("Caught CORBA::WrongPolicyException.");
103 }catch(PortableServer::POA::ServantAlreadyActive&){
104 MESSAGE("Caught CORBA::ServantAlreadyActiveException");
105 }catch(CORBA::Exception&){
106 MESSAGE("Caught CORBA::Exception.");
107 }catch(std::exception& exc){
108 MESSAGE("Caught std::exception - "<<exc.what());
110 MESSAGE("Caught unknown exception.");
113 // delete myThreadTrace;