Salome HOME
Update version to 3.2.0a1
[modules/kernel.git] / src / SALOMEDS / SALOMEDS_AttributeTarget.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_AttributeTarget.cxx
21 //  Author : Sergey RUIN
22 //  Module : SALOME
23
24 #include "SALOMEDS_AttributeTarget.hxx"
25 #include "SALOMEDS.hxx"
26
27 #include <TColStd_HSequenceOfTransient.hxx>
28
29 #include "SALOMEDSImpl_SObject.hxx"
30 #include "SALOMEDS_SObject.hxx"
31
32
33 SALOMEDS_AttributeTarget::SALOMEDS_AttributeTarget(const Handle(SALOMEDSImpl_AttributeTarget)& theAttr)
34 :SALOMEDS_GenericAttribute(theAttr)
35 {}
36
37 SALOMEDS_AttributeTarget::SALOMEDS_AttributeTarget(SALOMEDS::AttributeTarget_ptr theAttr)
38 :SALOMEDS_GenericAttribute(theAttr)
39 {}
40
41 SALOMEDS_AttributeTarget::~SALOMEDS_AttributeTarget()
42 {}
43
44 void SALOMEDS_AttributeTarget::Add(const _PTR(SObject)& theObject)
45 {
46   SALOMEDS_SObject* aSO = dynamic_cast<SALOMEDS_SObject*>(theObject.get());
47
48   if (_isLocal) {
49     SALOMEDS::Locker lock;
50     Handle(SALOMEDSImpl_AttributeTarget)::DownCast(_local_impl)->Add(aSO->GetLocalImpl());
51   }
52   else SALOMEDS::AttributeTarget::_narrow(_corba_impl)->Add(aSO->GetCORBAImpl());
53 }
54
55 std::vector<_PTR(SObject)> SALOMEDS_AttributeTarget::Get()
56 {
57   std::vector<_PTR(SObject)> aVector;
58   int aLength, i;
59   SALOMEDSClient_SObject* aSO = NULL;
60   
61   if (_isLocal) {
62     SALOMEDS::Locker lock;
63     Handle(TColStd_HSequenceOfTransient) aSeq =
64       Handle(SALOMEDSImpl_AttributeTarget)::DownCast(_local_impl)->Get();
65     aLength = aSeq->Length();
66     for (i = 1; i <= aLength; i++) {
67       aSO = new SALOMEDS_SObject(Handle(SALOMEDSImpl_SObject)::DownCast(aSeq->Value(i)));
68       aVector.push_back(_PTR(SObject)(aSO));
69     }
70   }
71   else {
72     SALOMEDS::Study::ListOfSObject_var aSeq = SALOMEDS::AttributeTarget::_narrow(_corba_impl)->Get();
73     aLength = aSeq->length();
74     aSO = new SALOMEDS_SObject(aSeq[i].in());
75     for (i = 0; i < aLength; i++) aVector.push_back(_PTR(SObject)(aSO));
76   }
77
78   return aVector;
79 }
80
81 void SALOMEDS_AttributeTarget::Remove(const _PTR(SObject)& theObject)
82 {
83   SALOMEDS_SObject* aSO = dynamic_cast<SALOMEDS_SObject*>(theObject.get());
84
85   if (_isLocal) {
86     SALOMEDS::Locker lock;
87     Handle(SALOMEDSImpl_AttributeTarget)::DownCast(_local_impl)->Remove(aSO->GetLocalImpl());
88   }
89   else SALOMEDS::AttributeTarget::_narrow(_corba_impl)->Remove(aSO->GetCORBAImpl());
90 }