Salome HOME
CCAR: remove some memory leaks in non local SALOMEDS
[modules/kernel.git] / src / SALOMEDS / SALOMEDS_AttributeSequenceOfInteger.cxx
1 //  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, 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.
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 //  File   : SALOMEDS_AttributeSequenceOfInteger.cxx
23 //  Author : Sergey RUIN
24 //  Module : SALOME
25 //
26 #include "SALOMEDS_AttributeSequenceOfInteger.hxx"
27 #include "SALOMEDS.hxx"
28
29 SALOMEDS_AttributeSequenceOfInteger::SALOMEDS_AttributeSequenceOfInteger
30                   (SALOMEDSImpl_AttributeSequenceOfInteger* theAttr)
31 :SALOMEDS_GenericAttribute(theAttr)
32 {}
33
34 SALOMEDS_AttributeSequenceOfInteger::SALOMEDS_AttributeSequenceOfInteger
35                   (SALOMEDS::AttributeSequenceOfInteger_ptr theAttr)
36 :SALOMEDS_GenericAttribute(theAttr)
37 {}
38
39 SALOMEDS_AttributeSequenceOfInteger::~SALOMEDS_AttributeSequenceOfInteger()
40 {}
41
42 void SALOMEDS_AttributeSequenceOfInteger::Assign(const std::vector<int>& other)
43 {
44   int i, aLength = other.size();
45   if (_isLocal) {
46     CheckLocked();
47     SALOMEDS::Locker lock;
48     dynamic_cast<SALOMEDSImpl_AttributeSequenceOfInteger*>(_local_impl)->Assign(other);
49   }
50   else {
51     SALOMEDS::LongSeq_var aSeq = new SALOMEDS::LongSeq();
52     aSeq->length(aLength);
53     for (i = 0; i < aLength; i++) aSeq[i] = other[i];
54     SALOMEDS::AttributeSequenceOfInteger::_narrow(_corba_impl)->Assign(aSeq);
55   }
56 }
57
58 std::vector<int> SALOMEDS_AttributeSequenceOfInteger::CorbaSequence()
59 {
60   std::vector<int> aVector;
61   int i, aLength;
62   if (_isLocal) {
63     SALOMEDS::Locker lock;
64     SALOMEDSImpl_AttributeSequenceOfInteger* aSeqAttr;
65     aSeqAttr = dynamic_cast<SALOMEDSImpl_AttributeSequenceOfInteger*>(_local_impl);
66     aLength = aSeqAttr->Length();
67     for (i = 1; i <=aLength; i++) aVector.push_back(aSeqAttr->Value(i));
68   }
69   else {
70     SALOMEDS::AttributeSequenceOfInteger_var aSeqAttr =
71       SALOMEDS::AttributeSequenceOfInteger::_narrow(_corba_impl);
72     aLength = aSeqAttr->Length();
73     for (i = 1; i <=aLength; i++) aVector.push_back(aSeqAttr->Value(i));
74   }
75   return aVector;
76 }
77
78 void SALOMEDS_AttributeSequenceOfInteger::Add(int value)
79 {
80   if (_isLocal) {
81     CheckLocked();
82     SALOMEDS::Locker lock;
83     dynamic_cast<SALOMEDSImpl_AttributeSequenceOfInteger*>(_local_impl)->Add(value);
84   }
85   else SALOMEDS::AttributeSequenceOfInteger::_narrow(_corba_impl)->Add(value);
86 }
87
88 void SALOMEDS_AttributeSequenceOfInteger::Remove(int index)
89 {
90   if (_isLocal) {
91     CheckLocked();
92     SALOMEDS::Locker lock;
93     dynamic_cast<SALOMEDSImpl_AttributeSequenceOfInteger*>(_local_impl)->Remove(index);
94   }
95   else SALOMEDS::AttributeSequenceOfInteger::_narrow(_corba_impl)->Remove(index);
96 }
97
98 void SALOMEDS_AttributeSequenceOfInteger::ChangeValue(int index, int value)
99 {
100   if (_isLocal) {
101     CheckLocked();
102     SALOMEDS::Locker lock;
103     dynamic_cast<SALOMEDSImpl_AttributeSequenceOfInteger*>(_local_impl)->ChangeValue(index, value);
104   }
105   else SALOMEDS::AttributeSequenceOfInteger::_narrow(_corba_impl)->ChangeValue(index, value);
106 }
107
108 int SALOMEDS_AttributeSequenceOfInteger::Value(int index)
109 {
110   int aValue;
111   if (_isLocal) {
112     SALOMEDS::Locker lock;
113     aValue = dynamic_cast<SALOMEDSImpl_AttributeSequenceOfInteger*>(_local_impl)->Value(index);
114   }
115   else aValue = SALOMEDS::AttributeSequenceOfInteger::_narrow(_corba_impl)->Value(index);
116   return aValue;
117 }
118
119 int SALOMEDS_AttributeSequenceOfInteger::Length()
120 {
121   int aValue;
122   if (_isLocal) {
123     SALOMEDS::Locker lock;
124     aValue = dynamic_cast<SALOMEDSImpl_AttributeSequenceOfInteger*>(_local_impl)-> Length();
125   }
126   else aValue = SALOMEDS::AttributeSequenceOfInteger::_narrow(_corba_impl)-> Length();
127   return aValue;
128 }