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 "mmrcservercontroller.h"
17 #include "mmrcerrorcodes.h"
18 #include "mmrcserversession.h"
19 #include "mmrcserverinfo.h"
20 #include "mmrcserverrulemanager.h"
21 #include "mmrcadaptationproxy.h"
22 #include "mlogicalchain.h"
23 #include <a3f/audioprocessingunittypeuids.h>
28 This class implements a timer.
30 class CARNNotificationObject : public CActive
34 static CARNNotificationObject* NewL(const TInt aPriority, CMMRCServerInfo& aMMRCServerInfo);
35 ~CARNNotificationObject();
36 void After(TTimeIntervalMicroSeconds32 aInterval);
44 CARNNotificationObject(const TInt aPriority);
45 void ConstructL(CMMRCServerInfo& aMMRCServerInfo);
52 CMMRCServerInfo* iMMRCServerInfo;
55 //------------------------------------------------------------------------------------
57 //------------------------------------------------------------------------------------
62 CMMRCServerController::CMMRCServerController()
65 DP_CONTEXT(----> CMMRCServerController::CMMRCServerController *CD1*, CtxDevSound, DPLOCAL);
74 CMMRCServerController::~CMMRCServerController()
76 DP_CONTEXT(----> CMMRCServerController::~CMMRCServerController *CD1*, CtxDevSound, DPLOCAL);
79 delete iMMRCServerInfo;
80 delete iMMRCServerRuleManager;
81 delete iARNNotificationObject;
87 * Constructs, and returns a pointer to, a new CMMRCServerController object.
89 * @return CMMRCServerController* A pointer to newly created utlitly object.
91 CMMRCServerController* CMMRCServerController::NewL()
93 DP_STATIC_CONTEXT(----> CMMRCServerController::NewL *CD1*, CtxDevSound, DPLOCAL);
96 CMMRCServerController* self = NewLC();
97 CleanupStack::Pop(self);
99 DP0_RET(self, "self = 0x%x");
103 * Constructs, leaves object on the cleanup stack, and returns a pointer
104 * to, a new CMMRCServerController object.
106 * @return CMMRCServerController* A pointer to newly created utlitly object.
108 CMMRCServerController* CMMRCServerController::NewLC()
110 DP_STATIC_CONTEXT(----> CMMRCServerController::NewLC *CD1*, CtxDevSound, DPLOCAL);
113 CMMRCServerController* self = new(ELeave) CMMRCServerController();
114 CleanupStack::PushL(self);
117 DP0_RET(self, "self = 0x%x");
121 * CMMRCServerController::ConstructL
122 * Symbian 2nd phase constructor can leave.
124 void CMMRCServerController::ConstructL()
126 DP_CONTEXT(----> CMMRCServerController::ConstructL *CD1*, CtxDevSound, DPLOCAL);
129 iMMRCServerInfo = CMMRCServerInfo::NewL(*this);
130 iMMRCServerRuleManager = CMMRCServerRuleManager::NewL(*this);
131 iARNNotificationObject = CARNNotificationObject::NewL(0, *iMMRCServerInfo); //Check the value
137 * Process the request pointer by a specific session
138 * @param CMMRCServerSession& aServerSession
139 * @return KerrNone in case of success of the process
141 TInt CMMRCServerController::EnqueueRequestL(CMMRCServerSession& aServerSession)
143 DP_CONTEXT(----> CMMRCServerController::ProcessRequestL *CD1*, CtxDevSound, DPLOCAL);
146 //add the request to the queue
147 iMMRCServerInfo->PushRequestL(aServerSession);
148 TInt err = ProcessNextRequestL();
150 DP0_RET(err, "err=%d");
154 * Process the first request with the highest priority from the FIFO queue
155 * @return KerrNone in case of success of the process
157 TInt CMMRCServerController::ProcessNextRequestL()
159 DP_CONTEXT(--------> CMMRCServerController::ProcessNextRequestL *CD1*, CtxDevSound, DPLOCAL);
165 TMMRCServerState serverState;
166 iMMRCServerInfo->ServerState(serverState, contextId);
167 #ifdef SYMBIAN_MULTIMEDIA_ENABLE_LOGGING
168 RDebug::Print(_L("serverState = %d"), serverState);
169 RDebug::Print(_L("size of message queue = %d"), iMMRCServerInfo->RequestsCount());
170 RDebug::Print(_L("size of inprocess queue = %d"), iMMRCServerInfo->AllocatedResourceContextsCount());
171 RDebug::Print(_L("size of paused queue = %d"), iMMRCServerInfo->AllocatedPausedContextsCount());
173 if(EMMRCServerStateIdle != serverState)
175 DP0_RET(KErrNone, "%d");
178 CMMRCServerSession* serverSession = iMMRCServerInfo->PopAndRemoveFirstRequest(); //PopAndRemoveRequestFirstHighestPriority();
179 //Pop the next next commited message with the highest priority
180 if( NULL == serverSession )
182 DP0_RET(KErrNone, "%d");
185 if (!serverSession->HasUserEnvironmentCapability())
187 /* Check to see if it's a record use case and in IDLE, Active, or PRIME.
188 // in which case you should refuse the request for reasons
191 MLogicalChain* requestedChange = serverSession->LogicalChainRequestedStack();
192 if ((requestedChange!=NULL) && (requestedChange->StreamState() > EInitialized)) // trying to play
194 TInt count = requestedChange->AudioProcessingUnitsCount();
195 for (TInt i=0; i<count; ++i)
197 if (KUidAudioDeviceSource == requestedChange->AudioProcessingUnitUid(i))
199 serverSession->NotifyClientOfError(KErrPermissionDenied);
200 // The following return value, doesn't actually make it back to the client
201 // We do however Notify the client above using NotifyClientOfError()
202 DP0_RET(KErrPermissionDenied, "%d");
209 //Pop the last commited message in process = the current resource in use
210 CMMRCServerSession* serverSessionAllocatedResource = iMMRCServerInfo->PopFirstAllocatedResourceContext();
211 //If no resource locked...
212 if( NULL == serverSessionAllocatedResource )
215 err = SendResourceRequest ( *serverSession );
217 else //If a resource has been allocated or is used, possibly preemption
219 TAudioContextId contextId = serverSession->ContextId( );
220 TAudioContextId contextIdAllocatedResource = serverSessionAllocatedResource->ContextId( );
221 #ifdef SYMBIAN_MULTIMEDIA_ENABLE_LOGGING
222 RDebug::Print(_L("contextId = %d"), contextId.Id());
223 RDebug::Print(_L("contextIdAllocatedResource = %d"), contextIdAllocatedResource.Id());
226 //in case of processing the same context, remove the last committed request from the queue
227 // of in-process request to avoid preemption within the same context.
228 if(contextId == contextIdAllocatedResource)
230 err = SendResourceRequest ( *serverSession );
232 else // maybe preemption
236 MLogicalChain* logicalChainUsingResource = serverSessionAllocatedResource->LogicalChainLastCommited();
237 MLogicalChain* logicalChainNew = serverSession->LogicalChainRequestedStack();
238 //Should not/cannot be null!
239 if( NULL==logicalChainUsingResource || NULL==logicalChainNew )
242 RDebug::Print(_L("!!!!CMMRCServerController::ProcessNextRequestL - logicalChainUsingResource or logicalChainNew NULL"));
245 User::Leave(EMMRCErrorLogicalChainNull);
248 TAudioState audioStateAllocatedResource = logicalChainUsingResource->StreamState();
249 TAudioState audioStateNew = logicalChainNew->StreamState ( );
250 TMMRCRule rule = DecisionRule(audioStateAllocatedResource, audioStateNew);
251 //Process according to the rule
252 if( rule == EAlwaysProcess )
254 err = SendResourceRequest( *serverSession );
256 else // process only in case of higher priority
258 TInt currentClientPriority = logicalChainUsingResource->Priority();
259 TInt newClientPriority = logicalChainNew->Priority();
260 TBool currentClient_HasMMDD = serverSessionAllocatedResource->HasMultimediaCapability();
261 TBool newClient_HasMMDD = serverSession->HasMultimediaCapability();
263 // If new client has multimedia capability and current doesn't have,
264 // priorities don't matter preempt the current client
266 // But if both are equal competitors (both has MMDD capability or both hasn't)
267 // and the newcomer has higher priority preempt too
268 if ( (!currentClient_HasMMDD && newClient_HasMMDD) ||
269 ( (currentClient_HasMMDD == newClient_HasMMDD) &&
270 (newClientPriority > currentClientPriority) ) )
272 //The process is delayed. First we have to preempt the current inprocess resource
273 // so puch back the request (its session)
274 iMMRCServerInfo->PushRequestL(*serverSession);
276 //send a premption message to the last commited message session
277 err = SendPreemptionRequest ( *serverSessionAllocatedResource );
282 TAudioContextId iId = serverSession->ContextId( );
283 TBool iIsOnPauseList = iMMRCServerInfo->IsOnPauseList(iId);
286 iMMRCServerInfo->PushPausedContextL(*serverSession);
288 // nothing pending, deny resources, and notify client.
289 serverSession->AdaptationRequestAcknowledgment(EMMRCAdaptationToServerResourceIncomplete, KErrInUse);
290 // Server is back to idle.
291 iMMRCServerInfo->SwitchServerState(EMMRCServerStateIdle, 0);
297 #ifdef SYMBIAN_MULTIMEDIA_ENABLE_LOGGING
300 RDebug::Print(_L("!!!!CMMRCServerController::ProcessNextRequestL - error = %d"), err);
304 DP0_RET(err, "err=%d");
308 * Pop the decision rule on the base of the current in-process request and a new committed request
309 * @param TAudioState aAudioStateAllocatedResource
310 * @param TAudioState aAudioStateRequiringProcess
313 TMMRCRule CMMRCServerController::DecisionRule(TAudioState aAudioStateAllocatedResource, TAudioState aAudioStateRequiringProcess)
315 DP_CONTEXT(----> CMMRCServerController::DecisionRule *CD1*, CtxDevSound, DPLOCAL);
318 TMMRCRule rule = iMMRCServerRuleManager->DecisionRule(aAudioStateAllocatedResource, aAudioStateRequiringProcess);
320 DP0_RET(rule, "rule=%d");
324 * Pop the action reason on the base of the last committed request and the current one
325 * @param TAudioState aAudioStateLastCommitted
326 * @param TAudioState aAudioStateRequested
329 TReason CMMRCServerController::ActionReason(TAudioState aAudioStateLastCommitted, TAudioState aAudioStateRequested)
331 DP_CONTEXT(----> CMMRCServerController::ActionReason *CD1*, CtxDevSound, DPLOCAL);
334 TReason reason = iMMRCServerRuleManager->ActionReason(aAudioStateLastCommitted, aAudioStateRequested);
336 DP0_RET(reason, "reason=%d");
340 * Send a resource request to the adaptation
341 * @param MLogicalChain* aOldChain
342 * @param MLogicalChain* aNewChain
343 * @return KerrNone in case of success of the process
345 TInt CMMRCServerController::SendResourceRequest( CMMRCServerSession& aServerSession )
347 DP_CONTEXT(----> CMMRCServerController::SendResourceRequest *CD1*, CtxDevSound, DPLOCAL);
350 iMMRCServerInfo->SwitchServerState( EMMRCServerStateWaitResourceResponseFromAdaptation, aServerSession.ContextId() );
352 // if entering APR state, remove from Paused list.
353 TRAPD(err, aServerSession.StartProcessL());
355 MLogicalChain* logicalChainNew = aServerSession.LogicalChainRequested();
358 TAudioState audioStateNew = logicalChainNew->StreamState();
360 (audioStateNew == EActive ) ||
361 (audioStateNew == EPrimed) ||
362 (audioStateNew == EIdle)
366 TInt contextId = aServerSession.ContextId( );
367 iMMRCServerInfo->PopAndRemovePausedContext(contextId);
374 if (!aServerSession.SendRequestToAdaptation(ENormalRequest))
376 // TBD fail at current task.
377 // return server shutting down
381 #ifdef SYMBIAN_MULTIMEDIA_ENABLE_LOGGING
384 RDebug::Print(_L("!!!!CMMRCServerController::SendResourceRequest - error = %d"), err);
388 DP0_RET(err, "err=%d");
392 * Send a preemption request to the adaptation
393 * @param MLogicalChain* aOldChain
394 * @param MLogicalChain* aNewChain
395 * @return KerrNone in case of success of the process
397 TInt CMMRCServerController::SendPreemptionRequest( CMMRCServerSession& aServerSession )
399 DP_CONTEXT(----> CMMRCServerController::SendPreemptionRequest *CD1*, CtxDevSound, DPLOCAL);
402 iMMRCServerInfo->SwitchServerState( EMMRCServerStateWaitPreemptionResponse, aServerSession.ContextId() );
404 //Update logical chains
405 TRAPD(err, aServerSession.StartPreemptionL());
411 if (!aServerSession.SendRequestToAdaptation(EPreemptionRequest))
413 // TBD fail at current task.
414 // return server shutting down/low memory where necessary
418 #ifdef SYMBIAN_MULTIMEDIA_ENABLE_LOGGING
421 RDebug::Print(_L("!!!!CMMRCServerController::SendPreemptionRequest - error = %d"), err);
425 DP0_RET(err, "err=%d");
429 * Callback from the adaptation
430 * @param MLogicalChain* aOldChain
431 * @param MLogicalChain* aNewChain
432 * @param TMMRCAdaptationToServerRequestResults aResult
434 void CMMRCServerController::AdaptationRequestAcknowledgment(CMMRCServerSession& aServerSession, TMMRCAdaptationToServerRequestResults aResult, TInt /*aError*/)
436 DP_CONTEXT(--------> CMMRCServerController::AdaptationRequestAcknowledgment *CD1*, CtxDevSound, DPLOCAL);
438 #ifdef SYMBIAN_MULTIMEDIA_ENABLE_LOGGING
439 RDebug::Print(_L("size of message queue = %d"), iMMRCServerInfo->RequestsCount());
440 RDebug::Print(_L("size of inprocess queue = %d"), iMMRCServerInfo->AllocatedResourceContextsCount());
441 RDebug::Print(_L("size of paused queue = %d"), iMMRCServerInfo->AllocatedPausedContextsCount());
445 TMMRCServerState serverState;
447 iMMRCServerInfo->ServerState(serverState, contextId);
450 case EMMRCServerStateWaitPreemptionResponse: // here we process the response
454 case EMMRCAdaptationToServerResourceComplete:
456 //we remove the request in process from the queue
457 CMMRCServerSession* serverSession = iMMRCServerInfo->PopAndRemoveFirstAllocatedResourceContext();
460 TRAP(err, iMMRCServerInfo->PushPausedContextL(*serverSession));
461 DP1(DLERR,"EPushPauseContextLeft %d", err);
462 __ASSERT_DEBUG(err == KErrNone, Panic(EPushPauseContextLeft));
464 //Do not wait for a client acknowledgment
465 iMMRCServerInfo->SwitchServerState(EMMRCServerStateIdle, 0);
468 case EMMRCAdaptationToServerResourceTimeout:
471 //jjpy TODO: What if the preemption request failed?!
472 // That will be specified/implemented during the integration with the resource manager
473 //we remove the request in process from the queue
474 iMMRCServerInfo->PopAndRemoveFirstAllocatedResourceContext();
476 } // end switch(aResult)
477 } //end case EMMRCServerStateWaitPreemptionResponse
479 case EMMRCServerStateWaitResourceResponseFromAdaptation: // here we process the response
483 case EMMRCAdaptationToServerResourceComplete:
485 CMMRCServerSession* serverSessionAllocatedResource = iMMRCServerInfo->PopFirstAllocatedResourceContext();
486 if( serverSessionAllocatedResource ) //If some previously some context has allocated a resource
488 //check if same context, if not it might be an error
489 TAudioContextId contextId = aServerSession.ContextId( );
490 TAudioContextId contextIdAllocatedResource = serverSessionAllocatedResource->ContextId( );
491 #ifdef SYMBIAN_MULTIMEDIA_ENABLE_LOGGING
492 RDebug::Print(_L("contextId = %d"), contextId.Id());
493 RDebug::Print(_L("contextIdAllocatedResource = %d"), contextIdAllocatedResource.Id());
495 MLogicalChain* logicalChainNew = aServerSession.LogicalChainRequested();
496 MLogicalChain* logicalChainOld = aServerSession.LogicalChainLastCommited();
497 TAudioState audioStateNew = logicalChainNew->StreamState ( );
498 if(contextId != contextIdAllocatedResource)
500 //it is ok if the rule said process always
501 MLogicalChain* logicalChainUsingResource = serverSessionAllocatedResource->LogicalChainLastCommited();
502 TAudioState audioStateAllocatedResource = logicalChainUsingResource->StreamState();
503 TAudioState audioStateNew = logicalChainNew->StreamState ( );
504 TMMRCRule rule = DecisionRule(audioStateAllocatedResource, audioStateNew);
505 if( rule != EAlwaysProcess )
507 //not possible in theory... this is an error
508 #ifdef SYMBIAN_MULTIMEDIA_ENABLE_LOGGING
509 RDebug::Print(_L("!!!!CMMRCServerController::AdaptationRequestAcknowledgment - contextId allocating a resource and new request different. Should be the same!"), iMMRCServerInfo->AllocatedResourceContextsCount());
513 else //same context here, so check if the resource has been deallocated
515 // in case of stop etc. remove from in process request
516 //now check the reason
517 TAudioState audioStateOld = EUninitialized;
520 audioStateOld = logicalChainOld->StreamState();
522 TReason reason = ActionReason(audioStateOld, audioStateNew);
526 iARNNotificationObject->Cancel();
527 iMMRCServerInfo->PopAndRemovePausedContext(contextId);
529 else if (reason == EUnload)
531 iARNNotificationObject->Initialize();
532 iMMRCServerInfo->PopAndRemoveFirstAllocatedResourceContextByContextId(contextId);
536 else //no in process request locking a resource
538 MLogicalChain* logicalChainNew = aServerSession.LogicalChainRequested();
539 MLogicalChain* logicalChainOld = aServerSession.LogicalChainLastCommited();
540 TAudioState audioStateNew = logicalChainNew->StreamState ( );
541 TAudioState audioStateOld = EUninitialized;
544 audioStateOld = logicalChainOld->StreamState();
546 TReason reason = ActionReason(audioStateOld, audioStateNew);
547 if( reason == ELoad ||
548 reason == EPrimeReason ||
549 reason == EActivate )
551 TRAP(err, iMMRCServerInfo->PushAllocatedResourceContextL( aServerSession ));
552 DP1(DLERR,"EPushAllocatedResourceContextFailed %d", err);
553 __ASSERT_DEBUG(err == KErrNone, Panic(EPushAllocatedResourceContextFailed));
556 iMMRCServerInfo->SwitchServerState(EMMRCServerStateIdle, 0);
559 case EMMRCAdaptationToServerResourceTimeout:
562 //Just switch the state
563 iMMRCServerInfo->SwitchServerState(EMMRCServerStateIdle, 0);
566 } //end switch switch(aResult)
567 } // end case EMMRCServerStateWaitResourceResponseFromAdaptation
569 case EMMRCServerStateIdle: //not possible....
574 TRAP(err, ProcessNextRequestL());
575 DP1(DLERR,"EProcessNextRequestLeft %d", err);
576 __ASSERT_DEBUG(err == KErrNone, Panic(EProcessNextRequestLeft));
583 void CMMRCServerController::NotifyPausedClientsResourceUnallocated()
585 DP_CONTEXT(----> CMMRCServerController::NotifyClientsResourceUnallocated *CD1*, CtxDevSound, DPLOCAL);
588 CMMRCServerSession* serverSession = iMMRCServerInfo->PopAndRemoveFirstPausedContext( );
589 while( serverSession )
591 serverSession->NotifyClientResourceUnallocated();
592 serverSession = iMMRCServerInfo->PopAndRemoveFirstPausedContext( );
601 void CMMRCServerController::CloseSessionByContextId(TInt32 aContextId)
603 DP_CONTEXT(----> CMMRCServerController::CloseSessionByContextId *CD1*, CtxDevSound, DPLOCAL);
606 while( iMMRCServerInfo->PopAndRemoveFirstAllocatedResourceContextByContextId( aContextId ) ){}
607 while( iMMRCServerInfo->PopAndRemoveFirstRequestByContextId( aContextId ) ){}
608 while( iMMRCServerInfo->PopAndRemovePausedContext( aContextId ) ){}
609 while( iMMRCServerInfo->PopAndRemoveFirstAPRContextByContextId( aContextId ) ){}
611 TMMRCServerState serverState;
612 iMMRCServerInfo->ServerState(serverState, contextId);
613 if( contextId == aContextId)
615 iMMRCServerInfo->SwitchServerState(EMMRCServerStateIdle, 0);
617 #ifdef SYMBIAN_MULTIMEDIA_ENABLE_LOGGING
618 RDebug::Print(_L("size of message queue = %d"), iMMRCServerInfo->RequestsCount());
619 RDebug::Print(_L("size of inprocess queue = %d"), iMMRCServerInfo->AllocatedResourceContextsCount());
620 RDebug::Print(_L("size of paused queue = %d"), iMMRCServerInfo->AllocatedPausedContextsCount());
621 RDebug::Print(_L("size of APR queue = %d"), iMMRCServerInfo->AllocatedAPRContextsCount());
630 void CMMRCServerController::ServerState(TMMRCServerState& aServerState, TUint64& aContextId) const
632 iMMRCServerInfo->ServerState(aServerState, aContextId);
638 TInt CMMRCServerController::EnqueueRequestForAPRL(CMMRCServerSession& aServerSession)
640 DP_CONTEXT(----> CMMRCServerController::EnqueueRequestForAPRL *CD1*, CtxDevSound, DPLOCAL);
643 //add the request to the queue
645 //if already there, should return KErrAlreadyExists
647 if (iMMRCServerInfo->IsOnAPRList(aServerSession.ContextId()))
649 err = KErrAlreadyExists;
653 iMMRCServerInfo->PushAPRContextL(aServerSession);
655 DP0_RET(err, "err=%d");
661 TInt CMMRCServerController::RemoveRequestForAPR(CMMRCServerSession& aServerSession)
663 DP_CONTEXT(----> CMMRCServerController::RemoveRequestForAPR *CD1*, CtxDevSound, DPLOCAL);
667 TInt32 iContextId = aServerSession.ContextId();
668 TBool iIsOnAPRList = iMMRCServerInfo->IsOnAPRList(iContextId);
672 // Its possible that the remove request has occured whilst clients are being notified that the resource is available
673 // Check if a notification sequence is currently under way
674 if ( iARNNotificationObject->IsActive() )
677 // Iterate through each paused client
678 for ( TInt index = 0 ; index < iMMRCServerInfo->AllocatedPausedContextsCount() ; index++ )
681 // Find the client that has requested removal in the list
682 TAudioContextId id = iMMRCServerInfo->PausedContextByIndex(index)->ContextId();
683 if ( aServerSession.ContextId() == id )
685 // Object has already received a notification
686 if ( index < iARNNotificationObject->iIndex )
688 // decrement the notification objects list index to account for the item that will be removed from the queue
689 --iARNNotificationObject->iIndex;
692 // no action needs to be taken if
693 // index >= iMMRCServerInfo.iIndex
701 iMMRCServerInfo->PopAndRemoveFirstAPRContextByContextId(iContextId);
702 iMMRCServerInfo->PopAndRemovePausedContext(iContextId); //removing this session from the list of paused too.
709 DP0_RET(err, "err=%d");
715 TInt CMMRCServerController::WillResumePlay()
717 DP_CONTEXT(----> CMMRCServerController::WillResumePlay *CD1*, CtxDevSound, DPLOCAL);
721 iARNNotificationObject->Cancel();
724 DP0_RET(err, "err=%d");
732 CARNNotificationObject::CARNNotificationObject(const TInt aPriority)
736 DP_CONTEXT(----> CARNNotificationObject::CARNNotificationObject *CD1*, CtxDevSound, DPLOCAL);
747 CARNNotificationObject::~CARNNotificationObject()
749 DP_CONTEXT(----> CARNNotificationObject::~CARNNotificationObject *CD1*, CtxDevSound, DPLOCAL);
754 delete iMMRCServerInfo;
761 CARNNotificationObject::ConstructL
762 Symbian 2nd phase constructor can leave.
764 void CARNNotificationObject::ConstructL(CMMRCServerInfo& aMMRCServerInfo)
766 DP_CONTEXT(----> CARNNotificationObject::ConstructL *CD1*, CtxDevSound, DPLOCAL);
769 iMMRCServerInfo = &aMMRCServerInfo;
770 CActiveScheduler::Add(this);
771 User::LeaveIfError(iTimer.CreateLocal());
777 // ---------------------------------------------------------------------------
778 // CARNNotificationObject::NewL
779 // ---------------------------------------------------------------------------
780 CARNNotificationObject* CARNNotificationObject::NewL(const TInt aPriority, CMMRCServerInfo& aMMRCServerInfo)
782 DP_STATIC_CONTEXT(----> CARNNotificationObject::NewL *CD1*, CtxDevSound, DPLOCAL);
785 CARNNotificationObject* self = new(ELeave)CARNNotificationObject(aPriority);
786 CleanupStack::PushL(self);
787 self->ConstructL(aMMRCServerInfo);
788 CleanupStack::Pop(self);
790 DP0_RET(self, "0x%x");
793 // ---------------------------------------------------------------------------
794 // CARNNotificationObject::RunL
795 // ---------------------------------------------------------------------------
796 void CARNNotificationObject::RunL()
798 DP_CONTEXT(CARNNotificationObject::RunL *CD1*, CtxDevSound, DPLOCAL);
801 #if defined(_DEBUG) && defined(__WINS__)
802 const TTimeIntervalMicroSeconds32 KTimer = 1.8*1000000; // 1.8 seconds
804 const TTimeIntervalMicroSeconds32 KTimer = 800000; // 0.8 seconds
807 TInt numPausedContext = iMMRCServerInfo->AllocatedPausedContextsCount();
809 // The list may have been modified whilst the AO was asleep, need to check that:
810 // 1) iIndex is still in range
811 // 2) the object at that location should still receive a notification
813 if ( (iIndex > -1) && (iIndex < numPausedContext) )
815 CMMRCServerSession* mmrcSession = iMMRCServerInfo->PausedContextByIndex(iIndex);
817 TAudioContextId id = mmrcSession->ContextId( );
818 TBool isOnAPRList = iMMRCServerInfo->IsOnAPRList(id);
821 mmrcSession->NotifyClientResourceUnallocated();
825 for(TInt aux = iIndex + 1; aux < numPausedContext ; aux++)
827 mmrcSession = iMMRCServerInfo->PausedContextByIndex(aux);
828 id = mmrcSession->ContextId( );
829 isOnAPRList = iMMRCServerInfo->IsOnAPRList(id);
847 // ---------------------------------------------------------------------------
848 // CARNNotificationObject::After
849 // ---------------------------------------------------------------------------
850 void CARNNotificationObject::After(TTimeIntervalMicroSeconds32 aInterval)
852 DP_CONTEXT(CARNNotificationObject::After *CD1*, CtxDevSound, DPLOCAL);
856 iTimer.After(iStatus,aInterval);
862 // ---------------------------------------------------------------------------
863 // CARNNotificationObject::Initialize
864 // ---------------------------------------------------------------------------
865 void CARNNotificationObject::Initialize()
867 DP_CONTEXT(CARNNotificationObject::Initialize *CD1*, CtxDevSound, DPLOCAL);
870 #if defined(_DEBUG) && defined(__WINS__)
871 const TTimeIntervalMicroSeconds32 KTimer = 1.8*1000000; // 1.8 seconds
873 const TTimeIntervalMicroSeconds32 KTimer = 800000; // 0.8 seconds
876 TInt numPausedContext = iMMRCServerInfo->AllocatedPausedContextsCount();
878 CMMRCServerSession* mmrcSession = NULL;
880 if(numPausedContext) // don't bother if zero.
882 for(TInt i(0); i<numPausedContext ; ++i)
884 mmrcSession = iMMRCServerInfo->PausedContextByIndex(i);
885 TAudioContextId id = mmrcSession->ContextId( );
886 TBool isOnAPRList = iMMRCServerInfo->IsOnAPRList(id);
899 // ---------------------------------------------------------------------------
900 // CMMRCServer::DoCancel
901 // ---------------------------------------------------------------------------
902 void CARNNotificationObject::DoCancel()
904 DP_CONTEXT(CARNNotificationObject::DoCancel *CD1*, CtxDevSound, DPLOCAL);
913 void CMMRCServerController::Panic(TMMRCServerControllerPanicCodes aCode)
915 User::Panic(KMMRCServerControllerPanicCategory, aCode);