Salome HOME
sources v1.2
[modules/yacs.git] / src / TestContainer / SALOME_TestComponent_i.cxx
1 //  SALOME TestContainer : test of container creation and its life cycle
2 //
3 //  Copyright (C) 2003  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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
21 //
22 //
23 //
24 //  File   : SALOME_TestComponent_i.cxx
25 //  Author : Paul RASCLE, EDF - MARC TAJCHMAN, CEA
26 //  Module : SALOME
27 //  $Header$
28
29 using namespace std;
30 #include "utilities.h"
31 #include "SALOME_TestComponent_i.hxx"
32 #include <stdio.h>
33
34 Engines_TestComponent_i::Engines_TestComponent_i(CORBA::ORB_ptr orb,
35                                                  PortableServer::POA_ptr poa,
36                                                  PortableServer::ObjectId * contId, 
37                                                  const char *instanceName, 
38                                                  const char *interfaceName) :
39   Engines_Component_i(orb, poa, contId, instanceName, interfaceName)
40 {
41   MESSAGE("activate object")
42   _thisObj = this ;
43   _id = _poa->activate_object(_thisObj);
44   //SCRUTE(this)
45 }
46
47 Engines_TestComponent_i::Engines_TestComponent_i()
48 {
49 }
50
51 Engines_TestComponent_i::~Engines_TestComponent_i()
52 {
53 }
54
55 char* Engines_TestComponent_i::Coucou(CORBA::Long L)
56 {
57   char s[100];
58   sprintf(s, "TestComponent_i : L = %ld", (long) L);
59
60   return CORBA::string_dup(s);
61 }
62
63 extern "C"
64 {
65   PortableServer::ObjectId * SalomeTestComponentEngine_factory(
66                                  CORBA::ORB_ptr orb,
67                                  PortableServer::POA_ptr poa, 
68                                  PortableServer::ObjectId * contId,
69                                  const char *instanceName, 
70                                  const char *interfaceName)
71   {
72     MESSAGE("PortableServer::ObjectId * TestComponent_factory()");
73     SCRUTE(interfaceName);
74     Engines_TestComponent_i * myTestComponent 
75       = new Engines_TestComponent_i(orb, poa, contId, instanceName, interfaceName);
76     return myTestComponent->getId() ;
77   }
78 }
79