Salome HOME
Updated copyright comment
[samples/component.git] / src / SIGNALSComponent / SIGNALSComponent.cxx
1 // Copyright (C) 2007-2024  CEA, EDF, 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, or (at your option) any later version.
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   : SIGNALSComponentEngine.cxx
25 //  Author : MARC TAJCHMAN, CEA
26 //  Module : SuperVisionTest
27 //
28 #include <stdio.h>
29 #ifndef WIN32
30 #include <unistd.h>
31 #endif
32 #include <fstream>
33 #include <sstream>
34 #include <string>
35
36 //#include "utilities.h"
37 #include "SIGNALSComponent.hxx"
38
39 using namespace std;
40
41 SIGNALSComponentEngine::SIGNALSComponentEngine( CORBA::ORB_ptr orb,
42                                     PortableServer::POA_ptr poa,
43                                     PortableServer::ObjectId * contId, 
44                                     const char *instanceName,
45                                     const char *interfaceName, bool withRegistry) :
46   Engines_Component_i(orb, poa, contId, instanceName, interfaceName,1,withRegistry)
47 {
48   MESSAGE("SIGNALSComponentEngine::SIGNALSComponentEngine activate object instanceName("
49           << instanceName << ") interfaceName(" << interfaceName << ")" )
50   _thisObj = this ;
51   _id = _poa->activate_object(_thisObj);
52   NULLPTR = NULL ;
53 }
54
55 SIGNALSComponentEngine::SIGNALSComponentEngine() :
56   Engines_Component_i()
57 {
58   NULLPTR = NULL ;
59 }
60
61 SIGNALSComponentEngine::~SIGNALSComponentEngine()
62 {
63 }
64
65 CORBA::Long SIGNALSComponentEngine::SIGSEGVfunc() {
66   beginService( " SIGNALSComponentEngine::SIGSEGVfunc" );
67   int S = 10 ;
68   while ( S ) {
69     S = sleep( S ) ;
70   }
71   long nullptr = *NULLPTR ;
72   endService( " SIGNALSComponentEngine::SIGSEGVfunc"  );
73   return nullptr ;
74 }
75
76 CORBA::Long SIGNALSComponentEngine::SIGFPEfunc( CORBA::Long a , CORBA::Long b ) {
77   beginService( " SIGNALSComponentEngine::SIGFPEfunc" );
78   int S = 10 ;
79   while ( S ) {
80     S = sleep( S ) ;
81   }
82   long c = a/b ;
83   endService( " SIGNALSComponentEngine::SIGFPEfunc"  );
84   return c ;
85 }
86
87 extern "C"
88 {
89   PortableServer::ObjectId * SIGNALSComponentEngine_factory
90      (CORBA::ORB_ptr orb,
91       PortableServer::POA_ptr poa, 
92       PortableServer::ObjectId * contId,
93       const char *instanceName,
94       const char *interfaceName)
95   {
96     MESSAGE("SIGNALSComponentEngine_factory SIGNALSComponentEngine ("
97             << instanceName << "," << interfaceName << ")");
98     SIGNALSComponentEngine * mySIGNALSComponent = nullptr;
99     CORBA::Object_var o = poa->id_to_reference(*contId);
100     Engines::Container_var cont = Engines::Container::_narrow(o);    
101     if(cont->is_SSL_mode())
102     {
103       mySIGNALSComponent = new SIGNALSComponentEngine_SSL(orb, poa, contId, instanceName, interfaceName);
104     }
105     else
106     {
107       mySIGNALSComponent = new SIGNALSComponentEngine_No_SSL(orb, poa, contId, instanceName, interfaceName);
108     }
109     return mySIGNALSComponent->getId() ;
110   }
111 }
112
113