os/mm/mmresourcemgmt/mmresctrl/src/mmrcserver/mmrcservercontroller.cpp
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
// Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
//
sl@0
    15
sl@0
    16
#include "mmrcservercontroller.h"
sl@0
    17
#include "mmrcerrorcodes.h"
sl@0
    18
#include "mmrcserversession.h"
sl@0
    19
#include "mmrcserverinfo.h"
sl@0
    20
#include "mmrcserverrulemanager.h"
sl@0
    21
#include "mmrcadaptationproxy.h"
sl@0
    22
#include "mlogicalchain.h"
sl@0
    23
#include <a3f/audioprocessingunittypeuids.h>
sl@0
    24
sl@0
    25
/**
sl@0
    26
@internalComponent
sl@0
    27
sl@0
    28
This class implements a timer. 
sl@0
    29
*/	
sl@0
    30
class CARNNotificationObject : public CActive
sl@0
    31
	{
sl@0
    32
	
sl@0
    33
public:
sl@0
    34
	static CARNNotificationObject* NewL(const TInt aPriority, CMMRCServerInfo& aMMRCServerInfo);
sl@0
    35
	~CARNNotificationObject();
sl@0
    36
	void After(TTimeIntervalMicroSeconds32 aInterval);
sl@0
    37
	void Initialize();
sl@0
    38
	
sl@0
    39
protected:
sl@0
    40
	void RunL();
sl@0
    41
	void DoCancel();
sl@0
    42
sl@0
    43
private:
sl@0
    44
	CARNNotificationObject(const TInt aPriority);
sl@0
    45
	void ConstructL(CMMRCServerInfo& aMMRCServerInfo);
sl@0
    46
sl@0
    47
public:
sl@0
    48
	TInt iIndex;
sl@0
    49
	
sl@0
    50
protected:
sl@0
    51
	RTimer	iTimer;
sl@0
    52
	CMMRCServerInfo*  iMMRCServerInfo;
sl@0
    53
	};
sl@0
    54
	
sl@0
    55
//------------------------------------------------------------------------------------
sl@0
    56
//
sl@0
    57
//------------------------------------------------------------------------------------
sl@0
    58
sl@0
    59
/**
sl@0
    60
 * Constructor
sl@0
    61
 */
sl@0
    62
CMMRCServerController::CMMRCServerController()
sl@0
    63
	{
sl@0
    64
	TRACE_CREATE();
sl@0
    65
	DP_CONTEXT(----> CMMRCServerController::CMMRCServerController *CD1*, CtxDevSound, DPLOCAL);
sl@0
    66
	DP_IN();
sl@0
    67
	
sl@0
    68
	DP_OUT();
sl@0
    69
	}
sl@0
    70
sl@0
    71
/**
sl@0
    72
 * Destructor
sl@0
    73
 */
sl@0
    74
CMMRCServerController::~CMMRCServerController()
sl@0
    75
	{
sl@0
    76
	DP_CONTEXT(----> CMMRCServerController::~CMMRCServerController *CD1*, CtxDevSound, DPLOCAL);
sl@0
    77
	DP_IN();
sl@0
    78
	
sl@0
    79
	delete iMMRCServerInfo;
sl@0
    80
	delete iMMRCServerRuleManager;
sl@0
    81
	delete iARNNotificationObject;
sl@0
    82
	
sl@0
    83
	DP_OUT();
sl@0
    84
	}
sl@0
    85
sl@0
    86
/**
sl@0
    87
 * Constructs, and returns a pointer to, a new CMMRCServerController object.
sl@0
    88
 * Leaves on failure.
sl@0
    89
 * @return CMMRCServerController* A pointer to newly created utlitly object.
sl@0
    90
 */		
sl@0
    91
CMMRCServerController* CMMRCServerController::NewL()
sl@0
    92
	{
sl@0
    93
	DP_STATIC_CONTEXT(----> CMMRCServerController::NewL *CD1*, CtxDevSound, DPLOCAL);
sl@0
    94
	DP_IN();
sl@0
    95
	
sl@0
    96
	CMMRCServerController* self = NewLC();
sl@0
    97
	CleanupStack::Pop(self);
sl@0
    98
	
sl@0
    99
	DP0_RET(self, "self = 0x%x");
sl@0
   100
	}
sl@0
   101
	
sl@0
   102
/**
sl@0
   103
 * Constructs, leaves object on the cleanup stack, and returns a pointer
sl@0
   104
 * to, a new CMMRCServerController object.
sl@0
   105
 * Leaves on failure.
sl@0
   106
 * @return CMMRCServerController* A pointer to newly created utlitly object.
sl@0
   107
 */	
sl@0
   108
CMMRCServerController* CMMRCServerController::NewLC()
sl@0
   109
	{
sl@0
   110
	DP_STATIC_CONTEXT(----> CMMRCServerController::NewLC *CD1*, CtxDevSound, DPLOCAL);
sl@0
   111
	DP_IN();
sl@0
   112
	
sl@0
   113
	CMMRCServerController* self = new(ELeave) CMMRCServerController();
sl@0
   114
	CleanupStack::PushL(self);
sl@0
   115
	self->ConstructL();
sl@0
   116
	
sl@0
   117
	DP0_RET(self, "self = 0x%x");
sl@0
   118
	}
sl@0
   119
	
sl@0
   120
/**
sl@0
   121
 * CMMRCServerController::ConstructL
sl@0
   122
 * Symbian 2nd phase constructor can leave.
sl@0
   123
 */
sl@0
   124
void CMMRCServerController::ConstructL()
sl@0
   125
	{
sl@0
   126
	DP_CONTEXT(----> CMMRCServerController::ConstructL *CD1*, CtxDevSound, DPLOCAL);
sl@0
   127
	DP_IN();
sl@0
   128
	
sl@0
   129
	iMMRCServerInfo = CMMRCServerInfo::NewL(*this);
sl@0
   130
	iMMRCServerRuleManager = CMMRCServerRuleManager::NewL(*this);
sl@0
   131
	iARNNotificationObject = CARNNotificationObject::NewL(0, *iMMRCServerInfo); //Check the value
sl@0
   132
	
sl@0
   133
	DP_OUT();
sl@0
   134
	}
sl@0
   135
sl@0
   136
/**
sl@0
   137
* Process the request pointer by a specific session
sl@0
   138
* @param CMMRCServerSession& aServerSession
sl@0
   139
* @return KerrNone in case of success of the process
sl@0
   140
*/
sl@0
   141
