Salome HOME
Merge from V6_main_20120808 08Aug12
[samples/component.git] / src / UndefinedSymbolComponent / UndefinedSymbolComponent.cxx
1 // Copyright (C) 2007-2012  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 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
37 using namespace std;
38
39 UndefinedSymbolComponentEngine::UndefinedSymbolComponentEngine( CORBA::ORB_ptr orb,
40                                     PortableServer::POA_ptr poa,
41                                     PortableServer::ObjectId * contId, 
42                                     const char *instanceName,
43                                     const char *interfaceName) :
44   Engines_Component_i(orb, poa, contId, instanceName, interfaceName,1,true)
45 {
46 //  MESSAGE("UndefinedSymbolComponentEngine::UndefinedSymbolComponentEngine activate object instanceName("
47 //          << instanceName << ") interfaceName(" << interfaceName << ")" )
48   _thisObj = this ;
49   _id = _poa->activate_object(_thisObj);
50 }
51
52 UndefinedSymbolComponentEngine::UndefinedSymbolComponentEngine() :
53   Engines_Component_i()
54 {
55 }
56
57 UndefinedSymbolComponentEngine::~UndefinedSymbolComponentEngine()
58 {
59 }
60
61 extern "C" { long CallUndefined() ; } ;
62
63 CORBA::Long UndefinedSymbolComponentEngine::UndefinedSymbol() {
64   beginService( " UndefinedSymbolComponentEngine::UndefinedSymbol" );
65   int S = 10 ;
66   while ( S ) {
67     S = sleep( S ) ;
68   }
69   long value = CallUndefined() ;
70   endService( " UndefinedSymbolComponentEngine::UndefinedSymbol"  );
71   return value ;
72 }
73
74 extern "C"
75 {
76   PortableServer::ObjectId * UndefinedSymbolComponentEngine_factory
77      (CORBA::ORB_ptr orb,
78       PortableServer::POA_ptr poa, 
79       PortableServer::ObjectId * contId,
80       const char *instanceName,
81       const char *interfaceName)
82   {
83     MESSAGE("UndefinedSymbolComponentEngine_factory UndefinedSymbolComponentEngine ("
84             << instanceName << "," << interfaceName << ")");
85     UndefinedSymbolComponentEngine * myUndefinedSymbolComponent 
86       = new UndefinedSymbolComponentEngine(orb, poa, contId, instanceName, interfaceName);
87     return myUndefinedSymbolComponent->getId() ;
88   }
89 }
90
91