os/mm/devsound/a3fdevsound/src/mmfdevsoundserver/mmfdevsoundsession.h
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/mm/devsound/a3fdevsound/src/mmfdevsoundserver/mmfdevsoundsession.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,1639 @@
     1.4 +// Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +//
    1.18 +
    1.19 +#ifndef MMFDEVSOUNDSESSION_H
    1.20 +#define MMFDEVSOUNDSESSION_H
    1.21 +
    1.22 +#include <e32base.h>
    1.23 +#include <e32std.h>
    1.24 +#include <e32msgqueue.h>
    1.25 +#include <mmf/common/mmfbase.h>
    1.26 +#include <mmf/common/mmfutilities.h>
    1.27 +#include <mmf/common/mmfipc.h>
    1.28 +#ifdef SYMBIAN_ENABLE_SPLIT_HEADERS
    1.29 +#include <mmf/common/mmfipcserver.h>
    1.30 +#endif
    1.31 +#include <mmf/server/sounddevice.h>
    1.32 +#include <a3f/mmfdevsoundcustominterfaceextensions.h>
    1.33 +#include "mmfaudioclientserver.h"
    1.34 +#include "mmfdevsoundadaptation.h"
    1.35 +
    1.36 +#include <mmf/server/mmfdevsoundcustominterface.h>
    1.37 +#include "MmfDevSoundCIDeMuxUtility.h"
    1.38 +#include <mmf/common/mcustominterface.h>
    1.39 +
    1.40 +// FORWARD DECLARATIONS
    1.41 +class CMMFDevSoundServer;
    1.42 +class CMMFDevSoundAdaptation;
    1.43 +class MGlobalProperties;
    1.44 +
    1.45 +/**
    1.46 +Panic category and codes that MMFDevSoundSession raises on the client
    1.47 +*/
    1.48 +_LIT(KMMFDevSoundSessionPanicCategory, "MMFDevSoundSession");
    1.49 +
    1.50 +enum TMMFDevSoundSessionPanicCodes
    1.51 +	{
    1.52 +	EMsgQueueFailedToSendMsg =1,
    1.53 +	EQueueRequestsFailedToAppend,
    1.54 +	EUnexpectedAsyncOpCompleteHandlingCI,
    1.55 +	ERequestBeingServicedMismatch
    1.56 +	};
    1.57 +
    1.58 +// CLASS DECLARATION
    1.59 +
    1.60 +/*
    1.61 +	This class is wrapper for RMmfIpcMessage
    1.62 +	The main purpose of this class is to hold a messages and 
    1.63 +	keep the status of the process started with the request
    1.64 +	This is not related to message status itself (if was completed or not)
    1.65 +	
    1.66 +	@lib MmfDevSoundServer.lib
    1.67 +	@since 
    1.68 +*/
    1.69 +class TMMFDevSoundRequest
    1.70 +	{
    1.71 +public:
    1.72 +
    1.73 +	enum TA3FDevSoundRequestType
    1.74 +		{ 
    1.75 +		EQuery_Synchronous,			// Message completed immediately, doesn't involve commit cycle, can be serviced even when a commit operation is pending
    1.76 +		EQuery_Asynchronous,		// Message is not completed until operation is completed, doesn't involve commit cycle
    1.77 +		EConfigure_Synchronous,		// Message completed immediately, doesn't involve commit cycle, can be serviced even when a commit operation is pending
    1.78 +		EConfigure_Asynchronous,	// Message is not completed until operation is completed, cannot be serviced when a commit operation is pending
    1.79 +		EAction_Asynchronous,		// Message is not completed until operation is completed, cannot be serviced when a commit operation is pending
    1.80 +		EAction_PseudoAsynchronous,	// Message is completed, but all the incoming asynchronous request that involves commit are enqueued 
    1.81 +		EOther_Synchronous,			// Message completed immediately, doesn't involve commit cycle, can be serviced even when a commit operation is pending
    1.82 +		EBufferExchangeRelated,		// Message completed immediately, doesn't involve commit cycle, can be serviced even when a commit operation is pending
    1.83 +		ECustomInterfacesRelated,	// Message completed immediately, doesn't involve commit cycle, can be serviced even when a commit operation is pending
    1.84 +		EUndefinedType,
    1.85 +		ECallBackType,
    1.86 +		ESessionEvents,
    1.87 +		};	
    1.88 +
    1.89 +public:
    1.90 +
    1.91 +	TMMFDevSoundRequest();
    1.92 +	TMMFDevSoundRequest(TInt aIsCallBack);
    1.93 +	TMMFDevSoundRequest(const TMMFDevSoundRequest& aRequest);
    1.94 +	void SetMessage(const RMmfIpcMessage& aMessage);
    1.95 +	void SetMessageCallback();
    1.96 +	TBool operator==(const TMMFDevSoundRequest& aRequest) const;
    1.97 +	const RMmfIpcMessage& Message();
    1.98 +	TInt Function() const;
    1.99 +
   1.100 +	TA3FDevSoundRequestType Type() const;
   1.101 +	TInt IsCallBack() const;
   1.102 +
   1.103 +	void Complete(TInt aError);
   1.104 +
   1.105 +private:
   1.106 +	TA3FDevSoundRequestType ResolveType();
   1.107 +
   1.108 +private:
   1.109 +	TBool			iMessageCompleted;
   1.110 +
   1.111 +	/**	
   1.112 +	The encapsulated request message	
   1.113 +	*/
   1.114 +	RMmfIpcMessage iMessage;
   1.115 +
   1.116 +	/**
   1.117 +	The classification for this request
   1.118 +	*/
   1.119 +	TA3FDevSoundRequestType		iRequestType;
   1.120 +
   1.121 +	TInt			iCallBackPF;
   1.122 +	};
   1.123 +
   1.124 +// CLASS DECLARATION
   1.125 +
   1.126 +/*
   1.127 +	Server-side session implementation.
   1.128 +	This class handles all the request from RMmfDevSoundProxy.
   1.129 +	This classes uses MmfDevSoundAdaptation library and forwards all the reqeusts
   1.130 +	to it. The main purpose of this class is to handle client server
   1.131 +	communication.
   1.132 +	
   1.133 +	@lib MmfDevSoundServer.lib
   1.134 +	@since 
   1.135 +*/
   1.136 +class CMMFDevSoundSession : public CMmfIpcSession,
   1.137 +							public MDevSoundAdaptationObserver,
   1.138 +							public MMMFDevSoundCustomInterfaceDeMuxInterface,
   1.139 +							public MCustomInterface,
   1.140 +							public MMMFDevSoundCustomInterfaceTarget
   1.141 +							
   1.142 +	{
   1.143 +			
   1.144 +public:  // Constructors and destructor	
   1.145 +
   1.146 +	/**
   1.147 +		Constructs, and returns a pointer to, a new CMMFDevSoundSession
   1.148 +		object.
   1.149 +		Leaves on failure.
   1.150 +		@param MGlobalProperties a reference to global properties such as FourCC to format converter
   1.151 +		@return CMMFDevSoundSession* A pointer to newly created object.
   1.152 +	*/
   1.153 +	static CMMFDevSoundSession* NewL(MGlobalProperties& aGlobalProperties);
   1.154 +
   1.155 +	/**
   1.156 +		Destructor.
   1.157 +	*/
   1.158 +	~CMMFDevSoundSession();
   1.159 +
   1.160 +public: // New functions
   1.161 +
   1.162 +	/**
   1.163 +		Called by Client/Server framework when a new session is created.
   1.164 +		Leaves on failure.
   1.165 +		@since 
   1.166 +		@param const CMmfIpcServer& aServer A constant reference to server
   1.167 +			creating this session.
   1.168 +		@return void
   1.169 +	*/
   1.170 +	void CreateL(const CMmfIpcServer& aServer);
   1.171 +
   1.172 +	/**
   1.173 +		Called by Client/Server framework when service request is made by the
   1.174 +		corresponding RMmfDevSoundProxy.object.
   1.175 +		Leaves on failure.
   1.176 +		@since 
   1.177 +		@param const RMmfIpcMessage& aMessage A reference to message object
   1.178 +			containing request attributes.
   1.179 +		@return void
   1.180 +	*/
   1.181 +	void ServiceL(const RMmfIpcMessage& aMessage);
   1.182 +
   1.183 +	/**
   1.184 +		Function to handle DevSound session id request.
   1.185 +		@since 
   1.186 +		@return TInt A integer assigned to this DevSound server.
   1.187 +	*/
   1.188 +	TInt DevSoundSessionId() {return iDevSoundSessionId;};
   1.189 +
   1.190 +	// TODO: Review if the parameter should be kept or not
   1.191 +	void SendEventToClient(/*TMMFAudioServerEvent& aEvent*/);
   1.192 +
   1.193 +	/**
   1.194 +		Method to service PostOpen request - 2nd phase async open.
   1.195 +		Leaves on failure.
   1.196 +		@since 
   1.197 +		@param const RMmfIpcMessage& aMessage A reference to message object
   1.198 +			containing request attributes.
   1.199 +		@return ETrue if the request is serviced completely else EFalse.
   1.200 +	*/
   1.201 +	TBool DoPostOpenL(const RMmfIpcMessage& aMessage);
   1.202 +
   1.203 +	/**
   1.204 +		Method to service Initialize1L request.
   1.205 +		Leaves on failure.
   1.206 +		@since 
   1.207 +		@param const RMmfIpcMessage& aMessage A reference to message object
   1.208 +			containing request attributes.
   1.209 +		@return ETrue if the request is serviced completely else EFalse.
   1.210 +	*/
   1.211 +	TBool DoInitialize1L(const RMmfIpcMessage& aMessage);
   1.212 +
   1.213 +	/**
   1.214 +		Method to service Initialize1L request that has already completed, but
   1.215 +		not finished due to a pre-emption clash during its commit cycle(s).
   1.216 +		Leaves on failure.
   1.217 +		@return void
   1.218 +	*/
   1.219 +	void DoAlreadyCompletedInitialize1L();
   1.220 +
   1.221 +	/**
   1.222 +		Method to service Initialize2L request.
   1.223 +		Leaves on failure.
   1.224 +		@since 
   1.225 +		@param const RMmfIpcMessage& aMessage A reference to message object
   1.226 +			containing request attributes.
   1.227 +		@return ETrue if the request is serviced completely else EFalse.
   1.228 +	*/
   1.229 +	TBool DoInitialize2L(const RMmfIpcMessage& aMessage);
   1.230 +
   1.231 +	/**
   1.232 +		Method to service Initialize2L request that has already completed, but
   1.233 +		not finished due to a pre-emption clash during its commit cycle(s).
   1.234 +		Leaves on failure.
   1.235 +		@return void
   1.236 +	*/
   1.237 +	void DoAlreadyCompletedInitialize2L();
   1.238 +
   1.239 +	/**
   1.240 +		Method to service Initialize3L request.
   1.241 +		Leaves on failure.
   1.242 +		@param const RMmfIpcMessage& aMessage A reference to message object
   1.243 +			containing request attributes.
   1.244 +		@return ETrue if the request is serviced completely else EFalse.
   1.245 +	*/
   1.246 +	TBool DoInitialize3L(const RMmfIpcMessage& aMessage);
   1.247 +	/**
   1.248 +		Method to service Initialize4L request.
   1.249 +		Leaves on failure.
   1.250 +		@since 
   1.251 +		@param const RMmfIpcMessage& aMessage A reference to message object
   1.252 +			containing request attributes.
   1.253 +		@return ETrue if the request is serviced completely else EFalse.
   1.254 +	*/
   1.255 +	TBool DoInitialize4L(const RMmfIpcMessage& aMessage);
   1.256 +	
   1.257 +	/**
   1.258 +		Method to service Initialize4L request that has already completed, but
   1.259 +		not finished due to a pre-emption clash during its commit cycle(s).
   1.260 +		Leaves on failure.
   1.261 +		@return void
   1.262 +	*/
   1.263 +	void DoAlreadyCompletedInitialize4L();
   1.264 +
   1.265 +	/**
   1.266 +		Method to service CancelInitialize request.
   1.267 +		Leaves on failure.
   1.268 +		@since 
   1.269 +		@param const RMmfIpcMessage& aMessage A reference to message object
   1.270 +			containing request attributes.
   1.271 +		@return ETrue if the request is serviced completely else EFalse.
   1.272 +	*/
   1.273 +	TBool DoCancelInitializeL(const RMmfIpcMessage& aMessage);
   1.274 +
   1.275 +	/**
   1.276 +		Method to service capabilities query request from
   1.277 +		RMmfDevSoundProxy.
   1.278 +		Leaves on failure.
   1.279 +		@since 
   1.280 +		@param const RMmfIpcMessage& aMessage A reference to message object
   1.281 +			containing request attributes.
   1.282 +		@return ETrue if the request is serviced completely else EFalse.
   1.283 +	*/
   1.284 +	TBool DoCapabilitiesL(const RMmfIpcMessage& aMessage);
   1.285 +
   1.286 +	/**
   1.287 +		Method to service current configuration query request from
   1.288 +		RMmfDevSoundProxy.
   1.289 +		Leaves on failure.
   1.290 +		@since 
   1.291 +		@param const RMmfIpcMessage& aMessage A reference to message object
   1.292 +			containing request attributes.
   1.293 +		@return ETrue if the request is serviced completely else EFalse.
   1.294 +	*/
   1.295 +	TBool DoConfigL(const RMmfIpcMessage& aMessage);
   1.296 +
   1.297 +	/**
   1.298 +		Method to service set current configuration request from
   1.299 +		RMmfDevSoundProxy.
   1.300 +		Leaves on failure.
   1.301 +		@since 
   1.302 +		@param const RMmfIpcMessage& aMessage A reference to message object
   1.303 +			containing request attributes.
   1.304 +		@return ETrue if the request is serviced completely else EFalse.
   1.305 +	*/
   1.306 +	TBool DoSetConfigL(const RMmfIpcMessage& aMessage);
   1.307 +
   1.308 +	/**
   1.309 +		Method to service maximum volume query request.
   1.310 +		Leaves on failure.
   1.311 +		@since 
   1.312 +		@param const RMmfIpcMessage& aMessage A reference to message object
   1.313 +			containing request attributes.
   1.314 +		@return ETrue if the request is serviced completely else EFalse.
   1.315 +	*/
   1.316 +	TBool DoMaxVolumeL(const RMmfIpcMessage& aMessage);
   1.317 +
   1.318 +	/**
   1.319 +		Method to service current volume level query request.
   1.320 +		Leaves on failure.
   1.321 +		@since 
   1.322 +		@param const RMmfIpcMessage& aMessage A reference to message object
   1.323 +			containing request attributes.
   1.324 +		@return ETrue if the request is serviced completely else EFalse.
   1.325 +	*/
   1.326 +	TBool DoVolumeL(const RMmfIpcMessage& aMessage);
   1.327 +
   1.328 +	/**
   1.329 +		Method to service set current volume level request.
   1.330 +		Leaves on failure.
   1.331 +		@since 
   1.332 +		@param const RMmfIpcMessage& aMessage A reference to message object
   1.333 +			containing request attributes.
   1.334 +		@return ETrue if the request is serviced completely else EFalse.
   1.335 +	*/
   1.336 +	TBool DoSetVolumeL(const RMmfIpcMessage& aMessage);
   1.337 +
   1.338 +	/**
   1.339 +		Method to service maximum gain query request.
   1.340 +		Leaves on failure.
   1.341 +		@since 
   1.342 +		@param const RMmfIpcMessage& aMessage A reference to message object
   1.343 +			containing request attributes.
   1.344 +		@return ETrue if the request is serviced completely else EFalse.
   1.345 +	*/
   1.346 +	TBool DoMaxGainL(const RMmfIpcMessage& aMessage);
   1.347 +
   1.348 +	/**
   1.349 +		Method to service current gain level query request.
   1.350 +		Leaves on failure.
   1.351 +		@since 
   1.352 +		@param const RMmfIpcMessage& aMessage A reference to message object
   1.353 +			containing request attributes.
   1.354 +		@return ETrue if the request is serviced completely else EFalse.
   1.355 +	*/
   1.356 +	TBool DoGainL(const RMmfIpcMessage& aMessage);
   1.357 +
   1.358 +	/**
   1.359 +		Method to service set current gain level request.
   1.360 +		Leaves on failure.
   1.361 +		@since 
   1.362 +		@param const RMmfIpcMessage& aMessage A reference to message object
   1.363 +			containing request attributes.
   1.364 +		@return ETrue if the request is serviced completely else EFalse.
   1.365 +	*/
   1.366 +	TBool DoSetGainL(const RMmfIpcMessage& aMessage);
   1.367 +
   1.368 +	/**
   1.369 +		Method to service current play balance level query request.
   1.370 +		Leaves on failure.
   1.371 +		@since 
   1.372 +		@param const RMmfIpcMessage& aMessage A reference to message object
   1.373 +			containing request attributes.
   1.374 +		@return ETrue if the request is serviced completely else EFalse.
   1.375 +	*/
   1.376 +	TBool DoGetPlayBalanceL(const RMmfIpcMessage& aMessage);
   1.377 +
   1.378 +	/**
   1.379 +		Method to service set current play balance level request.
   1.380 +		Leaves on failure.
   1.381 +		@since 
   1.382 +		@param const RMmfIpcMessage& aMessage A reference to message object
   1.383 +			containing request attributes.
   1.384 +		@return ETrue if the request is serviced completely else EFalse.
   1.385 +	*/
   1.386 +	TBool DoSetPlayBalanceL(const RMmfIpcMessage& aMessage);
   1.387 +
   1.388 +	/**
   1.389 +		Method to service current record balance level query request.
   1.390 +		Leaves on failure.
   1.391 +		@since 
   1.392 +		@param const RMmfIpcMessage& aMessage A reference to message object
   1.393 +			containing request attributes.
   1.394 +		@return ETrue if the request is serviced completely else EFalse.
   1.395 +	*/
   1.396 +	TBool DoGetRecordBalanceL(const RMmfIpcMessage& aMessage);
   1.397 +
   1.398 +	/**
   1.399 +		Method to service set current record balance level request.
   1.400 +		Leaves on failure.
   1.401 +		@since 
   1.402 +		@param const RMmfIpcMessage& aMessage A reference to message object
   1.403 +			containing request attributes.
   1.404 +		@return ETrue if the request is serviced completely else EFalse.
   1.405 +	*/
   1.406 +	TBool DoSetRecordBalanceL(const RMmfIpcMessage& aMessage);
   1.407 +
   1.408 +	/**
   1.409 +		Method to service initialize DevSound to play request.
   1.410 +		Leaves on failure.
   1.411 +		@since 
   1.412 +		@param const RMmfIpcMessage& aMessage A reference to message object
   1.413 +			containing request attributes.
   1.414 +		@return ETrue if the request is serviced completely else EFalse.
   1.415 +	*/
   1.416 +	TBool DoPlayInitL(const RMmfIpcMessage& aMessage);
   1.417 +
   1.418 +	/**
   1.419 +		Method to service initialize DevSound to play request that has already completed,
   1.420 +		but not finished due to a pre-emption clash during its commit cycle(s).
   1.421 +		Leaves on failure.
   1.422 +		@return void
   1.423 +	*/
   1.424 +	void DoAlreadyCompletedPlayInitL();
   1.425 +
   1.426 +	/**
   1.427 +		Method to service initialize DevSound to record request.
   1.428 +		Leaves on failure.
   1.429 +		@since 
   1.430 +		@param const RMmfIpcMessage& aMessage A reference to message object
   1.431 +			containing request attributes.
   1.432 +		@return ETrue if the request is serviced completely else EFalse.
   1.433 +	*/
   1.434 +	TBool DoRecordInitL(const RMmfIpcMessage& aMessage);
   1.435 +
   1.436 +	/**
   1.437 +		Method to service initialize DevSound to record request that has already completed,
   1.438 +		but not finished due to a pre-emption clash during its commit cycle(s).
   1.439 +		Leaves on failure.
   1.440 +		@return void
   1.441 +	*/
   1.442 +	void DoAlreadyCompletedRecordInitL();
   1.443 +
   1.444 +	/**
   1.445 +		Method to service signal DevSound to playing current buffer request.
   1.446 +		Leaves on failure.
   1.447 +		@since 
   1.448 +		@param const RMmfIpcMessage& aMessage A reference to message object
   1.449 +			containing request attributes.
   1.450 +		@return ETrue if the request is serviced completely else EFalse.
   1.451 +	*/
   1.452 +	TBool DoPlayDataL(const RMmfIpcMessage& aMessage);
   1.453 +
   1.454 +	/**
   1.455 +		Method to service signal DevSound to continue record request.
   1.456 +		Leaves on failure.
   1.457 +		@since 
   1.458 +		@param const RMmfIpcMessage& aMessage A reference to message object
   1.459 +			containing request attributes.
   1.460 +		@return ETrue if the request is serviced completely else EFalse.
   1.461 +	*/
   1.462 +	TBool DoRecordDataL(const RMmfIpcMessage& aMessage);
   1.463 +
   1.464 +	/**
   1.465 +		Method to service signal DevSound to stop ongoing operation request.
   1.466 +		Leaves on failure.
   1.467 +		@since 
   1.468 +		@param const RMmfIpcMessage& aMessage A reference to message object
   1.469 +			containing request attributes.
   1.470 +		@return ETrue if the request is serviced completely else EFalse.
   1.471 +	*/
   1.472 +	TBool DoStopL(const RMmfIpcMessage& aMessage);
   1.473 +
   1.474 +	/**
   1.475 +		Method to service signal DevSound to temporarily stop ongoing
   1.476 +		operation request.
   1.477 +		Leaves on failure.
   1.478 +		@since 
   1.479 +		@param const RMmfIpcMessage& aMessage A reference to message object
   1.480 +			containing request attributes.
   1.481 +		@return ETrue if the request is serviced completely else EFalse.
   1.482 +	*/
   1.483 +	TBool DoPauseL(const RMmfIpcMessage& aMessage);
   1.484 +
   1.485 +	/**
   1.486 +		Method to service signal DevSound to play simple tone  operation
   1.487 +		request.
   1.488 +		Leaves on failure.
   1.489 +		@since 
   1.490 +		@param const RMmfIpcMessage& aMessage A reference to message object
   1.491 +			containing request attributes.
   1.492 +		@return ETrue if the request is serviced completely else EFalse.
   1.493 +	*/
   1.494 +	TBool DoPlayToneL(const RMmfIpcMessage& aMessage);
   1.495 +
   1.496 +	/**
   1.497 +		Method to service signal DevSound to play simple tone operation
   1.498 +		request that has already completed, but not finished due to a
   1.499 +		pre-emption clash during its commit cycle(s).
   1.500 +		Leaves on failure.
   1.501 +		@return void
   1.502 +	*/
   1.503 +	void DoAlreadyCompletedPlayToneL();
   1.504 +
   1.505 +	/**
   1.506 +		Method to service signal DevSound to play dual tone  operation
   1.507 +		request.
   1.508 +		Leaves on failure.
   1.509 +		@since 
   1.510 +		@param const RMmfIpcMessage& aMessage A reference to message object
   1.511 +			containing request attributes.
   1.512 +		@return ETrue if the request is serviced completely else EFalse.
   1.513 +	*/
   1.514 +	TBool DoPlayDualToneL(const RMmfIpcMessage& aMessage);
   1.515 +
   1.516 +	/**
   1.517 +		Method to service signal DevSound to play dual tone operation
   1.518 +		request that has already completed, but not finished due to a
   1.519 +		pre-emption clash during its commit cycle(s).
   1.520 +		Leaves on failure.
   1.521 +		@return void
   1.522 +	*/
   1.523 +	void DoAlreadyCompletedPlayDualToneL();
   1.524 +
   1.525 +	/**
   1.526 +		Method to service signal DevSound to play DTMFString operation
   1.527 +		request.
   1.528 +		Leaves on failure.
   1.529 +		@since 
   1.530 +		@param const RMmfIpcMessage& aMessage A reference to message object
   1.531 +			containing request attributes.
   1.532 +		@return ETrue if the request is serviced completely else EFalse.
   1.533 +	*/
   1.534 +	TBool DoPlayDTMFStringL(const RMmfIpcMessage& aMessage);
   1.535 +
   1.536 +	/**
   1.537 +		Method to service signal DevSound to play DTMFString operation
   1.538 +		request that has already completed, but not finished due to a
   1.539 +		pre-emption clash during its commit cycle(s).
   1.540 +		Leaves on failure.
   1.541 +		@return void
   1.542 +	*/
   1.543 +	void DoAlreadyCompletedPlayDTMFStringL();
   1.544 +
   1.545 +	/**
   1.546 +		Method to service signal DevSound to play tone sequence operation
   1.547 +		request.
   1.548 +		Leaves on failure.
   1.549 +		@since 
   1.550 +		@param const RMmfIpcMessage& aMessage A reference to message object
   1.551 +			containing request attributes.
   1.552 +		@return ETrue if the request is serviced completely else EFalse.
   1.553 +	*/
   1.554 +	TBool DoPlayToneSequenceL(const RMmfIpcMessage& aMessage);
   1.555 +
   1.556 +	/**
   1.557 +		Method to service signal DevSound to play tone sequence operation
   1.558 +		request that has already completed, but not finished due to a
   1.559 +		pre-emption clash during its commit cycle(s).
   1.560 +		Leaves on failure.
   1.561 +		@return void
   1.562 +	*/
   1.563 +	void DoAlreadyCompletedPlayToneSequenceL();
   1.564 +
   1.565 +	/**
   1.566 +		Method to service signal DevSound to play fixed sequence operation
   1.567 +		request.
   1.568 +		Leaves on failure.
   1.569 +		@since 
   1.570 +		@param const RMmfIpcMessage& aMessage A reference to message object
   1.571 +			containing request attributes.
   1.572 +		@return ETrue if the request is serviced completely else EFalse.
   1.573 +	*/
   1.574 +	TBool DoPlayFixedSequenceL(const RMmfIpcMessage& aMessage);
   1.575 +
   1.576 +	/**
   1.577 +		Method to service signal DevSound to play fixed sequence operation
   1.578 +		request that has already completed, but not finished due to a
   1.579 +		pre-emption clash during its commit cycle(s).
   1.580 +		Leaves on failure.
   1.581 +		@return void
   1.582 +	*/
   1.583 +	void DoAlreadyCompletedPlayFixedSequenceL();
   1.584 +
   1.585 +	/**
   1.586 +		Method to service signal DevSound to initilize DTMF String operation
   1.587 +		request.
   1.588 +		Leaves on failure.
   1.589 +		@since 
   1.590 +		@param const RMmfIpcMessage& aMessage A reference to message object
   1.591 +			containing request attributes.
   1.592 +		@return ETrue if the request is serviced completely else EFalse.
   1.593 +	*/
   1.594 +	TBool DoSetDTMFLengthsL(const RMmfIpcMessage& aMessage);
   1.595 +
   1.596 +	/**
   1.597 +		Method to service signal DevSound to set volume ramp operation
   1.598 +		request.
   1.599 +		Leaves on failure.
   1.600 +		@since 
   1.601 +		@param const RMmfIpcMessage& aMessage A reference to message object
   1.602 +			containing request attributes.
   1.603 +		@return ETrue if the request is serviced completely else EFalse.
   1.604 +	*/
   1.605 +	TBool DoSetVolumeRampL(const RMmfIpcMessage& aMessage);
   1.606 +
   1.607 +	/**
   1.608 +		Method to service query DevSound to return supported input data types
   1.609 +		operation request.
   1.610 +		Leaves on failure.
   1.611 +		@since 
   1.612 +		@param const RMmfIpcMessage& aMessage A reference to message object
   1.613 +			containing request attributes.
   1.614 +		@return ETrue if the request is serviced completely else EFalse.
   1.615 +	*/
   1.616 +	TBool DoGetSupportedInputDataTypesL(const RMmfIpcMessage& aMessage);
   1.617 +
   1.618 +	/**
   1.619 +		Method to service query DevSound to copy FourCC array data
   1.620 +		operation request.
   1.621 +		Leaves on failure.
   1.622 +		@since 
   1.623 +		@param const RMmfIpcMessage& aMessage A reference to message object
   1.624 +			containing request attributes.
   1.625 +		@return ETrue if the request is serviced completely else EFalse.
   1.626 +	*/
   1.627 +	TBool DoCopyFourCCArrayDataL(const RMmfIpcMessage& aMessage);
   1.628 +
   1.629 +	/**
   1.630 +		Method to service the request querying samples recorded so far.
   1.631 +		Leaves on failure.
   1.632 +		@since 
   1.633 +		@param const RMmfIpcMessage& aMessage A reference to message object
   1.634 +			containing request attributes.
   1.635 +		@return ETrue if the request is serviced completely else EFalse.
   1.636 +	*/
   1.637 +	TBool DoSamplesRecordedL(const RMmfIpcMessage& aMessage);
   1.638 +
   1.639 +	/**
   1.640 +		Method to service the request querying samples played so far.
   1.641 +		Leaves on failure.
   1.642 +		@since 
   1.643 +		@param const RMmfIpcMessage& aMessage A reference to message object
   1.644 +			containing request attributes.
   1.645 +		@return ETrue if the request is serviced completely else EFalse.
   1.646 +	*/
   1.647 +	TBool DoSamplesPlayedL(const RMmfIpcMessage& aMessage);
   1.648 +
   1.649 +	/**
   1.650 +		Method to service the request to set tone repeats.
   1.651 +		Leaves on failure.
   1.652 +		@since 
   1.653 +		@param const RMmfIpcMessage& aMessage A reference to message object
   1.654 +			containing request attributes.
   1.655 +		@return ETrue if the request is serviced completely else EFalse.
   1.656 +	*/
   1.657 +	TBool DoSetToneRepeatsL(const RMmfIpcMessage& aMessage);
   1.658 +
   1.659 +	/**
   1.660 +		Method to service the request to set priority settings.
   1.661 +		Leaves on failure.
   1.662 +		@since 
   1.663 +		@param const RMmfIpcMessage& aMessage A reference to message object
   1.664 +			containing request attributes.
   1.665 +		@return ETrue if the request is serviced completely else EFalse.
   1.666 +	*/
   1.667 +	TBool DoSetPrioritySettingsL(const RMmfIpcMessage& aMessage);
   1.668 +
   1.669 +	/**
   1.670 +		Method to service the request querrying fixed sequence name.
   1.671 +		Leaves on failure.
   1.672 +		@since 
   1.673 +		@param const RMmfIpcMessage& aMessage A reference to message object
   1.674 +			containing request attributes.
   1.675 +		@return ETrue if the request is serviced completely else EFalse.
   1.676 +	*/
   1.677 +	TBool DoFixedSequenceNameL(const RMmfIpcMessage& aMessage);
   1.678 +
   1.679 +	/**
   1.680 +		Method to service the request querrying fixed sequence count.
   1.681 +		Leaves on failure.
   1.682 +		@since 
   1.683 +		@param const RMmfIpcMessage& aMessage A reference to message object
   1.684 +			containing request attributes.
   1.685 +		@return ETrue if the request is serviced completely else EFalse.
   1.686 +	*/
   1.687 +	TBool DoFixedSequenceCountL(const RMmfIpcMessage& aMessage);
   1.688 +
   1.689 +	/**
   1.690 +		Method to service the request querrying supported output data types.
   1.691 +		Leaves on failure.
   1.692 +		@since 
   1.693 +		@param const RMmfIpcMessage& aMessage A reference to message object
   1.694 +			containing request attributes.
   1.695 +		@return ETrue if the request is serviced completely else EFalse.
   1.696 +	*/
   1.697 +	TBool DoGetSupportedOutputDataTypesL(const RMmfIpcMessage& aMessage);
   1.698 +
   1.699 +	/**
   1.700 +		Method to service the request querrying specifics of the TBF data
   1.701 +			 buffer.
   1.702 +		Leaves on failure.
   1.703 +		@since 
   1.704 +		@param const RMmfIpcMessage& aMessage A reference to message object
   1.705 +			containing request attributes.
   1.706 +		@return ETrue if the request is serviced completely else EFalse.
   1.707 +	*/
   1.708 +	TBool DoBufferToBeFilledDataL(const RMmfIpcMessage& aMessage);
   1.709 +
   1.710 +	/**
   1.711 +		Method to service the request querrying specifics of the TBE data
   1.712 +			buffer.
   1.713 +		Leaves on failure.
   1.714 +		@since 
   1.715 +		@param const RMmfIpcMessage& aMessage A reference to message object
   1.716 +			containing request attributes.
   1.717 +		@return ETrue if the request is serviced completely else EFalse.
   1.718 +	*/
   1.719 +	TBool DoBufferToBeEmptiedDataL(const RMmfIpcMessage& aMessage);
   1.720 +
   1.721 +	/**
   1.722 +
   1.723 +		Leaves on failure.
   1.724 +		@since 
   1.725 +		@param const RMmfIpcMessage& aMessage A reference to message object
   1.726 +			containing request attributes.
   1.727 +		@return ETrue if the request is serviced completely else EFalse.
   1.728 +	*/
   1.729 +	TBool DoEmptyBuffersL(const RMmfIpcMessage& aMessage);
   1.730 +
   1.731 +	/**
   1.732 +		Method to service the request querrying preparation for close session
   1.733 +		Leaves on failure.
   1.734 +		@since 
   1.735 +		@param const RMmfIpcMessage& aMessage A reference to message object
   1.736 +			containing request attributes.
   1.737 +		@return ETrue if the request is serviced completely else EFalse.
   1.738 +	*/
   1.739 +	TBool DoPrepareCloseL(const RMmfIpcMessage& aMessage);
   1.740 +
   1.741 +	
   1.742 +	TBool DoRegisterAsClientL(const RMmfIpcMessage& aMessage);
   1.743 +	TBool DoCancelRegisterAsClientL(const RMmfIpcMessage& aMessage);
   1.744 +	TBool DoGetResourceNotificationDataL(const RMmfIpcMessage& aMessage);
   1.745 +	TBool DoWillResumePlayL(const RMmfIpcMessage& aMessage);
   1.746 +	TBool DoSetClientThreadInfoL(const RMmfIpcMessage& aMessage);
   1.747 +
   1.748 +	
   1.749 +	/**
   1.750 +		Method to get the current play time from the audio renderer
   1.751 +		@since 
   1.752 +		@param const RMmfIpcMessage& aMessage A reference to message object
   1.753 +			containing request attributes.
   1.754 +		@return ETrue if the request is serviced completely else EFalse.
   1.755 +	*/
   1.756 +	TBool DoGetTimePlayedL(const RMmfIpcMessage& aMessage);
   1.757 +	
   1.758 +	/**
   1.759 +		Method to query if True Pause is supported by current codec format
   1.760 +		@since 
   1.761 +		@param const RMmfIpcMessage& aMessage A reference to message object
   1.762 +			containing request attributes.
   1.763 +		@return ETrue if the request is serviced completely else EFalse.
   1.764 +	*/
   1.765 +	TBool DoQueryResumeSupportedL(const RMmfIpcMessage& aMessage);
   1.766 +
   1.767 +	/**
   1.768 +		Method to service signal DevSound to resume playback, recording or tone playing
   1.769 +		request.
   1.770 +		Leaves on failure.
   1.771 +		@since 
   1.772 +		@param const RMmfIpcMessage& aMessage A reference to message object
   1.773 +			containing request attributes.
   1.774 +		@return ETrue if the request is serviced completely else EFalse.
   1.775 +	*/
   1.776 +	TBool DoResumeL(const RMmfIpcMessage& aMessage);
   1.777 +
   1.778 +	/**
   1.779 +		Initializes to raw audio data PCM16 and Sampling Rate of 8 KHz.
   1.780 +		On completion of Initialization, calls InitializeComplete() on
   1.781 +		aDevSoundObserver.
   1.782 +		Leaves on failure.
   1.783 +		@since 
   1.784 +		@param MDevSoundAdaptationObserver& aDevSoundObserver A reference to DevSound
   1.785 +			Observer instance.
   1.786 +		@param TMMFState aMode Mode for which this object will be used.
   1.787 +		@return void
   1.788 +	*/
   1.789 +	void InitializeL(MDevSoundAdaptationObserver& aDevSoundObserver,
   1.790 +									TMMFState aMode);
   1.791 +
   1.792 +	/**
   1.793 +		Initializes DevSound object for the mode aMode for processing audio
   1.794 +		data with hardware device aHWDev.
   1.795 +		On completion of Initialization, calls InitializeComplete() on
   1.796 +		aDevSoundObserver.
   1.797 +		Leaves on failure.
   1.798 +		@since 
   1.799 +		@param MDevSoundAdaptationObserver& aDevSoundObserver A reference to DevSound
   1.800 +			Observer instance.
   1.801 +		@param TUid aHWDev The CMMFHwDevice implementation identifier.
   1.802 +		@param TMMFState aMode The mode for which this object will be used
   1.803 +		@return void
   1.804 +	*/
   1.805 +	void InitializeL(MDevSoundAdaptationObserver& aDevSoundObserver,
   1.806 +					TUid aHWDev,
   1.807 +					TMMFState aMode);
   1.808 +
   1.809 +	/**
   1.810 +		Initializes DevSound object for the mode aMode for processing audio
   1.811 +		data with hardware device supporting FourCC aDesiredFourCC.
   1.812 +		Leaves on failure.
   1.813 +		@since 
   1.814 +		@param MDevSoundAdaptationObserver& aDevSoundObserver A reference to
   1.815 +			the DevSound adaptation observer instance.
   1.816 +		@param TFourCC aDesiredFourCC The CMMFHwDevice implementation FourCC
   1.817 +			code.
   1.818 +		@param TMMFState aMode The mode for which this object will be used
   1.819 +		@return KErrNone if successfull, else corresponding error code
   1.820 +		@return void
   1.821 +	*/
   1.822 +	void InitializeL(MDevSoundAdaptationObserver& aDevSoundObserver,
   1.823 +					TFourCC aDesiredFourCC,
   1.824 +					TMMFState aMode);
   1.825 +
   1.826 +	/**
   1.827 +		Returns the supported Audio settings ie. encoding, sample rates,
   1.828 +		mono/stereo operation, buffer size etc..
   1.829 +		@since 
   1.830 +		@return TMMFCapabilities The device settings.
   1.831 +	*/
   1.832 +	TMMFCapabilities Capabilities();
   1.833 +
   1.834 +	/**
   1.835 +		Returns the current device configuration.
   1.836 +		@since 
   1.837 +		@return TMMFCapabilities The device settings.
   1.838 +	*/
   1.839 +	TMMFCapabilities Config() const;
   1.840 +
   1.841 +	/**
   1.842 +		Configure CMMFDevSound object with the settings in aConfig. Use this
   1.843 +		to set sampling rate, encoding and mono/stereo.
   1.844 +		Leaves on failure.
   1.845 +		@since 
   1.846 +		@param const TMMFCapabilities& aConfig The attribute values to which
   1.847 +			CMMFDevSound object will be configured to.
   1.848 +		@return void
   1.849 +	*/
   1.850 +	void SetConfigL(const TMMFCapabilities& aCaps);
   1.851 +
   1.852 +	/**
   1.853 +		Returns an integer representing the maximum volume device supports.
   1.854 +		This is the maximum value which can be passed to
   1.855 +		CMMFDevSound::SetVolume.
   1.856 +		@since 
   1.857 +		@return TInt The maximum volume. This value is platform dependent but
   1.858 +			is always greater than or equal to one.
   1.859 +	*/
   1.860 +	TInt MaxVolume();
   1.861 +
   1.862 +	/**
   1.863 +		Returns an integer representing the current volume.
   1.864 +		@since 
   1.865 +		@return TInt The current volume level.
   1.866 +	*/
   1.867 +	TInt Volume();
   1.868 +
   1.869 +	/**
   1.870 +		Changes the current playback volume to a specified value. The volume
   1.871 +		can be changed before or during playback and is effective immediately.
   1.872 +		@since 
   1.873 +		@param TInt aVolume The volume setting. This can be any value from 0
   1.874 +			to the value returned by a call to
   1.875 +			CMMFDevSound::MaxVolume(). If the volume is not
   1.876 +			within this range, the volume is automatically set
   1.877 +			to minimum or maximum value based on the value
   1.878 +			that is being passed. Setting a zero value mutes
   1.879 +			the sound. Setting the maximum value results in
   1.880 +			the loudest possible sound.
   1.881 +		@return void
   1.882 +	*/
   1.883 +	void SetVolume(TInt aVolume);
   1.884 +
   1.885 +	/**
   1.886 +		Returns an integer representing the maximum gain the device supports.
   1.887 +		This is the maximum value which can be passed to CMMFDevSound::SetGain
   1.888 +		@since 
   1.889 +		@return TInt The maximum gain. This value is platform dependent but is
   1.890 +			always greater than or equal to one.
   1.891 +	*/
   1.892 +	TInt MaxGain();
   1.893 +
   1.894 +	/**
   1.895 +		Returns an integer representing the current gain.
   1.896 +		@since 
   1.897 +		@return TInt The current gain level.
   1.898 +	*/
   1.899 +	TInt Gain();
   1.900 +
   1.901 +	/**
   1.902 +		Changes the current recording gain to a specified value. The gain can
   1.903 +		be changed before or during recording and is effective immediately.
   1.904 +		@since 
   1.905 +		@param TInt aGain The gain setting. This can be any value from zero to
   1.906 +			the value returned by a call to
   1.907 +			CMMFDevSound::MaxGain(). If the volume
   1.908 +			is not within this range, the gain is automatically
   1.909 +			set to minimum or maximum value based on the value
   1.910 +			that is being passed. Setting a zero value mutes the
   1.911 +			sound. Setting the maximum value results in the
   1.912 +			loudest possible sound.
   1.913 +		@return void
   1.914 +	*/
   1.915 +	void SetGain(TInt aGain);
   1.916 +
   1.917 +	/**
   1.918 +		Returns the speaker balance set for playing.
   1.919 +		Leaves on failure.
   1.920 +		@since 
   1.921 +		@param TInt &aLeftPercentage On return contains the left speaker
   1.922 +			volume percentage.
   1.923 +		@param TInt &aRightPercentage On return contains the right speaker
   1.924 +			volume percentage.
   1.925 +		@return void
   1.926 +	*/
   1.927 +	void GetPlayBalanceL(TInt& aLeftPercentage, TInt& aRightPercentage);
   1.928 +
   1.929 +	/**
   1.930 +		Sets the speaker balance for playing. The speaker balance can be
   1.931 +		changed before or during playback and is effective immediately.
   1.932 +		Leaves on failure.
   1.933 +		@since 
   1.934 +		@param TInt aLeftPercentage The left speaker volume percentage. This
   1.935 +			can be any value from zero to 100. Setting
   1.936 +			a zero value mutes the sound on left
   1.937 +			speaker.
   1.938 +		@param TInt aRightPercentage The right speaker volume percentage.
   1.939 +			This can be any value from zero to 100.
   1.940 +			Setting a zero value mutes the sound on
   1.941 +			right speaker.
   1.942 +		@return void
   1.943 +	*/
   1.944 +	void SetPlayBalanceL(TInt aLeftPercentage, TInt aRightPercentage);
   1.945 +
   1.946 +	/**
   1.947 +		Returns the microphone gain balance set for recording.
   1.948 +		Leaves on failure.
   1.949 +		@since 
   1.950 +		@param TInt &aLeftPercentage On return contains the left microphone
   1.951 +			gain percentage.
   1.952 +		@param TInt &aRightPercentage On return contains the right microphone
   1.953 +			 gain percentage.
   1.954 +		@return void
   1.955 +	*/
   1.956 +	void GetRecordBalanceL(TInt& aLeftPercentage, TInt& aRightPercentage);
   1.957 +	/**
   1.958 +		Sets the microphone balance for recording. The microphone balance can
   1.959 +		be changed before or during recording and is effective immediately.
   1.960 +		Leaves on failure.
   1.961 +		@since 
   1.962 +		@param TInt aLeftPercentage The left microphone gain percentage. This
   1.963 +		can be any value from zero to 100. Setting
   1.964 +			a zero value mutes the sound from left
   1.965 +			microphone.
   1.966 +		@param TInt aRightPercentage The right microphone gain percentage.
   1.967 +			This can be any value from zero to 100.
   1.968 +			Setting a zero value mutes the sound from
   1.969 +			right microphone.
   1.970 +		@return void
   1.971 +	*/
   1.972 +	void SetRecordBalanceL(TInt aLeftPercentage, TInt aRightPercentage);
   1.973 +
   1.974 +	/**
   1.975 +		Initializes the audio device and starts the play process. This
   1.976 +		function queries and acquires the audio policy before initializing
   1.977 +		audio device. If there was an error during policy initialization,
   1.978 +		PlayError() function will be called on the observer with error code
   1.979 +		KErrAccessDenied, otherwise BufferToBeFilled() function will be called
   1.980 +		with a buffer reference. After reading data into the buffer reference
   1.981 +		passed, the client should call PlayData() to play data.
   1.982 +		The amount of data that can be played is specified in
   1.983 +		CMMFBuffer::RequestSize(). Any data that is read into buffer beyond
   1.984 +		this size will be ignored.
   1.985 +		Leaves on failure.
   1.986 +		@since 
   1.987 +		@return void
   1.988 +	*/
   1.989 +	void PlayInitL();
   1.990 +
   1.991 +	/**
   1.992 +		Initializes the audio device and starts the record process. This
   1.993 +		function queries and acquires the audio policy before initializing
   1.994 +		audio device. If there was an error during policy initialization,
   1.995 +		RecordError() function will be called on the observer with error code
   1.996 +		KErrAccessDenied, otherwise BufferToBeEmptied() function will be called
   1.997 +		with a buffer reference. This buffer contains recorded or encoded
   1.998 +		data. After processing data in the buffer reference passed, the client
   1.999 +		should call RecordData() to continue recording process.
  1.1000 +		The amount of data that is available is specified in
  1.1001 +		CMMFBuffer::RequestSize().
  1.1002 +		Leaves on failure.
  1.1003 +		@since 
  1.1004 +		@return void
  1.1005 +	*/
  1.1006 +	void RecordInitL();
  1.1007 +
  1.1008 +	/**
  1.1009 +		Plays data in the buffer at the current volume.
  1.1010 +		The client should fill the buffer with audio data before calling this
  1.1011 +		function. The observer gets a reference to the buffer along with the
  1.1012 +		callback function BufferToBeFilled(). When playing of the audio sample
  1.1013 +		is complete, successfully or otherwise, the function PlayError() on
  1.1014 +		the observer is called.
  1.1015 +		The last buffer of the audio stream being played should have the last
  1.1016 +		buffer flag set using CMMFBuffer::SetLastBuffer(TBool). If a
  1.1017 +		subsequent attempt to play the clip is made, this flag will need
  1.1018 +		resetting by the client.
  1.1019 +		@return void
  1.1020 +	*/
  1.1021 +	void PlayData();
  1.1022 +
  1.1023 +	/**
  1.1024 +		Contine the process of recording.
  1.1025 +		Once the buffer is filled with recorded data, the Observer gets a
  1.1026 +		reference to the buffer along with the callback function
  1.1027 +		BufferToBeEmptied(). After processing the buffer (copying over to a
  1.1028 +		different buffer or writing to file) the client should call this
  1.1029 +		function to continue the recording process.
  1.1030 +		@return void
  1.1031 +	*/
  1.1032 +	void RecordData();
  1.1033 +
  1.1034 +	/**
  1.1035 +		Stops the ongoing operation (Play, Record, TonePlay).
  1.1036 +		@since 
  1.1037 +		@return void
  1.1038 +	*/
  1.1039 +	void Stop();
  1.1040 +
  1.1041 +	/**
  1.1042 +		Temporarily Stops the ongoing operation (Play, Record, TonePlay).
  1.1043 +		@since 
  1.1044 +		@return void
  1.1045 +	*/
  1.1046 +	void Pause();
  1.1047 +
  1.1048 +	/**
  1.1049 +		Returns the Sample recorded so far
  1.1050 +		@since 
  1.1051 +		@return TInt Returns the samples recorded.
  1.1052 +	*/
  1.1053 +	TInt SamplesRecorded();
  1.1054 +
  1.1055 +	/**
  1.1056 +		Returns the Sample played so far
  1.1057 +		@since 
  1.1058 +		@return TInt Returns the samples played.
  1.1059 +	*/
  1.1060 +	TInt SamplesPlayed();
  1.1061 +
  1.1062 +	/**
  1.1063 +		Initializes the audio device and starts playing a tone. The tone is
  1.1064 +		played with the frequency and duration specified.
  1.1065 +		Leaves on failure.
  1.1066 +		@since 
  1.1067 +		@param TInt aFrequency The frequency at which the tone will be played.
  1.1068 +		@param const TTimeIntervalMicroSeconds &aDuration The period over
  1.1069 +		which the tone will be played. A zero value causes the no tone
  1.1070 +		to be played.
  1.1071 +		@return void
  1.1072 +	*/
  1.1073 +	void PlayToneL(TInt aFrequency,
  1.1074 +				const TTimeIntervalMicroSeconds& aDuration);
  1.1075 +
  1.1076 +	/**
  1.1077 +		Initializes audio device and starts playing a dual tone. Dual Tone is
  1.1078 +		played with the specified frequencies and for the specified duration.
  1.1079 +		Leaves on failure.
  1.1080 +		@since 
  1.1081 +		@param TInt aFrequencyOne The first frequency of dual tone.
  1.1082 +		@param TInt aFrequencyTwo The second frequency of dual tone.
  1.1083 +		@param const TTimeIntervalMicroSeconds &aDuration The period over
  1.1084 +			which the tone will be played. A zero value causes the no tone
  1.1085 +			to be played.
  1.1086 +		@return void
  1.1087 +	*/
  1.1088 +	void PlayDualToneL(TInt aFrequencyOne,
  1.1089 +					TInt aFrequencyTwo,
  1.1090 +					const TTimeIntervalMicroSeconds& aDuration);
  1.1091 +
  1.1092 +	/**
  1.1093 +		Initializes the audio device and starts playing the DTMF string
  1.1094 +		aDTMFString.
  1.1095 +		Leaves on failure.
  1.1096 +		@since 
  1.1097 +		@param const TDesC &aDTMFString The DTMF sequence in a descriptor.
  1.1098 +		@return void
  1.1099 +	*/
  1.1100 +	void PlayDTMFStringL(const TDesC& aDTMFString);
  1.1101 +
  1.1102 +	/**
  1.1103 +		Initializes the audio device and starts playing a tone sequence.
  1.1104 +		Leaves on failure.
  1.1105 +		@since 
  1.1106 +		@param const TDesC8 &aData The tone sequence in a descriptor.
  1.1107 +		@return void
  1.1108 +	*/
  1.1109 +	void PlayToneSequenceL(const TDesC8& aData);
  1.1110 +
  1.1111 +	/**
  1.1112 +		Initializes the audio device and starts playing the specified
  1.1113 +		pre-defined tone sequence.
  1.1114 +		Leaves on failure.
  1.1115 +		@since 
  1.1116 +		@param TInt aSequenceNumber The index identifying the specific
  1.1117 +			pre-defined tone sequence. Index values are relative to zero.
  1.1118 +			This can be any value from zero to the value returned by a call
  1.1119 +			to FixedSequenceCount() - 1. The function raises a panic if the
  1.1120 +			sequence number is not within this range.
  1.1121 +		@return void
  1.1122 +	*/
  1.1123 +	void PlayFixedSequenceL(TInt aSequenceNumber);
  1.1124 +
  1.1125 +	/**
  1.1126 +		Defines the number of times the audio is to be repeated during the
  1.1127 +		tone playback operation. A period of silence can follow each playing
  1.1128 +		of a tone. The tone playing can be repeated indefinitely
  1.1129 +		@since 
  1.1130 +		@param TInt aRepeatCount The number of times the tone, together with
  1.1131 +			the trailing silence, is to be repeated. If this is set to
  1.1132 +			KMdaRepeatForever, then the tone, together with the trailing
  1.1133 +			silence, is repeated indefinitely or until Stop() is called.
  1.1134 +			If this is set to zero, then the tone is not repeated.
  1.1135 +		@param const TTimeIntervalMicroSeconds &aRepeatTrailingSilence An
  1.1136 +			interval of silence which will be played after each tone.
  1.1137 +			Supported only during tone playing.
  1.1138 +		@return void
  1.1139 +	*/
  1.1140 +	void SetToneRepeats(
  1.1141 +			TInt aRepeatCount,
  1.1142 +			const TTimeIntervalMicroSeconds& aRepeatTrailingSilence);
  1.1143 +
  1.1144 +	/**
  1.1145 +		Defines the duration of tone on, tone off and tone pause to be used
  1.1146 +		during the DTMF tone playback operation.
  1.1147 +		Supported only during tone playing.
  1.1148 +		@since 
  1.1149 +		@param TTimeIntervalMicroSeconds32 &aToneOnLength The period over
  1.1150 +			which the tone will be played. If this is set to zero, then the
  1.1151 +			tone is not played.
  1.1152 +		@param TTimeIntervalMicroSeconds32 &aToneOffLength The period over
  1.1153 +			which the no tone will be played.
  1.1154 +		@param TTimeIntervalMicroSeconds32 &aPauseLength The period over which
  1.1155 +			the tone playing will be paused.
  1.1156 +		@return void
  1.1157 +	*/
  1.1158 +	void SetDTMFLengths(TTimeIntervalMicroSeconds32& aToneOnLength,
  1.1159 +					TTimeIntervalMicroSeconds32& aToneOffLength,
  1.1160 +					TTimeIntervalMicroSeconds32& aPauseLength);
  1.1161 +
  1.1162 +	/**
  1.1163 +		Defines the period over which the volume level is to rise smoothly
  1.1164 +		from nothing to the normal volume level.
  1.1165 +		The function is only available before playing.
  1.1166 +		@since 
  1.1167 +		@param const TTimeIntervalMicroSeconds &aRampDuration The period over
  1.1168 +			which the volume is to rise. A zero value causes the tone
  1.1169 +			sample to be played at the normal level for the full duration
  1.1170 +			of the playback. A value, which is longer than the duration of
  1.1171 +			the tone sample means that the sample never reaches its normal
  1.1172 +			volume level.
  1.1173 +		@return void
  1.1174 +	*/
  1.1175 +	void SetVolumeRamp(const TTimeIntervalMicroSeconds& aRampDuration);
  1.1176 +
  1.1177 +	/**
  1.1178 +		Defines the priority settings that should be used for this instance.
  1.1179 +		@since 
  1.1180 +		@param const TMMFPrioritySettings &aPrioritySettings A class type
  1.1181 +			representing the client's priority, priority preference and
  1.1182 +			state
  1.1183 +		@return void
  1.1184 +	*/
  1.1185 +	void SetPrioritySettings(TMMFPrioritySettings& aPrioritySettings);
  1.1186 +
  1.1187 +	/**
  1.1188 +		Returns a pointer reference to custom interface implementation.
  1.1189 +		Note: Implementation from MCustomInterface.
  1.1190 +		@since 
  1.1191 +		@return   "TAny"
  1.1192 +			Custom interface implementation. The exact type of pointer is
  1.1193 +			dependent on the custom interface implemenation.
  1.1194 +	*/
  1.1195 +	virtual TAny* CustomInterface(TUid aInterfaceId);
  1.1196 +
  1.1197 +	/**
  1.1198 +		Returns the number of available pre-defined tone sequences.
  1.1199 +		This is the number of fixed sequence supported by DevSound by default.
  1.1200 +		@since 
  1.1201 +		@return TInt  The fixed sequence count. This value is implementation
  1.1202 +			dependent.
  1.1203 +	*/
  1.1204 +	TInt FixedSequenceCount();
  1.1205 +
  1.1206 +	/**
  1.1207 +		Returns the name assigned to a specific pre-defined tone sequence.
  1.1208 +		This is the number of the fixed sequence supported by DevSound by
  1.1209 +		default.
  1.1210 +		The function raises a panic if sequence number specified is invalid.
  1.1211 +		@since 
  1.1212 +		@param TInt aSequenceNumber The index identifying the specific
  1.1213 +			pre-defined tone sequence. Index values are relative to zero.
  1.1214 +			This can be any value from zero to the value returned by a call
  1.1215 +			to CMdaAudioPlayerUtility::FixedSequenceCount() - 1. The
  1.1216 +			function raises a panic if sequence number is not within this
  1.1217 +			range.
  1.1218 +		@return const TDesC & A reference to a Descriptor containing the fixed
  1.1219 +			sequence name indexed by aSequenceNumber.
  1.1220 +	*/
  1.1221 +	const TDesC& FixedSequenceName(TInt aSequenceNumber);
  1.1222 +
  1.1223 +	/**
  1.1224 +		Returns a list of the supported input datatypes that can be sent to
  1.1225 +		DevSound for playing audio. The datatypes returned are those that the
  1.1226 +		DevSound supports given the priority settings passed in
  1.1227 +		aPrioritySettings. Note that if no supported data types are found this
  1.1228 +		does not constitute failure, the function will return normally with no
  1.1229 +		entries in aSupportedDataTypes.
  1.1230 +		@since 
  1.1231 +		@param RArray< TFourCC > &aSupportedDataTypes The array of supported
  1.1232 +			data types that will be filled in by this function. The
  1.1233 +			supported data types of the DevSound are in the form of an
  1.1234 +			array of TFourCC codes. Any existing entries in the array will
  1.1235 +			be overwritten on calling this function. If no supported data
  1.1236 +			types are found given the priority settings, then the
  1.1237 +			aSupportedDatatypes array will have zero entries.
  1.1238 +		@param const TMMFPrioritySettings &aPrioritySettings The priority
  1.1239 +			settings used to determine the supported datatypes. Note this
  1.1240 +			does not set the priority settings. For input datatypes the
  1.1241 +			iState member of the priority settings would be expected to be
  1.1242 +			either EMMFStatePlaying or EMMFStatePlayingRecording. The
  1.1243 +			priority settings may effect the supported datatypes depending
  1.1244 +			on the audio routing.
  1.1245 +		@return void
  1.1246 +	*/
  1.1247 +	void GetSupportedInputDataTypesL(
  1.1248 +		RArray<TFourCC>& aSupportedDataTypes,
  1.1249 +		const TMMFPrioritySettings& aPrioritySettings) const;
  1.1250 +
  1.1251 +	/**
  1.1252 +		Returns a list of the supported output dataypes that can be received
  1.1253 +		from DevSound for recording audio. The datatypes returned are those
  1.1254 +		that the DevSound supports given the priority settings passed in
  1.1255 +		aPrioritySettings. Note that if no supported data types are found this
  1.1256 +		does not constitute failure, the function will return normally with no
  1.1257 +		entries in aSupportedDataTypes.
  1.1258 +		@since 
  1.1259 +		@param RArray< TFourCC > &aSupportedDataTypes The array of supported
  1.1260 +			data types that will be filled in by this function. The
  1.1261 +			supported datatypes of the DevSound are in the form of an array
  1.1262 +			of TFourCC codes. Any existing entries in the array will be
  1.1263 +			overwritten on calling this function. If no supported datatypes
  1.1264 +			are found given the priority settings, then the
  1.1265 +			aSupportedDatatypes array will have zero entries.
  1.1266 +		@param const TMMFPrioritySettings &aPrioritySettings The priority
  1.1267 +			settings used to determine the supported data types. Note this
  1.1268 +			does not set the priority settings. For output data types the
  1.1269 +			iState member of the priority settings would expected to be
  1.1270 +			either EMMFStateRecording or EMMFStatePlayingRecording. The
  1.1271 +			priority settings may effect the supported datatypes depending
  1.1272 +			on the audio routing.
  1.1273 +		@return void
  1.1274 +	*/
  1.1275 +	void GetSupportedOutputDataTypesL(
  1.1276 +		RArray<TFourCC>& aSupportedDataTypes,
  1.1277 +		const TMMFPrioritySettings& aPrioritySettings) const;
  1.1278 +
  1.1279 +	/**
  1.1280 +		MDevSoundAdaptationObserver callback.
  1.1281 +		This is called when DevSound initialization is complete.
  1.1282 +		@since 
  1.1283 +		@param TInt aError KErrNone if successfull, else corresponding error
  1.1284 +			code
  1.1285 +		@return void
  1.1286 +	*/
  1.1287 +	void InitializeComplete(TInt aError);
  1.1288 +
  1.1289 +	/**
  1.1290 +		MDevSoundAdaptationObserver callback.
  1.1291 +		This is called when tone play back is complete.
  1.1292 +		@since 
  1.1293 +		@param TInt aError KErrNone if successfull, else corresponding error
  1.1294 +			code
  1.1295 +		@return void
  1.1296 +	*/
  1.1297 +	void ToneFinished(TInt aError);
  1.1298 +
  1.1299 +	/**
  1.1300 +		MDevSoundAdaptationObserver callback.
  1.1301 +		This is called when more data is needed during digital audio playback.
  1.1302 +		@since 
  1.1303 +		@param CMMFBuffer* aBuffer A pointer to buffer where data is needed.
  1.1304 +		@return void
  1.1305 +	*/
  1.1306 +	void BufferToBeFilled(CMMFBuffer* aBuffer);
  1.1307 +
  1.1308 +	/**
  1.1309 +		MDevSoundAdaptationObserver callback.
  1.1310 +		This is called when there is error during playback.
  1.1311 +		@since 
  1.1312 +		@param TInt aError KErrUnderflow if last buffer is played back, else
  1.1313 +			corresponding error code
  1.1314 +		@return void
  1.1315 +	*/
  1.1316 +	void PlayError(TInt aError);
  1.1317 +
  1.1318 +	/**
  1.1319 +		MDevSoundAdaptationObserver callback.
  1.1320 +		This is called when data is available during digital audio recording.
  1.1321 +		@since 
  1.1322 +		@param CMMFBuffer* aBuffer A pointer to buffer where recorded data is
  1.1323 +			available.
  1.1324 +		@return void
  1.1325 +	*/
  1.1326 +	void BufferToBeEmptied(CMMFBuffer* aBuffer);
  1.1327 +
  1.1328 +	/**
  1.1329 +		MDevSoundAdaptationObserver callback.
  1.1330 +		This is called when there is error during recording.
  1.1331 +		@since 
  1.1332 +		@param TInt aError Corresponding error code
  1.1333 +		@return void
  1.1334 +	*/
  1.1335 +	void RecordError(TInt aError);
  1.1336 +
  1.1337 +	/**
  1.1338 +		MDevSoundAdaptationObserver callback.
  1.1339 +		This is called when there is a message from audio device.
  1.1340 +		@since 
  1.1341 +		@param TUid aMessageType A Uid identifying message type.
  1.1342 +		@param const TDesC8& aMsg A reference to constant descriptor
  1.1343 +			containing packed message.
  1.1344 +		@return void
  1.1345 +	*/
  1.1346 +	void DeviceMessage(TUid aMessageType, const TDesC8& aMsg);
  1.1347 +
  1.1348 +	
  1.1349 +	// from MMMFDevSoundCustomInterfaceDeMuxPlugin
  1.1350 +	/**
  1.1351 +		MDevSoundAdaptationObserver callback.
  1.1352 +		Underlying interface has been (or is about to be) deleted.
  1.1353 +		Implementations will generally cancel outstanding messages
  1.1354 +	
  1.1355 +		@param	aInterfaceId	Uid of the Interface which has been deleted
  1.1356 +	*/
  1.1357 +
  1.1358 +	void InterfaceDeleted(TUid aInterfaceId);
  1.1359 +
  1.1360 +	/**
  1.1361 +		MDevSoundAdaptationObserver callback.
  1.1362 +		Not used.
  1.1363 +		@since 
  1.1364 +		@param const TMMFEvent& aEvent Not used
  1.1365 +		@return void
  1.1366 +	*/
  1.1367 +	void SendEventToClient(const TMMFEvent& aEvent);
  1.1368 +
  1.1369 +	void DoProcessingFinished();
  1.1370 +	void DoProcessingError();
  1.1371 +	
  1.1372 +	/**
  1.1373 +		MDevSoundAdaptationObserver callback.
  1.1374 +		Underlying physical adaptation has sent a callback that will result either on a commit
  1.1375 +		and need to scheduled or in the case of RecordPauseComplete, completes the message. 
  1.1376 +		@since 
  1.1377 +		@param aType the callback type
  1.1378 +		@param aError KErrNone if successful, else corresponding error
  1.1379 +			code
  1.1380 +	*/
  1.1381 +	void CallbackFromAdaptorReceived(TInt aType, TInt aError);
  1.1382 +	
  1.1383 +	
  1.1384 +	/**
  1.1385 +		MDevSoundAdaptationObserver callback.
  1.1386 +		Underlying physical adaptation has sent a callback indicating that a preemption process 
  1.1387 +	 	has started, any incomming commands will be queued during the preemption.  
  1.1388 +
  1.1389 +		@since 
  1.1390 +	 */
  1.1391 +	void PreemptionStartedCallbackReceived();
  1.1392 +
  1.1393 +	
  1.1394 +	/**
  1.1395 +		MDevSoundAdaptationObserver callback.
  1.1396 +		Underlying physical adaptation has sent a callback indicating that a preemption process
  1.1397 +		has finished. Queued commands during preemption can now be processed. 
  1.1398 +		@since 
  1.1399 +		@param	aCanStartNewOperation	If EFalse indicates that the operation has more than a cycle
  1.1400 +	 */
  1.1401 +	void PreemptionFinishedCallbackReceived(TBool aCanStartNewOperation);
  1.1402 +
  1.1403 +	// from MDevSoundAdaptationObserver
  1.1404 +	TBool AdaptorControlsContext() const;
  1.1405 +	void PreemptionClash();
  1.1406 +	void PreemptionClashWithStateChange();
  1.1407 +    void NotifyError(TInt aError);
  1.1408 +
  1.1409 +	/**
  1.1410 +		MDevSoundAdaptationObserver callback.
  1.1411 +		Indicates that a low layer operation completion
  1.1412 +		@since 
  1.1413 +		@param	aError	The status of operation in progress
  1.1414 +		@param	aCanStartNewOperation	If EFalse indicates that the operation has more than a cycle
  1.1415 +	*/
  1.1416 +	void AsynchronousOperationComplete(TInt aError, TBool aCanStartNewOperation);
  1.1417 +
  1.1418 +
  1.1419 +	// from MMMFDevSoundCustomInterfaceDeMuxInterface
  1.1420 +	TInt DoOpenSlaveL(TUid aInterface, const TDesC8& aPackageBuf);
  1.1421 +	void DoCloseSlaveL(TInt aHandle);
  1.1422 +	TInt DoSendSlaveSyncCommandL(const RMmfIpcMessage& aMessage);
  1.1423 +	TInt DoSendSlaveSyncCommandResultL(const RMmfIpcMessage& aMessage); 
  1.1424 +	void DoSendSlaveAsyncCommandL(const RMmfIpcMessage& aMessage);
  1.1425 +	void DoSendSlaveAsyncCommandResultL(const RMmfIpcMessage& aMessage);
  1.1426 +	
  1.1427 +
  1.1428 +private: // Functions
  1.1429 +
  1.1430 +	/**
  1.1431 +		Returns a object reference to CMMFObjectContainer.
  1.1432 +		@since 
  1.1433 +		@return CMMFObjectContainer& A reference to CMMFObjectContainer
  1.1434 +			implemenation.
  1.1435 +	*/
  1.1436 +	CMMFObjectContainer& MMFObjectContainerL();
  1.1437 +
  1.1438 +	/**
  1.1439 +		Returns a object reference to CMMFObjectContainer.
  1.1440 +		@since 
  1.1441 +		@return CMMFCustomCommandParserBase& aParser A reference to
  1.1442 +			Custom command parser implemenation.
  1.1443 +		@return void
  1.1444 +	*/
  1.1445 +	void AddCustomCommandParserL(CMMFCustomCommandParserBase& aParser);
  1.1446 +
  1.1447 +	/**
  1.1448 +		Method to set client configuration information to DevSound Adaptation.
  1.1449 +		Leaves on failure.
  1.1450 +		@since 
  1.1451 +		@return void
  1.1452 +	*/
  1.1453 +	void DoSetClientConfigL();
  1.1454 +
  1.1455 +	/**
  1.1456 +		Equivalent of DoSetClientConfigL() that returns error
  1.1457 +		@return system-wide error
  1.1458 +	*/
  1.1459 +	TInt DoSetClientConfig();
  1.1460 +
  1.1461 +	/**
  1.1462 +		Method to create global chunk
  1.1463 +		@since 
  1.1464 +		@param TMMFDevSoundProxyHwBufPckg& - buffer information container
  1.1465 +		@param CMMFDataBuffer* - data buffer pointer
  1.1466 +		@return void
  1.1467 +	*/
  1.1468 +	TInt CreateChunk(TMMFDevSoundProxyHwBufPckg& aBufPckg, TInt aRequestedSize);
  1.1469 +
  1.1470 +
  1.1471 +	// New internal methods
  1.1472 +	/*
  1.1473 +	Services the first request at the FIFO
  1.1474 +	*/
  1.1475 +	void DoServiceRequestL(const RMmfIpcMessage& aMessage);
  1.1476 +
  1.1477 +	/*
  1.1478 +	Services the first request of queue for a pseudo asynchronous function that has already completed,
  1.1479 +	but needs to be re-applied again due to pre-emption clash.
  1.1480 +	*/
  1.1481 +	void DoServiceAlreadyCompletedRequestL(const TInt aFunction);
  1.1482 +
  1.1483 +	/*
  1.1484 +	Handles the first request of queue for a pseudo asynchronous function that has already completed,
  1.1485 +	but needs to be re-applied again due to pre-emption clash.
  1.1486 +	*/
  1.1487 +	void HandleAlreadyCompletedRequest();
  1.1488 +
  1.1489 +	/*
  1.1490 +	Services the first request at the FIFO
  1.1491 +	*/
  1.1492 +	void DoServiceNextRequestL();
  1.1493 +
  1.1494 +	/*
  1.1495 +	Completes the message 
  1.1496 +	@param aReason the error to complete message
  1.1497 +	@param aOperationComplete if is true also this message will be removed from the queue
  1.1498 +		if is false just the message will be completed but will be keeped at the queue
  1.1499 +	*/
  1.1500 +	void CompleteRequest(TInt aReason);
  1.1501 +
  1.1502 +	/*
  1.1503 +	Adds a message to the FIFO
  1.1504 +	*/
  1.1505 +	void EnqueueRequest(const RMmfIpcMessage& aMessage);
  1.1506 +
  1.1507 +	/*
  1.1508 +	Removes the message from the FIFO
  1.1509 +	 */
  1.1510 +	void DequeueRequest();
  1.1511 +	
  1.1512 +
  1.1513 +
  1.1514 +	/*
  1.1515 +	Flush event queue - called as part of Stop() sequence
  1.1516 +	 */
  1.1517 +	void FlushEventQueue();
  1.1518 +
  1.1519 +	/*
  1.1520 +	Filter certain events from message queue 
  1.1521 +	*/
  1.1522 +	void FilterQueueEvent(TMMFDevSoundProxyRequest aRequest);
  1.1523 +	
  1.1524 +	/*
  1.1525 +	Called by a server when it receives a disconnect message for the session.
  1.1526 +	Overrided in order to perform asynchronous cleanup actions
  1.1527 +	these actions must end with a call to the base class implementation of this method
  1.1528 +	which will delete the session object and complete the disconnect message
  1.1529 +	*/
  1.1530 +	void Disconnect(const RMessage2& aMessage);
  1.1531 +	
  1.1532 +	//panic function	
  1.1533 +	void Panic(TMMFDevSoundSessionPanicCodes aCode);
  1.1534 +	
  1.1535 +	/*
  1.1536 +	Used to send a stop call when error in buffer
  1.1537 +	*/
  1.1538 +	void BufferErrorEvent();
  1.1539 +
  1.1540 +	/*
  1.1541 +	 Removes all entries from iQueuedRequests except for
  1.1542 +	 disconnect requests.
  1.1543 +	 */
  1.1544 +	void FlushQueuedRequests();
  1.1545 +	
  1.1546 +	/*
  1.1547 +	 Helper functions, used to guard against accessing the equivalent
  1.1548 +	 functions on bad message handles during a disconnection. These
  1.1549 +	 methods should be used whenever a Read or Write is made outside the 
  1.1550 +	 context of DoServiceRequestL().
  1.1551 +	 */
  1.1552 +	TInt MessageRead(const RMmfIpcMessage& aMessage, TInt aParam, TDes8& aResult);
  1.1553 +	TInt MessageRead(const RMmfIpcMessage& aMessage, TInt aParam, TDes16& aResult);
  1.1554 +	TInt MessageWrite(const RMmfIpcMessage& aMessage, TInt aParam, const TDesC8& aValue);
  1.1555 +
  1.1556 +protected:
  1.1557 +
  1.1558 +	/**
  1.1559 +		C++ default constructor.
  1.1560 +	*/
  1.1561 +	CMMFDevSoundSession();
  1.1562 +	/**
  1.1563 +		By default Symbian 2nd phase constructor is private.
  1.1564 +	*/
  1.1565 +	void ConstructL(MGlobalProperties& aGlobalProperties);
  1.1566 +	
  1.1567 +private:
  1.1568 +	TBool DoCustomCommandL(const RMmfIpcMessage& aMessage);
  1.1569 +	MMMFDevSoundCustomInterfaceDeMuxPlugin* InterfaceFromUid(TUid aUid);
  1.1570 +	
  1.1571 +	static TInt AsyncQueueStartCallback(TAny* aPtr);
  1.1572 +	void AsyncQueueStartCallback();
  1.1573 +
  1.1574 +	void ResetNotifiedError();
  1.1575 +	TInt NotifiedError() const;
  1.1576 +
  1.1577 +	TBool NeedToQueue() const;
  1.1578 +
  1.1579 +protected:	// Data
  1.1580 +	CMMFDevSoundAdaptation* iAdapter;
  1.1581 +
  1.1582 +private:	// Data
  1.1583 +	// A number representing the session id
  1.1584 +	TInt iDevSoundSessionId;
  1.1585 +	// Reference to play buffer
  1.1586 +	CMMFDataBuffer* iBufferPlay;
  1.1587 +	// Reference to record buffer
  1.1588 +	CMMFDataBuffer* iBufferRecord;
  1.1589 +	// Array to hold supported input/output data types
  1.1590 +	RArray<TFourCC> iArray;
  1.1591 +	// Buffer to hold DTMFString to be played
  1.1592 +	HBufC* iDtmfString;
  1.1593 +	// Buffer to hold tone sequence to be played
  1.1594 +	HBufC8* iToneSeqBuf;
  1.1595 +
  1.1596 +
  1.1597 +	// Replaces the messages / AO handlers
  1.1598 +	RMsgQueue<TMMFDevSoundQueueItem> iMsgQueue;
  1.1599 +	// data store for 2-stage asynch message passing
  1.1600 +	TMMFDevSoundProxyHwBufPckg iHwBufPckgFill;
  1.1601 +	// data store for 2-stage asynch message passing
  1.1602 +	TMMFDevSoundProxyHwBufPckg iHwBufPckgEmpty;
  1.1603 +
  1.1604 +	// Array of custom interface pairs
  1.1605 +	RArray<TMMFDevSoundCustomInterfaceDeMuxData> iCustomInterfaceArray;
  1.1606 +
  1.1607 +	//Capabilities from DevSoundAdaptor	
  1.1608 +	TMMFCapabilities iDevSoundCapabilities;
  1.1609 +	// 
  1.1610 +	CMMFDevSoundCIDeMuxUtility* iDeMuxUtility;
  1.1611 +	// CI Extension
  1.1612 +	MDevSoundCIServerExtension* iCIExtension;
  1.1613 +
  1.1614 +	// Handling async requests
  1.1615 +	RArray<TMMFDevSoundRequest> iQueuedRequests;
  1.1616 +	TMMFDevSoundRequest			iRequestBeingServiced;
  1.1617 +	TBool						iOperationCompletePending;
  1.1618 +	TBool                       iHandlingExtdCI;
  1.1619 +	TBool						iPlayErrorOccured;
  1.1620 +	
  1.1621 +	//Check if the call of SetClientConfigL was alredy made
  1.1622 +	TBool						iSetClientConfigApplied;
  1.1623 +	
  1.1624 +	// Chunk for use between DevSound client and server
  1.1625 +	RChunk iChunk;
  1.1626 +	TBool iForceSendOfChunkHandle;
  1.1627 +	
  1.1628 +	CActiveSchedulerWait*		iClosingWait;
  1.1629 +	CAsyncCallBack*				iAsyncQueueStart;
  1.1630 +
  1.1631 +	TInt iRedoFunction;
  1.1632 +	TMMFDevSoundProxySettingsPckg iCachedClientData;
  1.1633 +	TInt iSeqNum;
  1.1634 +	TBool iPreemptionClash;
  1.1635 +	TInt iNotifiedError;
  1.1636 +	TBool iDisconnecting;
  1.1637 +
  1.1638 +	};
  1.1639 +
  1.1640 +#endif // MMFDEVSOUNDSESSION_H
  1.1641 +
  1.1642 +// End of File