devsound/sounddevbt/src/server/MmfBtAudioPolicySession.h
author William Roberts <williamr@symbian.org>
Mon, 21 Jun 2010 22:43:37 +0100
branchGCC_SURGE
changeset 25 2efdf657cbe0
parent 0 40261b775718
permissions -rw-r--r--
Mark extraneous symbols as ABSENT (bug 3065)

// Copyright (c) 2001-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 __MMFBTAUDIOPOLICYSESSION_H__
#define __MMFBTAUDIOPOLICYSESSION_H__

#include <e32base.h>
#include <e32std.h>
#include <mmf/common/mmfipc.h>
#ifdef SYMBIAN_ENABLE_SPLIT_HEADERS
#include <mmf/common/mmfipcserver.h>
#endif
#include "MmfBtAudioPolicyRequest.h"  
#include "MmfBtPolicyClientServer.h"
#include "MmfBtDevSoundEventHandler.h"
#include <mmf/common/mmfstandardcustomcommands.h>

class CMMFAudioPolicyEventReceiver : public CBase
/**
*@internalTechnology
*/
	{
public:
	static CMMFAudioPolicyEventReceiver* NewL(const RMmfIpcMessage& aMessage);
	~CMMFAudioPolicyEventReceiver();
	void SendEvent(const TMMFAudioPolicyEvent& aEvent);
	void SendEvent(const TMMFEvent& aEvent);
private:
	CMMFAudioPolicyEventReceiver(const RMmfIpcMessage& aMessage);
private:
	RMmfIpcMessage iMessage;
	TBool iNeedToCompleteMessage;
	};

class CAudioPolicy;
class CMMFAudioPolicyServer;




class CMMFAudioPolicySession : public CMmfIpcSession
/**
*@internalTechnology
*/
	{
public:
	static CMMFAudioPolicySession* NewL();
	~CMMFAudioPolicySession();
	void CreateL(const CMmfIpcServer& aServer);
	void ServiceL(const RMmfIpcMessage& aMessage);
	CMMFAudioPolicyRequest* AudioPolicyRequest(void) {return iAudioPolicyRequest;};
	TInt PolicySessionId(void) {return iPolicySessionId;};
	void SendEventToClient(TMMFAudioPolicyEvent& aEvent);
	CMMFAudioPolicyServer* Server();

private:
	class TMMFAudioPolicyEventHolder
		{
	public:
		TMMFAudioPolicyEventHolder(const TMMFAudioPolicyEvent& aEvent) : iEvent(aEvent) {};
		TMMFAudioPolicyEvent iEvent;
		TSglQueLink iLink;
		};

private:
	CMMFAudioPolicySession();
	void ConstructL();
	void MakeRequestL(const RMmfIpcMessage& aMessage);
	TBool UpdateStateL(const RMmfIpcMessage& aMessage);
	TBool ReceiveEventsL(const RMmfIpcMessage& aMessage);
	TBool CancelReceiveEvents();
	TBool GetPlayFormatsSupportedL(const RMmfIpcMessage& aMessage);
	TBool GetRecordFormatsSupportedL(const RMmfIpcMessage& aMessage);
	TBool GetPlayFormatL(const RMmfIpcMessage& aMessage);
	TBool GetRecordFormatL(const RMmfIpcMessage& aMessage);
	TBool SetDevSoundInfoL(const RMmfIpcMessage& aMessage);
	TBool LaunchRequest();
	TBool RequestResourceNotificationL(const RMmfIpcMessage& aMessage);
	TBool CancelRequestResourceNotificationL(const RMmfIpcMessage& aMessage);
	TBool StopNotificationL(const RMmfIpcMessage& aMessage);
	TBool GetResourceNotificationEventL(const RMmfIpcMessage& aMessage);
	CMMFAudioPolicyServer* iServer;
	CMMFAudioPolicyRequest* iAudioPolicyRequest;
	CAudioPolicy* iAudioPolicy;
	CMMFAudioPolicyEventReceiver* iEventReceiver;
	TSglQue<TMMFAudioPolicyEventHolder> iEventsQue;
	TInt iPolicySessionId;
	TPolicyResponse iPolicyResponse;
	TInt iDevSoundId;
	TMMFAudioPolicyPrioritySettings	iAudioPolicyPrioritySettings;
	};


#endif