Salome HOME
Merge from V6_main 13/12/2012
[samples/component.git] / src / MulComponent / MulComponent.cxx
1 // Copyright (C) 2007-2012  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 MulComponent : example of component that multiplies two numbers
24 //  File   : MulComponentEngine.cxx
25 //  Author : MARC TAJCHMAN, CEA
26 //  Module : SuperVisionTest
27 //
28 #include <stdio.h>
29 #include <unistd.h>
30 #include <fstream>
31 #include <sstream>
32 #include <string>
33
34 //#include "utilities.h"
35 #include "MulComponent.hxx"
36 #include "COMPONENT_version.h"
37
38 using namespace std;
39
40 MulComponentEngine::MulComponentEngine( CORBA::ORB_ptr orb,
41                                     PortableServer::POA_ptr poa,
42                                     PortableServer::ObjectId * contId, 
43                                     const char *instanceName,
44                                     const char *interfaceName) :
45   Engines_Component_i(orb, poa, contId, instanceName, interfaceName,1,true)
46 {
47 //  MESSAGE("MulComponentEngine::MulComponentEngine activate object instanceName("
48 //          << instanceName << ") interfaceName(" << interfaceName << ")" )
49   _thisObj = this ;
50   _id = _poa->activate_object(_thisObj);
51   _nexec = 0 ;
52 }
53
54 MulComponentEngine::MulComponentEngine()
55 {
56 }
57
58 MulComponentEngine::~MulComponentEngine()
59 {
60 }
61
62 char* MulComponentEngine::getVersion()
63 {
64 #if COMPONENT_DEVELOPMENT
65   return CORBA::string_dup(COMPONENT_VERSION_STR"dev");
66 #else
67   return CORBA::string_dup(COMPONENT_VERSION_STR);
68 #endif
69 }
70
71 void MulComponentEngine::Mul( double x , double y , double & z ) {
72   beginService( " MulComponentEngine::Mul" );
73   z = x * y ;
74   int S;
75   
76   sendMessage(NOTIF_STEP, "Mul is Computing");
77 //  S = 1+(int) (15.0*rand()/(RAND_MAX+1.0));
78   S = 5 ;
79   while ( S ) {
80     S = sleep(S);
81   }
82   MESSAGE( "MulComponentEngine::Mul( " <<  x << " , " << y << " , " << z
83        << " ) after " << S << " seconds" )
84   endService( " MulComponentEngine::Mul"  );
85 }
86
87 extern "C"
88 {
89   PortableServer::ObjectId * MulComponentEngine_factory
90      (CORBA::ORB_ptr orb,
91       PortableServer::POA_ptr poa, 
92       PortableServer::ObjectId * contId,
93       const char *instanceName,
94       const char *interfaceName)
95   {
96     MESSAGE("MulComponentEngine_factory MulComponentEngine ("
97             << instanceName << "," << interfaceName << ")");
98     MulComponentEngine * myMulComponent 
99       = new MulComponentEngine(orb, poa, contId, instanceName, interfaceName);
100     return myMulComponent->getId() ;
101   }
102 }
103
104