TInt CMMRCServerController::EnqueueRequestL(CMMRCServerSession& aServerSession)
sl@0
   142
	{
sl@0
   143
	DP_CONTEXT(----> CMMRCServerController::ProcessRequestL *CD1*, CtxDevSound, DPLOCAL);
sl@0
   144
	DP_IN();
sl@0
   145
	
sl@0
   146
	//add the request to the queue
sl@0
   147
	iMMRCServerInfo->PushRequestL(aServerSession);
sl@0
   148
	TInt err = ProcessNextRequestL();
sl@0
   149
	
sl@0
   150
	DP0_RET(err, "err=%d");
sl@0
   151
	}
sl@0
   152
sl@0
   153
/**
sl@0
   154
 * Process the first request with the highest priority from the FIFO queue
sl@0
   155
 * @return KerrNone in case of success of the process
sl@0
   156
 */
sl@0
   157
 TInt CMMRCServerController::ProcessNextRequestL()
sl@0
   158
	{
sl@0
   159
	DP_CONTEXT(--------> CMMRCServerController::ProcessNextRequestL *CD1*, CtxDevSound, DPLOCAL);
sl@0
   160
	DP_IN();
sl@0
   161
	
sl@0
   162
	TInt err = KErrNone;
sl@0
   163
sl@0
   164
	TUint64 contextId;
sl@0
   165
	TMMRCServerState serverState;
sl@0
   166
	iMMRCServerInfo->ServerState(serverState, contextId);
sl@0
   167
#ifdef SYMBIAN_MULTIMEDIA_ENABLE_LOGGING
sl@0
   168
		RDebug::Print(_L("serverState    = %d"),  serverState);
sl@0
   169
		RDebug::Print(_L("size of message queue    = %d"),  iMMRCServerInfo->RequestsCount());
sl@0
   170
		RDebug::Print(_L("size of inprocess queue = %d"),  iMMRCServerInfo->AllocatedResourceContextsCount());
sl@0
   171
		RDebug::Print(_L("size of paused queue = %d"),  iMMRCServerInfo->AllocatedPausedContextsCount());
sl@0
   172
#endif
sl@0
   173
	if(EMMRCServerStateIdle != serverState)
sl@0
   174
		{
sl@0
   175
		DP0_RET(KErrNone, "%d");
sl@0
   176
		}
sl@0
   177
	
sl@0
   178
	CMMRCServerSession* serverSession = iMMRCServerInfo->PopAndRemoveFirstRequest(); //PopAndRemoveRequestFirstHighestPriority();
sl@0
   179
	//Pop the next next commited message with the highest priority
sl@0
   180
	if( NULL == serverSession )
sl@0
   181
		{
sl@0
   182
		DP0_RET(KErrNone, "%d");
sl@0
   183
		}
sl@0
   184
	
sl@0
   185
	if (!serverSession->HasUserEnvironmentCapability())
sl@0
   186
		{
sl@0
   187
		/* Check to see if it's a record use case and in IDLE, Active, or PRIME.
sl@0
   188
		// in which case you should refuse the request for reasons 
sl@0
   189
		KErrPermissionDenied
sl@0
   190
		*/
sl@0
   191
		MLogicalChain* requestedChange = serverSession->LogicalChainRequestedStack();
sl@0
   192
		if ((requestedChange!=NULL) && (requestedChange->StreamState() > EInitialized)) // trying to play
sl@0
   193
			{
sl@0
   194
			TInt count = requestedChange->AudioProcessingUnitsCount();
sl@0
   195
			for (TInt i=0; i<count; ++i)
sl@0
   196
				{
sl@0
   197
				if (KUidAudioDeviceSource == requestedChange->AudioProcessingUnitUid(i))
sl@0
   198
					{		
sl@0
   199
					serverSession->NotifyClientOfError(KErrPermissionDenied);
sl@0
   200
					// The following return value, doesn't actually make it back to the client
sl@0
   201
					// We do however Notify the client above using NotifyClientOfError()
sl@0
   202
					DP0_RET(KErrPermissionDenied, "%d");
sl@0
   203
					}
sl@0
   204
				}			
sl@0
   205
			}
sl@0
   206
sl@0
   207
		}
sl@0
   208
	
sl@0
   209
	//Pop the last commited message in process = the current resource in use
sl@0
   210
	CMMRCServerSession* serverSessionAllocatedResource = iMMRCServerInfo->PopFirstAllocatedResourceContext();
sl@0
   211
	//If no resource locked...
sl@0
   212
	if( NULL == serverSessionAllocatedResource )
sl@0
   213
		{
sl@0
   214
		
sl@0
   215
		err = SendResourceRequest ( *serverSession );
sl@0
   216
		}
sl@0
   217
	else //If a resource has been allocated or is used, possibly preemption
sl@0
   218
		{
sl@0
   219
		TAudioContextId contextId = serverSession->ContextId( );
sl@0
   220
		TAudioContextId contextIdAllocatedResource = serverSessionAllocatedResource->ContextId( );
sl@0
   221
	#ifdef SYMBIAN_MULTIMEDIA_ENABLE_LOGGING	
sl@0
   222
			RDebug::Print(_L("contextId          = %d"),  contextId.Id());
sl@0
   223
			RDebug::Print(_L("contextIdAllocatedResource = %d"),  contextIdAllocatedResource.Id());
sl@0
   224
	#endif
sl@0
   225
sl@0
   226
		//in case of processing the same context, remove the last committed request from the queue
sl@0
   227
		// of in-process request to avoid preemption within the same context.
sl@0
   228
		if(contextId == contextIdAllocatedResource)
sl@0
   229
			{
sl@0
   230
			err = SendResourceRequest ( *serverSession );
sl@0
   231
			}
sl@0
   232
		else // maybe preemption
sl@0
   233
			{
sl@0
   234
			//Pop the rule
sl@0
   235
			
sl@0
   236
			MLogicalChain* logicalChainUsingResource = serverSessionAllocatedResource->LogicalChainLastCommited();
sl@0
   237
			MLogicalChain* logicalChainNew = serverSession->LogicalChainRequestedStack();
sl@0
   238
			//Should not/cannot be null! 
sl@0
   239
			if( NULL==logicalChainUsingResource || NULL==logicalChainNew )
sl@0
   240
				{
sl@0
   241
			#ifdef _DEBUG	
sl@0
   242
					RDebug::Print(_L("!!!!CMMRCServerController::ProcessNextRequestL - logicalChainUsingResource or logicalChainNew NULL"));
sl@0
   243
					ASSERT(0);
sl@0
   244
			#endif
sl@0
   245
				User::Leave(EMMRCErrorLogicalChainNull);
sl@0
   246
				}
sl@0
   247
			
sl@0
   248
			TAudioState audioStateAllocatedResource = logicalChainUsingResource->StreamState();
sl@0
   249
			TAudioState audioStateNew = logicalChainNew->StreamState ( );
sl@0
   250
			TMMRCRule rule = DecisionRule(audioStateAllocatedResource, audioStateNew);
sl@0
   251
			//Process according to the rule
sl@0
   252
			if( rule == EAlwaysProcess )
sl@0
   253
				{
sl@0
   254
				err = SendResourceRequest( *serverSession );
sl@0
   255
				}
sl@0
   256
			else // process only in case of higher priority
sl@0
   257
				{
sl@0
   258
				TInt currentClientPriority = logicalChainUsingResource->Priority();
sl@0
   259
				TInt newClientPriority = logicalChainNew->Priority();
sl@0
   260
				TBool currentClient_HasMMDD = serverSessionAllocatedResource->HasMultimediaCapability();
sl@0
   261
				TBool newClient_HasMMDD = serverSession->HasMultimediaCapability();
sl@0
   262
sl@0
   263
				// If new client has multimedia capability and current doesn't have, 
sl@0
   264
				// priorities don't matter preempt the current client
sl@0
   265
				
sl@0
   266
				// But if both are equal competitors (both has MMDD capability or both hasn't)
sl@0
   267
				// and the newcomer has higher priority preempt too
sl@0
   268
				if ( (!currentClient_HasMMDD && newClient_HasMMDD)  || 
sl@0
   269
					( (currentClient_HasMMDD == newClient_HasMMDD) && 
sl@0
   270
					  (newClientPriority > currentClientPriority) ) )
sl@0
   271
					{
sl@0
   272
					//The process is delayed. First we have to preempt the current inprocess resource
sl@0
   273
					// so puch back the request (its session)
sl@0
   274
					iMMRCServerInfo->PushRequestL(*serverSession);
sl@0
   275
					//
sl@0
   276
					//send a premption message to the last commited message session
sl@0
   277
					err = SendPreemptionRequest ( *serverSessionAllocatedResource );
sl@0
   278
					}
sl@0
   279
				else 
sl@0
   280
					{
sl@0
   281
					// Deny the resource
sl@0
   282
					TAudioContextId iId = serverSession->ContextId( );
sl@0
   283
					TBool iIsOnPauseList = iMMRCServerInfo->IsOnPauseList(iId);
sl@0
   284
					if(!iIsOnPauseList)
sl@0
   285
						{
sl@0
   286
						iMMRCServerInfo->PushPausedContextL(*serverSession);
sl@0
   287
						}
sl@0
   288
// nothing pending, deny resources, and notify client.						
sl@0
   289
					serverSession->AdaptationRequestAcknowledgment(EMMRCAdaptationToServerResourceIncomplete, KErrInUse);
sl@0
   290
// Server is back to idle.
sl@0
   291
					iMMRCServerInfo->SwitchServerState(EMMRCServerStateIdle, 0);
sl@0
   292
					}
sl@0
   293
				}
sl@0
   294
			}
sl@0
   295
		}
sl@0
   296
	
sl@0
   297
#ifdef SYMBIAN_MULTIMEDIA_ENABLE_LOGGING	
sl@0
   298
	if(err != KErrNone)
sl@0
   299
		{
sl@0
   300
		RDebug::Print(_L("!!!!CMMRCServerController::ProcessNextRequestL - error = %d"), err);
sl@0
   301
		}
sl@0
   302
#endif
sl@0
   303
	
sl@0
   304
	DP0_RET(err, "err=%d");
sl@0
   305
	}
