Salome HOME
Join modifications from branch V3_1_0_For_CCRT
[samples/component.git] / src / SIGNALSComponent / SIGNALSComponent.cxx
1 //  SuperVisionTest SIGNALSComponent : 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   : SIGNALSComponentEngine.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 "SIGNALSComponent.hxx"
36
37 using namespace std;
38
39 SIGNALSComponentEngine::SIGNALSComponentEngine( CORBA::ORB_ptr orb,
40                                     PortableServer::POA_ptr poa,
41                                     PortableServer::ObjectId * contId, 
42                                     const char *instanceName,
43                                     const char *interfaceName) :
44   Engines_Component_i(orb, poa, contId, instanceName, interfaceName,1,true)
45 {
46   MESSAGE("SIGNALSComponentEngine::SIGNALSComponentEngine activate object instanceName("
47           << instanceName << ") interfaceName(" << interfaceName << ")" )
48   _thisObj = this ;
49   _id = _poa->activate_object(_thisObj);
50   NULLPTR = NULL ;
51 }
52
53 SIGNALSComponentEngine::SIGNALSComponentEngine() :
54   Engines_Component_i()
55 {
56   NULLPTR = NULL ;
57 }
58
59 SIGNALSComponentEngine::~SIGNALSComponentEngine()
60 {
61 }
62
63 CORBA::Long SIGNALSComponentEngine::SIGSEGVfunc() {
64   beginService( " SIGNALSComponentEngine::SIGSEGVfunc" );
65   int S = 10 ;
66   while ( S ) {
67     S = sleep( S ) ;
68   }
69   long nullptr = *NULLPTR ;
70   endService( " SIGNALSComponentEngine::SIGSEGVfunc"  );
71   return nullptr ;
72 }
73
74 CORBA::Long SIGNALSComponentEngine::SIGFPEfunc( CORBA::Long a , CORBA::Long b ) {
75   beginService( " SIGNALSComponentEngine::SIGFPEfunc" );
76   int S = 10 ;
77   while ( S ) {
78     S = sleep( S ) ;
79   }
80   long c = a/b ;
81   endService( " SIGNALSComponentEngine::SIGFPEfunc"  );
82   return c ;
83 }
84
85 extern "C"
86 {
87   PortableServer::ObjectId * SIGNALSComponentEngine_factory
88      (CORBA::ORB_ptr orb,
89       PortableServer::POA_ptr poa, 
90       PortableServer::ObjectId * contId,
91       const char *instanceName,
92       const char *interfaceName)
93   {
94     MESSAGE("SIGNALSComponentEngine_factory SIGNALSComponentEngine ("
95             << instanceName << "," << interfaceName << ")");
96     SIGNALSComponentEngine * mySIGNALSComponent 
97       = new SIGNALSComponentEngine(orb, poa, contId, instanceName, interfaceName);
98     return mySIGNALSComponent->getId() ;
99   }
100 }
101
102