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.
16 #ifndef MMRCSERVERCONTROLLER_H__
17 #define MMRCSERVERCONTROLLER_H__
21 #include <a3f/a3fbase.h>
22 #include "mmrcclientserver.h"
24 class CMMRCServerInfo;
25 class MMMRCServerInfoState;
26 class CMMRCServerSession;
27 class CMMRCServerRuleManager;
28 class CARNNotificationObject;
32 Panic category and codes that MMRCServerController raises on the client
34 _LIT(KMMRCServerControllerPanicCategory, "MMRCServerController");
36 enum TMMRCServerControllerPanicCodes
38 EProcessNextRequestLeft = 1,
39 EPushPauseContextLeft,
40 EPushAllocatedResourceContextFailed
47 This class implements the MMRC Server Controller.
48 The main purpose of this class is to control the different transactions
50 NONSHARABLE_CLASS( CMMRCServerController ): public CBase
54 * Constructs, and returns a pointer to, a new CMMRCServerController object.
56 * @return CMMRCServerController* A pointer to newly created utlitly object.
58 static CMMRCServerController* NewL();
61 * Constructs, leaves object on the cleanup stack, and returns a pointer
62 * to, a new CMMRCServerController object.
64 * @return CMMRCServerController* A pointer to newly created utlitly object.
66 static CMMRCServerController* NewLC();
71 ~CMMRCServerController();
76 * Process the request pointer by a specific session
77 * @param CMMRCServerSession& aServerSession
78 * @return KerrNone in case of success of the process
80 TInt EnqueueRequestL(CMMRCServerSession& aServerSession );
83 * Callback from the adaptation
84 * @param MLogicalChain* aOldChain
85 * @param MLogicalChain* aNewChain
86 * @param TMMRCAdaptationToServerRequestResults aResult
88 void AdaptationRequestAcknowledgment(CMMRCServerSession& aServerSessionAllocatedResource, TMMRCAdaptationToServerRequestResults aResult, TInt aError);
93 void CloseSessionByContextId(TInt32 aContextId);
98 void ClientAcknowledgment(CMMRCServerSession& aServerSession);
103 void ServerState(TMMRCServerState& aServerState, TUint64& aContextId) const;
107 * @param CMMRCServerSession& aServerSession
108 * @return KerrNone in case of success of the process
110 TInt EnqueueRequestForAPRL(CMMRCServerSession& aServerSession );
114 * @param CMMRCServerSession& aServerSession
115 * @return KerrNone in case of success of the process
117 TInt RemoveRequestForAPR(CMMRCServerSession& aServerSession );
121 * @return KerrNone in case of success of the process
123 TInt WillResumePlay();
128 * Process the first request with the highest priority from the FIFO queue
129 * @return KerrNone in case of success of the process
131 TInt ProcessNextRequestL();
134 * Send a resource request to the adaptation
135 * @param CMMRCServerSession& aServerSession
136 * @return KerrNone in case of success of the process
138 TInt SendResourceRequest( CMMRCServerSession& aServerSession );
141 * Send a preemption request to the adaptation
142 * @param CMMRCServerSession& aServerSession
143 * @return KerrNone in case of success of the process
145 TInt SendPreemptionRequest( CMMRCServerSession& aServerSession );
148 * Pop the decision rule on the base of the current in-process request and a new committed request
149 * @param TAudioState aAudioStateAllocatedResource
150 * @param TAudioState aAudioStateRequiringProcess
153 TMMRCRule DecisionRule(TAudioState aAudioStateAllocatedResource, TAudioState aAudioStateRequiringProcess);
156 * Pop the action reason on the base of the last committed request and the current one
157 * @param TAudioState aAudioStateLastCommitted
158 * @param TAudioState aAudioStateRequested
161 TReason ActionReason(TAudioState aAudioStateLastCommitted, TAudioState aAudioStateRequested);
164 * Notify all the paused client that a resource has been unallocated
166 void NotifyPausedClientsResourceUnallocated();
172 void Panic(TMMRCServerControllerPanicCodes aCode);
177 * By default Symbian 2nd phase constructor is private.
179 CMMRCServerController();
182 * By default Symbian 2nd phase constructor is private.
188 CMMRCServerInfo* iMMRCServerInfo;
189 CMMRCServerRuleManager* iMMRCServerRuleManager;
190 CARNNotificationObject* iARNNotificationObject;
193 #endif //__MMRCSERVERCONTROLLER_H__