Salome HOME
Join modifications from branch BR_DEBUG_3_2_0b1
[modules/geom.git] / src / GEOM / geom.cxx
1 //  GEOM GEOM : implementaion of GEOM_Gen.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.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22 //
23 //
24 //  File   : geom.cxx
25 //  Author : Lucien PIGNOLONI
26 //  Module : GEOM
27 //  $Header$
28
29 #include <Standard_Stream.hxx>
30
31 #include <CORBA.h>
32 #include <GEOM_Gen_i.hh>
33 #include <SALOME_NamingService.hxx>
34
35 //==================================================================================
36 // function : main()                      MAIN 
37 // purpose  :
38 //==================================================================================
39 int main(int argc, char** argv)
40 {
41   try {
42     // Create and initialise the ORB.
43     //    CORBA::ORB_var orb = CORBA::ORB_init(argc, argv, "omniORB4");
44     CORBA::ORB_var orb = CORBA::ORB_init(argc, argv, "omniORB3");
45     
46     // Obtain a reference to the root POA.
47     CORBA::Object_var obj = orb->resolve_initial_references("RootPOA");
48     PortableServer::POA_var poa = PortableServer::POA::_narrow(obj);
49
50     // We allocate the objects on the heap.  Since these are reference
51     // counted objects, they will be deleted by the POA when they are no
52     // longer needed.    
53 #ifdef WNT
54     GEOM_Gen_i * myGEOM_Gen_i = new GEOM_Gen_i((CORBA::ORB_ptr)orb, poa, 0, 0, 0 );
55 #else
56     GEOM_Gen_i * myGEOM_Gen_i = new GEOM_Gen_i(orb);
57 #endif
58
59     // Activate the objects.  This tells the POA that the objects are
60     // ready to accept requests.
61     PortableServer::ObjectId_var myGEOM_Gen_iid = poa->activate_object(myGEOM_Gen_i);
62     myGEOM_Gen_i->register_name("/myGEOM_Gen");
63  
64     // Obtain a POAManager, and tell the POA to start accepting
65     // requests on its objects.
66     PortableServer::POAManager_var pman = poa->the_POAManager();
67     pman->activate();
68
69     orb->run();
70     orb->destroy();
71   }
72   catch(CORBA::SystemException&) {
73     cerr << "Caught CORBA::SystemException." << endl;
74   }
75   catch(CORBA::Exception&) {
76     cerr << "Caught CORBA::Exception." << endl;
77   }
78   catch(omniORB::fatalException& fe) {
79     cerr << "Caught omniORB::fatalException:" << endl;
80     cerr << "  file: " << fe.file() << endl;
81     cerr << "  line: " << fe.line() << endl;
82     cerr << "  msg: " << fe.errmsg() << endl;
83   }
84   catch(...) {
85     cerr << "Caught unknown exception." << endl;
86   }
87   return 0;
88 }