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.h
18 #ifndef MMRCPHYSICALADAPTATION_H_
19 #define MMRCPHYSICALADAPTATION_H_
23 #include <a3f/a3fbase.h>
24 #include <a3f/a3f_trace_utils.h>
25 #include "mmrcclientserver.h"
26 #include "maudiostreamadaptationobserver.h"
30 class CFourCCConvertor;
31 class CMMRCServerSideAdaptationResponseAO;
32 class CAudioStreamAdaptation;
33 class CMMRCServerSession;
35 //------------------------------------------------------------------------------------
36 // CMMRCClientSideServerRequestToAdaptationAO
37 //------------------------------------------------------------------------------------
42 This class implements the proxy to the Physical adaptation.
43 The main purpose of this class is to communicate with the physical resource manager.
45 NONSHARABLE_CLASS( CMMRCClientSideServerRequestToAdaptationAO ): public CActive, public MAudioStreamAdaptationObserver
49 * Constructs, and returns a pointer to, a new CMMRCClientSideServerRequestToAdaptationAO object.
51 * @param CMMRCServerController& A reference on the MMRC Server controller
52 * @return CMMRCClientSideServerRequestToAdaptationAO* A pointer to newly created utlitly object.
54 IMPORT_C static CMMRCClientSideServerRequestToAdaptationAO* NewL( );
59 ~CMMRCClientSideServerRequestToAdaptationAO( );
62 void Initialize(CMMRCServerSession* aServerSession,
63 CMMRCServerSideAdaptationResponseAO* aCallback,
64 RThread* aClientThread,
65 const CFourCCConvertor& aFourCCConvertor);
67 void Service(TUint aRequestType);
70 * Callback in case of timeout
72 void ResourceRequestAcknowledgmentTimeout( );
74 // from MAudioStreamAdaptationObserver
75 void PhysicalAdaptationEvent(TPhysicalEvent aEvent, TInt aError);
76 void StateEvent(TInt aReason, TAudioState aNewState);
77 void AddProcessingUnitComplete(TUid aType, TInt aError);
78 void RemoveProcessingUnitComplete(TUid aType, TInt aError);
79 void ProcessingFinished();
80 void FlushComplete(TInt aError);
84 virtual void DoCancel();
88 * By default Symbian 2nd phase constructor is private.
89 * @param CMMRCServerController& A reference on the MMRC Server controller
91 CMMRCClientSideServerRequestToAdaptationAO( );
96 * By default Symbian 2nd phase constructor is private.
102 CAudioStreamAdaptation* iStreamAdaptation;
105 RThread* iClientThread;
106 CMMRCServerSession* iServerSession;
107 CMMRCServerSideAdaptationResponseAO* iMMRCServerSideAdaptationResponseAO;
109 MLogicalChain* iLogicalChainRequested;
110 MLogicalChain* iLogicalChainLastCommited;
111 MAudioContext* iAudioContext;
112 TInt iRequestsProcessed;
116 //------------------------------------------------------------------------------------
117 // CMMRCServerSideAdaptationResponseAO
118 //------------------------------------------------------------------------------------
124 NONSHARABLE_CLASS( CMMRCServerSideAdaptationResponseAO ) : public CActive
127 ~CMMRCServerSideAdaptationResponseAO();
128 static CMMRCServerSideAdaptationResponseAO* NewL();
129 void Initialize(CMMRCServerSession* aServerSession, RThread* iServerThread );
130 void Service(TMMRCAdaptationToServerRequestResults aEvent, TInt aError);
131 void StartAdaptationListening();
133 CMMRCServerSideAdaptationResponseAO();
140 CMMRCServerSession* iMMRCServerSession;
141 RThread* iServerThread;
143 TMMRCAdaptationToServerRequestResults iEvent;
147 #endif /*MMRCPHYSICALADAPTATION_H_*/