Salome HOME
To avoid compilation pb on RedHat 8.0.
[modules/kernel.git] / src / SALOMEDS / SALOMEDS_SComponent_i.cxx
1 // Copyright (C) 2005  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
2 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
3 // 
4 // This library is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU Lesser General Public
6 // License as published by the Free Software Foundation; either 
7 // version 2.1 of the License.
8 // 
9 // This library is distributed in the hope that it will be useful 
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of 
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
12 // Lesser General Public License for more details.
13 //
14 // You should have received a copy of the GNU Lesser General Public  
15 // License along with this library; if not, write to the Free Software 
16 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17 //
18 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 //
20 //  File   : SALOMEDS_SComponent_i.cxx
21 //  Author : Sergey RUIN
22 //  Module : SALOME
23
24
25 #include "SALOMEDS_SComponent_i.hxx"
26 #include "SALOMEDS.hxx"
27 #include "utilities.h"
28 #include <map>
29
30 using namespace std;
31
32 SALOMEDS::SComponent_ptr SALOMEDS_SComponent_i::New(const Handle(SALOMEDSImpl_SComponent)& theImpl, CORBA::ORB_ptr theORB)
33 {
34 /*
35   static std::map<SALOMEDSImpl_SComponent*, SALOMEDS_SComponent_i*> _mapOfSCO;
36   SALOMEDS::SComponent_var sco;
37   SALOMEDS_SComponent_i* sco_servant = NULL;
38
39   if(_mapOfSCO.find(theImpl.operator->()) != _mapOfSCO.end()) {
40     sco_servant = _mapOfSCO[theImpl.operator->()];
41   }
42   else {
43     sco_servant = new SALOMEDS_SComponent_i(theImpl, theORB);
44     _mapOfSCO[theImpl.operator->()] = sco_servant;
45   }
46
47   sco  = SALOMEDS::SComponent::_narrow(sco_servant->SComponent::_this()); 
48 */
49   SALOMEDS_SComponent_i* sco_servant = new SALOMEDS_SComponent_i(theImpl, theORB);
50   SALOMEDS::SComponent_var sco  = SALOMEDS::SComponent::_narrow(sco_servant->SComponent::_this()); 
51
52   return sco._retn();
53 }    
54
55 //============================================================================
56 /*! Function : constructor
57  *  Purpose  : 
58  */
59 //============================================================================
60 SALOMEDS_SComponent_i::SALOMEDS_SComponent_i(const Handle(SALOMEDSImpl_SComponent)& theImpl, CORBA::ORB_ptr orb)
61   :SALOMEDS_SObject_i(theImpl, orb)
62 {}
63   
64 //============================================================================
65 /*! Function : destructor
66  *  Purpose  : 
67  */
68 //============================================================================
69 SALOMEDS_SComponent_i::~SALOMEDS_SComponent_i()
70 {}
71    
72 //============================================================================
73 /*! Function : ComponentDataType
74  *  Purpose  : 
75  */
76 //============================================================================
77 char* SALOMEDS_SComponent_i::ComponentDataType()
78 {
79   SALOMEDS::Locker lock;
80   TCollection_AsciiString aType = Handle(SALOMEDSImpl_SComponent)::DownCast(_impl)->ComponentDataType();
81   return CORBA::string_dup(aType.ToCString());
82 }
83   
84
85 //============================================================================
86 /*! Function : ComponentIOR
87  *  Purpose  : 
88  */
89 //============================================================================
90 CORBA::Boolean SALOMEDS_SComponent_i::ComponentIOR(CORBA::String_out IOR)
91 {
92   SALOMEDS::Locker lock;
93   TCollection_AsciiString ior;
94   if(!Handle(SALOMEDSImpl_SComponent)::DownCast(_impl)->ComponentIOR(ior)) {
95     IOR = CORBA::string_dup("");
96     return false;
97   }
98   IOR = CORBA::string_dup(ior.ToCString());
99   return true;
100 }