sl@0
   306
sl@0
   307
/**
sl@0
   308
 * Pop the decision rule on the base of the current in-process request and a new committed request
sl@0
   309
 * @param TAudioState aAudioStateAllocatedResource
sl@0
   310
 * @param TAudioState aAudioStateRequiringProcess
sl@0
   311
 * @return TMMRCRule
sl@0
   312
 */
sl@0
   313
TMMRCRule CMMRCServerController::DecisionRule(TAudioState aAudioStateAllocatedResource, TAudioState aAudioStateRequiringProcess)
sl@0
   314
	{
sl@0
   315
	DP_CONTEXT(----> CMMRCServerController::DecisionRule *CD1*, CtxDevSound, DPLOCAL);
sl@0
   316
	DP_IN();
sl@0
   317
	
sl@0
   318
	TMMRCRule rule = iMMRCServerRuleManager->DecisionRule(aAudioStateAllocatedResource, aAudioStateRequiringProcess);
sl@0
   319
	
sl@0
   320
	DP0_RET(rule, "rule=%d");
sl@0
   321
	}
sl@0
   322
sl@0
   323
/**
sl@0
   324
 * Pop the action reason on the base of the last committed request and the current one
sl@0
   325
 * @param TAudioState aAudioStateLastCommitted
sl@0
   326
 * @param TAudioState aAudioStateRequested
sl@0
   327
 * @return TReason
sl@0
   328
 */
sl@0
   329
TReason CMMRCServerController::ActionReason(TAudioState aAudioStateLastCommitted, TAudioState aAudioStateRequested)
sl@0
   330
	{
sl@0
   331
	DP_CONTEXT(----> CMMRCServerController::ActionReason *CD1*, CtxDevSound, DPLOCAL);
sl@0
   332
	DP_IN();
sl@0
   333
	
sl@0
   334
	TReason reason = iMMRCServerRuleManager->ActionReason(aAudioStateLastCommitted, aAudioStateRequested);
sl@0
   335
	
sl@0
   336
	DP0_RET(reason, "reason=%d");
sl@0
   337
	}
sl@0
   338
sl@0
   339
/**
sl@0
   340
 * Send a resource request to the adaptation
sl@0
   341
 * @param MLogicalChain* aOldChain
sl@0
   342
 * @param MLogicalChain* aNewChain
sl@0
   343
 * @return KerrNone in case of success of the process
sl@0
   344
 */
sl@0
   345
