1 // SALOME SALOMEDS : data structure of SALOME and sources of Salome data server
3 // Copyright (C) 2003 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
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.
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.
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
20 // See http://www.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org
24 // File : SALOMEDS_AttributeSequenceOfReal_i.cxx
25 // Author : Yves FRICAUD
29 #include "SALOMEDS_AttributeSequenceOfReal_i.hxx"
30 #include "SALOMEDS.hxx"
32 #include <TColStd_HSequenceOfReal.hxx>
36 void SALOMEDS_AttributeSequenceOfReal_i::Assign(const SALOMEDS::DoubleSeq& other)
38 SALOMEDS::Locker lock;
41 Handle(TColStd_HSequenceOfReal) CasCadeSeq = new TColStd_HSequenceOfReal;
42 for (int i = 0; i < other.length(); i++) {
43 CasCadeSeq->Append(other[i]);
45 Handle(SALOMEDS_SequenceOfRealAttribute)::DownCast(_myAttr)->Assign(CasCadeSeq);
48 SALOMEDS::DoubleSeq* SALOMEDS_AttributeSequenceOfReal_i::CorbaSequence()
50 SALOMEDS::Locker lock;
52 SALOMEDS::DoubleSeq_var CorbaSeq = new SALOMEDS::DoubleSeq;
53 Handle(SALOMEDS_SequenceOfRealAttribute) CasCadeSeq = Handle(SALOMEDS_SequenceOfRealAttribute)::DownCast(_myAttr);
54 CorbaSeq->length(CasCadeSeq->Length());
55 for (int i = 0; i < CasCadeSeq->Length(); i++) {
56 CorbaSeq[i] = CasCadeSeq->Value(i+1);;
58 return CorbaSeq._retn();
61 void SALOMEDS_AttributeSequenceOfReal_i::Add(CORBA::Double value)
63 SALOMEDS::Locker lock;
66 Handle(SALOMEDS_SequenceOfRealAttribute)::DownCast(_myAttr)->Add(value);
69 void SALOMEDS_AttributeSequenceOfReal_i::Remove(CORBA::Long index)
71 SALOMEDS::Locker lock;
74 Handle(SALOMEDS_SequenceOfRealAttribute)::DownCast(_myAttr)->Remove(index);
77 void SALOMEDS_AttributeSequenceOfReal_i::ChangeValue(CORBA::Long index, CORBA::Double value)
79 SALOMEDS::Locker lock;
82 Handle(SALOMEDS_SequenceOfRealAttribute)::DownCast(_myAttr)->ChangeValue(index, value);
85 CORBA::Double SALOMEDS_AttributeSequenceOfReal_i::Value(CORBA::Short index)
87 SALOMEDS::Locker lock;
89 return Handle(SALOMEDS_SequenceOfRealAttribute)::DownCast(_myAttr)->Value(index);
92 CORBA::Long SALOMEDS_AttributeSequenceOfReal_i::Length()
94 SALOMEDS::Locker lock;
96 return Handle(SALOMEDS_SequenceOfRealAttribute)::DownCast(_myAttr)->Length();
99 char* SALOMEDS_AttributeSequenceOfReal_i::Store() {
100 SALOMEDS::Locker lock;
102 Handle(SALOMEDS_SequenceOfRealAttribute) CasCadeSeq = Handle(SALOMEDS_SequenceOfRealAttribute)::DownCast(_myAttr);
103 Standard_Integer aLength = CasCadeSeq->Length();
104 char* aResult = new char[aLength * 25];
106 Standard_Integer aPosition = 0;
107 for (int i = 1; i <= aLength; i++) {
108 sprintf(aResult + aPosition , "%f ", CasCadeSeq->Value(i));
109 aPosition += strlen(aResult + aPosition);
114 void SALOMEDS_AttributeSequenceOfReal_i::Restore(const char* value) {
115 SALOMEDS::Locker lock;
117 Handle(TColStd_HSequenceOfReal) CasCadeSeq = new TColStd_HSequenceOfReal;
119 char* aCopy = strdup(value);
120 char* adr = strtok(aCopy, " ");
123 CORBA::Double r = strtod(adr, &err);
124 if (err == adr) break;
125 else CasCadeSeq->Append(r);
126 adr = strtok(NULL, " ");
129 Handle(SALOMEDS_SequenceOfRealAttribute)::DownCast(_myAttr)->Assign(CasCadeSeq);