diff -r 000000000000 -r 79dd3e2336a0 mmresourcemgmt/mmresctrl/inc/mmrcclientsession.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mmresourcemgmt/mmresctrl/inc/mmrcclientsession.h Fri Oct 08 19:40:43 2010 +0100 @@ -0,0 +1,71 @@ +// Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies). +// All rights reserved. +// This component and the accompanying materials are made available +// under the terms of "Eclipse Public License v1.0" +// which accompanies this distribution, and is available +// at the URL "http://www.eclipse.org/legal/epl-v10.html". +// +// Initial Contributors: +// Nokia Corporation - initial contribution. +// +// Contributors: +// +// Description: +// + +#ifndef MMRCCLIENTSESSION_H__ +#define MMRCCLIENTSESSION_H__ + +#include "mmrcclientserver.h" + +#include +#include +#include +#include "mmrcclientserver.h" + +class MLogicalChain; +class MAudioContext; +class MMultimediaResourceControlObserver; +class CMMRCClientSideServerRequestToAdaptationAO; +class CAudioContext; + +NONSHARABLE_CLASS(RMMRCClientSession) : public RSessionBase + { +public: + RMMRCClientSession(); + RMMRCClientSession::~RMMRCClientSession(); + + TInt StartServer(); + TInt Open(MMultimediaResourceControlObserver& aCallback); + TUint64 LogOn(TProcessId aProcessId); + void Close(); + + void InitializeServerL(RHandleBase& aMsgQueueHandle); + TInt SendResourceRequest(MLogicalChain* aCurrent, MLogicalChain* aDesired, CAudioContext* aContext); + void ResourceRequestResponse(MLogicalChain* aChainResponse, TMMRCServerToClientMessageResults aResult, TInt aError); + + //for notification + TInt RegisterAsClient(TUid aEventType, const TDesC8& aNotificationRegistrationData); + TInt CancelRegisterAsClient(TUid aEventType); + TInt WillResumePlay(); + + void ResetMessages(); +private: + //void SendRequestResourceDataL(); + +private: + RThread iServerThread; + TRequestStatus *iCallingStatus; + + //owned + MLogicalChain* iLogicalChainLastCommited; + MLogicalChain* iLogicalChainRequested; + CMMRCClientSideServerRequestToAdaptationAO* iMMRCClientSideServerRequestToAdaptationAO; + + //not owned + MMultimediaResourceControlObserver* iObserver; + + TInt iCurrentRequestId; + }; + +#endif //__MMRCCLIENTSESSION_H__