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.
16 #include "mmrcserverinfo.h"
17 #include "mmrcserversession.h"
18 #include "mmrcservercontroller.h"
19 #include "mlogicalchain.h"
21 #include <a3f/a3f_trace_utils.h>
24 //------------------------------------------------------------------------------------
26 //------------------------------------------------------------------------------------
28 * By default Symbian 2nd phase constructor is private.
29 * @param CMMRCServerController& A reference on the MMRC Server controller
31 CMMRCServerInfo::CMMRCServerInfo(CMMRCServerController& aServerController)
32 : iMMRCServerController( aServerController)
35 DP_CONTEXT(----> CMMRCServerInfo::CMMRCServerInfo *CD1*, CtxDevSound, DPLOCAL);
45 CMMRCServerInfo::~CMMRCServerInfo()
47 DP_CONTEXT(----> CMMRCServerInfo::~CMMRCServerInfo *CD1*, CtxDevSound, DPLOCAL);
50 iMMRCAllocatedResourceContextsQueue.ResetAndDestroy();
51 iMMRCContextsQueue.ResetAndDestroy();
52 iMMRCAPRContextsQueue.ResetAndDestroy();
53 iMMRCPausedContextsQueue.ResetAndDestroy();
59 * Constructs, and returns a pointer to, a new CMMRCServerInfo object.
61 * @param CMMRCServerController& A reference on the MMRC Server controller
62 * @return CMMRCServerInfo* A pointer to newly created utlitly object.
64 CMMRCServerInfo* CMMRCServerInfo::NewL(CMMRCServerController& aServerController)
66 DP_STATIC_CONTEXT(----> CMMRCServerInfo::NewL *CD1*, CtxDevSound, DPLOCAL);
69 CMMRCServerInfo* self = NewLC(aServerController);
70 CleanupStack::Pop(self);
72 DP0_RET(self, "self = 0x%x");
76 * Constructs, leaves object on the cleanup stack, and returns a pointer
77 * to, a new CMMRCServerInfo object.
79 * @param CMMRCServerController& A reference on the MMRC Server controller
80 * @return CMMRCServerInfo* A pointer to newly created utlitly object.
82 CMMRCServerInfo* CMMRCServerInfo::NewLC(CMMRCServerController& aServerController)
84 DP_STATIC_CONTEXT(----> CMMRCServerInfo::NewLC *CD1*, CtxDevSound, DPLOCAL);
87 CMMRCServerInfo* self=new(ELeave) CMMRCServerInfo(aServerController);
88 CleanupStack::PushL(self);
91 DP0_RET(self, "self = 0x%x");
95 CMMRCServerInfo::ConstructL
96 Symbian 2nd phase constructor can leave.
98 void CMMRCServerInfo::ConstructL()
100 DP_CONTEXT(----> CMMRCServerInfo::ConstructL *CD1*, CtxDevSound, DPLOCAL);
107 * Change the state of the server
108 * @param TMMRCServerState aNewState
110 void CMMRCServerInfo::SwitchServerState(TMMRCServerState aNewState, TUint64 aContextId)
112 DP_CONTEXT(----> CMMRCServerInfo::SwitchServerState *CD1*, CtxDevSound, DPLOCAL);
115 iMMRCServerInfoState = aNewState;
116 iLastTransactionContextId = aContextId;
122 * return the current server state
123 * @return TMMRCServerState& aServerState
125 void CMMRCServerInfo::ServerState(TMMRCServerState& aServerState, TUint64& aContextId) const
127 DP_CONTEXT(----> CMMRCServerInfo::ServerState *CD1*, CtxDevSound, DPLOCAL);
130 aContextId = iLastTransactionContextId;
131 aServerState = iMMRCServerInfoState;
136 //------------------------------------------------------------------------------------
138 //------------------------------------------------------------------------------------
141 * Push an Context on the Context queue in parameter
142 * @param RMMRCContextsQueueTD& aContextsQueue
143 * @param CMMRCServerSession& aServerSession
144 * @leave in case of memory error
146 void CMMRCServerInfo::PushContextL(RMMRCContextsQueueTD& aContextsQueue, const CMMRCServerSession& aServerSession )
148 DP_CONTEXT(----> CMMRCServerInfo::PushContextL *CD1*, CtxDevSound, DPLOCAL);
151 aContextsQueue.PushL(&aServerSession);
157 * Pop and remove the first Context of the highest priority from the Context queue in parameter
158 * @param RMMRCContextsQueueTD& aContextsQueue
159 * @return CMMRCServerSession* the session of the Context
161 CMMRCServerSession* CMMRCServerInfo::PopAndRemoveFirstContext(RMMRCContextsQueueTD& aContextsQueue)
163 DP_CONTEXT(----> CMMRCServerInfo::PopAndRemoveFirstContext *CD1*, CtxDevSound, DPLOCAL);
166 CMMRCServerSession* serverSession = 0;
167 //PopAndRemove return null if the queue is empty;
168 serverSession = aContextsQueue.PopAndRemove();
170 DP0_RET(serverSession, "serverSession = 0x%x");
174 * Pop and remove the first Context from the Context queue in parameter by contextId
175 * @param RMMRCContextsQueueTD& aContextsQueue
176 * @param const TAudioContextId& aContextId
177 * @return CMMRCServerSession* the session of the Context
179 CMMRCServerSession* CMMRCServerInfo::PopAndRemoveFirstContextByContextId(RMMRCContextsQueueTD& aContextsQueue, const TAudioContextId& aContextId )
181 DP_CONTEXT(----> CMMRCServerInfo::PopAndRemoveFirstContextByContextId *CD1*, CtxDevSound, DPLOCAL);
184 CMMRCServerSession* serverSession = NULL;
186 TInt nbContexts = aContextsQueue.Count();
187 for( TInt i = 0 ; i < nbContexts ; i++ )
189 serverSession = aContextsQueue[i];
191 TAudioContextId contextId = serverSession->ContextId();
192 if( aContextId == contextId )
194 aContextsQueue.PopAndRemove(i);
199 serverSession = NULL;
203 DP0_RET(serverSession, "serverSession = 0x%x");
208 * Pop and remove the first Context of the highest priority from the Context queue in parameter
209 * @param RMMRCContextsQueueTD& aContextsQueue
210 * @return CMMRCServerSession* the session of the Context
212 CMMRCServerSession* CMMRCServerInfo::PopAndRemoveContextFirstHighestPriority(RMMRCContextsQueueTD& aContextsQueue)
214 DP_CONTEXT(----> CMMRCServerInfo::PopAndRemoveContextFirstHighestPriority *CD1*, CtxDevSound, DPLOCAL);
217 TInt nbContexts = aContextsQueue.Count();
218 if( 0 == nbContexts )
223 TInt highestPriority = 0;
225 for( TInt i = 0 ; i < nbContexts ; i++ )
227 const CMMRCServerSession* srvSession = aContextsQueue[i];
228 // LogicalChainLastCommited or LogicalChainRequested is not null necesseraly
229 const MLogicalChain* logicalChain = srvSession->LogicalChainRequested();
232 logicalChain = srvSession->LogicalChainLastCommited();
238 // AM Getting the priority
239 TInt currentChainPriority = (const_cast<MLogicalChain*>(logicalChain))->Priority();
240 if( currentChainPriority > highestPriority )
242 highestPriority = currentChainPriority;
247 // JIn edited as these settings have been removed
248 /* TAudioTypeSettings audioTypeSettings = (logicalChain->ChainConfiguration()).iAudioTypeSettings;
249 if( audioTypeSettings.iPriority > highestPriority )
251 highestPriority = audioTypeSettings.iPriority;
257 // highestPriority = 5;
262 CMMRCServerSession* serverSession = aContextsQueue.PopAndRemove(sessionIdx);
264 DP0_RET(serverSession, "serverSession=0x%x");
268 * Pop and remove the first Context of the highest priority and more than aPriority
269 * from the Context queue in parameter
270 * @param RMMRCContextsQueueTD& aContextsQueue
271 * @param TInt aPriority
272 * @return CMMRCServerSession* the session of the Context
274 CMMRCServerSession* CMMRCServerInfo::PopAndRemoveContextFirstHighestPriority(RMMRCContextsQueueTD& aContextsQueue, TInt /*aPriority*/ )
276 DP_CONTEXT(----> CMMRCServerInfo::PopAndRemoveContextFirstHighestPriority *CD1*, CtxDevSound, DPLOCAL);
279 CMMRCServerSession* serverSession = NULL;
280 TInt nbContexts = aContextsQueue.Count();
281 if( 0 == nbContexts )
286 TInt highestPriority = 0;
288 for( TInt i = 0 ; i < nbContexts ; i++ )
290 const CMMRCServerSession* srvSession = aContextsQueue[i];
291 // LogicalChainLastCommited or LogicalChainRequested is not null necesseraly
292 const MLogicalChain* logicalChain = srvSession->LogicalChainRequested();
298 // AM Getting the priority
299 TInt currentChainPriority = (const_cast<MLogicalChain*>(logicalChain))->Priority();
300 if( currentChainPriority > highestPriority )
302 highestPriority = currentChainPriority;
311 if( sessionIdx < nbContexts )
313 serverSession = aContextsQueue.PopAndRemove(sessionIdx);
316 DP0_RET(serverSession, "serverSession=0x%x");
320 * Pop the first Context from the Context queue in parameter
321 * @param RMMRCContextsQueueTD& aContextsQueue
322 * @return CMMRCServerSession* the session of the Context
324 CMMRCServerSession* CMMRCServerInfo::PopFirstContext(const RMMRCContextsQueueTD& aContextsQueue) const
326 DP_CONTEXT(----> CMMRCServerInfo::PopFirstContext *CD1*, CtxDevSound, DPLOCAL);
329 CMMRCServerSession* serverSession = 0;
330 //PopAndRemove return null if the queue is empty;
331 serverSession = aContextsQueue.Pop();
333 DP0_RET(serverSession, "serverSession=0x%x");
337 * Pop the first Context of the highest priority from the Context queue in parameter
338 * @param RMMRCContextsQueueTD& aContextsQueue
339 * @return CMMRCServerSession* the session of the Context
341 CMMRCServerSession* CMMRCServerInfo::PopContextFirstHighestPriority(const RMMRCContextsQueueTD& aContextsQueue) const
343 DP_CONTEXT(----> CMMRCServerInfo::PopContextFirstHighestPriority *CD1*, CtxDevSound, DPLOCAL);
346 TInt nbContexts = aContextsQueue.Count();
347 if( 0 == nbContexts )
352 TInt highestPriority = 0;
354 for( TInt i = 0 ; i < nbContexts ; i++ )
356 const CMMRCServerSession* srvSession = aContextsQueue[i];
357 // LogicalChainLastCommited or LogicalChainRequested is not null necesseraly
358 const MLogicalChain* logicalChain = srvSession->LogicalChainRequested();
361 logicalChain = srvSession->LogicalChainLastCommited();
368 // Jin edited to remove dependency on missing element
370 TAudioTypeSettings audioTypeSettings = (logicalChain->ChainConfiguration()).iAudioTypeSettings;
371 if( audioTypeSettings.iPriority > highestPriority )
373 highestPriority = audioTypeSettings.iPriority;
378 /* highestPriority = 5;
382 // AM Getting the priority
383 TInt currentChainPriority = (const_cast<MLogicalChain*>(logicalChain))->Priority();
384 if( currentChainPriority > highestPriority )
386 highestPriority = currentChainPriority;
392 CMMRCServerSession* serverSession = aContextsQueue.Pop(sessionIdx);
394 DP0_RET(serverSession, "serverSession=0x%x");
398 * Pop the first Context of the highest priority and more than aPriority
399 * from the Context queue in parameter
400 * @param RMMRCContextsQueueTD& aContextsQueue
401 * @param TInt aPriority
402 * @return CMMRCServerSession* the session of the Context
404 CMMRCServerSession* CMMRCServerInfo::PopContextFirstHighestPriority(const RMMRCContextsQueueTD& aContextsQueue, TInt /*aPriority*/ ) const
406 DP_CONTEXT(----> CMMRCServerInfo::PopContextFirstHighestPriority *CD1*, CtxDevSound, DPLOCAL);
409 TInt nbContexts = aContextsQueue.Count();
410 if( 0 == nbContexts )
415 TInt highestPriority = 0;
417 for( TInt i = 0 ; i < nbContexts ; i++ )
419 const CMMRCServerSession* srvSession = aContextsQueue[i];
420 // LogicalChainLastCommited or LogicalChainRequested is not null necesseraly
421 const MLogicalChain* logicalChain = srvSession->LogicalChainRequested();
424 logicalChain = srvSession->LogicalChainLastCommited();
431 // JIn edited to remove dependency
433 TAudioTypeSettings audioTypeSettings = (logicalChain->ChainConfiguration()).iAudioTypeSettings;
434 if( audioTypeSettings.iPriority > aPriority && audioTypeSettings.iPriority > highestPriority )
436 highestPriority = audioTypeSettings.iPriority;
441 // AM New way to access
442 // highestPriority = 5;
445 // AM Getting the priority
446 TInt currentChainPriority = (const_cast<MLogicalChain*>(logicalChain))->Priority();
447 if( currentChainPriority > highestPriority )
449 highestPriority = currentChainPriority;
455 CMMRCServerSession* serverSession = NULL;
456 if( sessionIdx < nbContexts )
458 serverSession = aContextsQueue.Pop(sessionIdx);
461 DP0_RET(serverSession, "serverSession=0x%x");
464 //------------------------------------------------------------------------------------
466 //------------------------------------------------------------------------------------
469 * Push an Context on the Context queue
470 * @param CMMRCServerSession& aServerSession
471 * @leave in case of memory error
473 void CMMRCServerInfo::PushRequestL(const CMMRCServerSession& aServerSession )
475 DP_CONTEXT(----> CMMRCServerInfo::PushRequestL *CD1*, CtxDevSound, DPLOCAL);
478 PushContextL(iMMRCContextsQueue, aServerSession);
484 * Pop and remove the first Context from the Context queue
485 * @return CMMRCServerSession* the session of the Context
487 CMMRCServerSession* CMMRCServerInfo::PopAndRemoveFirstRequest()
489 DP_CONTEXT(----> CMMRCServerInfo::PopAndRemoveFirstRequest *CD1*, CtxDevSound, DPLOCAL);
492 CMMRCServerSession* mmrcSession = PopAndRemoveFirstContext(iMMRCContextsQueue);
494 DP0_RET(mmrcSession, "mmrcSession = 0x%x");
498 * Pop and remove the first Context from the Context queue by contextId
499 * @param const TAudioContextId& aContextId
500 * @return CMMRCServerSession* the session of the Context
502 CMMRCServerSession* CMMRCServerInfo::PopAndRemoveFirstRequestByContextId(const TAudioContextId& aContextId )
504 DP_CONTEXT(----> CMMRCServerInfo::PopAndRemoveFirstRequestByContextId *CD1*, CtxDevSound, DPLOCAL);
507 CMMRCServerSession* mmrcSession = PopAndRemoveFirstContextByContextId(iMMRCContextsQueue, aContextId);
509 DP0_RET(mmrcSession, "mmrcSession = 0x%x");
514 * Pop and remove the first Context of the highest priority from the Context queue
515 * @param TInt aPriority
516 * @return CMMRCServerSession* the session of the Context
518 CMMRCServerSession* CMMRCServerInfo::PopAndRemoveRequestFirstHighestPriority()
520 DP_CONTEXT(----> CMMRCServerInfo::PopAndRemoveRequestFirstHighestPriority *CD1*, CtxDevSound, DPLOCAL);
523 CMMRCServerSession* mmrcSession = PopAndRemoveContextFirstHighestPriority(iMMRCContextsQueue);
525 DP0_RET(mmrcSession, "mmrcSession = 0x%x");
529 * Pop and remove the first Context of the highest priority and more than aPriority
530 * from the Context queue
531 * @param TInt aPriority
532 * @return CMMRCServerSession* the session of the Context
534 CMMRCServerSession* CMMRCServerInfo::PopAndRemoveRequestFirstHighestPriority( TInt aPriority )
536 DP_CONTEXT(----> CMMRCServerInfo::PopAndRemoveRequestFirstHighestPriority *CD1*, CtxDevSound, DPLOCAL);
539 CMMRCServerSession* mmrcSession = PopAndRemoveContextFirstHighestPriority(iMMRCContextsQueue, aPriority);
541 DP0_RET(mmrcSession, "mmrcSession = 0x%x");
545 * Pop the first Context from the Context queue
546 * @return CMMRCServerSession* the session of the Context
548 CMMRCServerSession* CMMRCServerInfo::PopFirstRequest() const
550 DP_CONTEXT(----> CMMRCServerInfo::PopFirstRequest *CD1*, CtxDevSound, DPLOCAL);
553 CMMRCServerSession* mmrcSession = PopFirstContext(iMMRCContextsQueue);
555 DP0_RET(mmrcSession, "mmrcSession = 0x%x");
559 * Pop the first Context of the highest priority from the Context queue
560 * @return CMMRCServerSession* the session of the Context
562 CMMRCServerSession* CMMRCServerInfo::PopRequestFirstHighestPriority() const
564 DP_CONTEXT(----> CMMRCServerInfo::PopRequestFirstHighestPriority *CD1*, CtxDevSound, DPLOCAL);
567 CMMRCServerSession* mmrcSession = PopContextFirstHighestPriority(iMMRCContextsQueue);
569 DP0_RET(mmrcSession, "mmrcSession = 0x%x");
573 * Pop the first Context of the highest priority and more than aPriority
574 * from the Context queue
575 * @param TInt aPriority
576 * @return CMMRCServerSession* the session of the Context
578 CMMRCServerSession* CMMRCServerInfo::PopRequestFirstHighestPriority(TInt aPriority ) const
580 DP_CONTEXT(----> CMMRCServerInfo::PopRequestFirstHighestPriority *CD1*, CtxDevSound, DPLOCAL);
583 CMMRCServerSession* mmrcSession = PopContextFirstHighestPriority(iMMRCContextsQueue, aPriority);
585 DP0_RET(mmrcSession, "mmrcSession = 0x%x");
588 //------------------------------------------------------------------------------------
590 //------------------------------------------------------------------------------------
593 * Push an Context on the in-process Context queue
594 * @param CMMRCServerSession& aServerSession
595 * @leave in case of memory error
597 void CMMRCServerInfo::PushAllocatedResourceContextL(const CMMRCServerSession& aServerSession )
599 DP_CONTEXT(----> CMMRCServerInfo::PushAllocatedResourceContextL *CD1*, CtxDevSound, DPLOCAL);
602 PushContextL(iMMRCAllocatedResourceContextsQueue, aServerSession);
608 * Pop and remove the first Context of the highest priority from the in-process Context queue
609 * @return CMMRCServerSession* the session of the Context
611 CMMRCServerSession* CMMRCServerInfo::PopAndRemoveFirstAllocatedResourceContext()
613 DP_CONTEXT(----> CMMRCServerInfo::PopAndRemoveFirstAllocatedResourceContext *CD1*, CtxDevSound, DPLOCAL);
616 CMMRCServerSession* mmrcSession = PopAndRemoveFirstContext(iMMRCAllocatedResourceContextsQueue);
618 DP0_RET(mmrcSession, "mmrcSession = 0x%x");
622 * Pop and remove the first Context from the in-process Context queue by contextId
623 * @param const TAudioContextId& aContextId
624 * @return CMMRCServerSession* the session of the Context
626 CMMRCServerSession* CMMRCServerInfo::PopAndRemoveFirstAllocatedResourceContextByContextId(const TAudioContextId& aContextId )
628 DP_CONTEXT(----> CMMRCServerInfo::PopAndRemoveFirstAllocatedResourceContextByContextId *CD1*, CtxDevSound, DPLOCAL);
631 CMMRCServerSession* mmrcSession = PopAndRemoveFirstContextByContextId(iMMRCAllocatedResourceContextsQueue, aContextId);
633 DP0_RET(mmrcSession, "mmrcSession = 0x%x");
637 * Pop the first Context from the in-process Context queue
638 * @return CMMRCServerSession* the session of the Context
640 CMMRCServerSession* CMMRCServerInfo::PopFirstAllocatedResourceContext() const
642 DP_CONTEXT(----> CMMRCServerInfo::PopFirstAllocatedResourceContext *CD1*, CtxDevSound, DPLOCAL);
645 CMMRCServerSession* mmrcSession = PopFirstContext(iMMRCAllocatedResourceContextsQueue);
647 DP0_RET(mmrcSession, "mmrcSession = 0x%x");
650 //------------------------------------------------------------------------------------
652 //------------------------------------------------------------------------------------
655 * Push an Context on the in-process Context queue
656 * @param CMMRCServerSession& aServerSession
657 * @leave in case of memory error
659 void CMMRCServerInfo::PushPausedContextL(const CMMRCServerSession& aServerSession )
661 DP_CONTEXT(----> CMMRCServerInfo::PushPausedContextL *CD1*, CtxDevSound, DPLOCAL);
664 PushContextInOrderL(iMMRCPausedContextsQueue, aServerSession);
670 * Pop and remove the first Context of the highest priority from the in-process Context queue
671 * @return CMMRCServerSession* the session of the Context
673 CMMRCServerSession* CMMRCServerInfo::PopAndRemoveFirstPausedContext()
675 DP_CONTEXT(----> CMMRCServerInfo::PopAndRemoveFirstPausedContext *CD1*, CtxDevSound, DPLOCAL);
678 CMMRCServerSession* mmrcSession = PopAndRemoveFirstContextForPause(iMMRCPausedContextsQueue);
680 DP0_RET(mmrcSession, "mmrcSession = 0x%x");
683 * Pop and remove the first Context from the in-process Context queue by contextId
684 * @param const TAudioContextId& aContextId
685 * @return CMMRCServerSession* the session of the Context
687 CMMRCServerSession* CMMRCServerInfo::PopAndRemovePausedContext(const TAudioContextId& aContextId )
689 DP_CONTEXT(----> CMMRCServerInfo::PopAndRemovePausedContext *CD1*, CtxDevSound, DPLOCAL);
692 CMMRCServerSession* mmrcSession = PopAndRemoveContextIdForPause(iMMRCPausedContextsQueue, aContextId);
694 DP0_RET(mmrcSession, "mmrcSession = 0x%x");
697 * Pop the Context from the in-process Context queue
698 * @param const TAudioContextId& aContextId
699 * @return CMMRCServerSession* the session of the Context
701 CMMRCServerSession* CMMRCServerInfo::PausedContextByIndex(TInt aIndex)
703 DP_CONTEXT(----> CMMRCServerInfo::PausedContextByIndex *CD1*, CtxDevSound, DPLOCAL);
706 CMMRCServerSession* mmrcSession = PausedContextByIndexForPause(iMMRCPausedContextsQueue, aIndex);
708 DP0_RET(mmrcSession, "mmrcSession = 0x%x");
712 //------------------------------------------------------------------------------------
714 //------------------------------------------------------------------------------------
717 * Push an Context on the in-process Context queue
718 * @param CMMRCServerSession& aServerSession
719 * @leave in case of memory error
721 void CMMRCServerInfo::PushAPRContextL(const CMMRCServerSession& aServerSession )
723 DP_CONTEXT(----> CMMRCServerInfo::PushAPRContextL *CD1*, CtxDevSound, DPLOCAL);
726 PushContextL(iMMRCAPRContextsQueue, aServerSession);
732 * Pop and remove the first Context of the highest priority from the in-process Context queue
733 * @return CMMRCServerSession* the session of the Context
735 CMMRCServerSession* CMMRCServerInfo::PopAndRemoveFirstAPRContext()
737 DP_CONTEXT(----> CMMRCServerInfo::PopAndRemoveFirstAPRContext *CD1*, CtxDevSound, DPLOCAL);
740 CMMRCServerSession* mmrcSession = PopAndRemoveFirstContext(iMMRCAPRContextsQueue);
742 DP0_RET(mmrcSession, "mmrcSession = 0x%x");
745 * Pop and remove the first Context from the in-process Context queue by contextId
746 * @param const TAudioContextId& aContextId
747 * @return CMMRCServerSession* the session of the Context
749 CMMRCServerSession* CMMRCServerInfo::PopAndRemoveFirstAPRContextByContextId(const TAudioContextId& aContextId )
751 DP_CONTEXT(----> CMMRCServerInfo::PopAndRemoveFirstAPRContextByContextId *CD1*, CtxDevSound, DPLOCAL);
754 CMMRCServerSession* mmrcSession = PopAndRemoveFirstContextByContextId(iMMRCAPRContextsQueue, aContextId);
756 DP0_RET(mmrcSession, "mmrcSession = 0x%x");
759 * Pop the first Context from the in-process Context queue
760 * @return CMMRCServerSession* the session of the Context
762 CMMRCServerSession* CMMRCServerInfo::PopFirstAPRContext() const
764 DP_CONTEXT(----> CMMRCServerInfo::PopFirstAPRContext *CD1*, CtxDevSound, DPLOCAL);
767 CMMRCServerSession* mmrcSession = PopFirstContext(iMMRCAPRContextsQueue);
769 DP0_RET(mmrcSession, "mmrcSession = 0x%x");
775 TBool CMMRCServerInfo::IsOnAPRList(TAudioContextId aId)
777 DP_CONTEXT(----> CMMRCServerInfo::IsOnAPRList *CD1*, CtxDevSound, DPLOCAL);
779 TBool iIsContain = EFalse;
780 CMMRCServerSession* serverSession = NULL;
782 TInt nbContexts = iMMRCAPRContextsQueue.Count();
783 for( TInt i = 0 ; i < nbContexts ; i++ )
785 serverSession = iMMRCAPRContextsQueue[i];
787 TAudioContextId contextId = serverSession->ContextId();
788 if( aId == contextId )
795 DP0_RET(iIsContain, "%d");
801 void CMMRCServerInfo::PushContextInOrderL(RMMRCContextsQueueOrderTD& aContextsQueue, const CMMRCServerSession& aServerSession )
803 DP_CONTEXT(----> CMMRCServerInfo::PushContextInOrderL *CD1*, CtxDevSound, DPLOCAL);
806 aContextsQueue.PushL(&aServerSession);
815 CMMRCServerSession* CMMRCServerInfo::PopAndRemoveFirstContextForPause(RMMRCContextsQueueOrderTD& aContextsQueue)
817 DP_CONTEXT(----> CMMRCServerInfo::PopAndRemoveFirstContextForPause *CD1*, CtxDevSound, DPLOCAL);
820 CMMRCServerSession* serverSession = 0;
821 //PopAndRemove return null if the queue is empty;
822 serverSession = aContextsQueue.PopAndRemoveForPause(0);
824 DP0_RET(serverSession, "serverSession = 0x%x");
830 CMMRCServerSession* CMMRCServerInfo::PopAndRemoveContextIdForPause(RMMRCContextsQueueOrderTD& aContextsQueue, const TAudioContextId& aContextId )
832 DP_CONTEXT(----> CMMRCServerInfo::PopAndRemoveContextIdForPause *CD1*, CtxDevSound, DPLOCAL);
835 CMMRCServerSession* serverSession = NULL;
837 TInt nbContexts = aContextsQueue.Count();
838 for( TInt i = 0 ; i < nbContexts ; i++ )
840 serverSession = aContextsQueue[i];
842 TAudioContextId contextId = serverSession->ContextId();
843 if( aContextId == contextId )
845 aContextsQueue.PopAndRemoveForPause(i);
850 serverSession = NULL;
854 DP0_RET(serverSession, "serverSession = 0x%x");
861 CMMRCServerSession* CMMRCServerInfo::PausedContextByIndexForPause(RMMRCContextsQueueOrderTD& aContextsQueue, TInt aIndex)
863 DP_CONTEXT(----> CMMRCServerInfo::PausedContextByIndexForPause *CD1*, CtxDevSound, DPLOCAL);
866 CMMRCServerSession* serverSession = 0;
867 //PopAndRemove return null if the queue is empty;
868 serverSession = aContextsQueue[aIndex];
870 DP0_RET(serverSession, "serverSession = 0x%x");
878 TBool CMMRCServerInfo::IsOnPauseList(TAudioContextId aId)
880 DP_CONTEXT(----> CMMRCServerInfo::IsOnAPRList *CD1*, CtxDevSound, DPLOCAL);
882 TBool iIsContain = EFalse;
883 CMMRCServerSession* serverSession = NULL;
885 TInt nbContexts = iMMRCPausedContextsQueue.Count();
886 for( TInt i = 0 ; i < nbContexts ; i++ )
888 serverSession = iMMRCPausedContextsQueue[i];
890 TAudioContextId contextId = serverSession->ContextId();
891 if( aId == contextId )
898 DP0_RET(iIsContain, "%d");
904 TInt CMMRCServerInfo::RequestsCount()
905 { return iMMRCContextsQueue.Count(); }
906 TInt CMMRCServerInfo::AllocatedResourceContextsCount()
907 { return iMMRCAllocatedResourceContextsQueue.Count(); }
908 TInt CMMRCServerInfo::AllocatedAPRContextsCount()
909 { return iMMRCAPRContextsQueue.Count(); }
910 TInt CMMRCServerInfo::AllocatedPausedContextsCount()
911 { return iMMRCPausedContextsQueue.Count(); }