Salome HOME
Updated copyright comment
[samples/component.git] / src / UndefinedSymbolComponent / UndefinedSymbolComponent.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 UndefinedSymbolComponent : example of component that devides two numbers
24 //  File   : UndefinedSymbolComponentEngine.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 "UndefinedSymbolComponent.hxx"
36 #include "COMPONENT_version.h"
37
38 using namespace std;
39
40 UndefinedSymbolComponentEngine::UndefinedSymbolComponentEngine( CORBA::ORB_ptr orb,
41                                     PortableServer::POA_ptr poa,
42                                     PortableServer::ObjectId * contId, 
43                                     const char *instanceName,
44                                     const char *interfaceName, bool withRegistry) :
45   Engines_Component_i(orb, poa, contId, instanceName, interfaceName,1,withRegistry)
46 {
47 //  MESSAGE("UndefinedSymbolComponentEngine::UndefinedSymbolComponentEngine activate object instanceName("
48 //          << instanceName << ") interfaceName(" << interfaceName << ")" )
49   _thisObj = this ;
50   _id = _poa->activate_object(_thisObj);
51 }
52
53 UndefinedSymbolComponentEngine::UndefinedSymbolComponentEngine() :
54   Engines_Component_i()
55 {
56 }
57
58 UndefinedSymbolComponentEngine::~UndefinedSymbolComponentEngine()
59 {
60 }
61
62 char* UndefinedSymbolComponentEngine::getVersion()
63 {
64 #if COMPONENT_DEVELOPMENT
65   return CORBA::string_dup(COMPONENT_VERSION_STR"dev");
66 #else
67   return CORBA::string_dup(COMPONENT_VERSION_STR);
68 #endif
69 }
70
71 extern "C" { long CallUndefined() ; } ;
72
73 CORBA::Long UndefinedSymbolComponentEngine::UndefinedSymbol() {
74   beginService( " UndefinedSymbolComponentEngine::UndefinedSymbol" );
75   int S = 10 ;
76   while ( S ) {
77     S = sleep( S ) ;
78   }
79   long value = CallUndefined() ;
80   endService( " UndefinedSymbolComponentEngine::UndefinedSymbol"  );
81   return value ;
82 }
83
84 extern "C"
85 {
86   PortableServer::ObjectId * UndefinedSymbolComponentEngine_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("UndefinedSymbolComponentEngine_factory UndefinedSymbolComponentEngine ("
94             << instanceName << "," << interfaceName << ")");
95     UndefinedSymbolComponentEngine * myUndefinedSymbolComponent = nullptr;
96     CORBA::Object_var o = poa->id_to_reference(*contId);
97     Engines::Container_var cont = Engines::Container::_narrow(o);    
98     if(cont->is_SSL_mode())
99      {
100        myUndefinedSymbolComponent = new UndefinedSymbolComponentEngine_SSL(orb, poa, contId, instanceName, interfaceName);
101      }
102     else
103     {
104       myUndefinedSymbolComponent = new UndefinedSymbolComponentEngine_No_SSL(orb, poa, contId, instanceName, interfaceName);
105     }
106     return myUndefinedSymbolComponent->getId() ;
107   }
108 }
109
110