xref: /AOO41X/main/comphelper/source/container/enumhelper.cxx (revision cdf0e10c4e3984b49a9502b011690b615761d4a3) !
1*cdf0e10cSrcweir /*************************************************************************
2*cdf0e10cSrcweir  *
3*cdf0e10cSrcweir  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4*cdf0e10cSrcweir  *
5*cdf0e10cSrcweir  * Copyright 2000, 2010 Oracle and/or its affiliates.
6*cdf0e10cSrcweir  *
7*cdf0e10cSrcweir  * OpenOffice.org - a multi-platform office productivity suite
8*cdf0e10cSrcweir  *
9*cdf0e10cSrcweir  * This file is part of OpenOffice.org.
10*cdf0e10cSrcweir  *
11*cdf0e10cSrcweir  * OpenOffice.org is free software: you can redistribute it and/or modify
12*cdf0e10cSrcweir  * it under the terms of the GNU Lesser General Public License version 3
13*cdf0e10cSrcweir  * only, as published by the Free Software Foundation.
14*cdf0e10cSrcweir  *
15*cdf0e10cSrcweir  * OpenOffice.org is distributed in the hope that it will be useful,
16*cdf0e10cSrcweir  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17*cdf0e10cSrcweir  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18*cdf0e10cSrcweir  * GNU Lesser General Public License version 3 for more details
19*cdf0e10cSrcweir  * (a copy is included in the LICENSE file that accompanied this code).
20*cdf0e10cSrcweir  *
21*cdf0e10cSrcweir  * You should have received a copy of the GNU Lesser General Public License
22*cdf0e10cSrcweir  * version 3 along with OpenOffice.org.  If not, see
23*cdf0e10cSrcweir  * <http://www.openoffice.org/license.html>
24*cdf0e10cSrcweir  * for a copy of the LGPLv3 License.
25*cdf0e10cSrcweir  *
26*cdf0e10cSrcweir  ************************************************************************/
27*cdf0e10cSrcweir 
28*cdf0e10cSrcweir // MARKER(update_precomp.py): autogen include statement, do not remove
29*cdf0e10cSrcweir #include "precompiled_comphelper.hxx"
30*cdf0e10cSrcweir #include <comphelper/enumhelper.hxx>
31*cdf0e10cSrcweir #include <com/sun/star/lang/XComponent.hpp>
32*cdf0e10cSrcweir 
33*cdf0e10cSrcweir //.........................................................................
34*cdf0e10cSrcweir namespace comphelper
35*cdf0e10cSrcweir {
36*cdf0e10cSrcweir //.........................................................................
37*cdf0e10cSrcweir 
38*cdf0e10cSrcweir //==================================================================
39*cdf0e10cSrcweir //= OEnumerationByName
40*cdf0e10cSrcweir //==================================================================
41*cdf0e10cSrcweir //------------------------------------------------------------------------------
42*cdf0e10cSrcweir OEnumerationByName::OEnumerationByName(const staruno::Reference<starcontainer::XNameAccess>& _rxAccess)
43*cdf0e10cSrcweir     :m_aNames(_rxAccess->getElementNames())
44*cdf0e10cSrcweir     ,m_nPos(0)
45*cdf0e10cSrcweir     ,m_xAccess(_rxAccess)
46*cdf0e10cSrcweir     ,m_bListening(sal_False)
47*cdf0e10cSrcweir {
48*cdf0e10cSrcweir     impl_startDisposeListening();
49*cdf0e10cSrcweir }
50*cdf0e10cSrcweir 
51*cdf0e10cSrcweir //------------------------------------------------------------------------------
52*cdf0e10cSrcweir OEnumerationByName::OEnumerationByName(const staruno::Reference<starcontainer::XNameAccess>& _rxAccess,
53*cdf0e10cSrcweir                                        const staruno::Sequence< ::rtl::OUString >&           _aNames  )
54*cdf0e10cSrcweir     :m_aNames(_aNames)
55*cdf0e10cSrcweir     ,m_nPos(0)
56*cdf0e10cSrcweir     ,m_xAccess(_rxAccess)
57*cdf0e10cSrcweir     ,m_bListening(sal_False)
58*cdf0e10cSrcweir {
59*cdf0e10cSrcweir     impl_startDisposeListening();
60*cdf0e10cSrcweir }
61*cdf0e10cSrcweir 
62*cdf0e10cSrcweir //------------------------------------------------------------------------------
63*cdf0e10cSrcweir OEnumerationByName::~OEnumerationByName()
64*cdf0e10cSrcweir {
65*cdf0e10cSrcweir     impl_stopDisposeListening();
66*cdf0e10cSrcweir }
67*cdf0e10cSrcweir 
68*cdf0e10cSrcweir //------------------------------------------------------------------------------
69*cdf0e10cSrcweir sal_Bool SAL_CALL OEnumerationByName::hasMoreElements(  ) throw(staruno::RuntimeException)
70*cdf0e10cSrcweir {
71*cdf0e10cSrcweir     ::osl::ResettableMutexGuard aLock(m_aLock);
72*cdf0e10cSrcweir 
73*cdf0e10cSrcweir 	if (m_xAccess.is() && m_aNames.getLength() > m_nPos)
74*cdf0e10cSrcweir         return sal_True;
75*cdf0e10cSrcweir 
76*cdf0e10cSrcweir     if (m_xAccess.is())
77*cdf0e10cSrcweir     {
78*cdf0e10cSrcweir         impl_stopDisposeListening();
79*cdf0e10cSrcweir         m_xAccess.clear();
80*cdf0e10cSrcweir     }
81*cdf0e10cSrcweir 
82*cdf0e10cSrcweir     return sal_False;
83*cdf0e10cSrcweir }
84*cdf0e10cSrcweir 
85*cdf0e10cSrcweir //------------------------------------------------------------------------------
86*cdf0e10cSrcweir staruno::Any SAL_CALL OEnumerationByName::nextElement(  )
87*cdf0e10cSrcweir 		throw(starcontainer::NoSuchElementException, starlang::WrappedTargetException, staruno::RuntimeException)
88*cdf0e10cSrcweir {
89*cdf0e10cSrcweir     ::osl::ResettableMutexGuard aLock(m_aLock);
90*cdf0e10cSrcweir 
91*cdf0e10cSrcweir 	staruno::Any aRes;
92*cdf0e10cSrcweir 	if (m_xAccess.is() && m_nPos < m_aNames.getLength())
93*cdf0e10cSrcweir 		aRes = m_xAccess->getByName(m_aNames.getConstArray()[m_nPos++]);
94*cdf0e10cSrcweir 
95*cdf0e10cSrcweir 	if (m_xAccess.is() && m_nPos >= m_aNames.getLength())
96*cdf0e10cSrcweir     {
97*cdf0e10cSrcweir         impl_stopDisposeListening();
98*cdf0e10cSrcweir         m_xAccess.clear();
99*cdf0e10cSrcweir     }
100*cdf0e10cSrcweir 
101*cdf0e10cSrcweir 	if (!aRes.hasValue())		// es gibt kein Element mehr
102*cdf0e10cSrcweir 		throw starcontainer::NoSuchElementException();
103*cdf0e10cSrcweir 
104*cdf0e10cSrcweir 	return aRes;
105*cdf0e10cSrcweir }
106*cdf0e10cSrcweir 
107*cdf0e10cSrcweir //------------------------------------------------------------------------------
108*cdf0e10cSrcweir void SAL_CALL OEnumerationByName::disposing(const starlang::EventObject& aEvent)
109*cdf0e10cSrcweir         throw(staruno::RuntimeException)
110*cdf0e10cSrcweir {
111*cdf0e10cSrcweir     ::osl::ResettableMutexGuard aLock(m_aLock);
112*cdf0e10cSrcweir 
113*cdf0e10cSrcweir     if (aEvent.Source == m_xAccess)
114*cdf0e10cSrcweir         m_xAccess.clear();
115*cdf0e10cSrcweir }
116*cdf0e10cSrcweir 
117*cdf0e10cSrcweir //------------------------------------------------------------------------------
118*cdf0e10cSrcweir void OEnumerationByName::impl_startDisposeListening()
119*cdf0e10cSrcweir {
120*cdf0e10cSrcweir     ::osl::ResettableMutexGuard aLock(m_aLock);
121*cdf0e10cSrcweir 
122*cdf0e10cSrcweir     if (m_bListening)
123*cdf0e10cSrcweir         return;
124*cdf0e10cSrcweir 
125*cdf0e10cSrcweir     ++m_refCount;
126*cdf0e10cSrcweir     staruno::Reference< starlang::XComponent > xDisposable(m_xAccess, staruno::UNO_QUERY);
127*cdf0e10cSrcweir     if (xDisposable.is())
128*cdf0e10cSrcweir     {
129*cdf0e10cSrcweir         xDisposable->addEventListener(this);
130*cdf0e10cSrcweir         m_bListening = sal_True;
131*cdf0e10cSrcweir     }
132*cdf0e10cSrcweir     --m_refCount;
133*cdf0e10cSrcweir }
134*cdf0e10cSrcweir 
135*cdf0e10cSrcweir //------------------------------------------------------------------------------
136*cdf0e10cSrcweir void OEnumerationByName::impl_stopDisposeListening()
137*cdf0e10cSrcweir {
138*cdf0e10cSrcweir     ::osl::ResettableMutexGuard aLock(m_aLock);
139*cdf0e10cSrcweir 
140*cdf0e10cSrcweir     if (!m_bListening)
141*cdf0e10cSrcweir         return;
142*cdf0e10cSrcweir 
143*cdf0e10cSrcweir     ++m_refCount;
144*cdf0e10cSrcweir     staruno::Reference< starlang::XComponent > xDisposable(m_xAccess, staruno::UNO_QUERY);
145*cdf0e10cSrcweir     if (xDisposable.is())
146*cdf0e10cSrcweir     {
147*cdf0e10cSrcweir         xDisposable->removeEventListener(this);
148*cdf0e10cSrcweir         m_bListening = sal_False;
149*cdf0e10cSrcweir     }
150*cdf0e10cSrcweir     --m_refCount;
151*cdf0e10cSrcweir }
152*cdf0e10cSrcweir 
153*cdf0e10cSrcweir //==================================================================
154*cdf0e10cSrcweir //= OEnumerationByIndex
155*cdf0e10cSrcweir //==================================================================
156*cdf0e10cSrcweir //------------------------------------------------------------------------------
157*cdf0e10cSrcweir OEnumerationByIndex::OEnumerationByIndex(const staruno::Reference< starcontainer::XIndexAccess >& _rxAccess)
158*cdf0e10cSrcweir     :m_nPos(0)
159*cdf0e10cSrcweir     ,m_xAccess(_rxAccess)
160*cdf0e10cSrcweir     ,m_bListening(sal_False)
161*cdf0e10cSrcweir {
162*cdf0e10cSrcweir     impl_startDisposeListening();
163*cdf0e10cSrcweir }
164*cdf0e10cSrcweir 
165*cdf0e10cSrcweir //------------------------------------------------------------------------------
166*cdf0e10cSrcweir OEnumerationByIndex::~OEnumerationByIndex()
167*cdf0e10cSrcweir {
168*cdf0e10cSrcweir     impl_stopDisposeListening();
169*cdf0e10cSrcweir }
170*cdf0e10cSrcweir 
171*cdf0e10cSrcweir //------------------------------------------------------------------------------
172*cdf0e10cSrcweir sal_Bool SAL_CALL OEnumerationByIndex::hasMoreElements(  ) throw(staruno::RuntimeException)
173*cdf0e10cSrcweir {
174*cdf0e10cSrcweir     ::osl::ResettableMutexGuard aLock(m_aLock);
175*cdf0e10cSrcweir 
176*cdf0e10cSrcweir 	if (m_xAccess.is() && m_xAccess->getCount() > m_nPos)
177*cdf0e10cSrcweir         return sal_True;
178*cdf0e10cSrcweir 
179*cdf0e10cSrcweir     if (m_xAccess.is())
180*cdf0e10cSrcweir     {
181*cdf0e10cSrcweir         impl_stopDisposeListening();
182*cdf0e10cSrcweir         m_xAccess.clear();
183*cdf0e10cSrcweir     }
184*cdf0e10cSrcweir 
185*cdf0e10cSrcweir     return sal_False;
186*cdf0e10cSrcweir }
187*cdf0e10cSrcweir 
188*cdf0e10cSrcweir //------------------------------------------------------------------------------
189*cdf0e10cSrcweir staruno::Any SAL_CALL OEnumerationByIndex::nextElement(  )
190*cdf0e10cSrcweir 		throw(starcontainer::NoSuchElementException, starlang::WrappedTargetException, staruno::RuntimeException)
191*cdf0e10cSrcweir {
192*cdf0e10cSrcweir     ::osl::ResettableMutexGuard aLock(m_aLock);
193*cdf0e10cSrcweir 
194*cdf0e10cSrcweir 	staruno::Any aRes;
195*cdf0e10cSrcweir 	if (m_xAccess.is())
196*cdf0e10cSrcweir 	{
197*cdf0e10cSrcweir 		aRes = m_xAccess->getByIndex(m_nPos++);
198*cdf0e10cSrcweir 		if (m_nPos >= m_xAccess->getCount())
199*cdf0e10cSrcweir         {
200*cdf0e10cSrcweir             impl_stopDisposeListening();
201*cdf0e10cSrcweir             m_xAccess.clear();
202*cdf0e10cSrcweir         }
203*cdf0e10cSrcweir 	}
204*cdf0e10cSrcweir 
205*cdf0e10cSrcweir 	if (!aRes.hasValue())		// es gibt kein Element mehr
206*cdf0e10cSrcweir 		throw starcontainer::NoSuchElementException();
207*cdf0e10cSrcweir 	return aRes;
208*cdf0e10cSrcweir }
209*cdf0e10cSrcweir 
210*cdf0e10cSrcweir //------------------------------------------------------------------------------
211*cdf0e10cSrcweir void SAL_CALL OEnumerationByIndex::disposing(const starlang::EventObject& aEvent)
212*cdf0e10cSrcweir         throw(staruno::RuntimeException)
213*cdf0e10cSrcweir {
214*cdf0e10cSrcweir     ::osl::ResettableMutexGuard aLock(m_aLock);
215*cdf0e10cSrcweir 
216*cdf0e10cSrcweir     if (aEvent.Source == m_xAccess)
217*cdf0e10cSrcweir         m_xAccess.clear();
218*cdf0e10cSrcweir }
219*cdf0e10cSrcweir 
220*cdf0e10cSrcweir //------------------------------------------------------------------------------
221*cdf0e10cSrcweir void OEnumerationByIndex::impl_startDisposeListening()
222*cdf0e10cSrcweir {
223*cdf0e10cSrcweir     ::osl::ResettableMutexGuard aLock(m_aLock);
224*cdf0e10cSrcweir 
225*cdf0e10cSrcweir     if (m_bListening)
226*cdf0e10cSrcweir         return;
227*cdf0e10cSrcweir 
228*cdf0e10cSrcweir     ++m_refCount;
229*cdf0e10cSrcweir     staruno::Reference< starlang::XComponent > xDisposable(m_xAccess, staruno::UNO_QUERY);
230*cdf0e10cSrcweir     if (xDisposable.is())
231*cdf0e10cSrcweir     {
232*cdf0e10cSrcweir         xDisposable->addEventListener(this);
233*cdf0e10cSrcweir         m_bListening = sal_True;
234*cdf0e10cSrcweir     }
235*cdf0e10cSrcweir     --m_refCount;
236*cdf0e10cSrcweir }
237*cdf0e10cSrcweir 
238*cdf0e10cSrcweir //------------------------------------------------------------------------------
239*cdf0e10cSrcweir void OEnumerationByIndex::impl_stopDisposeListening()
240*cdf0e10cSrcweir {
241*cdf0e10cSrcweir     ::osl::ResettableMutexGuard aLock(m_aLock);
242*cdf0e10cSrcweir 
243*cdf0e10cSrcweir     if (!m_bListening)
244*cdf0e10cSrcweir         return;
245*cdf0e10cSrcweir 
246*cdf0e10cSrcweir     ++m_refCount;
247*cdf0e10cSrcweir     staruno::Reference< starlang::XComponent > xDisposable(m_xAccess, staruno::UNO_QUERY);
248*cdf0e10cSrcweir     if (xDisposable.is())
249*cdf0e10cSrcweir     {
250*cdf0e10cSrcweir         xDisposable->removeEventListener(this);
251*cdf0e10cSrcweir         m_bListening = sal_False;
252*cdf0e10cSrcweir     }
253*cdf0e10cSrcweir     --m_refCount;
254*cdf0e10cSrcweir }
255*cdf0e10cSrcweir 
256*cdf0e10cSrcweir //==================================================================
257*cdf0e10cSrcweir //= OAnyEnumeration
258*cdf0e10cSrcweir //==================================================================
259*cdf0e10cSrcweir 
260*cdf0e10cSrcweir //------------------------------------------------------------------------------
261*cdf0e10cSrcweir OAnyEnumeration::OAnyEnumeration(const staruno::Sequence< staruno::Any >& lItems)
262*cdf0e10cSrcweir     :m_nPos(0)
263*cdf0e10cSrcweir     ,m_lItems(lItems)
264*cdf0e10cSrcweir {
265*cdf0e10cSrcweir }
266*cdf0e10cSrcweir 
267*cdf0e10cSrcweir //------------------------------------------------------------------------------
268*cdf0e10cSrcweir OAnyEnumeration::~OAnyEnumeration()
269*cdf0e10cSrcweir {
270*cdf0e10cSrcweir }
271*cdf0e10cSrcweir 
272*cdf0e10cSrcweir //------------------------------------------------------------------------------
273*cdf0e10cSrcweir sal_Bool SAL_CALL OAnyEnumeration::hasMoreElements(  ) throw(staruno::RuntimeException)
274*cdf0e10cSrcweir {
275*cdf0e10cSrcweir     ::osl::ResettableMutexGuard aLock(m_aLock);
276*cdf0e10cSrcweir 
277*cdf0e10cSrcweir 	return (m_lItems.getLength() > m_nPos);
278*cdf0e10cSrcweir }
279*cdf0e10cSrcweir 
280*cdf0e10cSrcweir //------------------------------------------------------------------------------
281*cdf0e10cSrcweir staruno::Any SAL_CALL OAnyEnumeration::nextElement(  )
282*cdf0e10cSrcweir 		throw(starcontainer::NoSuchElementException, starlang::WrappedTargetException, staruno::RuntimeException)
283*cdf0e10cSrcweir {
284*cdf0e10cSrcweir 	if ( ! hasMoreElements())
285*cdf0e10cSrcweir 		throw starcontainer::NoSuchElementException();
286*cdf0e10cSrcweir 
287*cdf0e10cSrcweir     ::osl::ResettableMutexGuard aLock(m_aLock);
288*cdf0e10cSrcweir     sal_Int32 nPos = m_nPos;
289*cdf0e10cSrcweir     ++m_nPos;
290*cdf0e10cSrcweir     return m_lItems[nPos];
291*cdf0e10cSrcweir }
292*cdf0e10cSrcweir 
293*cdf0e10cSrcweir //.........................................................................
294*cdf0e10cSrcweir }	// namespace comphelper
295*cdf0e10cSrcweir //.........................................................................
296*cdf0e10cSrcweir 
297*cdf0e10cSrcweir 
298