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