Salome HOME
Join modifications from branch BR_DEBUG_3_2_0b1
[samples/component.git] / src / SIGNALSComponent / SIGNALSComponent_Impl.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.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22 //
23 //
24 //  File   : SIGNALSComponent.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_Impl.hxx"
36
37 using namespace std;
38
39 SIGNALSComponent_Impl::SIGNALSComponent_Impl( 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("SIGNALSComponent_Impl::SIGNALSComponent_Impl activate object instanceName("
47           << instanceName << ") interfaceName(" << interfaceName << ")" )
48   _thisObj = this ;
49   _id = _poa->activate_object(_thisObj);
50   NULLPTR = NULL ;
51 }
52
53 SIGNALSComponent_Impl::SIGNALSComponent_Impl() :
54   Engines_Component_i()
55 {
56   NULLPTR = NULL ;
57 }
58
59 SIGNALSComponent_Impl::~SIGNALSComponent_Impl()
60 {
61 }
62
63 CORBA::Long SIGNALSComponent_Impl::SIGSEGVfunc() {
64   beginService( " SIGNALSComponent_Impl::SIGSEGVfunc" );
65   cout << pthread_self() << "SIGNALSComponent_Impl::SIGSEGVfunc" << endl ;
66   int S = 1+(int) (15.0*rand()/(RAND_MAX+1.0));
67   while ( S ) {
68     S = sleep( S ) ;
69   }
70   long nullptr = *NULLPTR ;
71   endService( " SIGNALSComponent_Impl::SIGSEGVfunc"  );
72   return nullptr ;
73 }
74
75 CORBA::Long SIGNALSComponent_Impl::SIGFPEfunc( CORBA::Long a , CORBA::Long b ) {
76   beginService( " SIGNALSComponent_Impl::SIGFPEfunc" );
77   cout << pthread_self() << "SIGNALSComponent_Impl::SIGFPEfunc" << endl ;
78   int S = 1+(int) (15.0*rand()/(RAND_MAX+1.0));
79   while ( S ) {
80     S = sleep( S ) ;
81   }
82   long c = a/b ;
83   endService( " SIGNALSComponent_Impl::SIGFPEfunc"  );
84   return c ;
85 }
86
87 void SIGNALSComponent_Impl::MethodToKill() {
88   beginService( " SIGNALSComponent_Impl::MethodToKill" );
89   while ( 1 ) {
90     sleep(1) ;
91   }
92   endService( " SIGNALSComponent_Impl::MethodToKill"  );
93   return ;
94 }
95
96 void * RunMethodToKill( void * ptr ) {
97   SIGNALSComponent_Impl * mySIGNALSComponent ;
98   mySIGNALSComponent = ( SIGNALSComponent_Impl * ) ptr ;
99   mySIGNALSComponent->MethodToKill() ;
100   return ptr ;
101 }
102
103 void SIGNALSComponent_Impl::WaitKill() {
104   pthread_t T;
105   pthread_create( &T , NULL , RunMethodToKill , this ) ;
106   pthread_join( T , NULL ) ;
107 }
108
109 extern "C"
110 {
111   PortableServer::ObjectId * SIGNALSComponentEngine_factory
112      (CORBA::ORB_ptr orb,
113       PortableServer::POA_ptr poa, 
114       PortableServer::ObjectId * contId,
115       const char *instanceName,
116       const char *interfaceName)
117   {
118     MESSAGE("SIGNALSComponentEngine_factory SIGNALSComponent_Impl("
119             << instanceName << "," << interfaceName << ")");
120     SIGNALSComponent_Impl * mySIGNALSComponent 
121       = new SIGNALSComponent_Impl(orb, poa, contId, instanceName, interfaceName);
122     return mySIGNALSComponent->getId() ;
123   }
124 }
125
126