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