TInt CMMRCServerController::SendResourceRequest( CMMRCServerSession& aServerSession )
sl@0
   346
	{
sl@0
   347
	DP_CONTEXT(----> CMMRCServerController::SendResourceRequest *CD1*, CtxDevSound, DPLOCAL);
sl@0
   348
	DP_IN();
sl@0
   349
	
sl@0
   350
	iMMRCServerInfo->SwitchServerState( EMMRCServerStateWaitResourceResponseFromAdaptation, aServerSession.ContextId() );
sl@0
   351
sl@0
   352
// if entering APR state, remove from Paused list.
sl@0
   353
	TRAPD(err, aServerSession.StartProcessL());
sl@0
   354
	{
sl@0
   355
	MLogicalChain* logicalChainNew = aServerSession.LogicalChainRequested();
sl@0
   356
	if (logicalChainNew)
sl@0
   357
		{
sl@0
   358
		TAudioState audioStateNew = logicalChainNew->StreamState();
sl@0
   359
		if ( 
sl@0
   360
			(audioStateNew == EActive ) || 
sl@0
   361
			(audioStateNew == EPrimed) || 
sl@0
   362
			(audioStateNew == EIdle) 
sl@0
   363
			
sl@0
   364
			)
sl@0
   365
			{
sl@0
   366
			TInt contextId = aServerSession.ContextId( );
sl@0
   367
			iMMRCServerInfo->PopAndRemovePausedContext(contextId);
sl@0
   368
			}
sl@0
   369
		}
sl@0
   370
	}
sl@0
   371
	if(err == KErrNone)
sl@0
   372
		{
sl@0
   373
		//Send request
sl@0
   374
		if (!aServerSession.SendRequestToAdaptation(ENormalRequest))
sl@0
   375
			{
sl@0
   376
// TBD fail at current task.
sl@0
   377
// return server shutting down			
sl@0
   378
			}
sl@0
   379
		}
sl@0
   380
	
sl@0
   381
#ifdef SYMBIAN_MULTIMEDIA_ENABLE_LOGGING	
sl@0
   382
	if(err != KErrNone)
sl@0
   383
		{
sl@0
   384
		RDebug::Print(_L("!!!!CMMRCServerController::SendResourceRequest - error = %d"), err);
sl@0
   385
		}
sl@0
   386
#endif
sl@0
   387
	
sl@0
   388
	DP0_RET(err, "err=%d");
sl@0
   389
	}
sl@0
   390
sl@0
   391
/** 
sl@0
   392
 * Send a preemption request to the adaptation
sl@0
   393
 * @param MLogicalChain* aOldChain
sl@0
   394
 * @param MLogicalChain* aNewChain
sl@0
   395
 * @return KerrNone in case of success of the process
sl@0
   396
 */
sl@0
   397
TInt CMMRCServerController::SendPreemptionRequest( CMMRCServerSession& aServerSession )
sl@0
   398
	{
sl@0
   399
	DP_CONTEXT(----> CMMRCServerController::SendPreemptionRequest *CD1*, CtxDevSound, DPLOCAL);
sl@0
   400
	DP_IN();
sl@0
   401
	
sl@0
   402
	iMMRCServerInfo->SwitchServerState( EMMRCServerStateWaitPreemptionResponse, aServerSession.ContextId() );
sl@0
   403
sl@0
   404
	//Update logical chains
sl@0
   405
	TRAPD(err, aServerSession.StartPreemptionL());
sl@0
   406
		
sl@0
   407
	
sl@0
   408
	if(err == KErrNone)
sl@0
   409
		{
sl@0
   410
	//Send request
sl@0
   411
		if (!aServerSession.SendRequestToAdaptation(EPreemptionRequest))
sl@0
   412
			{
sl@0
   413
	// TBD fail at current task.
sl@0
   414
	// return server shutting down/low memory where necessary			
sl@0
   415
			}
sl@0
   416
		}
sl@0
   417
	
sl@0
   418
#ifdef SYMBIAN_MULTIMEDIA_ENABLE_LOGGING	
sl@0
   419
	if(err != KErrNone)
sl@0
   420
		{
sl@0
   421
		RDebug::Print(_L("!!!!CMMRCServerController::SendPreemptionRequest - error = %d"), err);
sl@0
   422
		}
sl@0
   423
#endif
sl@0
   424
sl@0
   425
	DP0_RET(err, "err=%d");
sl@0
   426
	}
sl@0
   427
sl@0
   428
/** 
sl@0
   429
 * Callback from the adaptation
sl@0
   430
 * @param MLogicalChain* aOldChain
sl@0
   431
 * @param MLogicalChain* aNewChain
sl@0
   432
 * @param TMMRCAdaptationToServerRequestResults aResult
sl@0
   433
 */
sl@0
   434
