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.
17 #include "mmrcserversession.h"
18 #include "mmrcerrorcodes.h"
19 #include "mmrcservercontroller.h"
20 #include "mmrcadaptationproxy.h"
22 #include <a3f/maudiocontext.h>
24 #include "mlogicalchain.h"
25 #include "logicalaudiostream.h"
26 #include "audiocontext.h"
28 #include <a3f/a3ffourcclookup.h>
31 //------------------------------------------------------------------------------------
33 //------------------------------------------------------------------------------------
35 * By default Symbian 2nd phase constructor is private.
36 * @param CMMRCServerController& A reference on the MMRC Server controller
38 CMMRCServerSession::CMMRCServerSession(CMMRCServerController& aServerController,
39 const CFourCCConvertor& aFourCCConvertor)
40 : iMMRCServerController(aServerController),
42 iLogicalChainRequested(NULL),
43 iLogicalChainLastCommited(NULL),
44 iLogicalChainRequestResponse(NULL),
45 iLogicalChainPreemptionNotification(NULL)
48 DP_CONTEXT(----> CMMRCServerSession::CMMRCServerSession *CD1*, CtxDevSound, DPLOCAL);
50 iFourCCConvertor = &aFourCCConvertor;
57 CMMRCServerSession::~CMMRCServerSession()
59 DP_CONTEXT(----> CMMRCServerSession::~CMMRCServerSession *CD1*, CtxDevSound, DPLOCAL);
61 //remove any request associated to this session from the controller
62 iMMRCServerController.CloseSessionByContextId(iContextId);
64 if (iMMRCServerSideAdaptationResponseAO)
66 delete iMMRCServerSideAdaptationResponseAO;
67 iMMRCServerSideAdaptationResponseAO=0;
70 if( iLogicalChainLastCommited )
72 iLogicalChainLastCommited->Release();
73 iLogicalChainLastCommited = NULL;
76 if( iLogicalChainRequested )
78 iLogicalChainRequested->Release();
79 iLogicalChainRequested = NULL;
81 if( iLogicalChainRequestResponse )
83 iLogicalChainRequestResponse->Release();
84 iLogicalChainRequestResponse = NULL;
87 if( iLogicalChainPreemptionNotification )
89 iLogicalChainPreemptionNotification->Release();
90 iLogicalChainPreemptionNotification = NULL;
99 * Constructs, and returns a pointer to, a new CMMRCServerSession object.
101 * @param CMMRCServerController& A reference on the MMRC Server controller
102 * @param CFourCCConvertor& A reference to the Fourcc to format converter
103 * @return CMMRCServerSession* A pointer to newly created utlitly object.
105 CMMRCServerSession* CMMRCServerSession::NewL(CMMRCServerController& aServerController,
106 const CFourCCConvertor& aFourCCConvertor)
108 DP_STATIC_CONTEXT(----> CMMRCServerSession::NewL *CD1*, CtxDevSound, DPLOCAL);
111 CMMRCServerSession* self = NewLC(aServerController, aFourCCConvertor);
112 CleanupStack::Pop(self);
114 DP0_RET(self, "self=0x%x");
118 * Constructs, leaves object on the cleanup stack, and returns a pointer
119 * to, a new CMMRCServerSession object.
121 * @param CMMRCServerController& A reference on the MMRC Server controller
122 * @param CFourCCConvertor& A reference to the Fourcc to format converter
123 * @return CMMRCServerSession* A pointer to newly created utlitly object.
125 CMMRCServerSession* CMMRCServerSession::NewLC(CMMRCServerController& aServerController,
126 const CFourCCConvertor& aFourCCConvertor)
128 DP_STATIC_CONTEXT(----> CMMRCServerSession::NewLC *CD1*, CtxDevSound, DPLOCAL);
131 CMMRCServerSession* self = new(ELeave) CMMRCServerSession(aServerController, aFourCCConvertor);
132 CleanupStack::PushL( self );
135 DP0_RET(self, "self=0x%x");
139 CMMRCServerSession::ConstructL
140 Symbian 2nd phase constructor can leave.
142 void CMMRCServerSession::ConstructL()
144 DP_CONTEXT(----> CMMRCServerSession::ConstructL *CD1*, CtxDevSound, DPLOCAL);
147 iContextId = reinterpret_cast<TUint32>(this);
148 iMMRCServerSideAdaptationResponseAO = CMMRCServerSideAdaptationResponseAO::NewL();
149 iMMRCServerSideAdaptationResponseAO->Initialize(this, &iServerThread);
156 * @param aMessage - Function and data for the session
158 void CMMRCServerSession::ServiceL(const RMessage2& aMessage)
160 DP_CONTEXT(----> CMMRCServerSession::ServiceL *CD1*, CtxDevSound, DPLOCAL);
163 TRAPD( errL, DispatchMessageL(aMessage) );
165 if( errL != KErrNone )
167 #ifdef SYMBIAN_MULTIMEDIA_ENABLE_LOGGING
168 RDebug::Print(_L("CMMRCServerSession::ServiceL - err %d"), errL);
176 * Dispatch the message received from ServeL
177 * EMMRCClientToServerSetMsgQueueHandle - Initialise the queue handler
178 * EMMRCClientToServerMessage - Process a message from the client
179 * EMMRCClientToServerMessageUpdate - Process a message update from the client
180 * EMMRCClientToServerMessageAcknowledgement - Process the acknowldgement from the client
181 * @param aMessage - Function and data for the session
183 * @leave in case of writeL leave or request leave
185 TInt CMMRCServerSession::DispatchMessageL(const RMessage2& aMessage)
187 DP_CONTEXT(----> CMMRCServerSession::DispatchMessageL *CD1*, CtxDevSound, DPLOCAL);
190 TInt error(KErrNone);
192 TMMRCClientToServerMessages messageFunction = static_cast<TMMRCClientToServerMessages>(aMessage.Function());
193 switch(messageFunction)
196 case EMMRCClientToServerSetClientThreadId:
198 TThreadId* id = static_cast<TThreadId*>(const_cast<TAny *>(aMessage.Ptr0()));
199 iClientThread.Open(*id);
201 iServerThread.Open(me.Id());
202 aMessage.Complete(error);
206 case EMMRCClientToServerSetAdaptationProxy:
208 iMMRCClientSideServerRequestToAdaptationAO = static_cast<CMMRCClientSideServerRequestToAdaptationAO*>(const_cast<TAny *>(aMessage.Ptr0()));
210 if(iMMRCClientSideServerRequestToAdaptationAO)
212 iMMRCClientSideServerRequestToAdaptationAO->Initialize(this,
213 iMMRCServerSideAdaptationResponseAO,
217 aMessage.Complete(error);
221 case EMMRCClientToServerSetMsgQueueHandle:
223 error = iMsgQueue.Open( aMessage, 0 );
224 aMessage.Complete(error);
228 case EMMRCClientToServerCloseSession:
230 //set a flag so that any subsequent acknowledgment will be ignored...
232 aMessage.Complete(error);
236 case EMMRCClientToServerRequestResource:
238 error = EnqueueRequestL(aMessage);
239 // AM this is needed since the request is not asynchronous.
240 // It is processed asynchronously which is different
241 aMessage.Complete(error);
245 case EMMRCClientToServerRequestContextId:
247 // CDS This code does not appear to be handling PlatSec functionality well
250 TPckg<TProcessId> processIdPckg(PID);
251 TPckgBuf<TUint64> contextIdPckg;
253 aMessage.ReadL( 0, processIdPckg );
256 TInt err = client.Open(PID);
259 iClientHasMMCapability = client.HasCapability(ECapabilityMultimediaDD, KSuppressPlatSecDiagnostic);
260 iClientHasUECapability = client.HasCapability(ECapabilityUserEnvironment, KSuppressPlatSecDiagnostic);
263 aMessage.WriteL( 1, contextIdPckg );
264 aMessage.Complete(error);
269 case EMMRCClientToServerRegisterAsClient:
271 // ignoring arguments
272 error = iMMRCServerController.EnqueueRequestForAPRL(*this);
273 aMessage.Complete(error);
277 case EMMRCClientToServerCancelRegisterAsClient:
279 // ignoring arguments
280 error = iMMRCServerController.RemoveRequestForAPR(*this);
281 aMessage.Complete(error);
285 case EMMRCClientToServerWillResumePlay:
287 error = iMMRCServerController.WillResumePlay();
288 aMessage.Complete(error);
294 #ifdef SYMBIAN_MULTIMEDIA_ENABLE_LOGGING
295 RDebug::Print(_L("!!!!CMMRCServerSession::DispatchMessageL - unknown message"));
298 error = KErrNotSupported;
303 DP0_RET(error, "err=%d");
307 * Process a message that can be
308 * EMMRCMessageStateAffecting a state-effecting message
309 * EMMRCMessageCommit a resource request
310 * @param const RMessage2& aMessage
312 void CMMRCServerSession::PreProcessRequestL(const RMessage2& aMessage)
314 DP_CONTEXT(----> CMMRCServerSession::PreprocessMessageL *CD1*, CtxDevSound, DPLOCAL);
317 MLogicalChain* logicalChainRequested = static_cast<MLogicalChain*>(const_cast<TAny *>(aMessage.Ptr1()));
318 if( logicalChainRequested == NULL )
321 RDebug::Print(_L("!!!!CMMRCServerSession::PreProcessRequestL - logicalChainRequested NULL"));
324 User::Leave(KErrArgument);
327 TInt err1 = KErrNone, err2 = KErrNone;
328 iAudioContext = static_cast<CAudioContext*>(const_cast<TAny *>(aMessage.Ptr2()));
329 MLogicalChain* logicalChainLastCommited = static_cast<MLogicalChain*>(const_cast<TAny *>(aMessage.Ptr0()));
331 if(iLogicalChainLastCommitedStack)
333 iLogicalChainLastCommitedStack->Release();
334 iLogicalChainLastCommitedStack = NULL;
336 if(iLogicalChainRequestedStack)
338 iLogicalChainRequestedStack->Release();
339 iLogicalChainRequestedStack = NULL;
342 iAudioContext->CriticalSection().Wait();
343 TInt msgVersion = iAudioContext->MsgVersion();
344 if(msgVersion == aMessage.Int3())
346 if(logicalChainLastCommited)
348 TRAP(err1, iLogicalChainLastCommitedStack = logicalChainLastCommited->CloneL());
351 if(logicalChainRequested)
353 TRAP(err2, iLogicalChainRequestedStack = logicalChainRequested->CloneL());
356 iAudioContext->CriticalSection().Signal();
358 if(msgVersion != aMessage.Int3())
360 User::Leave(KErrCompletion);
365 #ifdef SYMBIAN_MULTIMEDIA_ENABLE_LOGGING
366 RDebug::Print(_L("!!!!CMMRCServerSession::PreProcessRequestL - logicalChainLastCommited->CloneL - error = %d"), err1);
374 #ifdef SYMBIAN_MULTIMEDIA_ENABLE_LOGGING
375 RDebug::Print(_L("!!!!CMMRCServerSession::PreProcessRequestL - logicalChainRequested->CloneL - error = %d"), err2);
377 if(iLogicalChainLastCommitedStack)
379 iLogicalChainRequestedStack->Release();
380 iLogicalChainRequestedStack = NULL;
390 * Process a message that can be
391 * EMMRCMessageStateAffecting a state-effecting message
392 * EMMRCMessageCommit a resource request
393 * @param const RMessage2& aMessage
395 TInt CMMRCServerSession::EnqueueRequestL(const RMessage2& aMessage)
397 DP_CONTEXT(----####> CMMRCServerSession::ProcessRequestL *CD1*, CtxDevSound, DPLOCAL);
401 TRAP(err, PreProcessRequestL(aMessage));
402 if( err == KErrNone )
404 err = iMMRCServerController.EnqueueRequestL(*this);
407 DP0_RET(err, "err = %d");
413 void CMMRCServerSession::StartProcessL()
415 DP_CONTEXT(----> CMMRCServerSession::StartProcessL *CD1*, CtxDevSound, DPLOCAL);
418 if( iLogicalChainLastCommited )
420 //jjpy TODO should compare with iLogicalChainRequestedStack
421 iLogicalChainLastCommited->Release();
424 if(iLogicalChainRequested)
427 RDebug::Print(_L("!!!!CMMRCServerSession::StartProcessL - iLogicalChainRequested not NULL"));
430 iLogicalChainRequested->Release();
433 iLogicalChainLastCommited = iLogicalChainLastCommitedStack;
434 iLogicalChainRequested = iLogicalChainRequestedStack;
436 iLogicalChainLastCommitedStack = 0;
437 iLogicalChainRequestedStack = 0;
439 //Send the CommitUpdate to the client
440 TMMRCQueueItem messageItem;
441 messageItem.iRequestType = EMMRCRequestCommitUpdate;
442 messageItem.iResult = EMMRCServerToClientCommitUpdate;
443 messageItem.iErrorCode = KErrNone;
444 TInt errSend = iMsgQueue.Send(messageItem);
446 if(errSend!=KErrNone)
448 RDebug::Print(_L("!!!!CMMRCServerSession::PreProcessRequestL - error = %d"), errSend);
452 User::LeaveIfError(errSend);
460 void CMMRCServerSession::StartPreemptionL()
462 DP_CONTEXT(----> CMMRCServerSession::StartPreemptionL *CD1*, CtxDevSound, DPLOCAL);
466 if(iLogicalChainRequested)
469 RDebug::Print(_L("!!!!CMMRCServerSession::StartPreemptionL - iLogicalChainRequested not NULL"));
472 iLogicalChainRequested->Release();
475 //Should NOT be NULL.
476 if( iLogicalChainLastCommited )
478 iLogicalChainRequested = iLogicalChainLastCommited->CloneL();
479 CLogicalAudioStream* audiostream = static_cast<CLogicalAudioStream*>(iLogicalChainRequested);
480 TAudioState state = audiostream->StreamState();
482 // MMRC wont't support demote to EIdle anymore
483 // All stream are demote to EInitialised
488 audiostream->Unload();
495 User::LeaveIfError(audiostream->Stop());
496 audiostream->Unload();
501 RDebug::Print(_L("!!!!CMMRCServerSession::StartPreemptionL - wrong state "));
512 * Callback on a resource request
513 * @param TMMRCServerToClientMessageResults aResult the result on the request
516 void CMMRCServerSession::AdaptationRequestAcknowledgment(TMMRCAdaptationToServerRequestResults aResult, TInt aError)
518 DP_CONTEXT(----@@@@> CMMRCServerSession::AdaptationRequestAcknowledgment *CD1*, CtxDevSound, DPLOCAL);
521 TMMRCQueueItem messageItem;
522 messageItem.iRequestType = EMMRCRequestCommitResponse;
526 case EMMRCAdaptationToServerResourceComplete:
529 TMMRCServerState serverState;
530 iMMRCServerController.ServerState(serverState, contextId);
533 case EMMRCServerStateWaitResourceResponseFromAdaptation: // here we process the response
535 messageItem.iResult = EMMRCServerToClientResourceAgreed;
536 messageItem.iErrorCode = aError;
537 iMMRCServerController.AdaptationRequestAcknowledgment(*this, aResult, aError);
538 SendRequestResponseToClient(messageItem);
539 } //end case EMMRCServerStateWaitResourceResponseFromAdaptation
541 case EMMRCServerStateWaitPreemptionResponse: // here we process the response
543 messageItem.iResult = EMMRCServerToClientResourcePreempt;
544 messageItem.iErrorCode = KErrCompletion;
545 iMMRCServerController.AdaptationRequestAcknowledgment(*this, aResult, KErrCompletion);
546 SendPreemptionNotificationToClient(messageItem);
552 RDebug::Print(_L("!!!!CMMRCServerSession::AdaptationRequestAcknowledgment - Unknown message"));
557 } //end case EMMRCServerStateWaitPreemptionRespons
561 case EMMRCAdaptationToServerResourceIncomplete:
563 messageItem.iResult = EMMRCServerToClientResourceDenied;
564 messageItem.iErrorCode = aError;
565 iMMRCServerController.AdaptationRequestAcknowledgment(*this, aResult, aError);
566 SendRequestResponseToClient(messageItem);
570 case EMMRCAdaptationToServerResourceTimeout:
572 messageItem.iResult = EMMRCServerToClientRequestError;
573 messageItem.iErrorCode = KErrCompletion;
574 iMMRCServerController.AdaptationRequestAcknowledgment(*this, EMMRCAdaptationToServerResourceTimeout, KErrCompletion);
575 SendRequestResponseToClient(messageItem);
590 void CMMRCServerSession::SendRequestResponseToClient(TMMRCQueueItem& messageItem)
592 DP_CONTEXT(----====> CMMRCServerSession::SendRequestResponseToClient *CD1*, CtxDevSound, DPLOCAL);
594 if(messageItem.iErrorCode == KErrNone)
596 //1) Set the iLogicalChainRequestResponse
597 if(iLogicalChainRequestResponse)
599 iLogicalChainRequestResponse->Release();
600 iLogicalChainRequestResponse = NULL;
602 if(iLogicalChainRequested)
605 TRAP(errT, iLogicalChainRequestResponse = iLogicalChainRequested->CloneL());
606 DP1(DLERR,"ECloneLeftWhenSendingResponseToClient %d", errT);
607 __ASSERT_DEBUG(errT == KErrNone, Panic(ECloneLeftWhenSendingResponseToClient));
609 //2) Set the last commited chain et set the desired one to NULL
610 if( iLogicalChainLastCommited )
612 iLogicalChainLastCommited->Release();
613 iLogicalChainLastCommited = NULL;
615 iLogicalChainLastCommited = iLogicalChainRequested;
616 iLogicalChainRequested = NULL;
618 else //In case of ERROR
620 //1) Set the iLogicalChainRequestResponse
621 if(iLogicalChainRequestResponse)
623 iLogicalChainRequestResponse->Release();
624 iLogicalChainRequestResponse = NULL;
626 if(iLogicalChainRequested)
629 TRAP(errT, iLogicalChainRequestResponse = iLogicalChainLastCommited->CloneL());
630 DP1(DLERR,"ECloneLeftWhenSendingResponseToClient %d", errT);
631 __ASSERT_DEBUG(errT == KErrNone, Panic(ECloneLeftWhenSendingResponseToClient));
633 //2) Set the last commited chain et set the desired one to NULL
634 if( iLogicalChainRequested )
636 iLogicalChainRequested->Release();
637 iLogicalChainRequested = NULL;
640 if(iLogicalChainRequestedStack)
642 CLogicalAudioStream* lChain = static_cast <CLogicalAudioStream*>(iLogicalChainLastCommited);
643 TAudioTypeSettings settings;
644 settings.iPriority = iLogicalChainRequestedStack->Priority();
646 lChain->SetAudioType(settings);
649 // Set the data for the client
650 messageItem.iData = iLogicalChainRequestResponse;
652 //send the response to the client
653 TInt errSend = iMsgQueue.Send(messageItem);
654 DP1(DLERR,"EMsgQueueFailedToSendMsg %d", errSend);
655 __ASSERT_DEBUG(errSend == KErrNone, Panic(EMsgQueueFailedToSendMsg));
664 void CMMRCServerSession::SendPreemptionNotificationToClient(TMMRCQueueItem& messageItem)
666 DP_CONTEXT(----~~~~> CMMRCServerSession::SendRequestResponseToClient *CD1*, CtxDevSound, DPLOCAL);
668 //1) Set the iLogicalChainPreemptionNotification
669 if(iLogicalChainPreemptionNotification)
671 iLogicalChainPreemptionNotification->Release();
672 iLogicalChainPreemptionNotification = NULL;
674 if(iLogicalChainRequested)
677 TRAP(errT, iLogicalChainPreemptionNotification = iLogicalChainRequested->CloneL());
678 DP1(DLERR,"ECloneLeftWhenSendingResponseToClient %d", errT);
679 __ASSERT_DEBUG(errT == KErrNone, Panic(ECloneLeftWhenSendingResponseToClient));
681 iLogicalChainRequested->Release();
682 iLogicalChainRequested = NULL;
685 messageItem.iData = iLogicalChainPreemptionNotification;
687 //send the response to the client
688 TInt errSend = iMsgQueue.Send(messageItem);
689 DP1(DLERR,"EMsgQueueFailedToSendMsg %d", errSend);
690 __ASSERT_DEBUG(errSend == KErrNone, Panic(EMsgQueueFailedToSendMsg));
696 * Notify all the paused client that a resource has been unallocated
698 void CMMRCServerSession::NotifyClientResourceUnallocated()
700 DP_CONTEXT(----****> CMMRCServerSession::NotifyClientsResourceUnallocated *CD1*, CtxDevSound, DPLOCAL);
703 TMMRCQueueItem messageItem;
704 messageItem.iRequestType = EMMRCRequestResourceUnallocated;
705 TInt errSend = iMsgQueue.Send(messageItem);
706 DP1(DLERR,"EMsgQueueFailedToSendMsg %d", errSend);
707 __ASSERT_DEBUG(errSend == KErrNone, Panic(EMsgQueueFailedToSendMsg));
714 * return the current committed chain (const)
715 * @return the current committed chain
717 const MLogicalChain* CMMRCServerSession::LogicalChainRequested() const
719 DP_CONTEXT(----> CMMRCServerSession::LogicalChainRequested const *CD1*, CtxDevSound, DPLOCAL);
722 DP0_RET(iLogicalChainRequested, "iLogicalChainRequested=0x%x");
726 * return the current committed chain (const)
727 * @return the current committed chain
729 const MLogicalChain* CMMRCServerSession::LogicalChainRequestedStack() const
731 DP_CONTEXT(----> CMMRCServerSession::LogicalChainRequestedStack const *CD1*, CtxDevSound, DPLOCAL);
734 DP0_RET(iLogicalChainRequestedStack, "iLogicalChainRequestedStack=0x%x");
739 * return the last committed chain (const)
740 * @return the last committed chain
742 const MLogicalChain* CMMRCServerSession::LogicalChainLastCommited() const
744 DP_CONTEXT(----> CMMRCServerSession::LogicalChainLastCommited const *CD1*, CtxDevSound, DPLOCAL);
747 DP0_RET(iLogicalChainLastCommited, "iLogicalChainLastCommited=0x%x");
751 * return the Audio Context (const)
752 * @return the Audio Context
754 const MAudioContext* CMMRCServerSession::AudioContext() const
756 DP_CONTEXT(----> CMMRCServerSession::AudioContext *CD1*, CtxDevSound, DPLOCAL);
759 DP0_RET(iAudioContext, "iAudioContext=0x%x");
763 * return the current committed chain
764 * @return the current committed chain
766 MLogicalChain* CMMRCServerSession::LogicalChainRequested()
768 DP_CONTEXT(----> CMMRCServerSession::LogicalChainRequested *CD1*, CtxDevSound, DPLOCAL);
771 DP0_RET(iLogicalChainRequested, "iLogicalChainRequested=0x%x");
775 * return the current committed chain
776 * @return the current committed chain
778 MLogicalChain* CMMRCServerSession::LogicalChainRequestedStack()
780 DP_CONTEXT(----> CMMRCServerSession::LogicalChainRequestedStack *CD1*, CtxDevSound, DPLOCAL);
783 DP0_RET(iLogicalChainRequestedStack, "iLogicalChainRequestedStack=0x%x");
787 * return the last committed chain
788 * @return the last committed chain
790 MLogicalChain* CMMRCServerSession::LogicalChainLastCommited()
792 DP_CONTEXT(----> CMMRCServerSession::LogicalChainLastCommited *CD1*, CtxDevSound, DPLOCAL);
795 DP0_RET(iLogicalChainLastCommited, "iLogicalChainLastCommited=0x%x");
803 CMMRCClientSideServerRequestToAdaptationAO* CMMRCServerSession::AdaptationProxy()
805 DP_CONTEXT(----> CMMRCServerSession::AdaptationProxy *CD1*, CtxDevSound, DPLOCAL);
808 DP0_RET(iMMRCClientSideServerRequestToAdaptationAO, "iMMRCServerAdaptationProxy=0x%x");
816 TUint64 CMMRCServerSession::ContextId()
818 DP_CONTEXT(----> CMMRCServerSession::ContextId *CD1*, CtxDevSound, DPLOCAL);
821 DP0_RET(iContextId, "iContextId=%d");
827 TBool CMMRCServerSession::HasMultimediaCapability() const
829 return iClientHasMMCapability;
836 void CMMRCServerSession::Clean()
838 DP_CONTEXT(----> CMMRCServerSession::Clean *CD1*, CtxDevSound, DPLOCAL);
847 void CMMRCServerSession::Disconnect(const RMessage2& aMessage)
849 DP_CONTEXT(----> CMMRCServerSession::Disconnect *CD1*, CtxDevSound, DPLOCAL);
852 CSession2::Disconnect(aMessage);
861 TBool CMMRCServerSession::IsServerShuttingDown()
863 DP_CONTEXT(----> CMMRCServerSession::IsServerShuttingDown *CD1*, CtxDevSound, DPLOCAL);
866 DP0_RET(iShutdown, "state(bool) = %d");
869 TInt CMMRCServerSession::RequestsSent()
871 return iRequestsSent;
874 void CMMRCServerSession::IncrementRequestsSent()
879 CMMRCServerSideAdaptationResponseAO* CMMRCServerSession::ServerProxy()
881 return iMMRCServerSideAdaptationResponseAO;
884 TInt CMMRCServerSession::SendRequestToAdaptation(TMMRCServerSessionRequestType aRequestType)
887 if (!IsServerShuttingDown())
889 IncrementRequestsSent();
890 ServerProxy()->StartAdaptationListening();
891 AdaptationProxy()->Service(aRequestType);
895 // send some server shutting down error code.
900 TInt CMMRCServerSession::GetPriority() const
902 DP_CONTEXT(----> CMMRCServerSession::GetPriority *CD1*, CtxDevSound, DPLOCAL);
905 if(LogicalChainLastCommited() != NULL)
907 priority = const_cast<MLogicalChain*>( LogicalChainLastCommited() )->Priority();
909 DP0_RET(priority, "priority = %d");
912 void CMMRCServerSession::Panic(TMMRCServerSessionPanicCodes aCode)
914 User::Panic(KMMRCServerSessionPanicCategory, aCode);
918 * @ return Boolean value specifying whether Client has UserEnvironment Capability.
920 TBool CMMRCServerSession::HasUserEnvironmentCapability()
922 return iClientHasUECapability;
926 * @ param Error Value to send
927 * @ return Error Value specifying any error in adding the message to the message queue.
930 TInt CMMRCServerSession::NotifyClientOfError(TInt aError)
932 // Create message and send to Client
933 TMMRCQueueItem messageItem;
934 messageItem.iRequestType = EMMRCRequestCommitUpdate;
935 messageItem.iResult = EMMRCServerToClientCommitUpdate;
936 messageItem.iErrorCode = KErrNone;
937 TInt errSend = iMsgQueue.Send(messageItem);
939 // Create a message with the Error and send to Client
940 messageItem.iRequestType = EMMRCRequestCommitResponse;
941 messageItem.iResult = EMMRCServerToClientResourceAgreed;
942 messageItem.iErrorCode = aError;
943 TInt errSend2 = iMsgQueue.Send(messageItem);
944 if (errSend!=KErrNone)