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 MMRCSERVERINFO_H__
17 #define MMRCSERVERINFO_H__
20 #include <e32msgqueue.h>
22 #include "mmrcclientserver.h"
23 #include "mmrcserversession.h"
25 class CMMRCServerController;
30 This class implements the MMRC Server Info.
31 The main purpose of this class is to contain the different information
32 about the MMRC Server.
34 The queue of resource Context
35 The queue of resource in process
37 NONSHARABLE_CLASS( CMMRCServerInfo ): public CBase
39 typedef RMMRCFifoQueue<CMMRCServerSession> RMMRCContextsQueueTD;
40 typedef RMMRCFifoOrderQueue<CMMRCServerSession> RMMRCContextsQueueOrderTD;
44 * Constructs, and returns a pointer to, a new CMMRCServerInfo object.
46 * @param CMMRCServerController& A reference on the MMRC Server controller
47 * @return CMMRCServerInfo* A pointer to newly created utlitly object.
49 static CMMRCServerInfo* NewL(CMMRCServerController& aServerController);
52 * Constructs, leaves object on the cleanup stack, and returns a pointer
53 * to, a new CMMRCServerInfo object.
55 * @param CMMRCServerController& A reference on the MMRC Server controller
56 * @return CMMRCServerInfo* A pointer to newly created utlitly object.
58 static CMMRCServerInfo* NewLC(CMMRCServerController& aServerController);
67 TInt AllocatedPausedContextsCount();
69 TInt AllocatedResourceContextsCount();
70 TInt AllocatedAPRContextsCount();
74 * Change the state of the server
75 * @param TMMRCServerState aNewState
76 * @param TUint64 aContextId
78 void SwitchServerState(TMMRCServerState aNewState, TUint64 aContextId);
82 * get the state of the server
83 * @param TMMRCServerState the state of the server
84 * @param TUint64 aContextId
86 void ServerState(TMMRCServerState& aServerState, TUint64& aContextId) const;
89 * Push a Context on the Context queue
90 * @param CMMRCServerSession& aServerSession
91 * @leave in case of memory error
93 void PushRequestL(const CMMRCServerSession& aServerSession);
96 * Pop and remove the first Context from the Context queue
97 * @return CMMRCServerSession* the session of the Context
99 CMMRCServerSession* PopAndRemoveFirstRequest();
102 * Pop and remove the first Context from the Context queue by contextId
103 * @param const TAudioContextId& aContextId
104 * @return CMMRCServerSession* the session of the Context
106 CMMRCServerSession* PopAndRemoveFirstRequestByContextId( const TAudioContextId& aContextId );
109 * Pop and remove the first Context of the highest priority from the Context queue
110 * @param TInt aPriority
111 * @return CMMRCServerSession* the session of the Context
113 CMMRCServerSession* PopAndRemoveRequestFirstHighestPriority( );
116 * Pop and remove the first Context of the highest priority and more than aPriority
117 * from the Context queue
118 * @param TInt aPriority
119 * @return CMMRCServerSession* the session of the Context
121 CMMRCServerSession* PopAndRemoveRequestFirstHighestPriority( TInt aPriority );
124 * Pop the first Context from the Context queue
125 * @return CMMRCServerSession* the session of the Context
127 CMMRCServerSession* PopFirstRequest( ) const;
130 * Pop the first Context of the highest priority from the Context queue
131 * @return CMMRCServerSession* the session of the Context
133 CMMRCServerSession* PopRequestFirstHighestPriority( ) const;
136 * Pop the first Context of the highest priority and more than aPriority
137 * from the Context queue
138 * @param TInt aPriority
139 * @return CMMRCServerSession* the session of the Context
141 CMMRCServerSession* PopRequestFirstHighestPriority( TInt aPriority ) const;
144 * Push an Context on the in-process Context queue
145 * @param CMMRCServerSession& aServerSession
146 * @leave in case of memory error
148 void PushAllocatedResourceContextL(const CMMRCServerSession& aServerSession);
151 * Pop and remove the first Context of the highest priority from the in-process Context queue
152 * @return CMMRCServerSession* the session of the Context
154 CMMRCServerSession* PopAndRemoveFirstAllocatedResourceContext();
157 * Pop and remove the first Context from the in-process Context queue by contextId
158 * @param const TAudioContextId& aContextId
159 * @return CMMRCServerSession* the session of the Context
161 CMMRCServerSession* PopAndRemoveFirstAllocatedResourceContextByContextId( const TAudioContextId& aContextId );
165 * Pop the first Context from the in-process Context queue
166 * @return CMMRCServerSession* the session of the Context
168 CMMRCServerSession* PopFirstAllocatedResourceContext( ) const;
170 void PushPausedContextL(const CMMRCServerSession& aServerSession );
171 CMMRCServerSession* PopAndRemoveFirstPausedContext();
172 CMMRCServerSession* PopAndRemovePausedContext(const TAudioContextId& aContextId );
173 CMMRCServerSession* PausedContextByIndex(TInt aIndex);
175 void PushAPRContextL(const CMMRCServerSession& aServerSession );
176 CMMRCServerSession* PopAndRemoveFirstAPRContext();
177 CMMRCServerSession* PopAndRemoveFirstAPRContextByContextId(const TAudioContextId& aContextId );
178 CMMRCServerSession* PopFirstAPRContext() const;
180 TBool IsOnAPRList(TAudioContextId aId);
181 TBool IsOnPauseList(TAudioContextId aId);
186 * Push an Context on the Context queue in parameter
187 * @param RMMRCContextsQueueTD& aContextsQueue
188 * @param CMMRCServerSession& aServerSession
189 * @leave in case of memory error
191 void PushContextL(RMMRCContextsQueueTD& aContextsQueue, const CMMRCServerSession& aServerSession);
194 * Pop and remove the first Context of the highest priority from the Context queue in parameter
195 * @param RMMRCContextsQueueTD& aContextsQueue
196 * @return CMMRCServerSession* the session of the Context
198 CMMRCServerSession* PopAndRemoveFirstContext(RMMRCContextsQueueTD& aContextsQueue);
201 * Pop and remove the first Context from the Context queue in parameter by contextId
202 * @param RMMRCContextsQueueTD& aContextsQueue
203 * @param const TAudioContextId& aContextId
204 * @return CMMRCServerSession* the session of the Context
206 CMMRCServerSession* PopAndRemoveFirstContextByContextId(RMMRCContextsQueueTD& aContextsQueue, const TAudioContextId& aContextId );
209 * Pop and remove the first Context of the highest priority from the Context queue in parameter
210 * @param RMMRCContextsQueueTD& aContextsQueue
211 * @return CMMRCServerSession* the session of the Context
213 CMMRCServerSession* PopAndRemoveContextFirstHighestPriority(RMMRCContextsQueueTD& aContextsQueue);
216 * Pop and remove the first Context of the highest priority and more than aPriority
217 * from the Context queue in parameter
218 * @param RMMRCContextsQueueTD& aContextsQueue
219 * @param TInt aPriority
220 * @return CMMRCServerSession* the session of the Context
222 CMMRCServerSession* PopAndRemoveContextFirstHighestPriority(RMMRCContextsQueueTD& aContextsQueue, TInt aPriority );
225 * Pop the first Context from the Context queue in parameter
226 * @param RMMRCContextsQueueTD& aContextsQueue
227 * @return CMMRCServerSession* the session of the Context
229 CMMRCServerSession* PopFirstContext(const RMMRCContextsQueueTD& aContextsQueue) const;
232 * Pop the first Context of the highest priority from the Context queue in parameter
233 * @param RMMRCContextsQueueTD& aContextsQueue
234 * @return CMMRCServerSession* the session of the Context
236 CMMRCServerSession* PopContextFirstHighestPriority(const RMMRCContextsQueueTD& aContextsQueue) const;
239 * Pop the first Context of the highest priority and more than aPriority
240 * from the Context queue in parameter
241 * @param RMMRCContextsQueueTD& aContextsQueue
242 * @param TInt aPriority
243 * @return CMMRCServerSession* the session of the Context
245 CMMRCServerSession* PopContextFirstHighestPriority(const RMMRCContextsQueueTD& aContextsQueue, TInt aPriority ) const;
247 void PushContextInOrderL(RMMRCContextsQueueOrderTD& aContextsQueue, const CMMRCServerSession& aServerSession);
248 CMMRCServerSession* PopAndRemoveFirstContextForPause(RMMRCContextsQueueOrderTD& aContextsQueue);
249 CMMRCServerSession* PopAndRemoveContextIdForPause(RMMRCContextsQueueOrderTD& aContextsQueue, const TAudioContextId& aContextId );
250 CMMRCServerSession* PausedContextByIndexForPause(RMMRCContextsQueueOrderTD& aContextsQueue, TInt aIndex);
255 * By default Symbian 2nd phase constructor is private.
256 * @param CMMRCServerController& A reference on the MMRC Server controller
258 CMMRCServerInfo(CMMRCServerController& aServerController);
261 * By default Symbian 2nd phase constructor is private.
266 CMMRCServerController& iMMRCServerController;
267 TMMRCServerState iMMRCServerInfoState;
268 RMMRCContextsQueueTD iMMRCContextsQueue; //0 or more context(s)
269 RMMRCContextsQueueTD iMMRCAllocatedResourceContextsQueue;
270 RMMRCContextsQueueOrderTD iMMRCPausedContextsQueue;
271 RMMRCContextsQueueTD iMMRCAPRContextsQueue;
272 TUint64 iLastTransactionContextId;
275 #endif //__MMRCSERVERINFO_H__