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