1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
20 #ifndef __FRAMEWORK_CLASSES_CHECKEDITERATOR_HXX_
21 #define __FRAMEWORK_CLASSES_CHECKEDITERATOR_HXX_
23 #include <macros/debug.hxx>
25 #include <sal/types.h>
31 /*-************************************************************************************************************//**
32 @short implement a iterator which support 2 end states!
33 @descr For our search methods we need a "walking" iterator object with special functionality!
34 We must check for 3 different states of an iterator - normal position, exact end, after end.
35 It's neccessary to detect if we have not found a entry and must return our default or
36 default already returned and we must break loop!
37 see using in class FilterCache too for further information!
39 @Attention If your wish to debug this inline code ...
40 under windows and msdev you can use "set ENVCFLAGS=/Ob0" to do that!
45 @devstatus ready to use
47 *//*-*************************************************************************************************************/
49 template< class TContainer
>
52 //-------------------------------------------------------------------------------------------------------------
54 //-------------------------------------------------------------------------------------------------------------
58 //---------------------------------------------------------------------------------------------------------
59 // constructor / destructor
60 //---------------------------------------------------------------------------------------------------------
62 /*-****************************************************************************************************//**
63 @short standard constructor
64 @descr Set default values on members.
65 We set it internal to E_UNKNOWN to detect uninitialized instances of this class.
66 If we found one - we know: "We must call initialize first!"
74 *//*-*****************************************************************************************************/
76 inline CheckedIterator()
77 : m_eEndState ( E_UNKNOWN
)
78 , m_pContainer( NULL
)
82 //---------------------------------------------------------------------------------------------------------
84 //---------------------------------------------------------------------------------------------------------
86 /*-****************************************************************************************************//**
87 @short initialize instance with valid container
88 @descr Set new container at an instance of this class. The other member will set automaticly!
89 m_pPosition = first element in container
90 m_eEndState = BEFOREEND
94 @param "rContainer", must be a valid reference to an existing container.
97 @onerror An assertion is thrown.
98 *//*-*****************************************************************************************************/
100 inline void initialize( const TContainer
& rContainer
)
102 // Check incoming parameter. We don't accept all!
103 LOG_ASSERT2( &rContainer
==NULL
, "CheckedIterator::initialize()", "Invalid parameter detected!" )
104 LOG_ASSERT2( m_eEndState
!=E_UNKNOWN
, "CheckedIterator::initialize()", "Instance already initialized! Don't do it again." )
106 if( m_eEndState
== E_UNKNOWN
)
108 // Set new container and update other member.
109 m_pContainer
= &rContainer
;
110 m_eEndState
= E_BEFOREEND
;
111 m_pPosition
= m_pContainer
->begin();
115 /*-****************************************************************************************************//**
116 @short set internal states to E_END
117 @descr Sometimes we need a "walking" check-iterator which is initialized with the END-state!
118 We need it to return one default value if no other ones exist ...
120 @seealso using in class FilterCache!
126 *//*-*****************************************************************************************************/
130 m_pContainer
= NULL
;
131 m_eEndState
= E_END
;
134 /*-****************************************************************************************************//**
135 @short set internal states to E_AFTEREND
136 @descr Sometimes we need a "walking" check-iterator which is initialized with AFTEREND-state!
137 We need it if we don't have a container but must prevent us against further searching!
139 @seealso using in class FilterCache!
145 *//*-*****************************************************************************************************/
147 inline void setAfterEnd()
149 m_pContainer
= NULL
;
150 m_eEndState
= E_AFTEREND
;
153 /*-****************************************************************************************************//**
154 @short reset this iterator
155 @descr It must be called on an already initialized iterator.
156 Means the member m_pContainer must be valid. Otherwhise the reaction
163 *//*-*****************************************************************************************************/
167 m_eEndState
= E_UNKNOWN
;
171 /*-****************************************************************************************************//**
172 @short step to next element in container.
173 @descr If end of container is reached we change our internal "m_eEndState".
174 If end reached for first time; we set it to E_END;
175 If you step to next element again; we set it to E_AFTEREND.
176 So you have a chance to differ between "exact end" and "after end"!
178 @seealso method isEnd()
179 @seealso method isAfterEnd()
182 @return A reference to our changed object himself.
185 *//*-*****************************************************************************************************/
187 inline CheckedIterator
& operator++()
189 // Warn programmer if he forget to initailize object!
190 LOG_ASSERT2( m_pContainer
==NULL
, "CheckedIterator::operator++()", "Object not initialized!" )
191 // Step to next element if any exist or set our end states.
192 switch( m_eEndState
)
196 // If iterator reaching end ... set right state!
197 if( m_pPosition
== m_pContainer
->end() )
204 // Set state only ... iterator already points to end of container!
205 m_eEndState
= E_AFTEREND
;
212 /*-****************************************************************************************************//**
213 @short return true if internal iterator was not initialized before
214 @descr These will be true, if use start a new search by using these iterator mechanism!
216 @seealso class FilterCache
219 @return True if internalk state E_UNKNOWN - false otherwise.
222 *//*-*****************************************************************************************************/
224 inline sal_Bool
isUninitialized()
226 return( m_eEndState
== E_UNKNOWN
);
229 /*-****************************************************************************************************//**
230 @short return true if internal iterator reached end of container
231 @descr These will be true if you step to the end of internal container.
233 @seealso method isAfterEnd()
236 @return True if end reached; false otherwise.
239 *//*-*****************************************************************************************************/
241 inline sal_Bool
isEnd()
243 // Is true if one end state is set!
245 ( m_eEndState
== E_END
) ||
246 ( m_eEndState
== E_AFTEREND
)
250 /*-****************************************************************************************************//**
251 @short return true if you call operator++ again and end already reached
252 @descr These indicate, that end already reached but you call operator++ again and again!
254 @seealso method isEnd()
257 @return True if end multiple reached; false otherwise.
260 *//*-*****************************************************************************************************/
262 inline sal_Bool
isAfterEnd()
264 // Is true only, if special end state is set!
265 return( m_eEndState
== E_AFTEREND
);
268 /*-****************************************************************************************************//**
269 @short support readonly access to container entry
270 @descr Use it to get the value of current container item.
275 @return A reference to value of container entry.
278 *//*-*****************************************************************************************************/
280 inline typename
TContainer::const_iterator
getEntry()
282 // Warn programmer if he forget to initialize these object ...
283 LOG_ASSERT2( m_pContainer
==NULL
, "CheckedIterator::getEntry()", "Object not initialized!" )
284 // or try to read a non existing element!
285 LOG_ASSERT2( m_eEndState
!=E_BEFOREEND
, "CheckedIterator::getEntry()", "Wrong using of class detected!" )
290 //-------------------------------------------------------------------------------------------------------------
292 //-------------------------------------------------------------------------------------------------------------
296 // These enum defines our four states for an iterator position in curent container.
305 const TContainer
* m_pContainer
; // pointer to current container
306 EEndState m_eEndState
; // "position state" of iterator!
307 typename
TContainer::const_iterator m_pPosition
; // point to actual element in container
310 } // namespace framework
312 #endif // #ifndef __FRAMEWORK_CLASSES_CHECKEDITERATOR_HXX_
314 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */