Salome HOME
sleep(5)
[samples/component.git] / src / DivComponent / DivComponent.cxx
1 //  SuperVisionTest DivComponent : example of component that devides two numbers
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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
21 //
22 //
23 //
24 //  File   : DivComponentEngine.cxx
25 //  Author : MARC TAJCHMAN, CEA
26 //  Module : SuperVisionTest
27
28 using namespace std;
29 #include <stdio.h>
30 #include <unistd.h>
31 #include <fstream>
32 #include <sstream>
33 #include <string>
34
35 //#include "utilities.h"
36 #include "DivComponent.hxx"
37
38 DivComponentEngine::DivComponentEngine( 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("DivComponentEngine::DivComponentEngine activate object instanceName("
46 //          << instanceName << ") interfaceName(" << interfaceName << ")" )
47   _thisObj = this ;
48   _id = _poa->activate_object(_thisObj);
49   _nexec = 0 ;
50 }
51
52 DivComponentEngine::DivComponentEngine()
53 {
54 }
55
56 DivComponentEngine::~DivComponentEngine()
57 {
58 }
59
60 void DivComponentEngine::Div( double x , double y , double & z ) {
61   beginService( " DivComponentEngine::Div" );
62   z = x / y ;
63   int S;
64   
65   sendMessage(NOTIF_STEP, "Div 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   sendMessage(NOTIF_TRACE, "Div is Much More Difficult Operation");
72   MESSAGE("DivComponentEngine::Div( " <<  x << " , " << y << " , " << z
73        << " ) after " << S << " seconds" )
74   endService( " DivComponentEngine::Div"  );
75 }
76
77 extern "C"
78 {
79   PortableServer::ObjectId * DivComponentEngine_factory
80      (CORBA::ORB_ptr orb,
81       PortableServer::POA_ptr poa, 
82       PortableServer::ObjectId * contId,
83       const char *instanceName,
84       const char *interfaceName)
85   {
86     MESSAGE("DivComponentEngine_factory DivComponentEngine ("
87             << instanceName << "," << interfaceName << ")");
88     DivComponentEngine * myDivComponent 
89       = new DivComponentEngine(orb, poa, contId, instanceName, interfaceName);
90     return myDivComponent->getId() ;
91   }
92 }
93
94