void CMMRCServerController::AdaptationRequestAcknowledgment(CMMRCServerSession& aServerSession, TMMRCAdaptationToServerRequestResults aResult, TInt /*aError*/)
sl@0
   435
	{
sl@0
   436
	DP_CONTEXT(--------> CMMRCServerController::AdaptationRequestAcknowledgment *CD1*, CtxDevSound, DPLOCAL);
sl@0
   437
	DP_IN();
sl@0
   438
#ifdef SYMBIAN_MULTIMEDIA_ENABLE_LOGGING	
sl@0
   439
		RDebug::Print(_L("size of message queue    = %d"),  iMMRCServerInfo->RequestsCount());
sl@0
   440
		RDebug::Print(_L("size of inprocess queue = %d"),  iMMRCServerInfo->AllocatedResourceContextsCount());
sl@0
   441
		RDebug::Print(_L("size of paused queue = %d"),  iMMRCServerInfo->AllocatedPausedContextsCount());
sl@0
   442
#endif
sl@0
   443
	
sl@0
   444
	TUint64 contextId;
sl@0
   445
	TMMRCServerState serverState;
sl@0
   446
	TInt err = KErrNone;
sl@0
   447
	iMMRCServerInfo->ServerState(serverState, contextId);
sl@0
   448
	switch(serverState)
sl@0
   449
		{
sl@0
   450
		case EMMRCServerStateWaitPreemptionResponse: // here we process the response
sl@0
   451
			{
sl@0
   452
			switch(aResult)
sl@0
   453
				{
sl@0
   454
				case EMMRCAdaptationToServerResourceComplete:
sl@0
   455
					{
sl@0
   456
					//we remove the request in process from the queue
sl@0
   457
					CMMRCServerSession* serverSession = iMMRCServerInfo->PopAndRemoveFirstAllocatedResourceContext();
sl@0
   458
					if(serverSession)
sl@0
   459
						{
sl@0
   460
						TRAP(err, iMMRCServerInfo->PushPausedContextL(*serverSession));
sl@0
   461
						DP1(DLERR,"EPushPauseContextLeft %d", err);
sl@0
   462
						__ASSERT_DEBUG(err == KErrNone, Panic(EPushPauseContextLeft));
sl@0
   463
						}
sl@0
   464
					//Do not wait for a client acknowledgment
sl@0
   465
					iMMRCServerInfo->SwitchServerState(EMMRCServerStateIdle, 0);
sl@0
   466
					}
sl@0
   467
				break;
sl@0
   468
				case EMMRCAdaptationToServerResourceTimeout:
sl@0
   469
				default:
sl@0
   470
					{
sl@0
   471
					//jjpy TODO: What if the preemption request failed?!
sl@0
   472
					// That will be specified/implemented during the integration with the resource manager
sl@0
   473
					//we remove the request in process from the queue
sl@0
   474
					iMMRCServerInfo->PopAndRemoveFirstAllocatedResourceContext();
sl@0
   475
					}
sl@0
   476
				} // end switch(aResult)
sl@0
   477
			} //end case EMMRCServerStateWaitPreemptionResponse
sl@0
   478
		break;
sl@0
   479
		case EMMRCServerStateWaitResourceResponseFromAdaptation: // here we process the response
sl@0
   480
			{
sl@0
   481
			switch(aResult)
sl@0
   482
				{
sl@0
   483
				case EMMRCAdaptationToServerResourceComplete:
sl@0
   484
					{
sl@0
   485
					CMMRCServerSession* serverSessionAllocatedResource = iMMRCServerInfo->PopFirstAllocatedResourceContext();
sl@0
   486
					if( serverSessionAllocatedResource ) //If some previously some context has allocated a resource
sl@0
   487
						{
sl@0
   488
					 	//check if same context, if not it might be an error
sl@0
   489
					 	TAudioContextId contextId = aServerSession.ContextId( );
sl@0
   490
					 	TAudioContextId contextIdAllocatedResource = serverSessionAllocatedResource->ContextId( );
sl@0
   491
					#ifdef SYMBIAN_MULTIMEDIA_ENABLE_LOGGING	
sl@0
   492
							RDebug::Print(_L("contextId          = %d"),  contextId.Id());
sl@0
   493
							RDebug::Print(_L("contextIdAllocatedResource = %d"),  contextIdAllocatedResource.Id());
sl@0
   494
					#endif
sl@0
   495
						MLogicalChain* logicalChainNew = aServerSession.LogicalChainRequested();
sl@0
   496
						MLogicalChain* logicalChainOld = aServerSession.LogicalChainLastCommited();
sl@0
   497
						TAudioState audioStateNew = logicalChainNew->StreamState ( );
sl@0
   498
					 	if(contextId != contextIdAllocatedResource)
sl@0
   499
					 		{
sl@0
   500
					 		//it is ok if the rule said process always
sl@0
   501
							MLogicalChain* logicalChainUsingResource = serverSessionAllocatedResource->LogicalChainLastCommited();
sl@0
   502
							TAudioState audioStateAllocatedResource = logicalChainUsingResource->StreamState();
sl@0
   503
							TAudioState audioStateNew = logicalChainNew->StreamState ( );
sl@0
   504
							TMMRCRule rule = DecisionRule(audioStateAllocatedResource, audioStateNew);
sl@0
   505
					 		if( rule != EAlwaysProcess )
sl@0
   506
					 			{
sl@0
   507
					 			//not possible in theory... this is an error
sl@0
   508
							#ifdef SYMBIAN_MULTIMEDIA_ENABLE_LOGGING	
sl@0
   509
									RDebug::Print(_L("!!!!CMMRCServerController::AdaptationRequestAcknowledgment - contextId allocating a resource and new request different. Should be the same!"),  iMMRCServerInfo->AllocatedResourceContextsCount());
sl@0
   510
							#endif				 		
sl@0
   511
					 			}
sl@0
   512
					 		}
sl@0
   513
					 	else //same context here, so check if the resource has been deallocated
sl@0
   514
					 		{
sl@0
   515
						 	// in case of stop etc. remove from in process request
sl@0
   516
						 	//now check the reason
sl@0
   517
							TAudioState audioStateOld = EUninitialized;
sl@0
   518
							if(logicalChainOld)
sl@0
   519
								{
sl@0
   520
								audioStateOld = logicalChainOld->StreamState();
sl@0
   521
								}
sl@0
   522
							TReason reason = ActionReason(audioStateOld, audioStateNew);
sl@0
   523
								
sl@0
   524
							if (reason == ELoad)
sl@0
   525
								{
sl@0
   526
								iARNNotificationObject->Cancel();
sl@0
   527
								iMMRCServerInfo->PopAndRemovePausedContext(contextId);
sl@0
   528
								}
sl@0
   529
							else if (reason == EUnload)
sl@0
   530
								{
sl@0
   531
								iARNNotificationObject->Initialize();
sl@0
   532
								iMMRCServerInfo->PopAndRemoveFirstAllocatedResourceContextByContextId(contextId);			
sl@0
   533
								}
sl@0
   534
					 		}
sl@0
   535
					 	}
sl@0
   536
					else //no in process request locking a resource
sl@0
   537
						{
sl@0
   538
						MLogicalChain* logicalChainNew = aServerSession.LogicalChainRequested();
sl@0
   539
						MLogicalChain* logicalChainOld = aServerSession.LogicalChainLastCommited();
sl@0
   540
						TAudioState audioStateNew = logicalChainNew->StreamState ( );
sl@0
   541
						TAudioState audioStateOld = EUninitialized;
sl@0
   542
						if(logicalChainOld)
sl@0
   543
							{
sl@0
   544
							audioStateOld = logicalChainOld->StreamState();
sl@0
   545
							}
sl@0
   546
						TReason reason = ActionReason(audioStateOld, audioStateNew);
sl@0
   547
						if( reason == ELoad ||
sl@0
   548
			 					reason == EPrimeReason ||
sl@0
   549
			 					reason == EActivate )
sl@0
   550
			 					{
sl@0
   551
			 					TRAP(err, iMMRCServerInfo->PushAllocatedResourceContextL( aServerSession ));
sl@0
   552
			 					DP1(DLERR,"EPushAllocatedResourceContextFailed %d", err);
sl@0
   553
								__ASSERT_DEBUG(err == KErrNone, Panic(EPushAllocatedResourceContextFailed));
sl@0
   554
			 					}					
sl@0
   555
						}
sl@0
   556
					iMMRCServerInfo->SwitchServerState(EMMRCServerStateIdle, 0);
sl@0
   557
					}
sl@0
   558
				break;
sl@0
   559
	 			case EMMRCAdaptationToServerResourceTimeout:
sl@0
   560
	 			default:
sl@0
   561
	 				{
sl@0
   562
					//Just switch the state
sl@0
   563
					iMMRCServerInfo->SwitchServerState(EMMRCServerStateIdle, 0);
sl@0
   564
					}
sl@0
   565
	 			break;
sl@0
   566
	 			} //end switch switch(aResult)
sl@0
   567
	 		} // end case EMMRCServerStateWaitResourceResponseFromAdaptation
sl@0
   568
	 	break;
sl@0
   569
		case EMMRCServerStateIdle: //not possible....
sl@0
   570
	 	default:
sl@0
   571
 	 	break;
sl@0
   572
	 	}
sl@0
   573
 	
sl@0
   574
	TRAP(err, ProcessNextRequestL());
sl@0
   575
	DP1(DLERR,"EProcessNextRequestLeft %d", err);
sl@0
   576
	__ASSERT_DEBUG(err == KErrNone, Panic(EProcessNextRequestLeft));
sl@0
   577
	DP_OUT();
sl@0
   578
	}
