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.
14 // mmrcserverphysicaladaptation.cpp
19 #include "mmrcadaptationproxy.h"
20 #include "mmrcservercontroller.h"
21 #include "mmrcserversession.h"
22 #include "mlogicalchain.h"
23 #include "audiostreamadaptation.h"
25 #include <a3f/maudiocontext.h>
29 //------------------------------------------------------------------------------------
31 //------------------------------------------------------------------------------------
33 * By default Symbian 2nd phase constructor is private.
34 * @param CMMRCServerController& A reference on the MMRC Server controller
36 CMMRCClientSideServerRequestToAdaptationAO::CMMRCClientSideServerRequestToAdaptationAO()
37 : CActive(EPriorityHigh)
40 DP_CONTEXT(----> CMMRCClientSideServerRequestToAdaptationAO::CMMRCClientSideServerRequestToAdaptationAO *CD1*, CtxDevSound, DPLOCAL);
48 CMMRCClientSideServerRequestToAdaptationAO::~CMMRCClientSideServerRequestToAdaptationAO()
50 DP_CONTEXT(----> CMMRCClientSideServerRequestToAdaptationAO::~CMMRCClientSideServerRequestToAdaptationAO *CD1*, CtxDevSound, DPLOCAL);
60 * Constructs, and returns a pointer to, a new CMMRCClientSideServerRequestToAdaptationAO object.
62 * @param CMMRCServerController& A reference on the MMRC Server controller
63 * @return CMMRCClientSideServerRequestToAdaptationAO* A pointer to newly created utlitly object.
65 EXPORT_C CMMRCClientSideServerRequestToAdaptationAO* CMMRCClientSideServerRequestToAdaptationAO::NewL()
67 DP_STATIC_CONTEXT(----> CMMRCClientSideServerRequestToAdaptationAO::NewL *CD1*, CtxDevSound, DPLOCAL);
70 CMMRCClientSideServerRequestToAdaptationAO* self = new(ELeave) CMMRCClientSideServerRequestToAdaptationAO();
71 CleanupStack::PushL(self);
73 CleanupStack::Pop(self);
75 DP0_RET(self, "self = 0x%x");
78 void CMMRCClientSideServerRequestToAdaptationAO::Initialize(CMMRCServerSession* aServerSession, CMMRCServerSideAdaptationResponseAO* aCallback,
79 RThread* aClientThread, const CFourCCConvertor& aFourCCConvertor)
81 DP_CONTEXT(----> CMMRCClientSideServerRequestToAdaptationAO::SetCallback *CD1*, CtxDevSound, DPLOCAL);
84 iMMRCServerSideAdaptationResponseAO = aCallback;
85 iServerSession = aServerSession;
86 iClientThread = aClientThread;
88 iStreamAdaptation->SetFourCC(aFourCCConvertor);
94 CMMRCClientSideServerRequestToAdaptationAO::ConstructL
95 Symbian 2nd phase constructor can leave.
97 void CMMRCClientSideServerRequestToAdaptationAO::ConstructL()
99 DP_CONTEXT(----> CMMRCClientSideServerRequestToAdaptationAO::ConstructL *CD1*, CtxDevSound, DPLOCAL);
102 CActiveScheduler::Add(this);
103 iStreamAdaptation = CAudioStreamAdaptation::NewL(TUid::Uid(0x10283461)) ;
104 iStreamAdaptation->RegisterAudioStreamObserver(*this);
106 iStatus = KRequestPending;
113 * Send a request to the resource manager
114 * @param MLogicalChain* aOldChain the last committed chain
115 * @param MLogicalChain* aNewChain the current committed chain
116 * @param TRequestStatus& aStatus
117 * @return KErrNone in case of success of the send
119 void CMMRCClientSideServerRequestToAdaptationAO::Service(TUint aRequestType)
121 DP_CONTEXT(----> CMMRCClientSideServerRequestToAdaptationAO::Service *CD1*, CtxDevSound, DPLOCAL);
123 iRequestType = aRequestType;
124 iAudioContext = const_cast<MAudioContext*>(iServerSession->AudioContext());
125 iLogicalChainLastCommited = iServerSession->LogicalChainLastCommited();
126 iLogicalChainRequested = iServerSession->LogicalChainRequested();
128 // Simulate an asyncronous response
130 unsafe as checking a client-thread object from server thread.
133 Rely on serversession making this call safe.
137 TRequestStatus* status = &iStatus;
138 DP1(2,"clientsideAO event",status);
139 iClientThread->RequestComplete(status, KErrNone);
143 DP0(2,"shouldneverhappen!!");
151 * Callback in case of timeout
153 void CMMRCClientSideServerRequestToAdaptationAO::ResourceRequestAcknowledgmentTimeout( )
155 DP_CONTEXT(----> CMMRCClientSideServerRequestToAdaptationAO::ResourceRequestAcknowledgmentTimeout *CD1*, CtxDevSound, DPLOCAL);
161 void CMMRCClientSideServerRequestToAdaptationAO::TidyUp()
164 This is a place to put synchronous tidyup code.
165 See below first attempt.
168 /* if(iStreamAdaptation)
170 iStreamAdaptation->UnregisterAllAudioStreamObserver();
172 if (iLogicalChainLastCommited)
174 // never got past uninitialised. delete.
175 CLogicalAudioStream* audiostream = static_cast<CLogicalAudioStream*>(iLogicalChainLastCommited);
176 TAudioState state = audiostream->StreamState();
177 if (state != EUninitialized) && (iLogicalChainLastCommited))
179 CLogicalAudioStream* audiostream = static_cast<CLogicalAudioStream*>(iLogicalChainRequested);
180 TAudioState state = audiostream->StreamState();
181 audiostream->ResetMessage();
182 audiostream->SetMessageType(EComponentDestruction);
189 } // deliberate fallthru'.
192 audiostream->Unload();
193 } // deliberate fallthru'.
196 audiostream->Uninitialize();
197 iStreamAdaptation->Message(*iLogicalChainLastCommited, *iLogicalChainRequested, *iAudioContext, ETrue);
198 waitForAdaptationResponse=EFalse;
203 // No need to wait until adaptation responds... just kill.
204 waitForAdaptationResponse=EFalse;
210 */ delete iStreamAdaptation;
215 * CMMRCClientSideServerRequestToAdaptationAO::RunL
218 void CMMRCClientSideServerRequestToAdaptationAO::RunL()
220 DP_CONTEXT(--------> CMMRCClientSideServerRequestToAdaptationAO::RunL *CD1*, CtxDevSound, DPLOCAL);
224 flag is safe to read in A.O as it is set synchronously by an A.O running
225 in the same Active scheduler.
227 // no shut down... regular call.
228 iStatus = KRequestPending;
230 iRequestsProcessed++;
233 if(iRequestType == EPreemptionRequest)
235 flags |= KPreemptionRequest;
238 iStreamAdaptation->Message(*iLogicalChainLastCommited, *iLogicalChainRequested, *iAudioContext, flags);
243 CMMFDevSoundServer::CDelayDevSoundShutDown::DoCancel
244 Called by Active object framework when user cancels active object.
245 (other items were commented in a header).
247 void CMMRCClientSideServerRequestToAdaptationAO::DoCancel()
249 DP_CONTEXT(----> CMMRCClientSideServerRequestToAdaptationAO::DoCancel *CD1*, CtxDevSound, DPLOCAL);
251 /* This is "rather complicated" :-)
253 This AO always sets itself active, and hence this method will be called
254 under all deletion conditions.
256 As AO and signaller are in different threads, and in Symbian there is
257 no official manner by which to ascertain if you have been signalled,
258 we have a synchronous call (across client and server threads) which
259 simply sets a flag and completes. The flag prevents any further
260 requests being sent to the adaptation.
262 By this mechanism, it is possible to read the number of requests
263 sent in the server thread as the number does not change after the
264 sync call. This is necessary as if there was no outstanding request
265 this A.O needs to self-signal.
269 This assert ensures that the synchronous client->server call occurred
270 and therefore it is safe to do the next comparison. Necessary in
271 case someone re-orders the MMRC client deletion later.
273 ASSERT(iServerSession->IsServerShuttingDown());
275 /* check to see if we have processed all of the requests that
276 have been sent by the server - i.e. are there any pending requests
278 if (no outstanding requests)
279 we need to self-signal or this would hang.
281 we need to signal the server-side A.O to terminate that.
283 if (iServerSession->RequestsSent() != iRequestsProcessed)
285 // should throw an error, rather than KErrNone
286 // iMMRCServerSideAdaptationResponseAO->ServiceL( EMMRCAdaptationToServerShutdown, KErrServerTerminated);
287 iMMRCServerSideAdaptationResponseAO->Service( EMMRCAdaptationToServerShutdown, KErrNone);
291 /* no more requests will ever come... self signal.
292 Don't notify MMRC server A.O. - it won't be expecting one
294 TRequestStatus* status(&iStatus);
295 User::RequestComplete(status, KErrNone);
303 void CMMRCClientSideServerRequestToAdaptationAO::PhysicalAdaptationEvent(TPhysicalEvent aEvent, TInt aError)
305 DP_CONTEXT(----> CMMRCClientSideServerRequestToAdaptationAO::PhysicalAdaptationEvent *CD1*, CtxDevSound, DPLOCAL);
310 case EOperationComplete:
311 if(iMMRCServerSideAdaptationResponseAO)
313 iMMRCServerSideAdaptationResponseAO->Service( EMMRCAdaptationToServerResourceComplete, aError);
317 case EOperationIncomplete:
318 if(iMMRCServerSideAdaptationResponseAO)
320 iMMRCServerSideAdaptationResponseAO->Service( EMMRCAdaptationToServerResourceIncomplete, aError);
334 void CMMRCClientSideServerRequestToAdaptationAO::StateEvent(TInt /*aReason*/, TAudioState /*aNewState*/)
336 DP_CONTEXT(----> CMMRCClientSideServerRequestToAdaptationAO::StateEvent *CD1*, CtxDevSound, DPLOCAL);
345 void CMMRCClientSideServerRequestToAdaptationAO::AddProcessingUnitComplete(TUid /*aType*/, TInt /*aError*/)
347 DP_CONTEXT(----> CMMRCClientSideServerRequestToAdaptationAO::AddProcessingUnitComplete *CD1*, CtxDevSound, DPLOCAL);
356 void CMMRCClientSideServerRequestToAdaptationAO::RemoveProcessingUnitComplete(TUid /*aType*/, TInt /*aError*/)
358 DP_CONTEXT(----> CMMRCClientSideServerRequestToAdaptationAO::RemoveProcessingUnitComplete *CD1*, CtxDevSound, DPLOCAL);
367 void CMMRCClientSideServerRequestToAdaptationAO::ProcessingFinished()
369 DP_CONTEXT(----> CMMRCClientSideServerRequestToAdaptationAO::ProcessingFinished *CD1*, CtxDevSound, DPLOCAL);
378 void CMMRCClientSideServerRequestToAdaptationAO::FlushComplete(TInt /*aError*/)
380 DP_CONTEXT(----> CMMRCClientSideServerRequestToAdaptationAO::FlushComplete *CD1*, CtxDevSound, DPLOCAL);
387 //------------------------------------------------------------------------------------
389 //------------------------------------------------------------------------------------
392 CMMRCServerSideAdaptationResponseAO::CMMRCServerSideAdaptationResponseAO()
393 : CActive(EPriorityHigh)
396 DP_CONTEXT(----> CMMRCServerSideAdaptationResponseAO::CMMRCServerSideAdaptationResponseAO *CD1*, CtxDevSound, DPLOCAL);
403 CMMRCServerSideAdaptationResponseAO::~CMMRCServerSideAdaptationResponseAO()
405 DP_CONTEXT(----> CMMRCServerSideAdaptationResponseAO::~CMMRCServerSideAdaptationResponseAO *CD1*, CtxDevSound, DPLOCAL);
415 CMMRCServerSideAdaptationResponseAO* CMMRCServerSideAdaptationResponseAO::NewL()
417 DP_STATIC_CONTEXT(----> CMMRCServerSideAdaptationResponseAO::NewL *CD1*, CtxDevSound, DPLOCAL);
420 CMMRCServerSideAdaptationResponseAO* self = new(ELeave) CMMRCServerSideAdaptationResponseAO();
421 CleanupStack::PushL( self );
423 CleanupStack::Pop(self);
425 DP0_RET(self, "self = 0x%x");
430 void CMMRCServerSideAdaptationResponseAO::ConstructL()
432 DP_CONTEXT(----> CMMRCServerSideAdaptationResponseAO::ConstructL *CD1*, CtxDevSound, DPLOCAL);
435 CActiveScheduler::Add (this );
442 void CMMRCServerSideAdaptationResponseAO::Initialize(CMMRCServerSession* aServerSession, RThread* aServerThread )
444 DP_CONTEXT(----> CMMRCServerSideAdaptationResponseAO::SetServerSession *CD1*, CtxDevSound, DPLOCAL);
447 iMMRCServerSession = aServerSession;
448 ASSERT(iMMRCServerSession!=0);
449 iServerThread = aServerThread;
450 ASSERT(iServerThread!=0);
455 These are rather misleading convenience functions which are called
456 from the context of the caller (i.e. a different thread context)
458 Be very cautious with what you rely on.
460 void CMMRCServerSideAdaptationResponseAO::Service(TMMRCAdaptationToServerRequestResults aEvent, TInt aError)
462 DP_CONTEXT(----> CMMRCServerSideAdaptationResponseAO::Service *CD1*, CtxDevSound, DPLOCAL);
468 // Simulate an asynchronous response on correct thread.
469 TRequestStatus* status = &iStatus;
470 iServerThread->RequestComplete(status, KErrNone);
475 void CMMRCServerSideAdaptationResponseAO::DoCancel( )
477 DP_CONTEXT(----> CMMRCServerSideAdaptationResponseAO::DoCancel *CD1*, CtxDevSound, DPLOCAL);
479 /* this should only happen if there is a pending request.
480 client-side will send a response before closing.
482 See DoCancel in CMMRCClientSideServerRequestToAdaptationAO for details.
488 server-side A.O. used to observe the outcome.
490 Calls back AdaptationRequestAcknowledgment on MMRC server session
491 from server thread context.
493 void CMMRCServerSideAdaptationResponseAO::RunL()
495 DP_CONTEXT(--------> CMMRCServerSideAdaptationResponseAO::RunL *CD1*, CtxDevSound, DPLOCAL);
497 iMMRCServerSession->AdaptationRequestAcknowledgment( iEvent, iError );
501 void CMMRCServerSideAdaptationResponseAO::StartAdaptationListening()
503 /* wrapper functio to set up the A.O */
504 iStatus = KRequestPending;