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