Salome HOME
Porting to CAS-6.3
[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 #include "utilities.h"
36
37 //==================================================================================
38 // function : main()                      MAIN 
39 // purpose  :
40 //==================================================================================
41 int main(int argc, char** argv)
42 {
43   try {
44     // Create and initialise the ORB.
45     //    CORBA::ORB_var orb = CORBA::ORB_init(argc, argv, "omniORB4");
46     CORBA::ORB_var orb = CORBA::ORB_init(argc, argv, "omniORB3");
47     
48     // Obtain a reference to the root POA.
49     CORBA::Object_var obj = orb->resolve_initial_references("RootPOA");
50     PortableServer::POA_var poa = PortableServer::POA::_narrow(obj);
51
52     // We allocate the objects on the heap.  Since these are reference
53     // counted objects, they will be deleted by the POA when they are no
54     // longer needed.    
55 #ifdef WNT
56     GEOM_Gen_i * myGEOM_Gen_i = new GEOM_Gen_i((CORBA::ORB_ptr)orb, poa, 0, 0, 0 );
57 #else
58     GEOM_Gen_i * myGEOM_Gen_i = new GEOM_Gen_i(orb);
59 #endif
60
61     // Activate the objects.  This tells the POA that the objects are
62     // ready to accept requests.
63     PortableServer::ObjectId_var myGEOM_Gen_iid = poa->activate_object(myGEOM_Gen_i);
64     myGEOM_Gen_i->register_name("/myGEOM_Gen");
65  
66     // Obtain a POAManager, and tell the POA to start accepting
67     // requests on its objects.
68     PortableServer::POAManager_var pman = poa->the_POAManager();
69     pman->activate();
70
71     orb->run();
72     orb->destroy();
73   }
74   catch(CORBA::SystemException&) {
75     INFOS ( "Caught CORBA::SystemException." );
76   }
77   catch(CORBA::Exception&) {
78     INFOS ( "Caught CORBA::Exception." );
79   }
80   catch(omniORB::fatalException& fe) {
81     INFOS ( "Caught omniORB::fatalException:" );
82     INFOS ( "  file: " << fe.file() );
83     INFOS ( "  line: " << fe.line() );
84     INFOS ( "  msg: " << fe.errmsg() );
85   }
86   catch(...) {
87     INFOS ( "Caught unknown exception." );
88   }
89   return 0;
90 }