sl@0
   579
sl@0
   580
/*
sl@0
   581
 * 
sl@0
   582
 */
sl@0
   583
void CMMRCServerController::NotifyPausedClientsResourceUnallocated()
sl@0
   584
	{
sl@0
   585
 	DP_CONTEXT(----> CMMRCServerController::NotifyClientsResourceUnallocated *CD1*, CtxDevSound, DPLOCAL);
sl@0
   586
	DP_IN();
sl@0
   587
	
sl@0
   588
	CMMRCServerSession* serverSession  = iMMRCServerInfo->PopAndRemoveFirstPausedContext( );
sl@0
   589
	while( serverSession )
sl@0
   590
		{
sl@0
   591
		serverSession->NotifyClientResourceUnallocated();
sl@0
   592
		serverSession  = iMMRCServerInfo->PopAndRemoveFirstPausedContext( );
sl@0
   593
		}
sl@0
   594
	
sl@0
   595
	DP_OUT();
sl@0
   596
	}
sl@0
   597
sl@0
   598
/*
sl@0
   599
 * 
sl@0
   600
 */
sl@0
   601
void CMMRCServerController::CloseSessionByContextId(TInt32 aContextId)
sl@0
   602
	{
sl@0
   603
 	DP_CONTEXT(----> CMMRCServerController::CloseSessionByContextId *CD1*, CtxDevSound, DPLOCAL);
sl@0
   604
	DP_IN();
sl@0
   605
	
sl@0
   606
	while( iMMRCServerInfo->PopAndRemoveFirstAllocatedResourceContextByContextId( aContextId ) ){}
sl@0
   607
	while( iMMRCServerInfo->PopAndRemoveFirstRequestByContextId( aContextId ) ){}
sl@0
   608
	while( iMMRCServerInfo->PopAndRemovePausedContext( aContextId ) ){}
sl@0
   609
	while( iMMRCServerInfo->PopAndRemoveFirstAPRContextByContextId( aContextId ) ){}
sl@0
   610
	TUint64 contextId;
sl@0
   611
	TMMRCServerState serverState;
sl@0
   612
	iMMRCServerInfo->ServerState(serverState, contextId);
sl@0
   613
	if( contextId == aContextId)
sl@0
   614
		{
sl@0
   615
		iMMRCServerInfo->SwitchServerState(EMMRCServerStateIdle, 0);
sl@0
   616
		}
sl@0
   617
#ifdef SYMBIAN_MULTIMEDIA_ENABLE_LOGGING	
sl@0
   618
	RDebug::Print(_L("size of message queue    = %d"),  iMMRCServerInfo->RequestsCount());
sl@0
   619
	RDebug::Print(_L("size of inprocess queue = %d"),  iMMRCServerInfo->AllocatedResourceContextsCount());
sl@0
   620
	RDebug::Print(_L("size of paused queue = %d"),  iMMRCServerInfo->AllocatedPausedContextsCount());
sl@0
   621
	RDebug::Print(_L("size of APR queue  = %d"),  iMMRCServerInfo->AllocatedAPRContextsCount());
sl@0
   622
#endif
sl@0
   623
	
sl@0
   624
	DP_OUT();
sl@0
   625
	}
sl@0
   626
sl@0
   627
/*
sl@0
   628
 *
sl@0
   629
 */
sl@0
   630
void CMMRCServerController::ServerState(TMMRCServerState& aServerState, TUint64& aContextId) const
sl@0
   631
	{
sl@0
   632
	iMMRCServerInfo->ServerState(aServerState, aContextId);
sl@0
   633
	}
sl@0
   634
	
sl@0
   635
/**
sl@0
   636
sl@0
   637
*/
sl@0
   638
TInt CMMRCServerController::EnqueueRequestForAPRL(CMMRCServerSession& aServerSession)
sl@0
   639
	{
sl@0
   640
	DP_CONTEXT(----> CMMRCServerController::EnqueueRequestForAPRL *CD1*, CtxDevSound, DPLOCAL);
sl@0
   641
	DP_IN();
sl@0
   642
	
sl@0
   643
	//add the request to the queue
sl@0
   644
	TInt err = KErrNone;
sl@0
   645
	//if already there, should return KErrAlreadyExists
sl@0
   646
sl@0
   647
	if (iMMRCServerInfo->IsOnAPRList(aServerSession.ContextId()))
sl@0
   648
		{
sl@0
   649
		err = KErrAlreadyExists;
sl@0
   650
		}
sl@0
   651
	else
sl@0
   652
		{
sl@0
   653
		iMMRCServerInfo->PushAPRContextL(aServerSession);
sl@0
   654
		}	
sl@0
   655
	DP0_RET(err, "err=%d");
sl@0
   656
	}
sl@0
   657
	
sl@0
   658
/**
sl@0
   659
sl@0
   660
*/
sl@0
   661
