os/mm/mmresourcemgmt/mmresctrl/inc/mmrcutil.h
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/mm/mmresourcemgmt/mmresctrl/inc/mmrcutil.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,378 @@
     1.4 +// Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +//
    1.18 +
    1.19 +#ifndef _MMRCUTIL_H_
    1.20 +#define _MMRCUTIL_H_
    1.21 +
    1.22 +#include <e32base.h>
    1.23 +
    1.24 +template <class T>
    1.25 +class RMMRCFifoQueue
    1.26 +	{
    1.27 +public:
    1.28 +	RMMRCFifoQueue( );
    1.29 +	~RMMRCFifoQueue( );
    1.30 +
    1.31 +	void Reset( );
    1.32 +	void ResetAndDestroy();
    1.33 +	TBool IsEmpty( ) const;
    1.34 +	TInt Count() const;
    1.35 +	T* PopAndRemove( );
    1.36 +	T* PopAndRemove( TInt aIndex );
    1.37 +	void PushL( T const* const  aElement );
    1.38 +	T* Pop( ) const;
    1.39 +	T* Pop( TInt aIndex ) const;
    1.40 +	T* operator[] ( TInt aIndex ) const;
    1.41 +
    1.42 +private:
    1.43 +	RMMRCFifoQueue( const RMMRCFifoQueue & aMMRCFifoQueue ); //not implemented
    1.44 +	const RMMRCFifoQueue & operator= ( const RMMRCFifoQueue & aMMRCFifoQueue );  //not implemented
    1.45 +
    1.46 +private:
    1.47 +	struct TListNode
    1.48 +		{
    1.49 +		T const*  iElement;
    1.50 +		TListNode *iNext;
    1.51 +
    1.52 +		TListNode( T const* const aElement )
    1.53 +		: iElement( aElement ), iNext(NULL) { }
    1.54 +		};
    1.55 +
    1.56 +	TListNode *iFirst;
    1.57 +	TListNode *iLast;
    1.58 +	TInt iCount;
    1.59 +	};
    1.60 +	
    1.61 +/**
    1.62 + Construct the queue.
    1.63 +*/
    1.64 +template <class T>
    1.65 +RMMRCFifoQueue<T>::RMMRCFifoQueue( )
    1.66 +	{
    1.67 +	iFirst = iLast = NULL;
    1.68 +	iCount = 0;
    1.69 +	}
    1.70 +
    1.71 +/**
    1.72 + Destructor.
    1.73 +*/
    1.74 +template <class T>
    1.75 +RMMRCFifoQueue<T>::~RMMRCFifoQueue( )
    1.76 +	{
    1.77 +	Reset( );
    1.78 +	}
    1.79 +
    1.80 +
    1.81 +/**
    1.82 + Delete each node without deleting the elements.
    1.83 +*/
    1.84 +template <class T>
    1.85 +void RMMRCFifoQueue<T>::Reset( )
    1.86 +	{
    1.87 +	while( !IsEmpty( ) )
    1.88 +		{
    1.89 +		PopAndRemove( );
    1.90 +		}
    1.91 +	}
    1.92 +
    1.93 +/**
    1.94 + Delete each node and each element.
    1.95 +*/
    1.96 +template <class T>
    1.97 +void RMMRCFifoQueue<T>::ResetAndDestroy( )
    1.98 +	{
    1.99 +	while( !IsEmpty( ) )
   1.100 +		{
   1.101 +		T* element = PopAndRemove( );
   1.102 +		delete element;
   1.103 +		}
   1.104 +	}
   1.105 +
   1.106 +/**
   1.107 + Return the number of elements.
   1.108 +*/
   1.109 +template <class T>
   1.110 +TInt RMMRCFifoQueue<T>::Count( ) const
   1.111 +	{
   1.112 +	return iCount;
   1.113 +	}
   1.114 +
   1.115 +
   1.116 +/**
   1.117 + Test if the queue is logically empty.
   1.118 + Return TTrue if empty, TFalse, otherwise.
   1.119 +*/
   1.120 +template <class T>
   1.121 +TBool RMMRCFifoQueue<T>::IsEmpty( ) const
   1.122 +	{
   1.123 +	return iFirst == NULL;
   1.124 +	}
   1.125 +
   1.126 +
   1.127 +/**
   1.128 + Return and remove the least recently inserted item from the queue.
   1.129 +*/
   1.130 +template <class T>
   1.131 +T* RMMRCFifoQueue<T>::PopAndRemove( )
   1.132 +	{
   1.133 +	T* element = NULL;
   1.134 +	if( !IsEmpty( ) )
   1.135 +		{
   1.136 +		TListNode* front = iFirst;
   1.137 +		element = const_cast<T*>(iFirst->iElement);
   1.138 +		iFirst = iFirst->iNext;
   1.139 +		if( NULL == iFirst )
   1.140 +			{
   1.141 +			iLast = NULL;
   1.142 +			}
   1.143 +		iCount--;
   1.144 +		delete front;
   1.145 +		front = NULL;
   1.146 +		}
   1.147 +	return element;
   1.148 +	}
   1.149 +
   1.150 +/**
   1.151 + Return and remove the least recently inserted item from the queue.
   1.152 +*/
   1.153 +template <class T>
   1.154 +T* RMMRCFifoQueue<T>::PopAndRemove( TInt aIndex )
   1.155 +	{
   1.156 +	T* element = NULL;
   1.157 +	TListNode* PreviousNode = NULL;
   1.158 +	TListNode* node = iFirst;
   1.159 +	TInt i = 0;
   1.160 +	for( ; i<aIndex && i<iCount && node->iNext ; i++)
   1.161 +		{
   1.162 +		PreviousNode = node;
   1.163 +		node = node->iNext;
   1.164 +		}
   1.165 +	
   1.166 +	if(node && i < iCount)
   1.167 +		{
   1.168 +		if(PreviousNode)
   1.169 +			{
   1.170 +			PreviousNode->iNext = node->iNext;
   1.171 +			if( NULL == node->iNext )
   1.172 +				{
   1.173 +				iLast = PreviousNode;
   1.174 +				}
   1.175 +			}
   1.176 +		else 
   1.177 +			{
   1.178 +			iFirst = node->iNext;
   1.179 +			if( NULL == iFirst )
   1.180 +				{
   1.181 +				iLast = NULL;
   1.182 +				} 
   1.183 +			}
   1.184 +		element = const_cast<T*>(node->iElement);
   1.185 +		iCount--;
   1.186 +		delete node;
   1.187 +		}
   1.188 +	return element;
   1.189 +	}
   1.190 +
   1.191 +/**
   1.192 + Insert aElement into the queue.
   1.193 +*/
   1.194 +template <class T>
   1.195 +void RMMRCFifoQueue<T>::PushL( T const* const aElement )
   1.196 +	{
   1.197 +	if( IsEmpty( ) )
   1.198 +		{
   1.199 +		iLast = iFirst = new(ELeave) TListNode( aElement );
   1.200 +		}
   1.201 +	else
   1.202 +		{
   1.203 +		iLast = iLast->iNext = new(ELeave) TListNode( aElement );
   1.204 +		}
   1.205 +	iCount++;
   1.206 +	}
   1.207 +
   1.208 +/**
   1.209 + Pop a pointer of the aIndex elements.
   1.210 +*/
   1.211 +template <class T>
   1.212 +T* RMMRCFifoQueue<T>::Pop ( ) const
   1.213 +	{
   1.214 +	T* element = NULL;
   1.215 +	TListNode* node = iFirst;
   1.216 +	
   1.217 +	if( node )
   1.218 +		{
   1.219 +		element = const_cast<T*>(node->iElement);
   1.220 +		}
   1.221 +	
   1.222 +	return element;
   1.223 +	}
   1.224 +
   1.225 +/**
   1.226 + Pop a pointer of the aIndex elements.
   1.227 +*/
   1.228 +template <class T>
   1.229 +T* RMMRCFifoQueue<T>::Pop ( TInt aIndex ) const
   1.230 +	{
   1.231 +	T* element = NULL;
   1.232 +	TListNode* node = iFirst;
   1.233 +	
   1.234 +	TInt i = 0;
   1.235 +	for( ; (i < aIndex) && (i < iCount) && (node->iNext != NULL) ; i++)
   1.236 +		{
   1.237 +		node = node->iNext;
   1.238 +		}
   1.239 +	
   1.240 +	if(  ( NULL != node ) 
   1.241 +			&& ( i < iCount )  )
   1.242 +		{
   1.243 +		element = const_cast<T*>(node->iElement);
   1.244 +		}
   1.245 +	
   1.246 +	return element;
   1.247 +	}
   1.248 +
   1.249 +/**
   1.250 + Pop a pointer of the aIndex elements.
   1.251 +*/
   1.252 +template <class T>
   1.253 +T* RMMRCFifoQueue<T>::operator[] ( TInt aIndex ) const
   1.254 +	{
   1.255 +	return Pop(aIndex);
   1.256 +	}
   1.257 +
   1.258 +
   1.259 +/**
   1.260 + Class for manage the list of the sessions requesting pause.
   1.261 +*/
   1.262 +template <class T>
   1.263 +class RMMRCFifoOrderQueue : private RMMRCFifoQueue <T>
   1.264 +	{
   1.265 +
   1.266 +public:
   1.267 +	RMMRCFifoOrderQueue( );
   1.268 +	~RMMRCFifoOrderQueue( );
   1.269 +	void ResetAndDestroy( );
   1.270 +	TInt Count() const;
   1.271 +	void PushL( T const* const  aElement );
   1.272 +	T* PopAndRemoveForPause( TInt aIndex );
   1.273 +	T* operator[] ( TInt aIndex ) const;
   1.274 +
   1.275 +
   1.276 +private:
   1.277 +	RPointerArray< T >  iQueue;
   1.278 +	};
   1.279 +
   1.280 +
   1.281 +/**
   1.282 + Construct the queue.
   1.283 +*/
   1.284 +template <class T>
   1.285 +RMMRCFifoOrderQueue<T>::RMMRCFifoOrderQueue( )
   1.286 +	{
   1.287 +	}
   1.288 +
   1.289 +/**
   1.290 + Destructor.
   1.291 +*/
   1.292 +template <class T>
   1.293 +RMMRCFifoOrderQueue<T>::~RMMRCFifoOrderQueue( )
   1.294 +	{
   1.295 +	iQueue.Reset();
   1.296 +	iQueue.Close();
   1.297 +	}
   1.298 +	
   1.299 +/**
   1.300 + Return the number of elements.
   1.301 +*/
   1.302 +template <class T>
   1.303 +TInt RMMRCFifoOrderQueue<T>::Count( ) const
   1.304 +	{
   1.305 +	
   1.306 +	TInt iNum = iQueue.Count();
   1.307 +	return iNum;
   1.308 +	}	
   1.309 +
   1.310 +/**
   1.311 + Delete each node and each element.
   1.312 +*/
   1.313 +template <class T>
   1.314 +void RMMRCFifoOrderQueue<T>::ResetAndDestroy( )
   1.315 +	{
   1.316 +	iQueue.ResetAndDestroy();
   1.317 +	}
   1.318 +
   1.319 +/**
   1.320 + Insert aElement into the queue and ordered.
   1.321 +*/
   1.322 +template <class T>
   1.323 +void RMMRCFifoOrderQueue<T>::PushL( T const* const aElement )
   1.324 +	{
   1.325 +	TInt numElements = iQueue.Count();
   1.326 +	
   1.327 +	if( numElements == 0 )
   1.328 +		{
   1.329 +		iQueue.Append(aElement); //iQueue: We need to check the error here
   1.330 +		return;
   1.331 +		}
   1.332 +	
   1.333 +	for(TInt i(0); i<numElements ; ++i)
   1.334 +		{
   1.335 +		if(aElement->HasMultimediaCapability() && !(iQueue[i]->HasMultimediaCapability()))
   1.336 +			{
   1.337 +			iQueue.Insert(aElement, i);
   1.338 +			return;
   1.339 +			}
   1.340 +		else if(aElement->HasMultimediaCapability() == iQueue[i]->HasMultimediaCapability())	
   1.341 +			{
   1.342 +			if (aElement->GetPriority() > iQueue[i]->GetPriority())
   1.343 +			 	{
   1.344 +				iQueue.Insert(aElement,i);
   1.345 +				return;
   1.346 +			 	}			
   1.347 +			}
   1.348 +		}
   1.349 +	iQueue.Insert(aElement,numElements);
   1.350 +	}
   1.351 +	
   1.352 +/**
   1.353 + Return and remove the inserted item from the queue.
   1.354 +*/
   1.355 +template <class T>
   1.356 +T* RMMRCFifoOrderQueue<T>::PopAndRemoveForPause( TInt aIndex )
   1.357 +	{
   1.358 +	T* aux = NULL;
   1.359 +	aux = iQueue[aIndex];
   1.360 +	iQueue.Remove(aIndex);	
   1.361 +	return aux;
   1.362 +	}
   1.363 +
   1.364 +
   1.365 +/**
   1.366 + Pop a pointer of the aIndex elements.
   1.367 +*/
   1.368 +template <class T>
   1.369 +T* RMMRCFifoOrderQueue<T>::operator[] ( TInt aIndex ) const
   1.370 +	{
   1.371 +	if(iQueue.Count() != 0)
   1.372 +		{
   1.373 +		return iQueue[aIndex];
   1.374 +		}
   1.375 +	else
   1.376 +		{
   1.377 +		return NULL;
   1.378 +		}
   1.379 +	}
   1.380 +
   1.381 +#endif /*_MMRCUTIL_H_*/