Salome HOME
Updated copyright comment
[modules/kernel.git] / src / SALOMEDS / SALOMEDS_AttributeTarget.cxx
1 // Copyright (C) 2007-2024  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_AttributeTarget.cxx
24 //  Author : Sergey RUIN
25 //  Module : SALOME
26 //
27 #include "SALOMEDS_AttributeTarget.hxx"
28 #include "SALOMEDS.hxx"
29
30 #include "SALOMEDSImpl_SObject.hxx"
31 #include "SALOMEDS_SObject.hxx"
32
33 SALOMEDS_AttributeTarget::SALOMEDS_AttributeTarget(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     dynamic_cast<SALOMEDSImpl_AttributeTarget*>(_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     std::vector<SALOMEDSImpl_SObject> aSeq = dynamic_cast<SALOMEDSImpl_AttributeTarget*>(_local_impl)->Get();
64     aLength = (int)aSeq.size(); //!< TODO: conversion from size_t to int
65     for (i = 0; i < aLength; i++) {
66       aSO = new SALOMEDS_SObject(aSeq[i]);
67       aVector.push_back(_PTR(SObject)(aSO));
68     }
69   }
70   else {
71     SALOMEDS::Study::ListOfSObject_var aSeq = SALOMEDS::AttributeTarget::_narrow(_corba_impl)->Get();
72     aLength = aSeq->length();
73     for (i = 0; i < aLength; i++)  {
74        aSO = new SALOMEDS_SObject(aSeq[i].in());
75         aVector.push_back(_PTR(SObject)(aSO));
76     }
77   }
78
79   return aVector;
80 }
81
82 void SALOMEDS_AttributeTarget::Remove(const _PTR(SObject)& theObject)
83 {
84   SALOMEDS_SObject* aSO = dynamic_cast<SALOMEDS_SObject*>(theObject.get());
85
86   if (_isLocal) {
87     SALOMEDS::Locker lock;
88     dynamic_cast<SALOMEDSImpl_AttributeTarget*>(_local_impl)->Remove(*(aSO->GetLocalImpl()));
89   }
90   else SALOMEDS::AttributeTarget::_narrow(_corba_impl)->Remove(aSO->GetCORBAImpl());
91 }