Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
5 : * This Source Code Form is subject to the terms of the Mozilla Public
6 : * License, v. 2.0. If a copy of the MPL was not distributed with this
7 : * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
11 : * Licensed to the Apache Software Foundation (ASF) under one or more
12 : * contributor license agreements. See the NOTICE file distributed
13 : * with this work for additional information regarding copyright
14 : * ownership. The ASF licenses this file to you under the Apache
15 : * License, Version 2.0 (the "License"); you may not use this file
16 : * except in compliance with the License. You may obtain a copy of
17 : * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 : */
19 :
20 : #include <comphelper/enumhelper.hxx>
21 : #include <com/sun/star/lang/XComponent.hpp>
22 :
23 :
24 : namespace comphelper
25 : {
26 :
27 1 : OEnumerationByName::OEnumerationByName(const css::uno::Reference<css::container::XNameAccess>& _rxAccess)
28 1 : :m_aNames(_rxAccess->getElementNames())
29 : ,m_nPos(0)
30 : ,m_xAccess(_rxAccess)
31 2 : ,m_bListening(false)
32 : {
33 1 : impl_startDisposeListening();
34 1 : }
35 :
36 :
37 51122 : OEnumerationByName::OEnumerationByName(const css::uno::Reference<css::container::XNameAccess>& _rxAccess,
38 : const css::uno::Sequence< OUString >& _aNames )
39 : :m_aNames(_aNames)
40 : ,m_nPos(0)
41 : ,m_xAccess(_rxAccess)
42 51122 : ,m_bListening(false)
43 : {
44 51122 : impl_startDisposeListening();
45 51122 : }
46 :
47 :
48 153369 : OEnumerationByName::~OEnumerationByName()
49 : {
50 51123 : impl_stopDisposeListening();
51 102246 : }
52 :
53 :
54 51711 : sal_Bool SAL_CALL OEnumerationByName::hasMoreElements( ) throw(css::uno::RuntimeException, std::exception)
55 : {
56 51711 : ::osl::ResettableMutexGuard aLock(m_aLock);
57 :
58 51711 : if (m_xAccess.is() && m_aNames.getLength() > m_nPos)
59 8510 : return sal_True;
60 :
61 43201 : if (m_xAccess.is())
62 : {
63 42622 : impl_stopDisposeListening();
64 42622 : m_xAccess.clear();
65 : }
66 :
67 43201 : return sal_False;
68 : }
69 :
70 :
71 6662 : css::uno::Any SAL_CALL OEnumerationByName::nextElement( )
72 : throw(css::container::NoSuchElementException, css::lang::WrappedTargetException, css::uno::RuntimeException, std::exception)
73 : {
74 6662 : ::osl::ResettableMutexGuard aLock(m_aLock);
75 :
76 6662 : css::uno::Any aRes;
77 6662 : if (m_xAccess.is() && m_nPos < m_aNames.getLength())
78 6662 : aRes = m_xAccess->getByName(m_aNames.getConstArray()[m_nPos++]);
79 :
80 6662 : if (m_xAccess.is() && m_nPos >= m_aNames.getLength())
81 : {
82 6650 : impl_stopDisposeListening();
83 6650 : m_xAccess.clear();
84 : }
85 :
86 6662 : if (!aRes.hasValue()) //There are no more elements
87 0 : throw css::container::NoSuchElementException();
88 :
89 6662 : return aRes;
90 : }
91 :
92 :
93 1 : void SAL_CALL OEnumerationByName::disposing(const css::lang::EventObject& aEvent)
94 : throw(css::uno::RuntimeException, std::exception)
95 : {
96 1 : ::osl::ResettableMutexGuard aLock(m_aLock);
97 :
98 1 : if (aEvent.Source == m_xAccess)
99 1 : m_xAccess.clear();
100 1 : }
101 :
102 :
103 51123 : void OEnumerationByName::impl_startDisposeListening()
104 : {
105 51123 : ::osl::ResettableMutexGuard aLock(m_aLock);
106 :
107 51123 : if (m_bListening)
108 51123 : return;
109 :
110 51123 : ++m_refCount;
111 102246 : css::uno::Reference< css::lang::XComponent > xDisposable(m_xAccess, css::uno::UNO_QUERY);
112 51123 : if (xDisposable.is())
113 : {
114 1 : xDisposable->addEventListener(this);
115 1 : m_bListening = true;
116 : }
117 102246 : --m_refCount;
118 : }
119 :
120 :
121 100395 : void OEnumerationByName::impl_stopDisposeListening()
122 : {
123 100395 : ::osl::ResettableMutexGuard aLock(m_aLock);
124 :
125 100395 : if (!m_bListening)
126 200789 : return;
127 :
128 1 : ++m_refCount;
129 2 : css::uno::Reference< css::lang::XComponent > xDisposable(m_xAccess, css::uno::UNO_QUERY);
130 1 : if (xDisposable.is())
131 : {
132 0 : xDisposable->removeEventListener(this);
133 0 : m_bListening = false;
134 : }
135 2 : --m_refCount;
136 : }
137 :
138 1 : OEnumerationByIndex::OEnumerationByIndex(const css::uno::Reference< css::container::XIndexAccess >& _rxAccess)
139 : :m_nPos(0)
140 : ,m_xAccess(_rxAccess)
141 1 : ,m_bListening(false)
142 : {
143 1 : impl_startDisposeListening();
144 1 : }
145 :
146 :
147 3 : OEnumerationByIndex::~OEnumerationByIndex()
148 : {
149 1 : impl_stopDisposeListening();
150 2 : }
151 :
152 :
153 0 : sal_Bool SAL_CALL OEnumerationByIndex::hasMoreElements( ) throw(css::uno::RuntimeException, std::exception)
154 : {
155 0 : ::osl::ResettableMutexGuard aLock(m_aLock);
156 :
157 0 : if (m_xAccess.is() && m_xAccess->getCount() > m_nPos)
158 0 : return sal_True;
159 :
160 0 : if (m_xAccess.is())
161 : {
162 0 : impl_stopDisposeListening();
163 0 : m_xAccess.clear();
164 : }
165 :
166 0 : return sal_False;
167 : }
168 :
169 :
170 0 : css::uno::Any SAL_CALL OEnumerationByIndex::nextElement( )
171 : throw(css::container::NoSuchElementException, css::lang::WrappedTargetException, css::uno::RuntimeException, std::exception)
172 : {
173 0 : ::osl::ResettableMutexGuard aLock(m_aLock);
174 :
175 0 : css::uno::Any aRes;
176 0 : if (m_xAccess.is())
177 : {
178 0 : aRes = m_xAccess->getByIndex(m_nPos++);
179 0 : if (m_nPos >= m_xAccess->getCount())
180 : {
181 0 : impl_stopDisposeListening();
182 0 : m_xAccess.clear();
183 : }
184 : }
185 :
186 0 : if (!aRes.hasValue())
187 0 : throw css::container::NoSuchElementException();
188 0 : return aRes;
189 : }
190 :
191 :
192 1 : void SAL_CALL OEnumerationByIndex::disposing(const css::lang::EventObject& aEvent)
193 : throw(css::uno::RuntimeException, std::exception)
194 : {
195 1 : ::osl::ResettableMutexGuard aLock(m_aLock);
196 :
197 1 : if (aEvent.Source == m_xAccess)
198 1 : m_xAccess.clear();
199 1 : }
200 :
201 :
202 1 : void OEnumerationByIndex::impl_startDisposeListening()
203 : {
204 1 : ::osl::ResettableMutexGuard aLock(m_aLock);
205 :
206 1 : if (m_bListening)
207 1 : return;
208 :
209 1 : ++m_refCount;
210 2 : css::uno::Reference< css::lang::XComponent > xDisposable(m_xAccess, css::uno::UNO_QUERY);
211 1 : if (xDisposable.is())
212 : {
213 1 : xDisposable->addEventListener(this);
214 1 : m_bListening = true;
215 : }
216 2 : --m_refCount;
217 : }
218 :
219 :
220 1 : void OEnumerationByIndex::impl_stopDisposeListening()
221 : {
222 1 : ::osl::ResettableMutexGuard aLock(m_aLock);
223 :
224 1 : if (!m_bListening)
225 1 : return;
226 :
227 1 : ++m_refCount;
228 2 : css::uno::Reference< css::lang::XComponent > xDisposable(m_xAccess, css::uno::UNO_QUERY);
229 1 : if (xDisposable.is())
230 : {
231 0 : xDisposable->removeEventListener(this);
232 0 : m_bListening = false;
233 : }
234 2 : --m_refCount;
235 : }
236 :
237 42 : OAnyEnumeration::OAnyEnumeration(const css::uno::Sequence< css::uno::Any >& lItems)
238 : :m_nPos(0)
239 42 : ,m_lItems(lItems)
240 : {
241 42 : }
242 :
243 :
244 84 : OAnyEnumeration::~OAnyEnumeration()
245 : {
246 84 : }
247 :
248 :
249 112 : sal_Bool SAL_CALL OAnyEnumeration::hasMoreElements( ) throw(css::uno::RuntimeException, std::exception)
250 : {
251 112 : ::osl::ResettableMutexGuard aLock(m_aLock);
252 :
253 112 : return (m_lItems.getLength() > m_nPos);
254 : }
255 :
256 :
257 35 : css::uno::Any SAL_CALL OAnyEnumeration::nextElement( )
258 : throw(css::container::NoSuchElementException, css::lang::WrappedTargetException, css::uno::RuntimeException, std::exception)
259 : {
260 35 : if ( ! hasMoreElements())
261 0 : throw css::container::NoSuchElementException();
262 :
263 35 : ::osl::ResettableMutexGuard aLock(m_aLock);
264 35 : sal_Int32 nPos = m_nPos;
265 35 : ++m_nPos;
266 35 : return m_lItems[nPos];
267 : }
268 :
269 :
270 : } // namespace comphelper
271 :
272 :
273 :
274 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|