Salome HOME
Merge from V6_main 01/04/2013
[samples/component.git] / src / TestFunctions / TestFunctionsMemory1.cxx
1 // Copyright (C) 2007-2013  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.
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 //  SuperVisionTest TestFunctionsMemory : Check of memory leaks ...
24 //  File   : TestFunctionsMemory.cxx
25 //  Author : Jean Rahuel
26 //  Module : SuperVisionTest
27 //
28 #include <iostream>
29 #include <fstream>
30 #include <unistd.h>
31
32 #include <SALOMEconfig.h>
33 #include CORBA_CLIENT_HEADER(AddComponent)
34 #include CORBA_CLIENT_HEADER(SALOME_Component)
35
36 #include "utilities.h"
37 #include "SALOME_NamingService.hxx"
38 #include "SALOME_LifeCycleCORBA.hxx"
39 #include <OpUtil.hxx>
40
41 #include "DynInvoke.hxx"
42
43 using namespace std;
44
45 int main(int argc, char **argv) {
46   CORBA::ORB_var orb = CORBA::ORB_init(argc, argv);
47   CORBA::Object_var obj = orb->resolve_initial_references("RootPOA") ;
48   PortableServer::POA_var poa = PortableServer::POA::_narrow(obj) ;
49   SALOME_NamingService _NS(orb) ;
50   SALOME_LifeCycleCORBA _LCC(&_NS) ;
51
52   Engines::EngineComponent_var AddComponent = _LCC.FindOrLoad_Component( "FactoryServer" ,
53                                                                          "AddComponent");
54   SuperVisionTest::AddComponent_var AddInterface ;
55   AddInterface = SuperVisionTest::AddComponent::_narrow( AddComponent );
56
57   SuperVisionTest::Adder_var Adder1 ;
58   bool sts1 = AddInterface->AdditionObjRef1( Adder1 ) ;
59
60   int ninParams = 0 ;
61   ServicesAnyData * inParams = NULL ;
62   int noutParams = 2 ;
63   ServicesAnyData * outParams = new ServicesAnyData[noutParams] ;
64   bool b = 0 ;
65   outParams[ 0 ].Value <<= (CORBA::Any::from_boolean ) b ;
66   outParams[ 1 ].Value <<= CORBA::Object::_nil()  ;
67   DynInvoke( AddInterface , "AdditionObjRef1" , inParams , ninParams ,
68                                                 outParams , noutParams ) ;
69   outParams[ 0 ].Value >>= sts1 ;
70   CORBA::Object_ptr objptr ;
71   outParams[ 1 ].Value >>= objptr ;
72   SuperVisionTest::Adder_var DynAdder1 ;
73   DynAdder1 = SuperVisionTest::Adder::_narrow( objptr ) ;
74
75   SuperVisionTest::Adder_var Adder2 ;
76   bool sts2 ;
77   AddInterface->AdditionObjRef2( sts2 , Adder2 ) ;
78
79   outParams[ 0 ].Value <<= (CORBA::Any::from_boolean ) b ;
80   outParams[ 1 ].Value <<= CORBA::Object::_nil()  ;
81   DynInvoke( AddInterface , "AdditionObjRef2" , inParams , ninParams ,
82                                                 outParams , noutParams ) ;
83   outParams[ 0 ].Value >>= sts2 ;
84   outParams[ 1 ].Value >>= objptr ;
85   SuperVisionTest::Adder_var DynAdder2 ;
86   DynAdder2 = SuperVisionTest::Adder::_narrow( objptr ) ;
87
88   delete [] outParams ;
89
90   int i ;
91   for ( i = 0 ; i < 100000 ; i++ ) {
92
93 // Direct call to AdditionObjRef1
94     double Func1 , z1 ;
95     Func1 = Adder1->AddWithoutSleep( 1. , 2. , z1 ) ;
96     cout << i << ". TestFunctionsMemory sts1 " << sts1 << " Func1 " << Func1 << " z1 " << z1 << endl ;
97
98 // Call to AdditionObjRef1 via dynamic invocation
99     Func1 = DynAdder1->AddWithoutSleep( 1. , 2. , z1 ) ;
100     cout << i << ". TestFunctionsMemory DynInvoke sts1 " << sts1 << " Func1 " << Func1 << " z1 " << z1
101          << endl ;
102
103 // Direct call to AdditionObjRef2
104     double Func2 , z2 ;
105     Func2 = Adder2->AddWithoutSleep( 1. , 2. , z2 ) ;
106     cout << i << ". TestFunctions sts2 " << sts2 << " Func2 " << Func2 << " z2 " << z2 << endl ;
107
108 // Call to AdditionObjRef2 via dynamic invocation
109     Func2 = DynAdder2->AddWithoutSleep( 1. , 2. , z2 ) ;
110     cout << i << ". TestFunctionsMemory DynInvoke sts2 " << sts2 << " Func2 " << Func2 << " z2 " << z2
111          << endl ;
112
113   }
114
115   Adder1->destroy() ;
116   DynAdder1->destroy() ;
117   Adder2->destroy() ;
118   DynAdder2->destroy() ;
119
120   return 0;
121 }