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