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