Salome HOME
Added @BOOST_CPPFLAGS@
[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/ or email : webmaster.salome@opencascade.com
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 "SALOMEDSImpl_SObject.hxx"
28 #include "SALOMEDS_SObject.hxx"
29
30 using namespace std;
31
32 SALOMEDS_AttributeTarget::SALOMEDS_AttributeTarget(SALOMEDSImpl_AttributeTarget* theAttr)
33 :SALOMEDS_GenericAttribute(theAttr)
34 {}
35
36 SALOMEDS_AttributeTarget::SALOMEDS_AttributeTarget(SALOMEDS::AttributeTarget_ptr theAttr)
37 :SALOMEDS_GenericAttribute(theAttr)
38 {}
39
40 SALOMEDS_AttributeTarget::~SALOMEDS_AttributeTarget()
41 {}
42
43 void SALOMEDS_AttributeTarget::Add(const _PTR(SObject)& theObject)
44 {
45   SALOMEDS_SObject* aSO = dynamic_cast<SALOMEDS_SObject*>(theObject.get());
46
47   if (_isLocal) {
48     SALOMEDS::Locker lock;
49     dynamic_cast<SALOMEDSImpl_AttributeTarget*>(_local_impl)->Add(*(aSO->GetLocalImpl()));
50   }
51   else SALOMEDS::AttributeTarget::_narrow(_corba_impl)->Add(aSO->GetCORBAImpl());
52 }
53
54 std::vector<_PTR(SObject)> SALOMEDS_AttributeTarget::Get()
55 {
56   std::vector<_PTR(SObject)> aVector;
57   int aLength, i;
58   SALOMEDSClient_SObject* aSO = NULL;
59   
60   if (_isLocal) {
61     SALOMEDS::Locker lock;
62     vector<SALOMEDSImpl_SObject> aSeq = dynamic_cast<SALOMEDSImpl_AttributeTarget*>(_local_impl)->Get();
63     aLength = aSeq.size();
64     for (i = 0; i < aLength; i++) {
65       aSO = new SALOMEDS_SObject(aSeq[i]);
66       aVector.push_back(_PTR(SObject)(aSO));
67     }
68   }
69   else {
70     SALOMEDS::Study::ListOfSObject_var aSeq = SALOMEDS::AttributeTarget::_narrow(_corba_impl)->Get();
71     aLength = aSeq->length();
72     for (i = 0; i < aLength; i++)  {
73        aSO = new SALOMEDS_SObject(aSeq[i].in());
74         aVector.push_back(_PTR(SObject)(aSO));
75     }
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     dynamic_cast<SALOMEDSImpl_AttributeTarget*>(_local_impl)->Remove(*(aSO->GetLocalImpl()));
88   }
89   else SALOMEDS::AttributeTarget::_narrow(_corba_impl)->Remove(aSO->GetCORBAImpl());
90 }