Salome HOME
0020523: String notebook support
[modules/kernel.git] / src / SALOMEDS / SALOMEDS_SComponent.cxx
1 //  Copyright (C) 2007-2008  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 //  File   : SALOMEDS_SComponent.cxx
23 //  Author : Sergey RUIN
24 //  Module : SALOME
25 //
26 #include "SALOMEDS_SComponent.hxx"
27
28 #include "SALOMEDS.hxx"
29 #include "SALOMEDS_SComponent_i.hxx"
30
31 #include <string> 
32
33 using namespace std; 
34
35 SALOMEDS_SComponent::SALOMEDS_SComponent(SALOMEDS::SComponent_ptr theSComponent)
36 :SALOMEDS_SObject(theSComponent) 
37 {}
38
39 SALOMEDS_SComponent::SALOMEDS_SComponent(const SALOMEDSImpl_SComponent& theSComponent)
40 :SALOMEDS_SObject(theSComponent) 
41 {}
42
43 SALOMEDS_SComponent::~SALOMEDS_SComponent()
44 {}
45
46 std::string SALOMEDS_SComponent::ComponentDataType()
47 {
48   std::string aType;
49   if (_isLocal) {
50     SALOMEDS::Locker lock;
51     aType = (dynamic_cast<SALOMEDSImpl_SComponent*>(GetLocalImpl()))->ComponentDataType();
52   }
53   else 
54     {
55       SALOMEDS::SComponent_var aCompo=SALOMEDS::SComponent::_narrow(GetCORBAImpl());
56       CORBA::String_var aString = aCompo->ComponentDataType();
57       aType=aString.in();
58     }
59
60   return aType;
61 }
62
63 bool SALOMEDS_SComponent::ComponentIOR(std::string& theID)
64 {
65   bool ret;
66   if (_isLocal) { 
67     SALOMEDS::Locker lock;
68     ret = (dynamic_cast<SALOMEDSImpl_SComponent*>(GetLocalImpl()))->ComponentIOR(theID);
69   }
70   else {
71     CORBA::String_var anIOR;
72     ret = (SALOMEDS::SComponent::_narrow(GetCORBAImpl()))->ComponentIOR(anIOR.out());
73     theID = std::string(anIOR.in());                    
74   }
75
76   return ret;
77 }
78
79 SALOMEDS::SComponent_ptr SALOMEDS_SComponent::GetSComponent()
80 {
81   if(_isLocal) {
82     if(!CORBA::is_nil(_corba_impl)) return SALOMEDS::SComponent::_narrow(GetCORBAImpl());
83     SALOMEDS::SComponent_var aSCO = SALOMEDS_SComponent_i::New(*(dynamic_cast<SALOMEDSImpl_SComponent*>(GetLocalImpl())), _orb);
84     _corba_impl = SALOMEDS::SComponent::_duplicate(aSCO);
85     return aSCO._retn();
86   }
87   else {
88     return SALOMEDS::SComponent::_narrow(GetCORBAImpl());
89   }
90   return SALOMEDS::SComponent::_nil();
91 }