Update contrib.
1 // Copyright (c) 2006-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 "mmrcclientsession.h"
17 #include "mmrcserverstart.h"
18 #include "multimediaresourcecontrolobserver.h"
19 #include "mmrcadaptationproxy.h"
20 #include "mlogicalchain.h"
21 #include "audiocontext.h"
25 RMMRCClientSession::RMMRCClientSession()
26 : iLogicalChainLastCommited(NULL),
27 iLogicalChainRequested(NULL)
30 DP_CONTEXT(----> RMMRCClientSession::RMMRCClientSession *CD1*, CtxDevSound, DPLOCAL);
38 RMMRCClientSession::~RMMRCClientSession()
40 DP_CONTEXT(----> RMMRCClientSession::~RMMRCClientSession *CD1*, CtxDevSound, DPLOCAL);
43 if(iMMRCClientSideServerRequestToAdaptationAO)
45 delete iMMRCClientSideServerRequestToAdaptationAO;
46 iMMRCClientSideServerRequestToAdaptationAO=0;
54 // Runs client-side and starts the separate server process
56 TInt RMMRCClientSession::StartServer()
58 DP_CONTEXT(----> RMMRCClientSession::StartServer *CD1*, CtxDevSound, DPLOCAL);
62 err = StartMMRCServer(iServerThread);
64 DP0_RET(err, "err = %d");
69 TInt RMMRCClientSession::Open(MMultimediaResourceControlObserver& aCallback)
71 DP_CONTEXT(----> RMMRCClientSession::Open *CD1*, CtxDevSound, DPLOCAL);
75 iObserver = &aCallback;
77 err = CreateSession(KMMRCServerName, TVersion(1,0,0));
79 DP0_RET(err, "err = %d");
84 TUint64 RMMRCClientSession::LogOn(TProcessId aProcessId)
86 DP_CONTEXT(----> RMMRCClientSession::LogOn *CD1*, CtxDevSound, DPLOCAL);
88 iCurrentRequestId = 0;
90 TPckg<TUint64> contextIdPckg(contextId);
91 TPckg<TProcessId> processIdPckg(aProcessId);
92 TIpcArgs args(&processIdPckg, &contextIdPckg);
94 SendReceive(EMMRCClientToServerRequestContextId,args);
96 DP0_RET(contextId, "contextId = %d");
102 void RMMRCClientSession::Close()
104 DP_CONTEXT(----> RMMRCClientSession::Close *CD1*, CtxDevSound, DPLOCAL);
107 TRequestStatus RequestStatus;
108 SendReceive(EMMRCClientToServerCloseSession, TIpcArgs(0), RequestStatus);
109 User::WaitForRequest(RequestStatus);
110 if(iMMRCClientSideServerRequestToAdaptationAO)
112 delete iMMRCClientSideServerRequestToAdaptationAO;
113 iMMRCClientSideServerRequestToAdaptationAO=0;
116 RHandleBase::Close();
117 iServerThread.Close();
124 void RMMRCClientSession::InitializeServerL(RHandleBase& aMsgQueueHandle)
126 DP_CONTEXT(----> RMMRCClientSession::InitializeServerL *CD1*, CtxDevSound, DPLOCAL);
129 //Send the Client ThreadId
131 const TThreadId& id = me.Id();
132 SendReceive(EMMRCClientToServerSetClientThreadId, TIpcArgs(&id));
134 //Create a client side adaptation proxy on the client schudeler
135 iMMRCClientSideServerRequestToAdaptationAO = CMMRCClientSideServerRequestToAdaptationAO::NewL();
136 // send synchronously the pointer to the server
137 SendReceive(EMMRCClientToServerSetAdaptationProxy, TIpcArgs(iMMRCClientSideServerRequestToAdaptationAO));
139 //Send synchronously the Message Queue pointer to the server
140 SendReceive(EMMRCClientToServerSetMsgQueueHandle, TIpcArgs(aMsgQueueHandle));
147 TInt RMMRCClientSession::SendResourceRequest(MLogicalChain* aLogicalChainLastCommited, MLogicalChain* aLogicalChainRequested, CAudioContext* aContext)
149 DP_CONTEXT(----SSSS> RMMRCClientSession::SendResourceRequest *CD1*, CtxDevSound, DPLOCAL);
153 //Only one request at a time!!!
154 if(iLogicalChainLastCommited || iLogicalChainRequested)
156 err = KErrServerBusy;
158 RDebug::Print(_L("!!RMMRCClientSession::SendResourceRequest - Second request but server busy"));
160 DP0_RET(err, "err = %d");
163 //Clone the chains; they are realesed on response
164 if( err == KErrNone )
166 TRAP(err, iLogicalChainLastCommited = aLogicalChainLastCommited->CloneL());
167 if( err == KErrNone )
169 TRAP(err, iLogicalChainRequested = aLogicalChainRequested->CloneL());
174 if ( err == KErrNone )
176 // AM To determine when we reached the limit of messages
177 err = Send(EMMRCClientToServerRequestResource, TIpcArgs(iLogicalChainLastCommited, iLogicalChainRequested, aContext, aContext->MsgVersion()));
182 RDebug::Print(_L("!!!!RMMRCClientSession::SendResourceRequest - Error = %d"), err);
186 DP0_RET(err, "err = %d");
191 void RMMRCClientSession::ResourceRequestResponse(MLogicalChain* aChainResponse, TMMRCServerToClientMessageResults /*aResult*/, TInt aError)
193 DP_CONTEXT(--------> RMMRCClientSession::ResourceRequestResponseL *CD1*, CtxDevSound, DPLOCAL);
196 //Check if the response is not null... Should never happen
197 if( aChainResponse == NULL && aError == KErrNone)
198 //coverity[var_compare_op]
200 RDebug::Print(_L("!!!!RMMRCClientSession::ResourceRequestResponseL - Chain in input NULL - KErrArgument"));
201 __ASSERT_ALWAYS(0, User::Panic(_L("MMRCClientSessionNullResponse"), 1));
204 iObserver->ReceiveResourceResponse(aChainResponse, aError);
205 //coverity[var_deref_model]
206 // Coverity incorrectly assumes that aChainResponse is always NULL
212 TInt RMMRCClientSession::RegisterAsClient(TUid aEventType, const TDesC8& aNotificationRegistrationData)
214 DP_CONTEXT(----> RMMRCClientSession::RegisterAsClient *CD1*, CtxDevSound, DPLOCAL);
218 err = SendReceive(EMMRCClientToServerRegisterAsClient, TIpcArgs(&aEventType, &aNotificationRegistrationData));
221 DP0_RET(err, "err = %d");
226 TInt RMMRCClientSession::CancelRegisterAsClient(TUid aEventType)
228 DP_CONTEXT(----> RMMRCClientSession::CancelRegisterAsClient *CD1*, CtxDevSound, DPLOCAL);
232 err = SendReceive(EMMRCClientToServerCancelRegisterAsClient, TIpcArgs(&aEventType));
235 DP0_RET(err, "err = %d");
240 TInt RMMRCClientSession::WillResumePlay()
242 DP_CONTEXT(----> RMMRCClientSession::WillResumePlay *CD1*, CtxDevSound, DPLOCAL);
246 err = SendReceive(EMMRCClientToServerWillResumePlay, TIpcArgs(0));
249 DP0_RET(err, "err = %d");
252 void RMMRCClientSession::ResetMessages()
254 DP_CONTEXT(----> RMMRCClientSession::ResetMessages *CD1*, CtxDevSound, DPLOCAL);
257 //Clean the logical chains
258 if(iLogicalChainLastCommited)
260 iLogicalChainLastCommited->Release();
261 iLogicalChainLastCommited = NULL;
263 if(iLogicalChainRequested)
265 iLogicalChainRequested->Release();
266 iLogicalChainRequested = NULL;