TInt CMMRCServerController::RemoveRequestForAPR(CMMRCServerSession& aServerSession)
sl@0
   662
	{
sl@0
   663
	DP_CONTEXT(----> CMMRCServerController::RemoveRequestForAPR *CD1*, CtxDevSound, DPLOCAL);
sl@0
   664
	DP_IN();
sl@0
   665
	
sl@0
   666
	TInt err = KErrNone;
sl@0
   667
	TInt32 iContextId = aServerSession.ContextId();
sl@0
   668
	TBool iIsOnAPRList = iMMRCServerInfo->IsOnAPRList(iContextId);
sl@0
   669
	if(iIsOnAPRList)
sl@0
   670
		{
sl@0
   671
sl@0
   672
		// Its possible that the remove request has occured whilst clients are being notified that the resource is available
sl@0
   673
		// Check if a notification sequence is currently under way
sl@0
   674
		if ( iARNNotificationObject->IsActive() )
sl@0
   675
			{
sl@0
   676
			
sl@0
   677
			// Iterate through each paused client 
sl@0
   678
			for ( TInt index = 0 ; index < iMMRCServerInfo->AllocatedPausedContextsCount() ; index++ )
sl@0
   679
				{
sl@0
   680
				
sl@0
   681
				// Find the client that has requested removal in the list
sl@0
   682
				TAudioContextId id = iMMRCServerInfo->PausedContextByIndex(index)->ContextId();
sl@0
   683
				if ( aServerSession.ContextId() == id )
sl@0
   684
					{
sl@0
   685
					// Object has already received a notification
sl@0
   686
					if ( index < iARNNotificationObject->iIndex )
sl@0
   687
						{
sl@0
   688
						// decrement the notification objects list index to account for the item that will be removed from the queue
sl@0
   689
						--iARNNotificationObject->iIndex;
sl@0
   690
						}
sl@0
   691
						
sl@0
   692
					// no action needs to be taken if 
sl@0
   693
					// index >= iMMRCServerInfo.iIndex
sl@0
   694
					
sl@0
   695
					break;
sl@0
   696
					}
sl@0
   697
				}
sl@0
   698
			
sl@0
   699
			}
sl@0
   700
sl@0
   701
		iMMRCServerInfo->PopAndRemoveFirstAPRContextByContextId(iContextId);
sl@0
   702
		iMMRCServerInfo->PopAndRemovePausedContext(iContextId); //removing this session from the list of paused too.
sl@0
   703
		}
sl@0
   704
	else
sl@0
   705
		{
sl@0
   706
		err = KErrCancel;
sl@0
   707
		}
sl@0
   708
	
sl@0
   709
	DP0_RET(err, "err=%d");
sl@0
   710
	}
sl@0
   711
sl@0
   712
/**
sl@0
   713
sl@0
   714
*/
sl@0
   715
TInt CMMRCServerController::WillResumePlay()
sl@0
   716
	{
sl@0
   717
	DP_CONTEXT(----> CMMRCServerController::WillResumePlay *CD1*, CtxDevSound, DPLOCAL);
sl@0
   718
	DP_IN();
sl@0
   719
	
sl@0
   720
	TInt err = KErrNone;
sl@0
   721
	iARNNotificationObject->Cancel();
sl@0
   722
	
sl@0
   723
	
sl@0
   724
	DP0_RET(err, "err=%d");
sl@0
   725
	}
sl@0
   726
sl@0
   727
sl@0
   728
//From CActive
sl@0
   729
/**
sl@0
   730
 * Constructor.
sl@0
   731
 */
sl@0
   732
CARNNotificationObject::CARNNotificationObject(const TInt aPriority)
sl@0
   733
:CActive(aPriority)
sl@0
   734
	{
sl@0
   735
	TRACE_CREATE();
sl@0
   736
	DP_CONTEXT(----> CARNNotificationObject::CARNNotificationObject *CD1*, CtxDevSound, DPLOCAL);
sl@0
   737
	DP_IN();
sl@0
   738
	
sl@0
   739
	
sl@0
   740
	DP_OUT();
sl@0
   741
	}
sl@0
   742
sl@0
   743
sl@0
   744
/**
sl@0
   745
 * Destructor.
sl@0
   746
 */
sl@0
   747
CARNNotificationObject::~CARNNotificationObject()
sl@0
   748
	{
sl@0
   749
	DP_CONTEXT(----> CARNNotificationObject::~CARNNotificationObject *CD1*, CtxDevSound, DPLOCAL);
sl@0
   750
	DP_IN();
sl@0
   751
sl@0
   752
	Cancel();
sl@0
   753
	iTimer.Close();
sl@0
   754
	delete iMMRCServerInfo;
sl@0
   755
	
sl@0
   756
	DP_OUT();
sl@0
   757
	}
sl@0
   758
sl@0
   759
sl@0
   760
/**
sl@0
   761
 	CARNNotificationObject::ConstructL
sl@0
   762
 	Symbian 2nd phase constructor can leave.
sl@0
   763
 */
sl@0
   764
void CARNNotificationObject::ConstructL(CMMRCServerInfo& aMMRCServerInfo)
sl@0
   765
	{
sl@0
   766
	DP_CONTEXT(----> CARNNotificationObject::ConstructL *CD1*, CtxDevSound, DPLOCAL);
sl@0
   767
	DP_IN();
sl@0
   768
	
sl@0
   769
	iMMRCServerInfo = &aMMRCServerInfo; 
sl@0
   770
	CActiveScheduler::Add(this);
sl@0
   771
	User::LeaveIfError(iTimer.CreateLocal());
sl@0
   772
	
sl@0
   773
	
sl@0
   774
	DP_OUT();
sl@0
   775
	}
sl@0
   776
sl@0
   777
// ---------------------------------------------------------------------------
sl@0
   778
// CARNNotificationObject::NewL
sl@0
   779
// ---------------------------------------------------------------------------
sl@0
   780
CARNNotificationObject* CARNNotificationObject::NewL(const TInt aPriority, CMMRCServerInfo& aMMRCServerInfo)
sl@0
   781
	{
sl@0
   782
	DP_STATIC_CONTEXT(----> CARNNotificationObject::NewL *CD1*, CtxDevSound, DPLOCAL);
sl@0
   783
	DP_IN();
sl@0
   784
	
sl@0
   785
	CARNNotificationObject* self = new(ELeave)CARNNotificationObject(aPriority);
sl@0
   786
	CleanupStack::PushL(self);
sl@0
   787
	self->ConstructL(aMMRCServerInfo);
sl@0
   788
	CleanupStack::Pop(self);
sl@0
   789
	
sl@0
   790
	DP0_RET(self, "0x%x");
sl@0
   791
	} 
sl@0
   792
sl@0
   793
// ---------------------------------------------------------------------------
sl@0
   794
// CARNNotificationObject::RunL
sl@0
   795
