Salome HOME
Fixed incorrect check in method DefineComponentInstance
[modules/kernel.git] / src / SALOMEDS / SALOMEDS_ChildIterator.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_ChildIterator.cxx
21 //  Author : Sergey RUIN
22 //  Module : SALOME
23
24
25
26 #include "SALOMEDS_ChildIterator.hxx"
27 #include "SALOMEDS_SObject.hxx"
28 #include "SALOMEDS.hxx"
29
30 using namespace std; 
31
32 SALOMEDS_ChildIterator::SALOMEDS_ChildIterator(const Handle(SALOMEDSImpl_ChildIterator)& theIterator)
33 {
34   SALOMEDS::Locker lock;
35
36   _isLocal = true;
37   _local_impl = theIterator;
38   _corba_impl = SALOMEDS::ChildIterator::_nil();
39 }
40
41 SALOMEDS_ChildIterator::SALOMEDS_ChildIterator(SALOMEDS::ChildIterator_ptr theIterator)
42 {
43   _isLocal = false;
44   _local_impl = NULL;
45   _corba_impl = SALOMEDS::ChildIterator::_duplicate(theIterator);
46 }
47
48 SALOMEDS_ChildIterator::~SALOMEDS_ChildIterator()
49 {
50   if(!_isLocal) _corba_impl->Destroy(); 
51 }
52
53 void SALOMEDS_ChildIterator::Init()
54 {
55   if (_isLocal) {
56     SALOMEDS::Locker lock;
57     _local_impl->Init();
58   }
59   else _corba_impl->Init();
60 }
61
62 void SALOMEDS_ChildIterator::InitEx(bool theAllLevels)
63 {
64   if (_isLocal) {
65     SALOMEDS::Locker lock;
66     _local_impl->InitEx(theAllLevels);
67   }
68   else _corba_impl->InitEx(theAllLevels);
69 }
70
71 bool SALOMEDS_ChildIterator::More()
72 {
73   bool ret;
74   if (_isLocal) {
75     SALOMEDS::Locker lock;
76     ret = _local_impl->More();
77   }
78   else ret = _corba_impl->More();
79   return ret;
80 }
81
82 void SALOMEDS_ChildIterator::Next() 
83 {
84   if (_isLocal) {
85     SALOMEDS::Locker lock;
86     _local_impl->Next();
87   }
88   else _corba_impl->Next();
89 }
90
91 _PTR(SObject) SALOMEDS_ChildIterator::Value()
92 {
93   SALOMEDSClient_SObject* aSO;
94   if (_isLocal) {
95     SALOMEDS::Locker lock;
96     aSO = new SALOMEDS_SObject(_local_impl->Value());
97   }
98   else aSO = new SALOMEDS_SObject(_corba_impl->Value());
99   return _PTR(SObject)(aSO);
100 }