Salome HOME
RNV: fix link errors.
[samples/component.git] / src / SIGNALSComponent / SIGNALSComponent_Impl.cxx
1 // Copyright (C) 2007-2013  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
23 //  SuperVisionTest SIGNALSComponent : example of component that devides two numbers
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 #include "COMPONENT_version.h"
37
38 using namespace std;
39
40 SIGNALSComponent_Impl::SIGNALSComponent_Impl( CORBA::ORB_ptr orb,
41                                     PortableServer::POA_ptr poa,
42                                     PortableServer::ObjectId * contId, 
43                                     const char *instanceName,
44                                     const char *interfaceName) :
45   Engines_Component_i(orb, poa, contId, instanceName, interfaceName,1,true)
46 {
47   MESSAGE("SIGNALSComponent_Impl::SIGNALSComponent_Impl activate object instanceName("
48           << instanceName << ") interfaceName(" << interfaceName << ")" )
49   _thisObj = this ;
50   _id = _poa->activate_object(_thisObj);
51   NULLPTR = NULL ;
52 }
53
54 SIGNALSComponent_Impl::SIGNALSComponent_Impl() :
55   Engines_Component_i()
56 {
57   NULLPTR = NULL ;
58 }
59
60 SIGNALSComponent_Impl::~SIGNALSComponent_Impl()
61 {
62 }
63
64 char* SIGNALSComponent_Impl::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 CORBA::Long SIGNALSComponent_Impl::SIGSEGVfunc() {
74   beginService( " SIGNALSComponent_Impl::SIGSEGVfunc" );
75   cout << pthread_self() << "SIGNALSComponent_Impl::SIGSEGVfunc" << endl ;
76   int S = 1+(int) (15.0*rand()/(RAND_MAX+1.0));
77   while ( S ) {
78     S = sleep( S ) ;
79   }
80   long nullptr = *NULLPTR ;
81   endService( " SIGNALSComponent_Impl::SIGSEGVfunc"  );
82   return nullptr ;
83 }
84
85 CORBA::Long SIGNALSComponent_Impl::SIGFPEfunc( CORBA::Long a , CORBA::Long b ) {
86   beginService( " SIGNALSComponent_Impl::SIGFPEfunc" );
87   cout << pthread_self() << "SIGNALSComponent_Impl::SIGFPEfunc" << endl ;
88   int S = 1+(int) (15.0*rand()/(RAND_MAX+1.0));
89   while ( S ) {
90     S = sleep( S ) ;
91   }
92   long c = a/b ;
93   endService( " SIGNALSComponent_Impl::SIGFPEfunc"  );
94   return c ;
95 }
96
97 void SIGNALSComponent_Impl::MethodToKill() {
98   beginService( " SIGNALSComponent_Impl::MethodToKill" );
99   while ( 1 ) {
100     sleep(1) ;
101   }
102   endService( " SIGNALSComponent_Impl::MethodToKill"  );
103   return ;
104 }
105
106 void * RunMethodToKill( void * ptr ) {
107   SIGNALSComponent_Impl * mySIGNALSComponent ;
108   mySIGNALSComponent = ( SIGNALSComponent_Impl * ) ptr ;
109   mySIGNALSComponent->MethodToKill() ;
110   return ptr ;
111 }
112
113 void SIGNALSComponent_Impl::WaitKill() {
114   pthread_t T;
115   pthread_create( &T , NULL , RunMethodToKill , this ) ;
116   pthread_join( T , NULL ) ;
117 }
118
119 extern "C"
120 {
121   PortableServer::ObjectId * SIGNALSComponentEngine_factory
122      (CORBA::ORB_ptr orb,
123       PortableServer::POA_ptr poa, 
124       PortableServer::ObjectId * contId,
125       const char *instanceName,
126       const char *interfaceName)
127   {
128     MESSAGE("SIGNALSComponentEngine_factory SIGNALSComponent_Impl("
129             << instanceName << "," << interfaceName << ")");
130     SIGNALSComponent_Impl * mySIGNALSComponent 
131       = new SIGNALSComponent_Impl(orb, poa, contId, instanceName, interfaceName);
132     return mySIGNALSComponent->getId() ;
133   }
134 }
135
136