// ---------------------------------------------------------------------------
sl@0
   796
void CARNNotificationObject::RunL()
sl@0
   797
	{
sl@0
   798
	DP_CONTEXT(CARNNotificationObject::RunL *CD1*, CtxDevSound, DPLOCAL);
sl@0
   799
	DP_IN();
sl@0
   800
	
sl@0
   801
	#if defined(_DEBUG) && defined(__WINS__) 
sl@0
   802
	const TTimeIntervalMicroSeconds32 KTimer = 1.8*1000000; // 1.8 seconds
sl@0
   803
	#else
sl@0
   804
	const TTimeIntervalMicroSeconds32 KTimer = 800000; // 0.8 seconds
sl@0
   805
	#endif
sl@0
   806
	
sl@0
   807
	TInt numPausedContext = iMMRCServerInfo->AllocatedPausedContextsCount();
sl@0
   808
sl@0
   809
	// The list may have been modified whilst the AO was asleep, need to check that:
sl@0
   810
	// 1) iIndex is still in range
sl@0
   811
	// 2) the object at that location should still receive a notification
sl@0
   812
	
sl@0
   813
	if ( (iIndex > -1) && (iIndex < numPausedContext) )
sl@0
   814
		{
sl@0
   815
		CMMRCServerSession* mmrcSession = iMMRCServerInfo->PausedContextByIndex(iIndex);
sl@0
   816
		
sl@0
   817
		TAudioContextId id = mmrcSession->ContextId( );
sl@0
   818
		TBool isOnAPRList = iMMRCServerInfo->IsOnAPRList(id);
sl@0
   819
		if(isOnAPRList)
sl@0
   820
			{
sl@0
   821
			mmrcSession->NotifyClientResourceUnallocated();
sl@0
   822
			}
sl@0
   823
sl@0
   824
		
sl@0
   825
		for(TInt aux = iIndex + 1; aux < numPausedContext ; aux++)
sl@0
   826
			{
sl@0
   827
			mmrcSession = iMMRCServerInfo->PausedContextByIndex(aux);
sl@0
   828
			id = mmrcSession->ContextId( );
sl@0
   829
			isOnAPRList = iMMRCServerInfo->IsOnAPRList(id);
sl@0
   830
			if(isOnAPRList)
sl@0
   831
				{
sl@0
   832
				iIndex = aux;		
sl@0
   833
				After(KTimer);
sl@0
   834
				break;
sl@0
   835
				}
sl@0
   836
			}
sl@0
   837
		}
sl@0
   838
		
sl@0
   839
	else
sl@0
   840
		{
sl@0
   841
		iIndex = 0;
sl@0
   842
		}
sl@0
   843
		
sl@0
   844
	DP_OUT();
sl@0
   845
	}
sl@0
   846
sl@0
   847
// ---------------------------------------------------------------------------
sl@0
   848
// CARNNotificationObject::After
sl@0
   849
// ---------------------------------------------------------------------------
sl@0
   850
void CARNNotificationObject::After(TTimeIntervalMicroSeconds32 aInterval)
sl@0
   851
	{
sl@0
   852
	DP_CONTEXT(CARNNotificationObject::After *CD1*, CtxDevSound, DPLOCAL);
sl@0
   853
	DP_IN();
sl@0
   854
sl@0
   855
	Cancel();
sl@0
   856
	iTimer.After(iStatus,aInterval);
sl@0
   857
	SetActive();
sl@0
   858
sl@0
   859
	DP_OUT();
sl@0
   860
	}
sl@0
   861
sl@0
   862
// ---------------------------------------------------------------------------
sl@0
   863
// CARNNotificationObject::Initialize
sl@0
   864
// ---------------------------------------------------------------------------
sl@0
   865
void CARNNotificationObject::Initialize()
sl@0
   866
	{
sl@0
   867
	DP_CONTEXT(CARNNotificationObject::Initialize *CD1*, CtxDevSound, DPLOCAL);
sl@0
   868
	DP_IN();
sl@0
   869
sl@0
   870
	#if defined(_DEBUG) && defined(__WINS__)
sl@0
   871
	const TTimeIntervalMicroSeconds32 KTimer = 1.8*1000000; // 1.8 seconds
sl@0
   872
	#else
sl@0
   873
	const TTimeIntervalMicroSeconds32 KTimer = 800000; // 0.8 seconds
sl@0
   874
	#endif
sl@0
   875
sl@0
   876
	TInt numPausedContext = iMMRCServerInfo->AllocatedPausedContextsCount();
sl@0
   877
	iIndex = 0;
sl@0
   878
	CMMRCServerSession* mmrcSession = NULL;
sl@0
   879
	
sl@0
   880
	if(numPausedContext) // don't bother if zero.
sl@0
   881
		{
sl@0
   882
		for(TInt i(0); i<numPausedContext ; ++i)
sl@0
   883
			{
sl@0
   884
			mmrcSession = iMMRCServerInfo->PausedContextByIndex(i);
sl@0
   885
			TAudioContextId id = mmrcSession->ContextId( );
sl@0
   886
			TBool isOnAPRList = iMMRCServerInfo->IsOnAPRList(id);
sl@0
   887
			if(isOnAPRList)
sl@0
   888
				{
sl@0
   889
				iIndex = i;
sl@0
   890
				After(KTimer);
sl@0
   891
				break;
sl@0
   892
				}
sl@0
   893
			}
sl@0
   894
		}
sl@0
   895
sl@0
   896
	DP_OUT();
sl@0
   897
	}
sl@0
   898
sl@0
   899
// ---------------------------------------------------------------------------
sl@0
   900
// CMMRCServer::DoCancel
sl@0
   901
// ---------------------------------------------------------------------------
sl@0
   902
void CARNNotificationObject::DoCancel()
sl@0
   903
	{
sl@0
   904
	DP_CONTEXT(CARNNotificationObject::DoCancel *CD1*, CtxDevSound, DPLOCAL);
sl@0
   905
	DP_IN();
sl@0
   906
	
sl@0
   907
	iTimer.Cancel();
sl@0
   908
	
sl@0
   909
	DP_OUT();
sl@0
   910
	}
sl@0
   911
sl@0
   912
sl@0
   913
void CMMRCServerController::Panic(TMMRCServerControllerPanicCodes aCode)
sl@0
   914
	{
sl@0
   915
	User::Panic(KMMRCServerControllerPanicCategory, aCode);
sl@0
   916
	}	
sl@0
   917
//EOF