2 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
4 // Licensed under the Apache License, Version 2.0 (the License);
5 // you may not use this file except in compliance with the License.
6 // You may obtain a copy of the License at
8 // http://www.apache.org/licenses/LICENSE-2.0
10 // Unless required by applicable law or agreed to in writing, software
11 // distributed under the License is distributed on an "AS IS" BASIS,
12 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 // See the License for the specific language governing permissions and
14 // limitations under the License.
18 * @file FBaseColQueueT.h
19 * @brief This is the header file for the %QueueT class.
21 * This header file contains the declarations of the %QueueT class.
24 #ifndef _FBASE_COL_QUEUE_T_H_
25 #define _FBASE_COL_QUEUE_T_H_
27 #include <FBaseObject.h>
28 #include <FBaseResult.h>
29 #include <FBaseColICollectionT.h>
31 namespace Tizen { namespace Base { namespace Collection
34 template< class Type > class __QueueEnumeratorT;
38 * @brief This represents a template-based queue (a first-in-first-out collection of objects).
42 * The %QueueT class represents a template-based queue (a first-in-first-out collection of objects).
44 * For more information on the class features, see <a href="../org.tizen.native.appprogramming/html/guide/base/queue_stack.htm">Stack and Queue</a>.
46 * The following example demonstrates how to use the %QueueT class.
51 * using namespace Tizen::Base;
52 * using namespace Tizen::Base::Collection;
55 * MyClass::QueueTSample(void)
57 * QueueT< String > queue;
60 * String str1(L"First");
61 * String str2(L"Second");
62 * String str3(L"Third");
64 * queue.Enqueue(str1);
65 * queue.Enqueue(str2);
66 * queue.Enqueue(str3);
68 * // Reads the element at the beginning
70 * queue.Peek(temp); // temp: "First", queue.GetCount(): 3
72 * // Reads and removes the element at the beginning
73 * queue.Dequeue(temp); // temp: "First", queue.GetCount(): 2
77 template< class Type >
79 : public virtual ICollectionT< Type >
84 * The object is not fully constructed after this constructor is called. For full construction, @n
85 * the Construct() method must be called right after calling this constructor.
99 * This destructor overrides Tizen::Base::Object::~Object().
103 virtual ~QueueT(void)
110 * Initializes this instance of %QueueT with the specified capacity.
114 * @return An error code
115 * @param[in] capacity The number of elements in the queue @n
116 * The default capacity is @c 10.
117 * @exception E_SUCCESS The method is successful.
118 * @exception E_OUT_OF_MEMORY The memory is insufficient.
119 * @exception E_INVALID_ARG The specified input parameter is invalid, or
120 * the specified @c capacity is negative.
122 result Construct(int capacity = DEFAULT_CAPACITY)
124 TryReturn(capacity >= 0, E_INVALID_ARG, "[%s] The capacity(%d) MUST be greater than or equal to 0.", GetErrorMessage(E_INVALID_ARG), capacity);
128 __pObjArray = new Type[capacity];
129 TryReturn(__pObjArray != null, E_OUT_OF_MEMORY, "[%s] Memory allocation failed.", GetErrorMessage(E_OUT_OF_MEMORY));
131 __capacity = capacity;
137 * Initializes this instance of %QueueT that contains the elements of the specified @c collection. @n
138 * The capacity of the queue is the same as the number of elements copied.
142 * @return An error code
143 * @param[in] collection The collection to copy the elements from
144 * @exception E_SUCCESS The method is successful.
145 * @exception E_OUT_OF_MEMORY The memory is insufficient.
146 * @exception E_INVALID_OPERATION The current state of the instance prohibits the execution of the specified operation, or
147 * the @c collection is modified during the operation of this method.
150 result Construct(const ICollectionT< Type >& collection)
152 result r = E_SUCCESS;
154 IEnumeratorT< Type >* pEnum = null;
155 if (collection.GetCount() > 0)
157 ICollectionT< Type >* pCol = const_cast< ICollectionT< Type >* >(&collection);
158 pEnum = pCol->GetEnumeratorN();
159 TryCatch(pEnum != null, r = GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
164 r = pEnum->MoveNext();
166 if (E_OUT_OF_RANGE == r)
171 TryCatch(r == E_SUCCESS, , "[%s] Propagating.", GetErrorMessage(r));
173 r = pEnum->GetCurrent(temp);
174 TryCatch(r == E_SUCCESS, , "[%s] Propagating.", GetErrorMessage(r));
177 TryCatch(r == E_SUCCESS, , "[%s] Propagating.", GetErrorMessage(r));
198 * Reads and removes the element at the beginning of this queue.
202 * @return An error code
203 * @param[out] obj The element at the beginning of this queue
204 * @exception E_SUCCESS The method is successful.
205 * @exception E_UNDERFLOW The operation (arithmetic/casting/conversion) has caused an underflow, or
206 * this queue is empty.
209 virtual result Dequeue(Type& obj)
211 if (__head <= __tail)
215 int index = (__tail) % __capacity;
216 obj = __pObjArray[index];
224 * Inserts an object at the end of this queue.
228 * @return An error code
229 * @param[in] obj The object to add to this queue
230 * @exception E_SUCCESS The method is successful.
231 * @exception E_OUT_OF_MEMORY The memory is insufficient.
234 virtual result Enqueue(const Type& obj)
236 if (null == __pObjArray)
238 __pObjArray = new Type[DEFAULT_CAPACITY];
239 TryReturn(__pObjArray != null, E_OUT_OF_MEMORY, "[%s] Memory allocation failed.", GetErrorMessage(E_OUT_OF_MEMORY));
240 __capacity = DEFAULT_CAPACITY;
242 else if ((__head - __tail) >= __capacity)
244 Type* pArrayTemp = new Type[__capacity + DEFAULT_CAPACITY];
245 TryReturn(pArrayTemp != null, E_OUT_OF_MEMORY, "[%s] Memory allocation failed.", GetErrorMessage(E_OUT_OF_MEMORY));
247 for (int i = 0, j = __tail; i < __capacity; i++, j++)
249 pArrayTemp[i] = __pObjArray[j % __capacity];
252 delete[] __pObjArray;
253 __pObjArray = pArrayTemp;
256 __capacity += DEFAULT_CAPACITY;
260 __pObjArray[__head % __capacity] = obj;
267 * Removes all the elements in this queue.
271 virtual void RemoveAll(void)
273 if (__pObjArray != null)
275 delete[] __pObjArray;
287 * Gets an enumerator of this queue.
291 * @return An enumerator (an instance of the IEnumeratorT derived class) of this queue, @n
292 * else @c null if an exception occurs
293 * @exception E_SUCCESS The method is successful.
294 * @exception E_OUT_OF_MEMORY The memory is insufficient.
295 * @remarks The specific error code can be accessed using the GetLastResult() method.
296 * @see Tizen::Base::Collection::IEnumeratorT
298 virtual IEnumeratorT< Type >* GetEnumeratorN(void) const
302 result r = E_SUCCESS;
304 __QueueEnumeratorT< Type >* pEnum = new __QueueEnumeratorT< Type >(*this, __modCount);
305 TryCatch(pEnum != null, r = E_OUT_OF_MEMORY, "[%s] Memory allocation failed.", GetErrorMessage(E_OUT_OF_MEMORY));
315 * Reads the element at the beginning of this queue without removing it.
319 * @return An error code
320 * @param[out] obj The element at the beginning of this queue
321 * @exception E_SUCCESS The method is successful.
322 * @exception E_UNDERFLOW The operation (arithmetic/casting/conversion) has caused an underflow, or
323 * this queue is empty.
325 virtual result Peek(Type& obj) const
327 if (__head <= __tail)
332 obj = __pObjArray[__tail % __capacity];
338 * Gets the number of objects currently stored in this queue.
342 * @return The number of objects currently stored in this queue
344 virtual int GetCount(void) const
346 return __head - __tail;
350 * Checks whether this queue contains the specified object.
354 * @return @c true if this queue contains the specified object, @n
356 * @param[in] obj The object to locate
358 virtual bool Contains(const Type& obj) const
361 for (int i = 0; i < GetCount(); i++)
363 if (__pObjArray[(__tail + i) % __capacity] == obj)
374 * Checks whether this queue contains all of the elements in the specified collection.
378 * @return An error code
379 * @param[in] collection The collection to locate
380 * @param[out] out Set to @c true if this queue contains all of the elements in the specified collection, @n
382 * @exception E_SUCCESS The method is successful.
383 * @exception E_INVALID_OPERATION The current state of the instance prohibits the execution of the specified operation, or
384 * the specified @c collection is modified during the operation of this method.
385 * @exception E_OUT_OF_MEMORY The memory is insufficient.
387 virtual result ContainsAll(const ICollectionT< Type >& collection, bool& out) const
389 result r = E_SUCCESS;
391 ICollectionT< Type >* pCol = const_cast< ICollectionT< Type >* >(&collection);
392 IEnumeratorT< Type >* pEnum = pCol->GetEnumeratorN();
393 TryCatch(pEnum != null, r = GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
398 r = pEnum->MoveNext();
400 if (E_OUT_OF_RANGE == r)
406 TryCatch(r == E_SUCCESS, , "[%s] Propagating.", GetErrorMessage(r));
408 r = pEnum->GetCurrent(temp);
409 TryCatch(r == E_SUCCESS, , "[%s] Propagating.", GetErrorMessage(r));
411 if (false == Contains(temp))
433 * Compares the specified instance to the current instance for equality.
437 * @return @c true if the specified instance equals the current instance, @n
439 * @param[in] obj The object to compare with the current instance
440 * @remarks This method returns @c true if and only if the specified object is also an instance of %QueueT class,
441 * both queues have the same size, and all corresponding pairs of elements in the two queues are equal.
442 * In other words, two queues are equal if they contain the same elements in the same order.
444 virtual bool Equals(const Object& obj) const
448 const QueueT< Type >* other = dynamic_cast< const QueueT< Type >* >(&obj);
453 else if (other == this)
457 else if (GetCount() != other->GetCount())
463 for (int i = 0; i < GetCount(); i++)
465 if (!(__pObjArray[(__tail + i) % __capacity] == other->__pObjArray[(other->__tail + i) % other->__capacity]))
477 * Gets the hash value of the current instance.
481 * @return The hash value of the current instance
482 * @remarks The two Tizen::Base::Object::Equals() instances must return the same hash value. For better performance, @n
483 * the used hash function must generate a random distribution for all inputs.
485 virtual int GetHashCode(void) const
488 int count = GetCount();
489 for (int i = 0; i < count; i++)
491 if (&(__pObjArray[(__tail + i) % __capacity]) != null)
493 hash += reinterpret_cast< int >(&(__pObjArray[(__tail + i) % __capacity]));
501 * The implementation of this copy constructor is intentionally blank and declared as private to prohibit copying of objects.
503 * @param[in] queue The specified instance of %QueueT to initialize the current instance
505 QueueT(const QueueT< Type >& queue);
508 * The implementation of this copy assignment operator is intentionally blank and declared as private to prohibit copying of objects.
510 * @param[in] queue An instance of %QueueT
512 QueueT< Type >& operator =(const QueueT< Type >& queue);
519 static const int DEFAULT_CAPACITY = 10;
521 friend class __QueueEnumeratorT< Type >;
526 // @class __QueueEnumeratorT
527 // @brief This class is an implementation of IEnumeratorT for %QueueT.
530 template< class Type >
531 class __QueueEnumeratorT
532 : public IEnumeratorT< Type >
537 * Initializes this instance of __QueueEnumeratorT with the specified parameters.
541 * @param[in] queue A queue to enumerate
542 * @param[in] modeCount The modification count to detect the change in the queue
544 __QueueEnumeratorT(const QueueT< Type >& queue, int modeCount)
546 , __modCount(modeCount)
552 * This is the destructor for this class.
556 virtual ~__QueueEnumeratorT(void)
561 * Gets the current object in the queue.
565 * @return An error code
566 * @param[out] obj The current object
567 * @exception E_INVALID_OPERATION Either of the following conditions has occurred: @n
568 * - The current state of the instance prohibits the execution of the specified operation. @n
569 * - This enumerator is currently positioned before the first element or
570 * past the last element. @n
571 * - The queue is modified after this enumerator is created.
572 * @exception E_SUCCESS The method is successful.
574 result GetCurrent(Type& obj) const
576 TryReturn((__modCount == __queue.__modCount), E_INVALID_OPERATION,
577 "[%s] The source collection is modified after the creation of this enumerator.", GetErrorMessage(E_INVALID_OPERATION));
578 TryReturn((__position >= __queue.__tail) && (__position < __queue.__head), E_INVALID_OPERATION,
579 "[%s] Current position is before the first element or past the last element.", GetErrorMessage(E_INVALID_OPERATION));
581 obj = __queue.__pObjArray[__position % __queue.__capacity];
587 * Moves this enumerator to the next element of the queue. @n
588 * When this enumerator is first created or after the call to Reset(),
589 * the first call to MoveNext() positions this enumerator to the first element in the queue.
593 * @return An error code
594 * @exception E_SUCCESS The method is successful.
595 * @exception E_INVALID_OPERATION The current state of the instance prohibits the execution of the specified operation, or
596 * the queue is modified after this enumerator is created.
597 * @exception E_OUT_OF_RANGE The enumerator has passed the end of the queue.
600 result MoveNext(void)
602 TryReturn((__modCount == __queue.__modCount), E_INVALID_OPERATION,
603 "[%s] The source collection is modified after the creation of this enumerator.", GetErrorMessage(E_INVALID_OPERATION));
605 if ((__position + 1) >= __queue.__head)
607 return E_OUT_OF_RANGE;
611 if (__position == -1)
613 __position = __queue.__tail;
625 * Positions this enumerator before the first element in the queue.
629 * @return An error code
630 * @exception E_SUCCESS The method is successful.
631 * @exception E_INVALID_OPERATION The current state of the instance prohibits the execution of the specified operation, or
632 * the queue is modified after this enumerator is created.
636 TryReturn((__modCount == __queue.__modCount), E_INVALID_OPERATION,
637 "[%s] The source collection is modified after the creation of this enumerator.", GetErrorMessage(E_INVALID_OPERATION));
645 const QueueT< Type >& __queue;
649 }; // __QueueEnumeratorT
651 }}} // Tizen::Base::Collection
653 #endif //_FBASE_COL_QUEUE_T_H_