Update contrib.
1 // Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
29 void ResetAndDestroy();
30 TBool IsEmpty( ) const;
33 T* PopAndRemove( TInt aIndex );
34 void PushL( T const* const aElement );
36 T* Pop( TInt aIndex ) const;
37 T* operator[] ( TInt aIndex ) const;
40 RMMRCFifoQueue( const RMMRCFifoQueue & aMMRCFifoQueue ); //not implemented
41 const RMMRCFifoQueue & operator= ( const RMMRCFifoQueue & aMMRCFifoQueue ); //not implemented
49 TListNode( T const* const aElement )
50 : iElement( aElement ), iNext(NULL) { }
62 RMMRCFifoQueue<T>::RMMRCFifoQueue( )
64 iFirst = iLast = NULL;
72 RMMRCFifoQueue<T>::~RMMRCFifoQueue( )
79 Delete each node without deleting the elements.
82 void RMMRCFifoQueue<T>::Reset( )
91 Delete each node and each element.
94 void RMMRCFifoQueue<T>::ResetAndDestroy( )
98 T* element = PopAndRemove( );
104 Return the number of elements.
107 TInt RMMRCFifoQueue<T>::Count( ) const
114 Test if the queue is logically empty.
115 Return TTrue if empty, TFalse, otherwise.
118 TBool RMMRCFifoQueue<T>::IsEmpty( ) const
120 return iFirst == NULL;
125 Return and remove the least recently inserted item from the queue.
128 T* RMMRCFifoQueue<T>::PopAndRemove( )
133 TListNode* front = iFirst;
134 element = const_cast<T*>(iFirst->iElement);
135 iFirst = iFirst->iNext;
148 Return and remove the least recently inserted item from the queue.
151 T* RMMRCFifoQueue<T>::PopAndRemove( TInt aIndex )
154 TListNode* PreviousNode = NULL;
155 TListNode* node = iFirst;
157 for( ; i<aIndex && i<iCount && node->iNext ; i++)
163 if(node && i < iCount)
167 PreviousNode->iNext = node->iNext;
168 if( NULL == node->iNext )
170 iLast = PreviousNode;
175 iFirst = node->iNext;
181 element = const_cast<T*>(node->iElement);
189 Insert aElement into the queue.
192 void RMMRCFifoQueue<T>::PushL( T const* const aElement )
196 iLast = iFirst = new(ELeave) TListNode( aElement );
200 iLast = iLast->iNext = new(ELeave) TListNode( aElement );
206 Pop a pointer of the aIndex elements.
209 T* RMMRCFifoQueue<T>::Pop ( ) const
212 TListNode* node = iFirst;
216 element = const_cast<T*>(node->iElement);
223 Pop a pointer of the aIndex elements.
226 T* RMMRCFifoQueue<T>::Pop ( TInt aIndex ) const
229 TListNode* node = iFirst;
232 for( ; (i < aIndex) && (i < iCount) && (node->iNext != NULL) ; i++)
240 element = const_cast<T*>(node->iElement);
247 Pop a pointer of the aIndex elements.
250 T* RMMRCFifoQueue<T>::operator[] ( TInt aIndex ) const
257 Class for manage the list of the sessions requesting pause.
260 class RMMRCFifoOrderQueue : private RMMRCFifoQueue <T>
264 RMMRCFifoOrderQueue( );
265 ~RMMRCFifoOrderQueue( );
266 void ResetAndDestroy( );
268 void PushL( T const* const aElement );
269 T* PopAndRemoveForPause( TInt aIndex );
270 T* operator[] ( TInt aIndex ) const;
274 RPointerArray< T > iQueue;
282 RMMRCFifoOrderQueue<T>::RMMRCFifoOrderQueue( )
290 RMMRCFifoOrderQueue<T>::~RMMRCFifoOrderQueue( )
297 Return the number of elements.
300 TInt RMMRCFifoOrderQueue<T>::Count( ) const
303 TInt iNum = iQueue.Count();
308 Delete each node and each element.
311 void RMMRCFifoOrderQueue<T>::ResetAndDestroy( )
313 iQueue.ResetAndDestroy();
317 Insert aElement into the queue and ordered.
320 void RMMRCFifoOrderQueue<T>::PushL( T const* const aElement )
322 TInt numElements = iQueue.Count();
324 if( numElements == 0 )
326 iQueue.Append(aElement); //iQueue: We need to check the error here
330 for(TInt i(0); i<numElements ; ++i)
332 if(aElement->HasMultimediaCapability() && !(iQueue[i]->HasMultimediaCapability()))
334 iQueue.Insert(aElement, i);
337 else if(aElement->HasMultimediaCapability() == iQueue[i]->HasMultimediaCapability())
339 if (aElement->GetPriority() > iQueue[i]->GetPriority())
341 iQueue.Insert(aElement,i);
346 iQueue.Insert(aElement,numElements);
350 Return and remove the inserted item from the queue.
353 T* RMMRCFifoOrderQueue<T>::PopAndRemoveForPause( TInt aIndex )
356 aux = iQueue[aIndex];
357 iQueue.Remove(aIndex);
363 Pop a pointer of the aIndex elements.
366 T* RMMRCFifoOrderQueue<T>::operator[] ( TInt aIndex ) const
368 if(iQueue.Count() != 0)
370 return iQueue[aIndex];
378 #endif /*_MMRCUTIL_H_*/