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 MMRCSERVERSESSION_H__
17 #define MMRCSERVERSESSION_H__
21 #include <a3f/a3fbase.h>
22 #include <e32msgqueue.h>
23 #include "mmrcclientserver.h"
30 class MMultimediaResourceControlObserver;
32 class CFourCCConvertor;
34 class CMMRCServerController;
35 class CMMRCServerSession;
36 class CMMRCClientSideServerRequestToAdaptationAO;
37 class CMMRCServerSideAdaptationResponseAO;
40 enum TMMRCServerSessionRequestType
47 Panic category and codes that MMRCServerSession raises on the client
49 _LIT(KMMRCServerSessionPanicCategory, "MMRCServerSession");
51 enum TMMRCServerSessionPanicCodes
53 ECloneLeftWhenSendingResponseToClient =1,
54 EMsgQueueFailedToSendMsg
59 This class implements the MMRC Server Session.
61 NONSHARABLE_CLASS(CMMRCServerSession) : public CSession2
63 //friend class CTimeoutClientAcknowledment;
66 * Constructs, and returns a pointer to, a new CMMRCServerSession object.
68 * @param CMMRCServerController& A reference on the MMRC Server controller
69 * @param CFourCCConvertor& A reference to the Fourcc to format converter
70 * @return CMMRCServerSession* A pointer to newly created utlitly object.
72 static CMMRCServerSession* NewL(CMMRCServerController& aMMRCServerController,
73 const CFourCCConvertor& aFourCCConvertor);
76 * Constructs, leaves object on the cleanup stack, and returns a pointer
77 * to, a new CMMRCServerSession object.
79 * @param CMMRCServerController& A reference on the MMRC Server controller
80 * @param CFourCCConvertor& A reference to the Fourcc to format converter
81 * @return CMMRCServerSession* A pointer to newly created utlitly object.
83 static CMMRCServerSession* NewLC(CMMRCServerController& aMMRCServerController,
84 const CFourCCConvertor& aFourCCConvertor);
89 ~CMMRCServerSession();
94 * @param aMessage - Function and data for the session
96 void ServiceL(const RMessage2& aMessage);
101 void StartProcessL();
106 void StartPreemptionL();
109 * Callback on a resource request
110 * @param TMMRCServerToClientMessageResults aResult the result on the request
113 void AdaptationRequestAcknowledgment(TMMRCAdaptationToServerRequestResults aResult, TInt aError);
116 * Notify all the paused client that a resource has been unallocated
118 void NotifyClientResourceUnallocated();
121 * return the current committed chain (const)
122 * @return the current committed chain
124 const MLogicalChain* LogicalChainRequested() const;
127 * return the current committed chain (const)
128 * @return the current committed chain
130 const MLogicalChain* LogicalChainRequestedStack() const;
133 * return the last committed chain (const)
134 * @return the last committed chain
136 const MLogicalChain* LogicalChainLastCommited() const;
141 const MAudioContext* AudioContext() const;
144 * return the current committed chain
145 * @return the current committed chain
147 MLogicalChain* LogicalChainRequested();
150 * return the current committed chain
151 * @return the current committed chain
153 MLogicalChain* LogicalChainRequestedStack();
156 * return the last committed chain
157 * @return the last committed chain
159 MLogicalChain* LogicalChainLastCommited();
164 CMMRCClientSideServerRequestToAdaptationAO* AdaptationProxy();
167 CMMRCServerSideAdaptationResponseAO* ServerProxy();
176 TBool HasMultimediaCapability() const;
186 TBool IsServerShuttingDown();
190 TInt SendRequestToAdaptation(TMMRCServerSessionRequestType aRequestType);
192 TInt GetPriority() const;
197 TBool HasUserEnvironmentCapability();
202 TInt NotifyClientOfError(TInt aError);
206 void IncrementRequestsSent();
211 void Disconnect(const RMessage2& aMessage);
217 * By default Symbian 2nd phase constructor is private.
218 * @param CMMRCServerController& A reference on the MMRC Server controller
219 * @param CFourCCConvertor& A reference to the Fourcc to format converter
221 CMMRCServerSession(CMMRCServerController& aMMRCServerController,
222 const CFourCCConvertor& aFourCCConvertor);
225 * By default Symbian 2nd phase constructor is private.
230 * Dispatch the message received from ServeL
231 * EMMRCClientToServerSetMsgQueueHandle - Initialise the queue handler
232 * EMMRCClientToServerMessage - Process a message from the client
233 * EMMRCClientToServerMessageUpdate - Process a message update from the client
234 * EMMRCClientToServerMessageAcknowledgement - Process the acknowldgement from the client
235 * @param aMessage - Function and data for the session
237 * @leave in case of writeL leave or request leave
239 TInt DispatchMessageL(const RMessage2& aMessage);
244 TInt EnqueueRequestL(const RMessage2& aMessage);
249 void PreProcessRequestL(const RMessage2& aMessage);
255 void ProcessResourceDataRequestL(const RMessage2& aMessage);
260 void SendRequestResponseToClient(TMMRCQueueItem& messageItem);
265 void SendPreemptionNotificationToClient(TMMRCQueueItem& messageItem);
271 void Panic(TMMRCServerSessionPanicCodes aCode);
274 RMsgQueue<TMMRCQueueItem> iMsgQueue; //
275 CMMRCServerController& iMMRCServerController; // a reference on the MMRC Server controller
276 //RThread iClientThread;
277 RThread iServerThread;
278 RThread iClientThread;
281 CMMRCServerSideAdaptationResponseAO* iMMRCServerSideAdaptationResponseAO;
282 MLogicalChain* iLogicalChainRequestedStack; // the new committed chain
283 MLogicalChain* iLogicalChainLastCommitedStack; // the last committed
284 MLogicalChain* iLogicalChainRequested; // the new committed chain
285 MLogicalChain* iLogicalChainLastCommited; // the last committed
286 MLogicalChain* iLogicalChainRequestResponse; // A copy of the chain for client response
287 MLogicalChain* iLogicalChainPreemptionNotification; // A copy of the chain for preemption notification to the client
289 //not owned (can be null pointers)
290 CAudioContext* iAudioContext;
291 const CFourCCConvertor* iFourCCConvertor;
292 CMMRCClientSideServerRequestToAdaptationAO* iMMRCClientSideServerRequestToAdaptationAO;
296 TInt32 iRequestsSent;
297 TBool iClientHasMMCapability;
298 TBool iClientHasUECapability;
301 #endif //__MMRCSERVERSESSION_H__